blob: 214e90b94946ab97cabf2e5cdb7fda6e61351d9f [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/*
329 * We can use this swap cache entry directly
330 * if there are no other references to it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 */
332int can_share_swap_page(struct page *page)
333{
Hugh Dickinsc475a8a2005-06-21 17:15:12 -0700334 int count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
Hugh Dickins51726b12009-01-06 14:39:25 -0800336 VM_BUG_ON(!PageLocked(page));
Hugh Dickinsc475a8a2005-06-21 17:15:12 -0700337 count = page_mapcount(page);
338 if (count <= 1 && PageSwapCache(page))
339 count += page_swapcount(page);
340 return count == 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341}
342
343/*
344 * Work out if there are any other processes sharing this
345 * swap cache page. Free it if you can. Return success.
346 */
Rik van Riel68a223942008-10-18 20:26:23 -0700347static int remove_exclusive_swap_page_count(struct page *page, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348{
349 int retval;
350 struct swap_info_struct * p;
351 swp_entry_t entry;
352
Hugh Dickins51726b12009-01-06 14:39:25 -0800353 VM_BUG_ON(!PageLocked(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
355 if (!PageSwapCache(page))
356 return 0;
357 if (PageWriteback(page))
358 return 0;
Rik van Riel68a223942008-10-18 20:26:23 -0700359 if (page_count(page) != count) /* us + cache + ptes */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 return 0;
361
Hugh Dickins4c21e2f2005-10-29 18:16:40 -0700362 entry.val = page_private(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 p = swap_info_get(entry);
364 if (!p)
365 return 0;
366
367 /* Is the only swap cache user the cache itself? */
368 retval = 0;
369 if (p->swap_map[swp_offset(entry)] == 1) {
370 /* Recheck the page count with the swapcache lock held.. */
Nick Piggin19fd6232008-07-25 19:45:32 -0700371 spin_lock_irq(&swapper_space.tree_lock);
Rik van Riel68a223942008-10-18 20:26:23 -0700372 if ((page_count(page) == count) && !PageWriteback(page)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 __delete_from_swap_cache(page);
374 SetPageDirty(page);
375 retval = 1;
376 }
Nick Piggin19fd6232008-07-25 19:45:32 -0700377 spin_unlock_irq(&swapper_space.tree_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 }
Hugh Dickins5d337b92005-09-03 15:54:41 -0700379 spin_unlock(&swap_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380
381 if (retval) {
382 swap_free(entry);
383 page_cache_release(page);
384 }
385
386 return retval;
387}
388
389/*
Rik van Riel68a223942008-10-18 20:26:23 -0700390 * Most of the time the page should have two references: one for the
391 * process and one for the swap cache.
392 */
393int remove_exclusive_swap_page(struct page *page)
394{
395 return remove_exclusive_swap_page_count(page, 2);
396}
397
398/*
399 * The pageout code holds an extra reference to the page. That raises
400 * the reference count to test for to 2 for a page that is only in the
401 * swap cache plus 1 for each process that maps the page.
402 */
403int remove_exclusive_swap_page_ref(struct page *page)
404{
405 return remove_exclusive_swap_page_count(page, 2 + page_mapcount(page));
406}
407
408/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 * Free the swap entry like above, but also try to
410 * free the page cache entry if it is the last user.
411 */
412void free_swap_and_cache(swp_entry_t entry)
413{
414 struct swap_info_struct * p;
415 struct page *page = NULL;
416
Christoph Lameter06972122006-06-23 02:03:35 -0700417 if (is_migration_entry(entry))
418 return;
419
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 p = swap_info_get(entry);
421 if (p) {
Nick Piggin93fac702006-03-31 02:29:56 -0800422 if (swap_entry_free(p, swp_offset(entry)) == 1) {
423 page = find_get_page(&swapper_space, entry.val);
Nick Piggin8413ac92008-10-18 20:26:59 -0700424 if (page && !trylock_page(page)) {
Nick Piggin93fac702006-03-31 02:29:56 -0800425 page_cache_release(page);
426 page = NULL;
427 }
428 }
Hugh Dickins5d337b92005-09-03 15:54:41 -0700429 spin_unlock(&swap_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 }
431 if (page) {
432 int one_user;
433
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 one_user = (page_count(page) == 2);
435 /* Only cache user (+us), or swap space full? Free it! */
Nick Piggin93fac702006-03-31 02:29:56 -0800436 /* Also recheck PageSwapCache after page is locked (above) */
437 if (PageSwapCache(page) && !PageWriteback(page) &&
438 (one_user || vm_swap_full())) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 delete_from_swap_cache(page);
440 SetPageDirty(page);
441 }
442 unlock_page(page);
443 page_cache_release(page);
444 }
445}
446
Rafael J. Wysockib0cb1a12007-07-29 23:24:36 +0200447#ifdef CONFIG_HIBERNATION
Rafael J. Wysockif577eb32006-03-23 02:59:59 -0800448/*
Rafael J. Wysocki915bae92006-12-06 20:34:07 -0800449 * Find the swap type that corresponds to given device (if any).
Rafael J. Wysockif577eb32006-03-23 02:59:59 -0800450 *
Rafael J. Wysocki915bae92006-12-06 20:34:07 -0800451 * @offset - number of the PAGE_SIZE-sized block of the device, starting
452 * from 0, in which the swap header is expected to be located.
453 *
454 * This is needed for the suspend to disk (aka swsusp).
Rafael J. Wysockif577eb32006-03-23 02:59:59 -0800455 */
Rafael J. Wysocki7bf23682007-01-05 16:36:28 -0800456int swap_type_of(dev_t device, sector_t offset, struct block_device **bdev_p)
Rafael J. Wysockif577eb32006-03-23 02:59:59 -0800457{
Rafael J. Wysocki915bae92006-12-06 20:34:07 -0800458 struct block_device *bdev = NULL;
Rafael J. Wysockif577eb32006-03-23 02:59:59 -0800459 int i;
460
Rafael J. Wysocki915bae92006-12-06 20:34:07 -0800461 if (device)
462 bdev = bdget(device);
463
Rafael J. Wysockif577eb32006-03-23 02:59:59 -0800464 spin_lock(&swap_lock);
465 for (i = 0; i < nr_swapfiles; i++) {
Rafael J. Wysocki915bae92006-12-06 20:34:07 -0800466 struct swap_info_struct *sis = swap_info + i;
Rafael J. Wysockif577eb32006-03-23 02:59:59 -0800467
Rafael J. Wysocki915bae92006-12-06 20:34:07 -0800468 if (!(sis->flags & SWP_WRITEOK))
Rafael J. Wysockif577eb32006-03-23 02:59:59 -0800469 continue;
Rafael J. Wysockib6b5bce2006-08-27 01:23:25 -0700470
Rafael J. Wysocki915bae92006-12-06 20:34:07 -0800471 if (!bdev) {
Rafael J. Wysocki7bf23682007-01-05 16:36:28 -0800472 if (bdev_p)
473 *bdev_p = sis->bdev;
474
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800475 spin_unlock(&swap_lock);
476 return i;
477 }
Rafael J. Wysocki915bae92006-12-06 20:34:07 -0800478 if (bdev == sis->bdev) {
479 struct swap_extent *se;
480
481 se = list_entry(sis->extent_list.next,
482 struct swap_extent, list);
483 if (se->start_block == offset) {
Rafael J. Wysocki7bf23682007-01-05 16:36:28 -0800484 if (bdev_p)
485 *bdev_p = sis->bdev;
486
Rafael J. Wysocki915bae92006-12-06 20:34:07 -0800487 spin_unlock(&swap_lock);
488 bdput(bdev);
489 return i;
490 }
Rafael J. Wysockif577eb32006-03-23 02:59:59 -0800491 }
492 }
493 spin_unlock(&swap_lock);
Rafael J. Wysocki915bae92006-12-06 20:34:07 -0800494 if (bdev)
495 bdput(bdev);
496
Rafael J. Wysockif577eb32006-03-23 02:59:59 -0800497 return -ENODEV;
498}
499
500/*
501 * Return either the total number of swap pages of given type, or the number
502 * of free pages of that type (depending on @free)
503 *
504 * This is needed for software suspend
505 */
506unsigned int count_swap_pages(int type, int free)
507{
508 unsigned int n = 0;
509
510 if (type < nr_swapfiles) {
511 spin_lock(&swap_lock);
512 if (swap_info[type].flags & SWP_WRITEOK) {
513 n = swap_info[type].pages;
514 if (free)
515 n -= swap_info[type].inuse_pages;
516 }
517 spin_unlock(&swap_lock);
518 }
519 return n;
520}
521#endif
522
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523/*
Hugh Dickins72866f62005-10-29 18:15:55 -0700524 * No need to decide whether this PTE shares the swap entry with others,
525 * just let do_wp_page work it out if a write is requested later - to
526 * force COW, vm_page_prot omits write permission from any private vma.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 */
Hugh Dickins044d66c2008-02-07 00:14:04 -0800528static int unuse_pte(struct vm_area_struct *vma, pmd_t *pmd,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 unsigned long addr, swp_entry_t entry, struct page *page)
530{
Hugh Dickins044d66c2008-02-07 00:14:04 -0800531 spinlock_t *ptl;
532 pte_t *pte;
533 int ret = 1;
534
Balbir Singhe1a1cd52008-02-07 00:14:02 -0800535 if (mem_cgroup_charge(page, vma->vm_mm, GFP_KERNEL))
Hugh Dickins044d66c2008-02-07 00:14:04 -0800536 ret = -ENOMEM;
537
538 pte = pte_offset_map_lock(vma->vm_mm, pmd, addr, &ptl);
539 if (unlikely(!pte_same(*pte, swp_entry_to_pte(entry)))) {
540 if (ret > 0)
541 mem_cgroup_uncharge_page(page);
542 ret = 0;
543 goto out;
544 }
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800545
Hugh Dickins42946212005-10-29 18:16:05 -0700546 inc_mm_counter(vma->vm_mm, anon_rss);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 get_page(page);
548 set_pte_at(vma->vm_mm, addr, pte,
549 pte_mkold(mk_pte(page, vma->vm_page_prot)));
550 page_add_anon_rmap(page, vma, addr);
551 swap_free(entry);
552 /*
553 * Move the page to the active list so it is not
554 * immediately swapped out again after swapon.
555 */
556 activate_page(page);
Hugh Dickins044d66c2008-02-07 00:14:04 -0800557out:
558 pte_unmap_unlock(pte, ptl);
559 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560}
561
562static int unuse_pte_range(struct vm_area_struct *vma, pmd_t *pmd,
563 unsigned long addr, unsigned long end,
564 swp_entry_t entry, struct page *page)
565{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 pte_t swp_pte = swp_entry_to_pte(entry);
Hugh Dickins705e87c2005-10-29 18:16:27 -0700567 pte_t *pte;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800568 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569
Hugh Dickins044d66c2008-02-07 00:14:04 -0800570 /*
571 * We don't actually need pte lock while scanning for swp_pte: since
572 * we hold page lock and mmap_sem, swp_pte cannot be inserted into the
573 * page table while we're scanning; though it could get zapped, and on
574 * some architectures (e.g. x86_32 with PAE) we might catch a glimpse
575 * of unmatched parts which look like swp_pte, so unuse_pte must
576 * recheck under pte lock. Scanning without pte lock lets it be
577 * preemptible whenever CONFIG_PREEMPT but not CONFIG_HIGHPTE.
578 */
579 pte = pte_offset_map(pmd, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 do {
581 /*
582 * swapoff spends a _lot_ of time in this loop!
583 * Test inline before going to call unuse_pte.
584 */
585 if (unlikely(pte_same(*pte, swp_pte))) {
Hugh Dickins044d66c2008-02-07 00:14:04 -0800586 pte_unmap(pte);
587 ret = unuse_pte(vma, pmd, addr, entry, page);
588 if (ret)
589 goto out;
590 pte = pte_offset_map(pmd, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 }
592 } while (pte++, addr += PAGE_SIZE, addr != end);
Hugh Dickins044d66c2008-02-07 00:14:04 -0800593 pte_unmap(pte - 1);
594out:
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800595 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596}
597
598static inline int unuse_pmd_range(struct vm_area_struct *vma, pud_t *pud,
599 unsigned long addr, unsigned long end,
600 swp_entry_t entry, struct page *page)
601{
602 pmd_t *pmd;
603 unsigned long next;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800604 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605
606 pmd = pmd_offset(pud, addr);
607 do {
608 next = pmd_addr_end(addr, end);
609 if (pmd_none_or_clear_bad(pmd))
610 continue;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800611 ret = unuse_pte_range(vma, pmd, addr, next, entry, page);
612 if (ret)
613 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 } while (pmd++, addr = next, addr != end);
615 return 0;
616}
617
618static inline int unuse_pud_range(struct vm_area_struct *vma, pgd_t *pgd,
619 unsigned long addr, unsigned long end,
620 swp_entry_t entry, struct page *page)
621{
622 pud_t *pud;
623 unsigned long next;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800624 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625
626 pud = pud_offset(pgd, addr);
627 do {
628 next = pud_addr_end(addr, end);
629 if (pud_none_or_clear_bad(pud))
630 continue;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800631 ret = unuse_pmd_range(vma, pud, addr, next, entry, page);
632 if (ret)
633 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 } while (pud++, addr = next, addr != end);
635 return 0;
636}
637
638static int unuse_vma(struct vm_area_struct *vma,
639 swp_entry_t entry, struct page *page)
640{
641 pgd_t *pgd;
642 unsigned long addr, end, next;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800643 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644
645 if (page->mapping) {
646 addr = page_address_in_vma(page, vma);
647 if (addr == -EFAULT)
648 return 0;
649 else
650 end = addr + PAGE_SIZE;
651 } else {
652 addr = vma->vm_start;
653 end = vma->vm_end;
654 }
655
656 pgd = pgd_offset(vma->vm_mm, addr);
657 do {
658 next = pgd_addr_end(addr, end);
659 if (pgd_none_or_clear_bad(pgd))
660 continue;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800661 ret = unuse_pud_range(vma, pgd, addr, next, entry, page);
662 if (ret)
663 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 } while (pgd++, addr = next, addr != end);
665 return 0;
666}
667
668static int unuse_mm(struct mm_struct *mm,
669 swp_entry_t entry, struct page *page)
670{
671 struct vm_area_struct *vma;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800672 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673
674 if (!down_read_trylock(&mm->mmap_sem)) {
675 /*
Fernando Luis Vazquez Cao7d034312008-07-29 22:33:41 -0700676 * Activate page so shrink_inactive_list is unlikely to unmap
677 * its ptes while lock is dropped, so swapoff can make progress.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 */
Hugh Dickinsc475a8a2005-06-21 17:15:12 -0700679 activate_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 unlock_page(page);
681 down_read(&mm->mmap_sem);
682 lock_page(page);
683 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 for (vma = mm->mmap; vma; vma = vma->vm_next) {
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800685 if (vma->anon_vma && (ret = unuse_vma(vma, entry, page)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 break;
687 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 up_read(&mm->mmap_sem);
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800689 return (ret < 0)? ret: 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690}
691
692/*
693 * Scan swap_map from current position to next entry still in use.
694 * Recycle to start on reaching the end, returning 0 when empty.
695 */
Hugh Dickins6eb396d2005-09-03 15:54:35 -0700696static unsigned int find_next_to_unuse(struct swap_info_struct *si,
697 unsigned int prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698{
Hugh Dickins6eb396d2005-09-03 15:54:35 -0700699 unsigned int max = si->max;
700 unsigned int i = prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 int count;
702
703 /*
Hugh Dickins5d337b92005-09-03 15:54:41 -0700704 * No need for swap_lock here: we're just looking
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 * for whether an entry is in use, not modifying it; false
706 * hits are okay, and sys_swapoff() has already prevented new
Hugh Dickins5d337b92005-09-03 15:54:41 -0700707 * allocations from this area (while holding swap_lock).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 */
709 for (;;) {
710 if (++i >= max) {
711 if (!prev) {
712 i = 0;
713 break;
714 }
715 /*
716 * No entries in use at top of swap_map,
717 * loop back to start and recheck there.
718 */
719 max = prev + 1;
720 prev = 0;
721 i = 1;
722 }
723 count = si->swap_map[i];
724 if (count && count != SWAP_MAP_BAD)
725 break;
726 }
727 return i;
728}
729
730/*
731 * We completely avoid races by reading each swap page in advance,
732 * and then search for the process using it. All the necessary
733 * page table adjustments can then be made atomically.
734 */
735static int try_to_unuse(unsigned int type)
736{
737 struct swap_info_struct * si = &swap_info[type];
738 struct mm_struct *start_mm;
739 unsigned short *swap_map;
740 unsigned short swcount;
741 struct page *page;
742 swp_entry_t entry;
Hugh Dickins6eb396d2005-09-03 15:54:35 -0700743 unsigned int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 int retval = 0;
745 int reset_overflow = 0;
746 int shmem;
747
748 /*
749 * When searching mms for an entry, a good strategy is to
750 * start at the first mm we freed the previous entry from
751 * (though actually we don't notice whether we or coincidence
752 * freed the entry). Initialize this start_mm with a hold.
753 *
754 * A simpler strategy would be to start at the last mm we
755 * freed the previous entry from; but that would take less
756 * advantage of mmlist ordering, which clusters forked mms
757 * together, child after parent. If we race with dup_mmap(), we
758 * prefer to resolve parent before child, lest we miss entries
759 * duplicated after we scanned child: using last mm would invert
760 * that. Though it's only a serious concern when an overflowed
761 * swap count is reset from SWAP_MAP_MAX, preventing a rescan.
762 */
763 start_mm = &init_mm;
764 atomic_inc(&init_mm.mm_users);
765
766 /*
767 * Keep on scanning until all entries have gone. Usually,
768 * one pass through swap_map is enough, but not necessarily:
769 * there are races when an instance of an entry might be missed.
770 */
771 while ((i = find_next_to_unuse(si, i)) != 0) {
772 if (signal_pending(current)) {
773 retval = -EINTR;
774 break;
775 }
776
777 /*
778 * Get a page for the entry, using the existing swap
779 * cache page if there is one. Otherwise, get a clean
780 * page and read the swap into it.
781 */
782 swap_map = &si->swap_map[i];
783 entry = swp_entry(type, i);
Hugh Dickins02098fe2008-02-04 22:28:42 -0800784 page = read_swap_cache_async(entry,
785 GFP_HIGHUSER_MOVABLE, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 if (!page) {
787 /*
788 * Either swap_duplicate() failed because entry
789 * has been freed independently, and will not be
790 * reused since sys_swapoff() already disabled
791 * allocation from here, or alloc_page() failed.
792 */
793 if (!*swap_map)
794 continue;
795 retval = -ENOMEM;
796 break;
797 }
798
799 /*
800 * Don't hold on to start_mm if it looks like exiting.
801 */
802 if (atomic_read(&start_mm->mm_users) == 1) {
803 mmput(start_mm);
804 start_mm = &init_mm;
805 atomic_inc(&init_mm.mm_users);
806 }
807
808 /*
809 * Wait for and lock page. When do_swap_page races with
810 * try_to_unuse, do_swap_page can handle the fault much
811 * faster than try_to_unuse can locate the entry. This
812 * apparently redundant "wait_on_page_locked" lets try_to_unuse
813 * defer to do_swap_page in such a case - in some tests,
814 * do_swap_page and try_to_unuse repeatedly compete.
815 */
816 wait_on_page_locked(page);
817 wait_on_page_writeback(page);
818 lock_page(page);
819 wait_on_page_writeback(page);
820
821 /*
822 * Remove all references to entry.
823 * Whenever we reach init_mm, there's no address space
824 * to search, but use it as a reminder to search shmem.
825 */
826 shmem = 0;
827 swcount = *swap_map;
828 if (swcount > 1) {
829 if (start_mm == &init_mm)
830 shmem = shmem_unuse(entry, page);
831 else
832 retval = unuse_mm(start_mm, entry, page);
833 }
834 if (*swap_map > 1) {
835 int set_start_mm = (*swap_map >= swcount);
836 struct list_head *p = &start_mm->mmlist;
837 struct mm_struct *new_start_mm = start_mm;
838 struct mm_struct *prev_mm = start_mm;
839 struct mm_struct *mm;
840
841 atomic_inc(&new_start_mm->mm_users);
842 atomic_inc(&prev_mm->mm_users);
843 spin_lock(&mmlist_lock);
Hugh Dickins2e0e26c2008-02-04 22:28:53 -0800844 while (*swap_map > 1 && !retval && !shmem &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 (p = p->next) != &start_mm->mmlist) {
846 mm = list_entry(p, struct mm_struct, mmlist);
Hugh Dickins70af7c52006-06-23 02:03:44 -0700847 if (!atomic_inc_not_zero(&mm->mm_users))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 spin_unlock(&mmlist_lock);
850 mmput(prev_mm);
851 prev_mm = mm;
852
853 cond_resched();
854
855 swcount = *swap_map;
856 if (swcount <= 1)
857 ;
858 else if (mm == &init_mm) {
859 set_start_mm = 1;
860 shmem = shmem_unuse(entry, page);
861 } else
862 retval = unuse_mm(mm, entry, page);
863 if (set_start_mm && *swap_map < swcount) {
864 mmput(new_start_mm);
865 atomic_inc(&mm->mm_users);
866 new_start_mm = mm;
867 set_start_mm = 0;
868 }
869 spin_lock(&mmlist_lock);
870 }
871 spin_unlock(&mmlist_lock);
872 mmput(prev_mm);
873 mmput(start_mm);
874 start_mm = new_start_mm;
875 }
Hugh Dickins2e0e26c2008-02-04 22:28:53 -0800876 if (shmem) {
877 /* page has already been unlocked and released */
878 if (shmem > 0)
879 continue;
880 retval = shmem;
881 break;
882 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 if (retval) {
884 unlock_page(page);
885 page_cache_release(page);
886 break;
887 }
888
889 /*
890 * How could swap count reach 0x7fff when the maximum
891 * pid is 0x7fff, and there's no way to repeat a swap
892 * page within an mm (except in shmem, where it's the
893 * shared object which takes the reference count)?
894 * We believe SWAP_MAP_MAX cannot occur in Linux 2.4.
895 *
896 * If that's wrong, then we should worry more about
897 * exit_mmap() and do_munmap() cases described above:
898 * we might be resetting SWAP_MAP_MAX too early here.
899 * We know "Undead"s can happen, they're okay, so don't
900 * report them; but do report if we reset SWAP_MAP_MAX.
901 */
902 if (*swap_map == SWAP_MAP_MAX) {
Hugh Dickins5d337b92005-09-03 15:54:41 -0700903 spin_lock(&swap_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 *swap_map = 1;
Hugh Dickins5d337b92005-09-03 15:54:41 -0700905 spin_unlock(&swap_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 reset_overflow = 1;
907 }
908
909 /*
910 * If a reference remains (rare), we would like to leave
911 * the page in the swap cache; but try_to_unmap could
912 * then re-duplicate the entry once we drop page lock,
913 * so we might loop indefinitely; also, that page could
914 * not be swapped out to other storage meanwhile. So:
915 * delete from cache even if there's another reference,
916 * after ensuring that the data has been saved to disk -
917 * since if the reference remains (rarer), it will be
918 * read from disk into another page. Splitting into two
919 * pages would be incorrect if swap supported "shared
920 * private" pages, but they are handled by tmpfs files.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 */
922 if ((*swap_map > 1) && PageDirty(page) && PageSwapCache(page)) {
923 struct writeback_control wbc = {
924 .sync_mode = WB_SYNC_NONE,
925 };
926
927 swap_writepage(page, &wbc);
928 lock_page(page);
929 wait_on_page_writeback(page);
930 }
Hugh Dickins2e0e26c2008-02-04 22:28:53 -0800931 if (PageSwapCache(page))
932 delete_from_swap_cache(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933
934 /*
935 * So we could skip searching mms once swap count went
936 * to 1, we did not mark any present ptes as dirty: must
Anderson Briglia2706a1b2007-07-15 23:38:09 -0700937 * mark page dirty so shrink_page_list will preserve it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 */
939 SetPageDirty(page);
940 unlock_page(page);
941 page_cache_release(page);
942
943 /*
944 * Make sure that we aren't completely killing
945 * interactive performance.
946 */
947 cond_resched();
948 }
949
950 mmput(start_mm);
951 if (reset_overflow) {
952 printk(KERN_WARNING "swapoff: cleared swap entry overflow\n");
953 swap_overflow = 0;
954 }
955 return retval;
956}
957
958/*
Hugh Dickins5d337b92005-09-03 15:54:41 -0700959 * After a successful try_to_unuse, if no swap is now in use, we know
960 * we can empty the mmlist. swap_lock must be held on entry and exit.
961 * Note that mmlist_lock nests inside swap_lock, and an mm must be
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 * added to the mmlist just after page_duplicate - before would be racy.
963 */
964static void drain_mmlist(void)
965{
966 struct list_head *p, *next;
967 unsigned int i;
968
969 for (i = 0; i < nr_swapfiles; i++)
970 if (swap_info[i].inuse_pages)
971 return;
972 spin_lock(&mmlist_lock);
973 list_for_each_safe(p, next, &init_mm.mmlist)
974 list_del_init(p);
975 spin_unlock(&mmlist_lock);
976}
977
978/*
979 * Use this swapdev's extent info to locate the (PAGE_SIZE) block which
980 * corresponds to page offset `offset'.
981 */
982sector_t map_swap_page(struct swap_info_struct *sis, pgoff_t offset)
983{
984 struct swap_extent *se = sis->curr_swap_extent;
985 struct swap_extent *start_se = se;
986
987 for ( ; ; ) {
988 struct list_head *lh;
989
990 if (se->start_page <= offset &&
991 offset < (se->start_page + se->nr_pages)) {
992 return se->start_block + (offset - se->start_page);
993 }
Hugh Dickins11d31882005-09-03 15:54:34 -0700994 lh = se->list.next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 if (lh == &sis->extent_list)
Hugh Dickins11d31882005-09-03 15:54:34 -0700996 lh = lh->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 se = list_entry(lh, struct swap_extent, list);
998 sis->curr_swap_extent = se;
999 BUG_ON(se == start_se); /* It *must* be present */
1000 }
1001}
1002
Rafael J. Wysockib0cb1a12007-07-29 23:24:36 +02001003#ifdef CONFIG_HIBERNATION
Rafael J. Wysocki3aef83e2006-12-06 20:34:10 -08001004/*
1005 * Get the (PAGE_SIZE) block corresponding to given offset on the swapdev
1006 * corresponding to given index in swap_info (swap type).
1007 */
1008sector_t swapdev_block(int swap_type, pgoff_t offset)
1009{
1010 struct swap_info_struct *sis;
1011
1012 if (swap_type >= nr_swapfiles)
1013 return 0;
1014
1015 sis = swap_info + swap_type;
1016 return (sis->flags & SWP_WRITEOK) ? map_swap_page(sis, offset) : 0;
1017}
Rafael J. Wysockib0cb1a12007-07-29 23:24:36 +02001018#endif /* CONFIG_HIBERNATION */
Rafael J. Wysocki3aef83e2006-12-06 20:34:10 -08001019
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020/*
1021 * Free all of a swapdev's extent information
1022 */
1023static void destroy_swap_extents(struct swap_info_struct *sis)
1024{
1025 while (!list_empty(&sis->extent_list)) {
1026 struct swap_extent *se;
1027
1028 se = list_entry(sis->extent_list.next,
1029 struct swap_extent, list);
1030 list_del(&se->list);
1031 kfree(se);
1032 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033}
1034
1035/*
1036 * Add a block range (and the corresponding page range) into this swapdev's
Hugh Dickins11d31882005-09-03 15:54:34 -07001037 * extent list. The extent list is kept sorted in page order.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 *
Hugh Dickins11d31882005-09-03 15:54:34 -07001039 * This function rather assumes that it is called in ascending page order.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 */
1041static int
1042add_swap_extent(struct swap_info_struct *sis, unsigned long start_page,
1043 unsigned long nr_pages, sector_t start_block)
1044{
1045 struct swap_extent *se;
1046 struct swap_extent *new_se;
1047 struct list_head *lh;
1048
Hugh Dickins11d31882005-09-03 15:54:34 -07001049 lh = sis->extent_list.prev; /* The highest page extent */
1050 if (lh != &sis->extent_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 se = list_entry(lh, struct swap_extent, list);
Hugh Dickins11d31882005-09-03 15:54:34 -07001052 BUG_ON(se->start_page + se->nr_pages != start_page);
1053 if (se->start_block + se->nr_pages == start_block) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 /* Merge it */
1055 se->nr_pages += nr_pages;
1056 return 0;
1057 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 }
1059
1060 /*
1061 * No merge. Insert a new extent, preserving ordering.
1062 */
1063 new_se = kmalloc(sizeof(*se), GFP_KERNEL);
1064 if (new_se == NULL)
1065 return -ENOMEM;
1066 new_se->start_page = start_page;
1067 new_se->nr_pages = nr_pages;
1068 new_se->start_block = start_block;
1069
Hugh Dickins11d31882005-09-03 15:54:34 -07001070 list_add_tail(&new_se->list, &sis->extent_list);
Hugh Dickins53092a72005-09-03 15:54:34 -07001071 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072}
1073
1074/*
1075 * A `swap extent' is a simple thing which maps a contiguous range of pages
1076 * onto a contiguous range of disk blocks. An ordered list of swap extents
1077 * is built at swapon time and is then used at swap_writepage/swap_readpage
1078 * time for locating where on disk a page belongs.
1079 *
1080 * If the swapfile is an S_ISBLK block device, a single extent is installed.
1081 * This is done so that the main operating code can treat S_ISBLK and S_ISREG
1082 * swap files identically.
1083 *
1084 * Whether the swapdev is an S_ISREG file or an S_ISBLK blockdev, the swap
1085 * extent list operates in PAGE_SIZE disk blocks. Both S_ISREG and S_ISBLK
1086 * swapfiles are handled *identically* after swapon time.
1087 *
1088 * For S_ISREG swapfiles, setup_swap_extents() will walk all the file's blocks
1089 * and will parse them into an ordered extent list, in PAGE_SIZE chunks. If
1090 * some stray blocks are found which do not fall within the PAGE_SIZE alignment
1091 * requirements, they are simply tossed out - we will never use those blocks
1092 * for swapping.
1093 *
Hugh Dickinsb0d9bcd2005-09-03 15:54:31 -07001094 * For S_ISREG swapfiles we set S_SWAPFILE across the life of the swapon. This
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 * prevents root from shooting her foot off by ftruncating an in-use swapfile,
1096 * which will scribble on the fs.
1097 *
1098 * The amount of disk space which a single swap extent represents varies.
1099 * Typically it is in the 1-4 megabyte range. So we can have hundreds of
1100 * extents in the list. To avoid much list walking, we cache the previous
1101 * search location in `curr_swap_extent', and start new searches from there.
1102 * This is extremely effective. The average number of iterations in
1103 * map_swap_page() has been measured at about 0.3 per page. - akpm.
1104 */
Hugh Dickins53092a72005-09-03 15:54:34 -07001105static int setup_swap_extents(struct swap_info_struct *sis, sector_t *span)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106{
1107 struct inode *inode;
1108 unsigned blocks_per_page;
1109 unsigned long page_no;
1110 unsigned blkbits;
1111 sector_t probe_block;
1112 sector_t last_block;
Hugh Dickins53092a72005-09-03 15:54:34 -07001113 sector_t lowest_block = -1;
1114 sector_t highest_block = 0;
1115 int nr_extents = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 int ret;
1117
1118 inode = sis->swap_file->f_mapping->host;
1119 if (S_ISBLK(inode->i_mode)) {
1120 ret = add_swap_extent(sis, 0, sis->max, 0);
Hugh Dickins53092a72005-09-03 15:54:34 -07001121 *span = sis->pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 goto done;
1123 }
1124
1125 blkbits = inode->i_blkbits;
1126 blocks_per_page = PAGE_SIZE >> blkbits;
1127
1128 /*
1129 * Map all the blocks into the extent list. This code doesn't try
1130 * to be very smart.
1131 */
1132 probe_block = 0;
1133 page_no = 0;
1134 last_block = i_size_read(inode) >> blkbits;
1135 while ((probe_block + blocks_per_page) <= last_block &&
1136 page_no < sis->max) {
1137 unsigned block_in_page;
1138 sector_t first_block;
1139
1140 first_block = bmap(inode, probe_block);
1141 if (first_block == 0)
1142 goto bad_bmap;
1143
1144 /*
1145 * It must be PAGE_SIZE aligned on-disk
1146 */
1147 if (first_block & (blocks_per_page - 1)) {
1148 probe_block++;
1149 goto reprobe;
1150 }
1151
1152 for (block_in_page = 1; block_in_page < blocks_per_page;
1153 block_in_page++) {
1154 sector_t block;
1155
1156 block = bmap(inode, probe_block + block_in_page);
1157 if (block == 0)
1158 goto bad_bmap;
1159 if (block != first_block + block_in_page) {
1160 /* Discontiguity */
1161 probe_block++;
1162 goto reprobe;
1163 }
1164 }
1165
Hugh Dickins53092a72005-09-03 15:54:34 -07001166 first_block >>= (PAGE_SHIFT - blkbits);
1167 if (page_no) { /* exclude the header page */
1168 if (first_block < lowest_block)
1169 lowest_block = first_block;
1170 if (first_block > highest_block)
1171 highest_block = first_block;
1172 }
1173
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 /*
1175 * We found a PAGE_SIZE-length, PAGE_SIZE-aligned run of blocks
1176 */
Hugh Dickins53092a72005-09-03 15:54:34 -07001177 ret = add_swap_extent(sis, page_no, 1, first_block);
1178 if (ret < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 goto out;
Hugh Dickins53092a72005-09-03 15:54:34 -07001180 nr_extents += ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 page_no++;
1182 probe_block += blocks_per_page;
1183reprobe:
1184 continue;
1185 }
Hugh Dickins53092a72005-09-03 15:54:34 -07001186 ret = nr_extents;
1187 *span = 1 + highest_block - lowest_block;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 if (page_no == 0)
Hugh Dickinse2244ec2005-09-03 15:54:32 -07001189 page_no = 1; /* force Empty message */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 sis->max = page_no;
Hugh Dickinse2244ec2005-09-03 15:54:32 -07001191 sis->pages = page_no - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 sis->highest_bit = page_no - 1;
1193done:
1194 sis->curr_swap_extent = list_entry(sis->extent_list.prev,
1195 struct swap_extent, list);
1196 goto out;
1197bad_bmap:
1198 printk(KERN_ERR "swapon: swapfile has holes\n");
1199 ret = -EINVAL;
1200out:
1201 return ret;
1202}
1203
1204#if 0 /* We don't need this yet */
1205#include <linux/backing-dev.h>
1206int page_queue_congested(struct page *page)
1207{
1208 struct backing_dev_info *bdi;
1209
Hugh Dickins51726b12009-01-06 14:39:25 -08001210 VM_BUG_ON(!PageLocked(page)); /* It pins the swap_info_struct */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211
1212 if (PageSwapCache(page)) {
Hugh Dickins4c21e2f2005-10-29 18:16:40 -07001213 swp_entry_t entry = { .val = page_private(page) };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 struct swap_info_struct *sis;
1215
1216 sis = get_swap_info_struct(swp_type(entry));
1217 bdi = sis->bdev->bd_inode->i_mapping->backing_dev_info;
1218 } else
1219 bdi = page->mapping->backing_dev_info;
1220 return bdi_write_congested(bdi);
1221}
1222#endif
1223
1224asmlinkage long sys_swapoff(const char __user * specialfile)
1225{
1226 struct swap_info_struct * p = NULL;
1227 unsigned short *swap_map;
1228 struct file *swap_file, *victim;
1229 struct address_space *mapping;
1230 struct inode *inode;
1231 char * pathname;
1232 int i, type, prev;
1233 int err;
1234
1235 if (!capable(CAP_SYS_ADMIN))
1236 return -EPERM;
1237
1238 pathname = getname(specialfile);
1239 err = PTR_ERR(pathname);
1240 if (IS_ERR(pathname))
1241 goto out;
1242
1243 victim = filp_open(pathname, O_RDWR|O_LARGEFILE, 0);
1244 putname(pathname);
1245 err = PTR_ERR(victim);
1246 if (IS_ERR(victim))
1247 goto out;
1248
1249 mapping = victim->f_mapping;
1250 prev = -1;
Hugh Dickins5d337b92005-09-03 15:54:41 -07001251 spin_lock(&swap_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 for (type = swap_list.head; type >= 0; type = swap_info[type].next) {
1253 p = swap_info + type;
1254 if ((p->flags & SWP_ACTIVE) == SWP_ACTIVE) {
1255 if (p->swap_file->f_mapping == mapping)
1256 break;
1257 }
1258 prev = type;
1259 }
1260 if (type < 0) {
1261 err = -EINVAL;
Hugh Dickins5d337b92005-09-03 15:54:41 -07001262 spin_unlock(&swap_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 goto out_dput;
1264 }
1265 if (!security_vm_enough_memory(p->pages))
1266 vm_unacct_memory(p->pages);
1267 else {
1268 err = -ENOMEM;
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 (prev < 0) {
1273 swap_list.head = p->next;
1274 } else {
1275 swap_info[prev].next = p->next;
1276 }
1277 if (type == swap_list.next) {
1278 /* just pick something that's safe... */
1279 swap_list.next = swap_list.head;
1280 }
Hugh Dickins78ecba02008-07-23 21:28:23 -07001281 if (p->prio < 0) {
1282 for (i = p->next; i >= 0; i = swap_info[i].next)
1283 swap_info[i].prio = p->prio--;
1284 least_priority++;
1285 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 nr_swap_pages -= p->pages;
1287 total_swap_pages -= p->pages;
1288 p->flags &= ~SWP_WRITEOK;
Hugh Dickins5d337b92005-09-03 15:54:41 -07001289 spin_unlock(&swap_lock);
Hugh Dickinsfb4f88d2005-09-03 15:54:37 -07001290
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 current->flags |= PF_SWAPOFF;
1292 err = try_to_unuse(type);
1293 current->flags &= ~PF_SWAPOFF;
1294
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 if (err) {
1296 /* re-insert swap space back into swap_list */
Hugh Dickins5d337b92005-09-03 15:54:41 -07001297 spin_lock(&swap_lock);
Hugh Dickins78ecba02008-07-23 21:28:23 -07001298 if (p->prio < 0)
1299 p->prio = --least_priority;
1300 prev = -1;
1301 for (i = swap_list.head; i >= 0; i = swap_info[i].next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 if (p->prio >= swap_info[i].prio)
1303 break;
Hugh Dickins78ecba02008-07-23 21:28:23 -07001304 prev = i;
1305 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 p->next = i;
1307 if (prev < 0)
1308 swap_list.head = swap_list.next = p - swap_info;
1309 else
1310 swap_info[prev].next = p - swap_info;
1311 nr_swap_pages += p->pages;
1312 total_swap_pages += p->pages;
1313 p->flags |= SWP_WRITEOK;
Hugh Dickins5d337b92005-09-03 15:54:41 -07001314 spin_unlock(&swap_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 goto out_dput;
1316 }
Hugh Dickins52b7efdb2005-09-03 15:54:39 -07001317
1318 /* wait for any unplug function to finish */
1319 down_write(&swap_unplug_sem);
1320 up_write(&swap_unplug_sem);
1321
Hugh Dickins4cd3bb12005-09-03 15:54:33 -07001322 destroy_swap_extents(p);
Ingo Molnarfc0abb12006-01-18 17:42:33 -08001323 mutex_lock(&swapon_mutex);
Hugh Dickins5d337b92005-09-03 15:54:41 -07001324 spin_lock(&swap_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 drain_mmlist();
Hugh Dickins5d337b92005-09-03 15:54:41 -07001326
1327 /* wait for anyone still in scan_swap_map */
1328 p->highest_bit = 0; /* cuts scans short */
1329 while (p->flags >= SWP_SCANNING) {
1330 spin_unlock(&swap_lock);
Nishanth Aravamudan13e4b572005-09-10 00:27:25 -07001331 schedule_timeout_uninterruptible(1);
Hugh Dickins5d337b92005-09-03 15:54:41 -07001332 spin_lock(&swap_lock);
1333 }
1334
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 swap_file = p->swap_file;
1336 p->swap_file = NULL;
1337 p->max = 0;
1338 swap_map = p->swap_map;
1339 p->swap_map = NULL;
1340 p->flags = 0;
Hugh Dickins5d337b92005-09-03 15:54:41 -07001341 spin_unlock(&swap_lock);
Ingo Molnarfc0abb12006-01-18 17:42:33 -08001342 mutex_unlock(&swapon_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 vfree(swap_map);
1344 inode = mapping->host;
1345 if (S_ISBLK(inode->i_mode)) {
1346 struct block_device *bdev = I_BDEV(inode);
1347 set_blocksize(bdev, p->old_block_size);
1348 bd_release(bdev);
1349 } else {
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001350 mutex_lock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 inode->i_flags &= ~S_SWAPFILE;
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001352 mutex_unlock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 }
1354 filp_close(swap_file, NULL);
1355 err = 0;
1356
1357out_dput:
1358 filp_close(victim, NULL);
1359out:
1360 return err;
1361}
1362
1363#ifdef CONFIG_PROC_FS
1364/* iterator */
1365static void *swap_start(struct seq_file *swap, loff_t *pos)
1366{
1367 struct swap_info_struct *ptr = swap_info;
1368 int i;
1369 loff_t l = *pos;
1370
Ingo Molnarfc0abb12006-01-18 17:42:33 -08001371 mutex_lock(&swapon_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372
Suleiman Souhlal881e4aa2006-12-06 20:32:28 -08001373 if (!l)
1374 return SEQ_START_TOKEN;
1375
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 for (i = 0; i < nr_swapfiles; i++, ptr++) {
1377 if (!(ptr->flags & SWP_USED) || !ptr->swap_map)
1378 continue;
Suleiman Souhlal881e4aa2006-12-06 20:32:28 -08001379 if (!--l)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 return ptr;
1381 }
1382
1383 return NULL;
1384}
1385
1386static void *swap_next(struct seq_file *swap, void *v, loff_t *pos)
1387{
Suleiman Souhlal881e4aa2006-12-06 20:32:28 -08001388 struct swap_info_struct *ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 struct swap_info_struct *endptr = swap_info + nr_swapfiles;
1390
Suleiman Souhlal881e4aa2006-12-06 20:32:28 -08001391 if (v == SEQ_START_TOKEN)
1392 ptr = swap_info;
1393 else {
1394 ptr = v;
1395 ptr++;
1396 }
1397
1398 for (; ptr < endptr; ptr++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 if (!(ptr->flags & SWP_USED) || !ptr->swap_map)
1400 continue;
1401 ++*pos;
1402 return ptr;
1403 }
1404
1405 return NULL;
1406}
1407
1408static void swap_stop(struct seq_file *swap, void *v)
1409{
Ingo Molnarfc0abb12006-01-18 17:42:33 -08001410 mutex_unlock(&swapon_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411}
1412
1413static int swap_show(struct seq_file *swap, void *v)
1414{
1415 struct swap_info_struct *ptr = v;
1416 struct file *file;
1417 int len;
1418
Suleiman Souhlal881e4aa2006-12-06 20:32:28 -08001419 if (ptr == SEQ_START_TOKEN) {
1420 seq_puts(swap,"Filename\t\t\t\tType\t\tSize\tUsed\tPriority\n");
1421 return 0;
1422 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423
1424 file = ptr->swap_file;
Jan Blunckc32c2f62008-02-14 19:38:43 -08001425 len = seq_path(swap, &file->f_path, " \t\n\\");
Hugh Dickins6eb396d2005-09-03 15:54:35 -07001426 seq_printf(swap, "%*s%s\t%u\t%u\t%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 len < 40 ? 40 - len : 1, " ",
Josef "Jeff" Sipekd3ac7f82006-12-08 02:36:44 -08001428 S_ISBLK(file->f_path.dentry->d_inode->i_mode) ?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 "partition" : "file\t",
1430 ptr->pages << (PAGE_SHIFT - 10),
1431 ptr->inuse_pages << (PAGE_SHIFT - 10),
1432 ptr->prio);
1433 return 0;
1434}
1435
Helge Deller15ad7cd2006-12-06 20:40:36 -08001436static const struct seq_operations swaps_op = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 .start = swap_start,
1438 .next = swap_next,
1439 .stop = swap_stop,
1440 .show = swap_show
1441};
1442
1443static int swaps_open(struct inode *inode, struct file *file)
1444{
1445 return seq_open(file, &swaps_op);
1446}
1447
Helge Deller15ad7cd2006-12-06 20:40:36 -08001448static const struct file_operations proc_swaps_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 .open = swaps_open,
1450 .read = seq_read,
1451 .llseek = seq_lseek,
1452 .release = seq_release,
1453};
1454
1455static int __init procswaps_init(void)
1456{
Denis V. Lunev3d71f862008-04-29 01:02:13 -07001457 proc_create("swaps", 0, NULL, &proc_swaps_operations);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 return 0;
1459}
1460__initcall(procswaps_init);
1461#endif /* CONFIG_PROC_FS */
1462
Jan Beulich17963162008-12-16 11:35:24 +00001463#ifdef MAX_SWAPFILES_CHECK
1464static int __init max_swapfiles_check(void)
1465{
1466 MAX_SWAPFILES_CHECK();
1467 return 0;
1468}
1469late_initcall(max_swapfiles_check);
1470#endif
1471
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472/*
1473 * Written 01/25/92 by Simmule Turner, heavily changed by Linus.
1474 *
1475 * The swapon system call
1476 */
1477asmlinkage long sys_swapon(const char __user * specialfile, int swap_flags)
1478{
1479 struct swap_info_struct * p;
1480 char *name = NULL;
1481 struct block_device *bdev = NULL;
1482 struct file *swap_file = NULL;
1483 struct address_space *mapping;
1484 unsigned int type;
1485 int i, prev;
1486 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 union swap_header *swap_header = NULL;
1488 int swap_header_version;
Hugh Dickins6eb396d2005-09-03 15:54:35 -07001489 unsigned int nr_good_pages = 0;
1490 int nr_extents = 0;
Hugh Dickins53092a72005-09-03 15:54:34 -07001491 sector_t span;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 unsigned long maxpages = 1;
1493 int swapfilesize;
Hugh Dickins78ecba02008-07-23 21:28:23 -07001494 unsigned short *swap_map = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 struct page *page = NULL;
1496 struct inode *inode = NULL;
1497 int did_down = 0;
1498
1499 if (!capable(CAP_SYS_ADMIN))
1500 return -EPERM;
Hugh Dickins5d337b92005-09-03 15:54:41 -07001501 spin_lock(&swap_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 p = swap_info;
1503 for (type = 0 ; type < nr_swapfiles ; type++,p++)
1504 if (!(p->flags & SWP_USED))
1505 break;
1506 error = -EPERM;
Christoph Lameter06972122006-06-23 02:03:35 -07001507 if (type >= MAX_SWAPFILES) {
Hugh Dickins5d337b92005-09-03 15:54:41 -07001508 spin_unlock(&swap_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509 goto out;
1510 }
1511 if (type >= nr_swapfiles)
1512 nr_swapfiles = type+1;
Hugh Dickins78ecba02008-07-23 21:28:23 -07001513 memset(p, 0, sizeof(*p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 INIT_LIST_HEAD(&p->extent_list);
1515 p->flags = SWP_USED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 p->next = -1;
Hugh Dickins5d337b92005-09-03 15:54:41 -07001517 spin_unlock(&swap_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 name = getname(specialfile);
1519 error = PTR_ERR(name);
1520 if (IS_ERR(name)) {
1521 name = NULL;
1522 goto bad_swap_2;
1523 }
1524 swap_file = filp_open(name, O_RDWR|O_LARGEFILE, 0);
1525 error = PTR_ERR(swap_file);
1526 if (IS_ERR(swap_file)) {
1527 swap_file = NULL;
1528 goto bad_swap_2;
1529 }
1530
1531 p->swap_file = swap_file;
1532 mapping = swap_file->f_mapping;
1533 inode = mapping->host;
1534
1535 error = -EBUSY;
1536 for (i = 0; i < nr_swapfiles; i++) {
1537 struct swap_info_struct *q = &swap_info[i];
1538
1539 if (i == type || !q->swap_file)
1540 continue;
1541 if (mapping == q->swap_file->f_mapping)
1542 goto bad_swap;
1543 }
1544
1545 error = -EINVAL;
1546 if (S_ISBLK(inode->i_mode)) {
1547 bdev = I_BDEV(inode);
1548 error = bd_claim(bdev, sys_swapon);
1549 if (error < 0) {
1550 bdev = NULL;
Rob Landleyf7b3a432005-09-22 21:44:27 -07001551 error = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 goto bad_swap;
1553 }
1554 p->old_block_size = block_size(bdev);
1555 error = set_blocksize(bdev, PAGE_SIZE);
1556 if (error < 0)
1557 goto bad_swap;
1558 p->bdev = bdev;
1559 } else if (S_ISREG(inode->i_mode)) {
1560 p->bdev = inode->i_sb->s_bdev;
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001561 mutex_lock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562 did_down = 1;
1563 if (IS_SWAPFILE(inode)) {
1564 error = -EBUSY;
1565 goto bad_swap;
1566 }
1567 } else {
1568 goto bad_swap;
1569 }
1570
1571 swapfilesize = i_size_read(inode) >> PAGE_SHIFT;
1572
1573 /*
1574 * Read the swap header.
1575 */
1576 if (!mapping->a_ops->readpage) {
1577 error = -EINVAL;
1578 goto bad_swap;
1579 }
Pekka Enberg090d2b12006-06-23 02:05:08 -07001580 page = read_mapping_page(mapping, 0, swap_file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 if (IS_ERR(page)) {
1582 error = PTR_ERR(page);
1583 goto bad_swap;
1584 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 kmap(page);
1586 swap_header = page_address(page);
1587
1588 if (!memcmp("SWAP-SPACE",swap_header->magic.magic,10))
1589 swap_header_version = 1;
1590 else if (!memcmp("SWAPSPACE2",swap_header->magic.magic,10))
1591 swap_header_version = 2;
1592 else {
Jesper Juhle97a3112006-01-11 01:50:28 +01001593 printk(KERN_ERR "Unable to find swap-space signature\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 error = -EINVAL;
1595 goto bad_swap;
1596 }
1597
1598 switch (swap_header_version) {
1599 case 1:
1600 printk(KERN_ERR "version 0 swap is no longer supported. "
1601 "Use mkswap -v1 %s\n", name);
1602 error = -EINVAL;
1603 goto bad_swap;
1604 case 2:
Chris Dearman797df572008-04-28 02:12:19 -07001605 /* swap partition endianess hack... */
1606 if (swab32(swap_header->info.version) == 1) {
1607 swab32s(&swap_header->info.version);
1608 swab32s(&swap_header->info.last_page);
1609 swab32s(&swap_header->info.nr_badpages);
1610 for (i = 0; i < swap_header->info.nr_badpages; i++)
1611 swab32s(&swap_header->info.badpages[i]);
1612 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 /* Check the swap header's sub-version and the size of
1614 the swap file and bad block lists */
1615 if (swap_header->info.version != 1) {
1616 printk(KERN_WARNING
1617 "Unable to handle swap header version %d\n",
1618 swap_header->info.version);
1619 error = -EINVAL;
1620 goto bad_swap;
1621 }
1622
1623 p->lowest_bit = 1;
Hugh Dickins52b7efdb2005-09-03 15:54:39 -07001624 p->cluster_next = 1;
1625
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 /*
1627 * Find out how many pages are allowed for a single swap
1628 * device. There are two limiting factors: 1) the number of
1629 * bits for the swap offset in the swp_entry_t type and
1630 * 2) the number of bits in the a swap pte as defined by
1631 * the different architectures. In order to find the
1632 * largest possible bit mask a swap entry with swap type 0
1633 * and swap offset ~0UL is created, encoded to a swap pte,
1634 * decoded to a swp_entry_t again and finally the swap
1635 * offset is extracted. This will mask all the bits from
1636 * the initial ~0UL mask that can't be encoded in either
1637 * the swp_entry_t or the architecture definition of a
1638 * swap pte.
1639 */
1640 maxpages = swp_offset(pte_to_swp_entry(swp_entry_to_pte(swp_entry(0,~0UL)))) - 1;
1641 if (maxpages > swap_header->info.last_page)
1642 maxpages = swap_header->info.last_page;
1643 p->highest_bit = maxpages - 1;
1644
1645 error = -EINVAL;
Hugh Dickinse2244ec2005-09-03 15:54:32 -07001646 if (!maxpages)
1647 goto bad_swap;
Eric Sandeen5d1854e2006-12-06 20:33:06 -08001648 if (swapfilesize && maxpages > swapfilesize) {
1649 printk(KERN_WARNING
1650 "Swap area shorter than signature indicates\n");
1651 goto bad_swap;
1652 }
Hugh Dickinse2244ec2005-09-03 15:54:32 -07001653 if (swap_header->info.nr_badpages && S_ISREG(inode->i_mode))
1654 goto bad_swap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 if (swap_header->info.nr_badpages > MAX_SWAP_BADPAGES)
1656 goto bad_swap;
Tobias Klausercd105df2006-01-08 01:00:59 -08001657
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 /* OK, set up the swap map and apply the bad block list */
Hugh Dickins78ecba02008-07-23 21:28:23 -07001659 swap_map = vmalloc(maxpages * sizeof(short));
1660 if (!swap_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 error = -ENOMEM;
1662 goto bad_swap;
1663 }
1664
1665 error = 0;
Hugh Dickins78ecba02008-07-23 21:28:23 -07001666 memset(swap_map, 0, maxpages * sizeof(short));
Tobias Klausercd105df2006-01-08 01:00:59 -08001667 for (i = 0; i < swap_header->info.nr_badpages; i++) {
1668 int page_nr = swap_header->info.badpages[i];
1669 if (page_nr <= 0 || page_nr >= swap_header->info.last_page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 error = -EINVAL;
1671 else
Hugh Dickins78ecba02008-07-23 21:28:23 -07001672 swap_map[page_nr] = SWAP_MAP_BAD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 }
1674 nr_good_pages = swap_header->info.last_page -
1675 swap_header->info.nr_badpages -
1676 1 /* header page */;
Tobias Klausercd105df2006-01-08 01:00:59 -08001677 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 goto bad_swap;
1679 }
Hugh Dickinse2244ec2005-09-03 15:54:32 -07001680
Hugh Dickinse2244ec2005-09-03 15:54:32 -07001681 if (nr_good_pages) {
Hugh Dickins78ecba02008-07-23 21:28:23 -07001682 swap_map[0] = SWAP_MAP_BAD;
Hugh Dickinse2244ec2005-09-03 15:54:32 -07001683 p->max = maxpages;
1684 p->pages = nr_good_pages;
Hugh Dickins53092a72005-09-03 15:54:34 -07001685 nr_extents = setup_swap_extents(p, &span);
1686 if (nr_extents < 0) {
1687 error = nr_extents;
Hugh Dickinse2244ec2005-09-03 15:54:32 -07001688 goto bad_swap;
Hugh Dickins53092a72005-09-03 15:54:34 -07001689 }
Hugh Dickinse2244ec2005-09-03 15:54:32 -07001690 nr_good_pages = p->pages;
1691 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 if (!nr_good_pages) {
1693 printk(KERN_WARNING "Empty swap-file\n");
1694 error = -EINVAL;
1695 goto bad_swap;
1696 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697
Ingo Molnarfc0abb12006-01-18 17:42:33 -08001698 mutex_lock(&swapon_mutex);
Hugh Dickins5d337b92005-09-03 15:54:41 -07001699 spin_lock(&swap_lock);
Hugh Dickins78ecba02008-07-23 21:28:23 -07001700 if (swap_flags & SWAP_FLAG_PREFER)
1701 p->prio =
1702 (swap_flags & SWAP_FLAG_PRIO_MASK) >> SWAP_FLAG_PRIO_SHIFT;
1703 else
1704 p->prio = --least_priority;
1705 p->swap_map = swap_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 p->flags = SWP_ACTIVE;
1707 nr_swap_pages += nr_good_pages;
1708 total_swap_pages += nr_good_pages;
Hugh Dickins53092a72005-09-03 15:54:34 -07001709
Hugh Dickins6eb396d2005-09-03 15:54:35 -07001710 printk(KERN_INFO "Adding %uk swap on %s. "
Hugh Dickins53092a72005-09-03 15:54:34 -07001711 "Priority:%d extents:%d across:%lluk\n",
1712 nr_good_pages<<(PAGE_SHIFT-10), name, p->prio,
1713 nr_extents, (unsigned long long)span<<(PAGE_SHIFT-10));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714
1715 /* insert swap space into swap_list: */
1716 prev = -1;
1717 for (i = swap_list.head; i >= 0; i = swap_info[i].next) {
1718 if (p->prio >= swap_info[i].prio) {
1719 break;
1720 }
1721 prev = i;
1722 }
1723 p->next = i;
1724 if (prev < 0) {
1725 swap_list.head = swap_list.next = p - swap_info;
1726 } else {
1727 swap_info[prev].next = p - swap_info;
1728 }
Hugh Dickins5d337b92005-09-03 15:54:41 -07001729 spin_unlock(&swap_lock);
Ingo Molnarfc0abb12006-01-18 17:42:33 -08001730 mutex_unlock(&swapon_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 error = 0;
1732 goto out;
1733bad_swap:
1734 if (bdev) {
1735 set_blocksize(bdev, p->old_block_size);
1736 bd_release(bdev);
1737 }
Hugh Dickins4cd3bb12005-09-03 15:54:33 -07001738 destroy_swap_extents(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739bad_swap_2:
Hugh Dickins5d337b92005-09-03 15:54:41 -07001740 spin_lock(&swap_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 p->swap_file = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 p->flags = 0;
Hugh Dickins5d337b92005-09-03 15:54:41 -07001743 spin_unlock(&swap_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744 vfree(swap_map);
1745 if (swap_file)
1746 filp_close(swap_file, NULL);
1747out:
1748 if (page && !IS_ERR(page)) {
1749 kunmap(page);
1750 page_cache_release(page);
1751 }
1752 if (name)
1753 putname(name);
1754 if (did_down) {
1755 if (!error)
1756 inode->i_flags |= S_SWAPFILE;
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001757 mutex_unlock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 }
1759 return error;
1760}
1761
1762void si_swapinfo(struct sysinfo *val)
1763{
1764 unsigned int i;
1765 unsigned long nr_to_be_unused = 0;
1766
Hugh Dickins5d337b92005-09-03 15:54:41 -07001767 spin_lock(&swap_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 for (i = 0; i < nr_swapfiles; i++) {
1769 if (!(swap_info[i].flags & SWP_USED) ||
1770 (swap_info[i].flags & SWP_WRITEOK))
1771 continue;
1772 nr_to_be_unused += swap_info[i].inuse_pages;
1773 }
1774 val->freeswap = nr_swap_pages + nr_to_be_unused;
1775 val->totalswap = total_swap_pages + nr_to_be_unused;
Hugh Dickins5d337b92005-09-03 15:54:41 -07001776 spin_unlock(&swap_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777}
1778
1779/*
1780 * Verify that a swap entry is valid and increment its swap map count.
1781 *
1782 * Note: if swap_map[] reaches SWAP_MAP_MAX the entries are treated as
1783 * "permanent", but will be reclaimed by the next swapoff.
1784 */
1785int swap_duplicate(swp_entry_t entry)
1786{
1787 struct swap_info_struct * p;
1788 unsigned long offset, type;
1789 int result = 0;
1790
Christoph Lameter06972122006-06-23 02:03:35 -07001791 if (is_migration_entry(entry))
1792 return 1;
1793
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794 type = swp_type(entry);
1795 if (type >= nr_swapfiles)
1796 goto bad_file;
1797 p = type + swap_info;
1798 offset = swp_offset(entry);
1799
Hugh Dickins5d337b92005-09-03 15:54:41 -07001800 spin_lock(&swap_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 if (offset < p->max && p->swap_map[offset]) {
1802 if (p->swap_map[offset] < SWAP_MAP_MAX - 1) {
1803 p->swap_map[offset]++;
1804 result = 1;
1805 } else if (p->swap_map[offset] <= SWAP_MAP_MAX) {
1806 if (swap_overflow++ < 5)
1807 printk(KERN_WARNING "swap_dup: swap entry overflow\n");
1808 p->swap_map[offset] = SWAP_MAP_MAX;
1809 result = 1;
1810 }
1811 }
Hugh Dickins5d337b92005-09-03 15:54:41 -07001812 spin_unlock(&swap_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813out:
1814 return result;
1815
1816bad_file:
1817 printk(KERN_ERR "swap_dup: %s%08lx\n", Bad_file, entry.val);
1818 goto out;
1819}
1820
1821struct swap_info_struct *
1822get_swap_info_struct(unsigned type)
1823{
1824 return &swap_info[type];
1825}
1826
1827/*
Hugh Dickins5d337b92005-09-03 15:54:41 -07001828 * swap_lock prevents swap_map being freed. Don't grab an extra
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 * reference on the swaphandle, it doesn't matter if it becomes unused.
1830 */
1831int valid_swaphandles(swp_entry_t entry, unsigned long *offset)
1832{
Hugh Dickins89528982008-02-04 22:28:45 -08001833 struct swap_info_struct *si;
Hugh Dickins3f9e7942006-09-29 02:01:26 -07001834 int our_page_cluster = page_cluster;
Hugh Dickins89528982008-02-04 22:28:45 -08001835 pgoff_t target, toff;
1836 pgoff_t base, end;
1837 int nr_pages = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838
Hugh Dickins3f9e7942006-09-29 02:01:26 -07001839 if (!our_page_cluster) /* no readahead */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840 return 0;
Hugh Dickins89528982008-02-04 22:28:45 -08001841
1842 si = &swap_info[swp_type(entry)];
1843 target = swp_offset(entry);
1844 base = (target >> our_page_cluster) << our_page_cluster;
1845 end = base + (1 << our_page_cluster);
1846 if (!base) /* first page is swap header */
1847 base++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848
Hugh Dickins5d337b92005-09-03 15:54:41 -07001849 spin_lock(&swap_lock);
Hugh Dickins89528982008-02-04 22:28:45 -08001850 if (end > si->max) /* don't go beyond end of map */
1851 end = si->max;
1852
1853 /* Count contiguous allocated slots above our target */
1854 for (toff = target; ++toff < end; nr_pages++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855 /* Don't read in free or bad pages */
Hugh Dickins89528982008-02-04 22:28:45 -08001856 if (!si->swap_map[toff])
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857 break;
Hugh Dickins89528982008-02-04 22:28:45 -08001858 if (si->swap_map[toff] == SWAP_MAP_BAD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859 break;
Hugh Dickins89528982008-02-04 22:28:45 -08001860 }
1861 /* Count contiguous allocated slots below our target */
1862 for (toff = target; --toff >= base; nr_pages++) {
1863 /* Don't read in free or bad pages */
1864 if (!si->swap_map[toff])
1865 break;
1866 if (si->swap_map[toff] == SWAP_MAP_BAD)
1867 break;
1868 }
Hugh Dickins5d337b92005-09-03 15:54:41 -07001869 spin_unlock(&swap_lock);
Hugh Dickins89528982008-02-04 22:28:45 -08001870
1871 /*
1872 * Indicate starting offset, and return number of pages to get:
1873 * if only 1, say 0, since there's then no readahead to be done.
1874 */
1875 *offset = ++toff;
1876 return nr_pages? ++nr_pages: 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877}