blob: e132e1708acc94b9a62f75c891865b43a96d2c71 [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>
Hugh Dickins20137a42009-01-06 14:39:54 -080019#include <linux/random.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/writeback.h>
21#include <linux/proc_fs.h>
22#include <linux/seq_file.h>
23#include <linux/init.h>
24#include <linux/module.h>
Hugh Dickins5ad64682009-12-14 17:59:24 -080025#include <linux/ksm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/rmap.h>
27#include <linux/security.h>
28#include <linux/backing-dev.h>
Ingo Molnarfc0abb12006-01-18 17:42:33 -080029#include <linux/mutex.h>
Randy.Dunlapc59ede72006-01-11 12:17:46 -080030#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/syscalls.h>
Balbir Singh8a9f3cc2008-02-07 00:13:53 -080032#include <linux/memcontrol.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
34#include <asm/pgtable.h>
35#include <asm/tlbflush.h>
36#include <linux/swapops.h>
KAMEZAWA Hiroyuki27a7faa2009-01-07 18:07:58 -080037#include <linux/page_cgroup.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
Hugh Dickins570a335b2009-12-14 17:58:46 -080039static bool swap_count_continued(struct swap_info_struct *, pgoff_t,
40 unsigned char);
41static void free_swap_count_continuations(struct swap_info_struct *);
Lee Schermerhornd4906e12009-12-14 17:58:49 -080042static sector_t map_swap_entry(swp_entry_t, struct block_device**);
Hugh Dickins570a335b2009-12-14 17:58:46 -080043
Adrian Bunk7c363b82008-07-25 19:46:24 -070044static DEFINE_SPINLOCK(swap_lock);
45static unsigned int nr_swapfiles;
Hugh Dickinsb9627162009-01-06 14:39:41 -080046long nr_swap_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -070047long total_swap_pages;
Hugh Dickins78ecba02008-07-23 21:28:23 -070048static int least_priority;
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
KAMEZAWA Hiroyukid2997b12010-08-09 17:20:11 -070050static bool swap_for_hibernation;
51
Linus Torvalds1da177e2005-04-16 15:20:36 -070052static const char Bad_file[] = "Bad swap file entry ";
53static const char Unused_file[] = "Unused swap file entry ";
54static const char Bad_offset[] = "Bad swap offset entry ";
55static const char Unused_offset[] = "Unused swap offset entry ";
56
Adrian Bunk7c363b82008-07-25 19:46:24 -070057static struct swap_list_t swap_list = {-1, -1};
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
Hugh Dickinsefa90a92009-12-14 17:58:41 -080059static struct swap_info_struct *swap_info[MAX_SWAPFILES];
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
Ingo Molnarfc0abb12006-01-18 17:42:33 -080061static DEFINE_MUTEX(swapon_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
Hugh Dickins8d69aae2009-12-14 17:58:45 -080063static inline unsigned char swap_count(unsigned char ent)
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -070064{
Hugh Dickins570a335b2009-12-14 17:58:46 -080065 return ent & ~SWAP_HAS_CACHE; /* may include SWAP_HAS_CONT flag */
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -070066}
67
Hugh Dickinsefa90a92009-12-14 17:58:41 -080068/* returns 1 if swap entry is freed */
KAMEZAWA Hiroyukic9e44412009-06-16 15:32:54 -070069static int
70__try_to_reclaim_swap(struct swap_info_struct *si, unsigned long offset)
71{
Hugh Dickinsefa90a92009-12-14 17:58:41 -080072 swp_entry_t entry = swp_entry(si->type, offset);
KAMEZAWA Hiroyukic9e44412009-06-16 15:32:54 -070073 struct page *page;
74 int ret = 0;
75
76 page = find_get_page(&swapper_space, entry.val);
77 if (!page)
78 return 0;
79 /*
80 * This function is called from scan_swap_map() and it's called
81 * by vmscan.c at reclaiming pages. So, we hold a lock on a page, here.
82 * We have to use trylock for avoiding deadlock. This is a special
83 * case and you should use try_to_free_swap() with explicit lock_page()
84 * in usual operations.
85 */
86 if (trylock_page(page)) {
87 ret = try_to_free_swap(page);
88 unlock_page(page);
89 }
90 page_cache_release(page);
91 return ret;
92}
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -070093
Linus Torvalds1da177e2005-04-16 15:20:36 -070094/*
95 * We need this because the bdev->unplug_fn can sleep and we cannot
Hugh Dickins5d337b92005-09-03 15:54:41 -070096 * hold swap_lock while calling the unplug_fn. And swap_lock
Ingo Molnarfc0abb12006-01-18 17:42:33 -080097 * cannot be turned into a mutex.
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 */
99static DECLARE_RWSEM(swap_unplug_sem);
100
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101void swap_unplug_io_fn(struct backing_dev_info *unused_bdi, struct page *page)
102{
103 swp_entry_t entry;
104
105 down_read(&swap_unplug_sem);
Hugh Dickins4c21e2f2005-10-29 18:16:40 -0700106 entry.val = page_private(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 if (PageSwapCache(page)) {
Hugh Dickinsefa90a92009-12-14 17:58:41 -0800108 struct block_device *bdev = swap_info[swp_type(entry)]->bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 struct backing_dev_info *bdi;
110
111 /*
112 * If the page is removed from swapcache from under us (with a
113 * racy try_to_unuse/swapoff) we need an additional reference
Hugh Dickins4c21e2f2005-10-29 18:16:40 -0700114 * count to avoid reading garbage from page_private(page) above.
115 * If the WARN_ON triggers during a swapoff it maybe the race
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 * condition and it's harmless. However if it triggers without
117 * swapoff it signals a problem.
118 */
119 WARN_ON(page_count(page) <= 1);
120
121 bdi = bdev->bd_inode->i_mapping->backing_dev_info;
McMullan, Jasonba323112005-05-16 21:53:40 -0700122 blk_run_backing_dev(bdi, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 }
124 up_read(&swap_unplug_sem);
125}
126
Hugh Dickins6a6ba832009-01-06 14:39:51 -0800127/*
128 * swapon tell device that all the old swap contents can be discarded,
129 * to allow the swap device to optimize its wear-levelling.
130 */
131static int discard_swap(struct swap_info_struct *si)
132{
133 struct swap_extent *se;
Hugh Dickins9625a5f2009-12-14 17:58:42 -0800134 sector_t start_block;
135 sector_t nr_blocks;
Hugh Dickins6a6ba832009-01-06 14:39:51 -0800136 int err = 0;
137
Hugh Dickins9625a5f2009-12-14 17:58:42 -0800138 /* Do not discard the swap header page! */
139 se = &si->first_swap_extent;
140 start_block = (se->start_block + 1) << (PAGE_SHIFT - 9);
141 nr_blocks = ((sector_t)se->nr_pages - 1) << (PAGE_SHIFT - 9);
142 if (nr_blocks) {
143 err = blkdev_issue_discard(si->bdev, start_block,
Christoph Hellwigdd3932e2010-09-16 20:51:46 +0200144 nr_blocks, GFP_KERNEL, 0);
Hugh Dickins9625a5f2009-12-14 17:58:42 -0800145 if (err)
146 return err;
147 cond_resched();
148 }
Hugh Dickins6a6ba832009-01-06 14:39:51 -0800149
Hugh Dickins9625a5f2009-12-14 17:58:42 -0800150 list_for_each_entry(se, &si->first_swap_extent.list, list) {
151 start_block = se->start_block << (PAGE_SHIFT - 9);
152 nr_blocks = (sector_t)se->nr_pages << (PAGE_SHIFT - 9);
Hugh Dickins6a6ba832009-01-06 14:39:51 -0800153
154 err = blkdev_issue_discard(si->bdev, start_block,
Christoph Hellwigdd3932e2010-09-16 20:51:46 +0200155 nr_blocks, GFP_KERNEL, 0);
Hugh Dickins6a6ba832009-01-06 14:39:51 -0800156 if (err)
157 break;
158
159 cond_resched();
160 }
161 return err; /* That will often be -EOPNOTSUPP */
162}
163
Hugh Dickins7992fde2009-01-06 14:39:53 -0800164/*
165 * swap allocation tell device that a cluster of swap can now be discarded,
166 * to allow the swap device to optimize its wear-levelling.
167 */
168static void discard_swap_cluster(struct swap_info_struct *si,
169 pgoff_t start_page, pgoff_t nr_pages)
170{
171 struct swap_extent *se = si->curr_swap_extent;
172 int found_extent = 0;
173
174 while (nr_pages) {
175 struct list_head *lh;
176
177 if (se->start_page <= start_page &&
178 start_page < se->start_page + se->nr_pages) {
179 pgoff_t offset = start_page - se->start_page;
180 sector_t start_block = se->start_block + offset;
Hugh Dickins858a29902009-01-06 14:39:56 -0800181 sector_t nr_blocks = se->nr_pages - offset;
Hugh Dickins7992fde2009-01-06 14:39:53 -0800182
183 if (nr_blocks > nr_pages)
184 nr_blocks = nr_pages;
185 start_page += nr_blocks;
186 nr_pages -= nr_blocks;
187
188 if (!found_extent++)
189 si->curr_swap_extent = se;
190
191 start_block <<= PAGE_SHIFT - 9;
192 nr_blocks <<= PAGE_SHIFT - 9;
193 if (blkdev_issue_discard(si->bdev, start_block,
Christoph Hellwigdd3932e2010-09-16 20:51:46 +0200194 nr_blocks, GFP_NOIO, 0))
Hugh Dickins7992fde2009-01-06 14:39:53 -0800195 break;
196 }
197
198 lh = se->list.next;
Hugh Dickins7992fde2009-01-06 14:39:53 -0800199 se = list_entry(lh, struct swap_extent, list);
200 }
201}
202
203static int wait_for_discard(void *word)
204{
205 schedule();
206 return 0;
207}
208
Hugh Dickins048c27f2005-09-03 15:54:40 -0700209#define SWAPFILE_CLUSTER 256
210#define LATENCY_LIMIT 256
211
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -0700212static inline unsigned long scan_swap_map(struct swap_info_struct *si,
Hugh Dickins8d69aae2009-12-14 17:58:45 -0800213 unsigned char usage)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214{
Hugh Dickinsebebbbe2009-01-06 14:39:50 -0800215 unsigned long offset;
Hugh Dickinsc60aa172009-01-06 14:39:55 -0800216 unsigned long scan_base;
Hugh Dickins7992fde2009-01-06 14:39:53 -0800217 unsigned long last_in_cluster = 0;
Hugh Dickins048c27f2005-09-03 15:54:40 -0700218 int latency_ration = LATENCY_LIMIT;
Hugh Dickins7992fde2009-01-06 14:39:53 -0800219 int found_free_cluster = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
Hugh Dickins886bb7e2009-01-06 14:39:48 -0800221 /*
Hugh Dickins7dfad412005-09-03 15:54:38 -0700222 * We try to cluster swap pages by allocating them sequentially
223 * in swap. Once we've allocated SWAPFILE_CLUSTER pages this
224 * way, however, we resort to first-free allocation, starting
225 * a new cluster. This prevents us from scattering swap pages
226 * all over the entire swap partition, so that we reduce
227 * overall disk seek times between swap pages. -- sct
228 * But we do now try to find an empty cluster. -Andrea
Hugh Dickinsc60aa172009-01-06 14:39:55 -0800229 * And we let swap pages go all over an SSD partition. Hugh
Hugh Dickins7dfad412005-09-03 15:54:38 -0700230 */
231
Hugh Dickins52b7efdb2005-09-03 15:54:39 -0700232 si->flags += SWP_SCANNING;
Hugh Dickinsc60aa172009-01-06 14:39:55 -0800233 scan_base = offset = si->cluster_next;
Hugh Dickinsebebbbe2009-01-06 14:39:50 -0800234
235 if (unlikely(!si->cluster_nr--)) {
236 if (si->pages - si->inuse_pages < SWAPFILE_CLUSTER) {
237 si->cluster_nr = SWAPFILE_CLUSTER - 1;
238 goto checks;
239 }
Hugh Dickins7992fde2009-01-06 14:39:53 -0800240 if (si->flags & SWP_DISCARDABLE) {
241 /*
242 * Start range check on racing allocations, in case
243 * they overlap the cluster we eventually decide on
244 * (we scan without swap_lock to allow preemption).
245 * It's hardly conceivable that cluster_nr could be
246 * wrapped during our scan, but don't depend on it.
247 */
248 if (si->lowest_alloc)
249 goto checks;
250 si->lowest_alloc = si->max;
251 si->highest_alloc = 0;
252 }
Hugh Dickins5d337b92005-09-03 15:54:41 -0700253 spin_unlock(&swap_lock);
Hugh Dickins7dfad412005-09-03 15:54:38 -0700254
Hugh Dickinsc60aa172009-01-06 14:39:55 -0800255 /*
256 * If seek is expensive, start searching for new cluster from
257 * start of partition, to minimize the span of allocated swap.
258 * But if seek is cheap, search from our current position, so
259 * that swap is allocated from all over the partition: if the
260 * Flash Translation Layer only remaps within limited zones,
261 * we don't want to wear out the first zone too quickly.
262 */
263 if (!(si->flags & SWP_SOLIDSTATE))
264 scan_base = offset = si->lowest_bit;
Hugh Dickins7dfad412005-09-03 15:54:38 -0700265 last_in_cluster = offset + SWAPFILE_CLUSTER - 1;
266
267 /* Locate the first empty (unaligned) cluster */
268 for (; last_in_cluster <= si->highest_bit; offset++) {
269 if (si->swap_map[offset])
270 last_in_cluster = offset + SWAPFILE_CLUSTER;
271 else if (offset == last_in_cluster) {
Hugh Dickins5d337b92005-09-03 15:54:41 -0700272 spin_lock(&swap_lock);
Hugh Dickinsebebbbe2009-01-06 14:39:50 -0800273 offset -= SWAPFILE_CLUSTER - 1;
274 si->cluster_next = offset;
275 si->cluster_nr = SWAPFILE_CLUSTER - 1;
Hugh Dickins7992fde2009-01-06 14:39:53 -0800276 found_free_cluster = 1;
Hugh Dickinsebebbbe2009-01-06 14:39:50 -0800277 goto checks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 }
Hugh Dickins048c27f2005-09-03 15:54:40 -0700279 if (unlikely(--latency_ration < 0)) {
280 cond_resched();
281 latency_ration = LATENCY_LIMIT;
282 }
Hugh Dickins7dfad412005-09-03 15:54:38 -0700283 }
Hugh Dickinsebebbbe2009-01-06 14:39:50 -0800284
285 offset = si->lowest_bit;
Hugh Dickinsc60aa172009-01-06 14:39:55 -0800286 last_in_cluster = offset + SWAPFILE_CLUSTER - 1;
287
288 /* Locate the first empty (unaligned) cluster */
289 for (; last_in_cluster < scan_base; offset++) {
290 if (si->swap_map[offset])
291 last_in_cluster = offset + SWAPFILE_CLUSTER;
292 else if (offset == last_in_cluster) {
293 spin_lock(&swap_lock);
294 offset -= SWAPFILE_CLUSTER - 1;
295 si->cluster_next = offset;
296 si->cluster_nr = SWAPFILE_CLUSTER - 1;
297 found_free_cluster = 1;
298 goto checks;
299 }
300 if (unlikely(--latency_ration < 0)) {
301 cond_resched();
302 latency_ration = LATENCY_LIMIT;
303 }
304 }
305
306 offset = scan_base;
Hugh Dickins5d337b92005-09-03 15:54:41 -0700307 spin_lock(&swap_lock);
Hugh Dickinsebebbbe2009-01-06 14:39:50 -0800308 si->cluster_nr = SWAPFILE_CLUSTER - 1;
Hugh Dickins7992fde2009-01-06 14:39:53 -0800309 si->lowest_alloc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 }
Hugh Dickins7dfad412005-09-03 15:54:38 -0700311
Hugh Dickinsebebbbe2009-01-06 14:39:50 -0800312checks:
313 if (!(si->flags & SWP_WRITEOK))
Hugh Dickins52b7efdb2005-09-03 15:54:39 -0700314 goto no_page;
Hugh Dickins7dfad412005-09-03 15:54:38 -0700315 if (!si->highest_bit)
316 goto no_page;
Hugh Dickinsebebbbe2009-01-06 14:39:50 -0800317 if (offset > si->highest_bit)
Hugh Dickinsc60aa172009-01-06 14:39:55 -0800318 scan_base = offset = si->lowest_bit;
KAMEZAWA Hiroyukic9e44412009-06-16 15:32:54 -0700319
KAMEZAWA Hiroyuki966cca022010-08-09 17:20:09 -0700320 /* reuse swap entry of cache-only swap if not hibernation. */
321 if (vm_swap_full()
322 && usage == SWAP_HAS_CACHE
323 && si->swap_map[offset] == SWAP_HAS_CACHE) {
KAMEZAWA Hiroyukic9e44412009-06-16 15:32:54 -0700324 int swap_was_freed;
325 spin_unlock(&swap_lock);
326 swap_was_freed = __try_to_reclaim_swap(si, offset);
327 spin_lock(&swap_lock);
328 /* entry was freed successfully, try to use this again */
329 if (swap_was_freed)
330 goto checks;
331 goto scan; /* check next one */
332 }
333
Hugh Dickinsebebbbe2009-01-06 14:39:50 -0800334 if (si->swap_map[offset])
335 goto scan;
Hugh Dickins7dfad412005-09-03 15:54:38 -0700336
Hugh Dickinsebebbbe2009-01-06 14:39:50 -0800337 if (offset == si->lowest_bit)
338 si->lowest_bit++;
339 if (offset == si->highest_bit)
340 si->highest_bit--;
341 si->inuse_pages++;
342 if (si->inuse_pages == si->pages) {
343 si->lowest_bit = si->max;
344 si->highest_bit = 0;
345 }
Hugh Dickins253d5532009-12-14 17:58:44 -0800346 si->swap_map[offset] = usage;
Hugh Dickinsebebbbe2009-01-06 14:39:50 -0800347 si->cluster_next = offset + 1;
348 si->flags -= SWP_SCANNING;
Hugh Dickins7992fde2009-01-06 14:39:53 -0800349
350 if (si->lowest_alloc) {
351 /*
352 * Only set when SWP_DISCARDABLE, and there's a scan
353 * for a free cluster in progress or just completed.
354 */
355 if (found_free_cluster) {
356 /*
357 * To optimize wear-levelling, discard the
358 * old data of the cluster, taking care not to
359 * discard any of its pages that have already
360 * been allocated by racing tasks (offset has
361 * already stepped over any at the beginning).
362 */
363 if (offset < si->highest_alloc &&
364 si->lowest_alloc <= last_in_cluster)
365 last_in_cluster = si->lowest_alloc - 1;
366 si->flags |= SWP_DISCARDING;
367 spin_unlock(&swap_lock);
368
369 if (offset < last_in_cluster)
370 discard_swap_cluster(si, offset,
371 last_in_cluster - offset + 1);
372
373 spin_lock(&swap_lock);
374 si->lowest_alloc = 0;
375 si->flags &= ~SWP_DISCARDING;
376
377 smp_mb(); /* wake_up_bit advises this */
378 wake_up_bit(&si->flags, ilog2(SWP_DISCARDING));
379
380 } else if (si->flags & SWP_DISCARDING) {
381 /*
382 * Delay using pages allocated by racing tasks
383 * until the whole discard has been issued. We
384 * could defer that delay until swap_writepage,
385 * but it's easier to keep this self-contained.
386 */
387 spin_unlock(&swap_lock);
388 wait_on_bit(&si->flags, ilog2(SWP_DISCARDING),
389 wait_for_discard, TASK_UNINTERRUPTIBLE);
390 spin_lock(&swap_lock);
391 } else {
392 /*
393 * Note pages allocated by racing tasks while
394 * scan for a free cluster is in progress, so
395 * that its final discard can exclude them.
396 */
397 if (offset < si->lowest_alloc)
398 si->lowest_alloc = offset;
399 if (offset > si->highest_alloc)
400 si->highest_alloc = offset;
401 }
402 }
Hugh Dickinsebebbbe2009-01-06 14:39:50 -0800403 return offset;
404
405scan:
Hugh Dickins5d337b92005-09-03 15:54:41 -0700406 spin_unlock(&swap_lock);
Hugh Dickins7dfad412005-09-03 15:54:38 -0700407 while (++offset <= si->highest_bit) {
Hugh Dickins52b7efdb2005-09-03 15:54:39 -0700408 if (!si->swap_map[offset]) {
Hugh Dickins5d337b92005-09-03 15:54:41 -0700409 spin_lock(&swap_lock);
Hugh Dickins52b7efdb2005-09-03 15:54:39 -0700410 goto checks;
411 }
KAMEZAWA Hiroyukic9e44412009-06-16 15:32:54 -0700412 if (vm_swap_full() && si->swap_map[offset] == SWAP_HAS_CACHE) {
413 spin_lock(&swap_lock);
414 goto checks;
415 }
Hugh Dickins048c27f2005-09-03 15:54:40 -0700416 if (unlikely(--latency_ration < 0)) {
417 cond_resched();
418 latency_ration = LATENCY_LIMIT;
419 }
Hugh Dickins7dfad412005-09-03 15:54:38 -0700420 }
Hugh Dickinsc60aa172009-01-06 14:39:55 -0800421 offset = si->lowest_bit;
422 while (++offset < scan_base) {
423 if (!si->swap_map[offset]) {
424 spin_lock(&swap_lock);
425 goto checks;
426 }
KAMEZAWA Hiroyukic9e44412009-06-16 15:32:54 -0700427 if (vm_swap_full() && si->swap_map[offset] == SWAP_HAS_CACHE) {
428 spin_lock(&swap_lock);
429 goto checks;
430 }
Hugh Dickinsc60aa172009-01-06 14:39:55 -0800431 if (unlikely(--latency_ration < 0)) {
432 cond_resched();
433 latency_ration = LATENCY_LIMIT;
434 }
435 }
Hugh Dickins5d337b92005-09-03 15:54:41 -0700436 spin_lock(&swap_lock);
Hugh Dickins7dfad412005-09-03 15:54:38 -0700437
438no_page:
Hugh Dickins52b7efdb2005-09-03 15:54:39 -0700439 si->flags -= SWP_SCANNING;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 return 0;
441}
442
443swp_entry_t get_swap_page(void)
444{
Hugh Dickinsfb4f88d2005-09-03 15:54:37 -0700445 struct swap_info_struct *si;
446 pgoff_t offset;
447 int type, next;
448 int wrapped = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449
Hugh Dickins5d337b92005-09-03 15:54:41 -0700450 spin_lock(&swap_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 if (nr_swap_pages <= 0)
Hugh Dickinsfb4f88d2005-09-03 15:54:37 -0700452 goto noswap;
KAMEZAWA Hiroyukid2997b12010-08-09 17:20:11 -0700453 if (swap_for_hibernation)
454 goto noswap;
Hugh Dickinsfb4f88d2005-09-03 15:54:37 -0700455 nr_swap_pages--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456
Hugh Dickinsfb4f88d2005-09-03 15:54:37 -0700457 for (type = swap_list.next; type >= 0 && wrapped < 2; type = next) {
Hugh Dickinsefa90a92009-12-14 17:58:41 -0800458 si = swap_info[type];
Hugh Dickinsfb4f88d2005-09-03 15:54:37 -0700459 next = si->next;
460 if (next < 0 ||
Hugh Dickinsefa90a92009-12-14 17:58:41 -0800461 (!wrapped && si->prio != swap_info[next]->prio)) {
Hugh Dickinsfb4f88d2005-09-03 15:54:37 -0700462 next = swap_list.head;
463 wrapped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 }
Hugh Dickinsfb4f88d2005-09-03 15:54:37 -0700465
466 if (!si->highest_bit)
467 continue;
468 if (!(si->flags & SWP_WRITEOK))
469 continue;
470
471 swap_list.next = next;
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -0700472 /* This is called for allocating swap entry for cache */
Hugh Dickins253d5532009-12-14 17:58:44 -0800473 offset = scan_swap_map(si, SWAP_HAS_CACHE);
Hugh Dickins5d337b92005-09-03 15:54:41 -0700474 if (offset) {
475 spin_unlock(&swap_lock);
Hugh Dickinsfb4f88d2005-09-03 15:54:37 -0700476 return swp_entry(type, offset);
Hugh Dickins5d337b92005-09-03 15:54:41 -0700477 }
Hugh Dickinsfb4f88d2005-09-03 15:54:37 -0700478 next = swap_list.next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 }
Hugh Dickinsfb4f88d2005-09-03 15:54:37 -0700480
481 nr_swap_pages++;
482noswap:
Hugh Dickins5d337b92005-09-03 15:54:41 -0700483 spin_unlock(&swap_lock);
Hugh Dickinsfb4f88d2005-09-03 15:54:37 -0700484 return (swp_entry_t) {0};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485}
486
Hugh Dickins73c34b62009-12-14 17:58:43 -0800487static struct swap_info_struct *swap_info_get(swp_entry_t entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488{
Hugh Dickins73c34b62009-12-14 17:58:43 -0800489 struct swap_info_struct *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 unsigned long offset, type;
491
492 if (!entry.val)
493 goto out;
494 type = swp_type(entry);
495 if (type >= nr_swapfiles)
496 goto bad_nofile;
Hugh Dickinsefa90a92009-12-14 17:58:41 -0800497 p = swap_info[type];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 if (!(p->flags & SWP_USED))
499 goto bad_device;
500 offset = swp_offset(entry);
501 if (offset >= p->max)
502 goto bad_offset;
503 if (!p->swap_map[offset])
504 goto bad_free;
Hugh Dickins5d337b92005-09-03 15:54:41 -0700505 spin_lock(&swap_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 return p;
507
508bad_free:
509 printk(KERN_ERR "swap_free: %s%08lx\n", Unused_offset, entry.val);
510 goto out;
511bad_offset:
512 printk(KERN_ERR "swap_free: %s%08lx\n", Bad_offset, entry.val);
513 goto out;
514bad_device:
515 printk(KERN_ERR "swap_free: %s%08lx\n", Unused_file, entry.val);
516 goto out;
517bad_nofile:
518 printk(KERN_ERR "swap_free: %s%08lx\n", Bad_file, entry.val);
519out:
520 return NULL;
Hugh Dickins886bb7e2009-01-06 14:39:48 -0800521}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
Hugh Dickins8d69aae2009-12-14 17:58:45 -0800523static unsigned char swap_entry_free(struct swap_info_struct *p,
524 swp_entry_t entry, unsigned char usage)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525{
Hugh Dickins253d5532009-12-14 17:58:44 -0800526 unsigned long offset = swp_offset(entry);
Hugh Dickins8d69aae2009-12-14 17:58:45 -0800527 unsigned char count;
528 unsigned char has_cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -0700530 count = p->swap_map[offset];
Hugh Dickins253d5532009-12-14 17:58:44 -0800531 has_cache = count & SWAP_HAS_CACHE;
532 count &= ~SWAP_HAS_CACHE;
533
534 if (usage == SWAP_HAS_CACHE) {
535 VM_BUG_ON(!has_cache);
536 has_cache = 0;
Hugh Dickinsaaa46862009-12-14 17:58:47 -0800537 } else if (count == SWAP_MAP_SHMEM) {
538 /*
539 * Or we could insist on shmem.c using a special
540 * swap_shmem_free() and free_shmem_swap_and_cache()...
541 */
542 count = 0;
Hugh Dickins570a335b2009-12-14 17:58:46 -0800543 } else if ((count & ~COUNT_CONTINUED) <= SWAP_MAP_MAX) {
544 if (count == COUNT_CONTINUED) {
545 if (swap_count_continued(p, offset, count))
546 count = SWAP_MAP_MAX | COUNT_CONTINUED;
547 else
548 count = SWAP_MAP_MAX;
549 } else
550 count--;
551 }
Hugh Dickins253d5532009-12-14 17:58:44 -0800552
553 if (!count)
554 mem_cgroup_uncharge_swap(entry);
555
556 usage = count | has_cache;
557 p->swap_map[offset] = usage;
558
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -0700559 /* free if no reference */
Hugh Dickins253d5532009-12-14 17:58:44 -0800560 if (!usage) {
Nitin Guptab3a27d02010-05-17 11:02:43 +0530561 struct gendisk *disk = p->bdev->bd_disk;
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -0700562 if (offset < p->lowest_bit)
563 p->lowest_bit = offset;
564 if (offset > p->highest_bit)
565 p->highest_bit = offset;
Hugh Dickinsefa90a92009-12-14 17:58:41 -0800566 if (swap_list.next >= 0 &&
567 p->prio > swap_info[swap_list.next]->prio)
568 swap_list.next = p->type;
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -0700569 nr_swap_pages++;
570 p->inuse_pages--;
Nitin Guptab3a27d02010-05-17 11:02:43 +0530571 if ((p->flags & SWP_BLKDEV) &&
572 disk->fops->swap_slot_free_notify)
573 disk->fops->swap_slot_free_notify(p->bdev, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 }
Hugh Dickins253d5532009-12-14 17:58:44 -0800575
576 return usage;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577}
578
579/*
580 * Caller has made sure that the swapdevice corresponding to entry
581 * is still around or has not been recycled.
582 */
583void swap_free(swp_entry_t entry)
584{
Hugh Dickins73c34b62009-12-14 17:58:43 -0800585 struct swap_info_struct *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586
587 p = swap_info_get(entry);
588 if (p) {
Hugh Dickins253d5532009-12-14 17:58:44 -0800589 swap_entry_free(p, entry, 1);
Hugh Dickins5d337b92005-09-03 15:54:41 -0700590 spin_unlock(&swap_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 }
592}
593
594/*
KAMEZAWA Hiroyukicb4b86b2009-06-16 15:32:52 -0700595 * Called after dropping swapcache to decrease refcnt to swap entries.
596 */
597void swapcache_free(swp_entry_t entry, struct page *page)
598{
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -0700599 struct swap_info_struct *p;
Hugh Dickins8d69aae2009-12-14 17:58:45 -0800600 unsigned char count;
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -0700601
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -0700602 p = swap_info_get(entry);
603 if (p) {
Hugh Dickins253d5532009-12-14 17:58:44 -0800604 count = swap_entry_free(p, entry, SWAP_HAS_CACHE);
605 if (page)
606 mem_cgroup_uncharge_swapcache(page, entry, count != 0);
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -0700607 spin_unlock(&swap_lock);
608 }
KAMEZAWA Hiroyukicb4b86b2009-06-16 15:32:52 -0700609}
610
611/*
Hugh Dickinsc475a8a2005-06-21 17:15:12 -0700612 * How many references to page are currently swapped out?
Hugh Dickins570a335b2009-12-14 17:58:46 -0800613 * This does not give an exact answer when swap count is continued,
614 * but does include the high COUNT_CONTINUED flag to allow for that.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 */
Hugh Dickinsc475a8a2005-06-21 17:15:12 -0700616static inline int page_swapcount(struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617{
Hugh Dickinsc475a8a2005-06-21 17:15:12 -0700618 int count = 0;
619 struct swap_info_struct *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 swp_entry_t entry;
621
Hugh Dickins4c21e2f2005-10-29 18:16:40 -0700622 entry.val = page_private(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 p = swap_info_get(entry);
624 if (p) {
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -0700625 count = swap_count(p->swap_map[swp_offset(entry)]);
Hugh Dickins5d337b92005-09-03 15:54:41 -0700626 spin_unlock(&swap_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 }
Hugh Dickinsc475a8a2005-06-21 17:15:12 -0700628 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629}
630
631/*
Hugh Dickins7b1fe592009-01-06 14:39:34 -0800632 * We can write to an anon page without COW if there are no other references
633 * to it. And as a side-effect, free up its swap: because the old content
634 * on disk will never be read, and seeking back there to write new content
635 * later would only waste time away from clustering.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 */
Hugh Dickins7b1fe592009-01-06 14:39:34 -0800637int reuse_swap_page(struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638{
Hugh Dickinsc475a8a2005-06-21 17:15:12 -0700639 int count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
Hugh Dickins51726b12009-01-06 14:39:25 -0800641 VM_BUG_ON(!PageLocked(page));
Hugh Dickins5ad64682009-12-14 17:59:24 -0800642 if (unlikely(PageKsm(page)))
643 return 0;
Hugh Dickinsc475a8a2005-06-21 17:15:12 -0700644 count = page_mapcount(page);
Hugh Dickins7b1fe592009-01-06 14:39:34 -0800645 if (count <= 1 && PageSwapCache(page)) {
Hugh Dickinsc475a8a2005-06-21 17:15:12 -0700646 count += page_swapcount(page);
Hugh Dickins7b1fe592009-01-06 14:39:34 -0800647 if (count == 1 && !PageWriteback(page)) {
648 delete_from_swap_cache(page);
649 SetPageDirty(page);
650 }
651 }
Hugh Dickins5ad64682009-12-14 17:59:24 -0800652 return count <= 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653}
654
655/*
Hugh Dickinsa2c43ee2009-01-06 14:39:36 -0800656 * If swap is getting full, or if there are no more mappings of this page,
657 * then try_to_free_swap is called to free its swap space.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 */
Hugh Dickinsa2c43ee2009-01-06 14:39:36 -0800659int try_to_free_swap(struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660{
Hugh Dickins51726b12009-01-06 14:39:25 -0800661 VM_BUG_ON(!PageLocked(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662
663 if (!PageSwapCache(page))
664 return 0;
665 if (PageWriteback(page))
666 return 0;
Hugh Dickinsa2c43ee2009-01-06 14:39:36 -0800667 if (page_swapcount(page))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 return 0;
669
Hugh Dickinsa2c43ee2009-01-06 14:39:36 -0800670 delete_from_swap_cache(page);
671 SetPageDirty(page);
672 return 1;
Rik van Riel68a223942008-10-18 20:26:23 -0700673}
674
675/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 * Free the swap entry like above, but also try to
677 * free the page cache entry if it is the last user.
678 */
Hugh Dickins2509ef22009-01-06 14:40:10 -0800679int free_swap_and_cache(swp_entry_t entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680{
Hugh Dickins2509ef22009-01-06 14:40:10 -0800681 struct swap_info_struct *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 struct page *page = NULL;
683
Andi Kleena7420aa2009-09-16 11:50:05 +0200684 if (non_swap_entry(entry))
Hugh Dickins2509ef22009-01-06 14:40:10 -0800685 return 1;
Christoph Lameter06972122006-06-23 02:03:35 -0700686
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 p = swap_info_get(entry);
688 if (p) {
Hugh Dickins253d5532009-12-14 17:58:44 -0800689 if (swap_entry_free(p, entry, 1) == SWAP_HAS_CACHE) {
Nick Piggin93fac702006-03-31 02:29:56 -0800690 page = find_get_page(&swapper_space, entry.val);
Nick Piggin8413ac92008-10-18 20:26:59 -0700691 if (page && !trylock_page(page)) {
Nick Piggin93fac702006-03-31 02:29:56 -0800692 page_cache_release(page);
693 page = NULL;
694 }
695 }
Hugh Dickins5d337b92005-09-03 15:54:41 -0700696 spin_unlock(&swap_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 }
698 if (page) {
Hugh Dickinsa2c43ee2009-01-06 14:39:36 -0800699 /*
700 * Not mapped elsewhere, or swap space full? Free it!
701 * Also recheck PageSwapCache now page is locked (above).
702 */
Nick Piggin93fac702006-03-31 02:29:56 -0800703 if (PageSwapCache(page) && !PageWriteback(page) &&
Hugh Dickinsa2c43ee2009-01-06 14:39:36 -0800704 (!page_mapped(page) || vm_swap_full())) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 delete_from_swap_cache(page);
706 SetPageDirty(page);
707 }
708 unlock_page(page);
709 page_cache_release(page);
710 }
Hugh Dickins2509ef22009-01-06 14:40:10 -0800711 return p != NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712}
713
Daisuke Nishimura02491442010-03-10 15:22:17 -0800714#ifdef CONFIG_CGROUP_MEM_RES_CTLR
715/**
716 * mem_cgroup_count_swap_user - count the user of a swap entry
717 * @ent: the swap entry to be checked
718 * @pagep: the pointer for the swap cache page of the entry to be stored
719 *
720 * Returns the number of the user of the swap entry. The number is valid only
721 * for swaps of anonymous pages.
722 * If the entry is found on swap cache, the page is stored to pagep with
723 * refcount of it being incremented.
724 */
725int mem_cgroup_count_swap_user(swp_entry_t ent, struct page **pagep)
726{
727 struct page *page;
728 struct swap_info_struct *p;
729 int count = 0;
730
731 page = find_get_page(&swapper_space, ent.val);
732 if (page)
733 count += page_mapcount(page);
734 p = swap_info_get(ent);
735 if (p) {
736 count += swap_count(p->swap_map[swp_offset(ent)]);
737 spin_unlock(&swap_lock);
738 }
739
740 *pagep = page;
741 return count;
742}
743#endif
744
Rafael J. Wysockib0cb1a12007-07-29 23:24:36 +0200745#ifdef CONFIG_HIBERNATION
KAMEZAWA Hiroyukid2997b12010-08-09 17:20:11 -0700746
747static pgoff_t hibernation_offset[MAX_SWAPFILES];
748/*
749 * Once hibernation starts to use swap, we freeze swap_map[]. Otherwise,
750 * saved swap_map[] image to the disk will be an incomplete because it's
751 * changing without synchronization with hibernation snap shot.
752 * At resume, we just make swap_for_hibernation=false. We can forget
753 * used maps easily.
754 */
755void hibernation_freeze_swap(void)
756{
757 int i;
758
759 spin_lock(&swap_lock);
760
761 printk(KERN_INFO "PM: Freeze Swap\n");
762 swap_for_hibernation = true;
763 for (i = 0; i < MAX_SWAPFILES; i++)
764 hibernation_offset[i] = 1;
765 spin_unlock(&swap_lock);
766}
767
768void hibernation_thaw_swap(void)
769{
770 spin_lock(&swap_lock);
771 if (swap_for_hibernation) {
772 printk(KERN_INFO "PM: Thaw Swap\n");
773 swap_for_hibernation = false;
774 }
775 spin_unlock(&swap_lock);
776}
777
778/*
779 * Because updateing swap_map[] can make not-saved-status-change,
780 * we use our own easy allocator.
781 * Please see kernel/power/swap.c, Used swaps are recorded into
782 * RB-tree.
783 */
784swp_entry_t get_swap_for_hibernation(int type)
785{
786 pgoff_t off;
787 swp_entry_t val = {0};
788 struct swap_info_struct *si;
789
790 spin_lock(&swap_lock);
791
792 si = swap_info[type];
793 if (!si || !(si->flags & SWP_WRITEOK))
794 goto done;
795
796 for (off = hibernation_offset[type]; off < si->max; ++off) {
797 if (!si->swap_map[off])
798 break;
799 }
800 if (off < si->max) {
801 val = swp_entry(type, off);
802 hibernation_offset[type] = off + 1;
803 }
804done:
805 spin_unlock(&swap_lock);
806 return val;
807}
808
809void swap_free_for_hibernation(swp_entry_t ent)
810{
811 /* Nothing to do */
812}
813
Rafael J. Wysockif577eb32006-03-23 02:59:59 -0800814/*
Rafael J. Wysocki915bae92006-12-06 20:34:07 -0800815 * Find the swap type that corresponds to given device (if any).
Rafael J. Wysockif577eb32006-03-23 02:59:59 -0800816 *
Rafael J. Wysocki915bae92006-12-06 20:34:07 -0800817 * @offset - number of the PAGE_SIZE-sized block of the device, starting
818 * from 0, in which the swap header is expected to be located.
819 *
820 * This is needed for the suspend to disk (aka swsusp).
Rafael J. Wysockif577eb32006-03-23 02:59:59 -0800821 */
Rafael J. Wysocki7bf23682007-01-05 16:36:28 -0800822int swap_type_of(dev_t device, sector_t offset, struct block_device **bdev_p)
Rafael J. Wysockif577eb32006-03-23 02:59:59 -0800823{
Rafael J. Wysocki915bae92006-12-06 20:34:07 -0800824 struct block_device *bdev = NULL;
Hugh Dickinsefa90a92009-12-14 17:58:41 -0800825 int type;
Rafael J. Wysockif577eb32006-03-23 02:59:59 -0800826
Rafael J. Wysocki915bae92006-12-06 20:34:07 -0800827 if (device)
828 bdev = bdget(device);
829
Rafael J. Wysockif577eb32006-03-23 02:59:59 -0800830 spin_lock(&swap_lock);
Hugh Dickinsefa90a92009-12-14 17:58:41 -0800831 for (type = 0; type < nr_swapfiles; type++) {
832 struct swap_info_struct *sis = swap_info[type];
Rafael J. Wysockif577eb32006-03-23 02:59:59 -0800833
Rafael J. Wysocki915bae92006-12-06 20:34:07 -0800834 if (!(sis->flags & SWP_WRITEOK))
Rafael J. Wysockif577eb32006-03-23 02:59:59 -0800835 continue;
Rafael J. Wysockib6b5bce2006-08-27 01:23:25 -0700836
Rafael J. Wysocki915bae92006-12-06 20:34:07 -0800837 if (!bdev) {
Rafael J. Wysocki7bf23682007-01-05 16:36:28 -0800838 if (bdev_p)
Alan Jenkinsdddac6a2009-07-29 21:07:55 +0200839 *bdev_p = bdgrab(sis->bdev);
Rafael J. Wysocki7bf23682007-01-05 16:36:28 -0800840
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800841 spin_unlock(&swap_lock);
Hugh Dickinsefa90a92009-12-14 17:58:41 -0800842 return type;
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800843 }
Rafael J. Wysocki915bae92006-12-06 20:34:07 -0800844 if (bdev == sis->bdev) {
Hugh Dickins9625a5f2009-12-14 17:58:42 -0800845 struct swap_extent *se = &sis->first_swap_extent;
Rafael J. Wysocki915bae92006-12-06 20:34:07 -0800846
Rafael J. Wysocki915bae92006-12-06 20:34:07 -0800847 if (se->start_block == offset) {
Rafael J. Wysocki7bf23682007-01-05 16:36:28 -0800848 if (bdev_p)
Alan Jenkinsdddac6a2009-07-29 21:07:55 +0200849 *bdev_p = bdgrab(sis->bdev);
Rafael J. Wysocki7bf23682007-01-05 16:36:28 -0800850
Rafael J. Wysocki915bae92006-12-06 20:34:07 -0800851 spin_unlock(&swap_lock);
852 bdput(bdev);
Hugh Dickinsefa90a92009-12-14 17:58:41 -0800853 return type;
Rafael J. Wysocki915bae92006-12-06 20:34:07 -0800854 }
Rafael J. Wysockif577eb32006-03-23 02:59:59 -0800855 }
856 }
857 spin_unlock(&swap_lock);
Rafael J. Wysocki915bae92006-12-06 20:34:07 -0800858 if (bdev)
859 bdput(bdev);
860
Rafael J. Wysockif577eb32006-03-23 02:59:59 -0800861 return -ENODEV;
862}
863
864/*
Hugh Dickins73c34b62009-12-14 17:58:43 -0800865 * Get the (PAGE_SIZE) block corresponding to given offset on the swapdev
866 * corresponding to given index in swap_info (swap type).
867 */
868sector_t swapdev_block(int type, pgoff_t offset)
869{
870 struct block_device *bdev;
871
872 if ((unsigned int)type >= nr_swapfiles)
873 return 0;
874 if (!(swap_info[type]->flags & SWP_WRITEOK))
875 return 0;
Lee Schermerhornd4906e12009-12-14 17:58:49 -0800876 return map_swap_entry(swp_entry(type, offset), &bdev);
Hugh Dickins73c34b62009-12-14 17:58:43 -0800877}
878
879/*
Rafael J. Wysockif577eb32006-03-23 02:59:59 -0800880 * Return either the total number of swap pages of given type, or the number
881 * of free pages of that type (depending on @free)
882 *
883 * This is needed for software suspend
884 */
885unsigned int count_swap_pages(int type, int free)
886{
887 unsigned int n = 0;
888
Hugh Dickinsefa90a92009-12-14 17:58:41 -0800889 spin_lock(&swap_lock);
890 if ((unsigned int)type < nr_swapfiles) {
891 struct swap_info_struct *sis = swap_info[type];
892
893 if (sis->flags & SWP_WRITEOK) {
894 n = sis->pages;
Rafael J. Wysockif577eb32006-03-23 02:59:59 -0800895 if (free)
Hugh Dickinsefa90a92009-12-14 17:58:41 -0800896 n -= sis->inuse_pages;
Rafael J. Wysockif577eb32006-03-23 02:59:59 -0800897 }
Rafael J. Wysockif577eb32006-03-23 02:59:59 -0800898 }
Hugh Dickinsefa90a92009-12-14 17:58:41 -0800899 spin_unlock(&swap_lock);
Rafael J. Wysockif577eb32006-03-23 02:59:59 -0800900 return n;
901}
Hugh Dickins73c34b62009-12-14 17:58:43 -0800902#endif /* CONFIG_HIBERNATION */
Rafael J. Wysockif577eb32006-03-23 02:59:59 -0800903
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904/*
Hugh Dickins72866f62005-10-29 18:15:55 -0700905 * No need to decide whether this PTE shares the swap entry with others,
906 * just let do_wp_page work it out if a write is requested later - to
907 * force COW, vm_page_prot omits write permission from any private vma.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 */
Hugh Dickins044d66c2008-02-07 00:14:04 -0800909static int unuse_pte(struct vm_area_struct *vma, pmd_t *pmd,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 unsigned long addr, swp_entry_t entry, struct page *page)
911{
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -0800912 struct mem_cgroup *ptr = NULL;
Hugh Dickins044d66c2008-02-07 00:14:04 -0800913 spinlock_t *ptl;
914 pte_t *pte;
915 int ret = 1;
916
KAMEZAWA Hiroyuki85d9fc82009-01-29 14:25:13 -0800917 if (mem_cgroup_try_charge_swapin(vma->vm_mm, page, GFP_KERNEL, &ptr)) {
Hugh Dickins044d66c2008-02-07 00:14:04 -0800918 ret = -ENOMEM;
KAMEZAWA Hiroyuki85d9fc82009-01-29 14:25:13 -0800919 goto out_nolock;
920 }
Hugh Dickins044d66c2008-02-07 00:14:04 -0800921
922 pte = pte_offset_map_lock(vma->vm_mm, pmd, addr, &ptl);
923 if (unlikely(!pte_same(*pte, swp_entry_to_pte(entry)))) {
924 if (ret > 0)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -0800925 mem_cgroup_cancel_charge_swapin(ptr);
Hugh Dickins044d66c2008-02-07 00:14:04 -0800926 ret = 0;
927 goto out;
928 }
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800929
KAMEZAWA Hiroyukib084d432010-03-05 13:41:42 -0800930 dec_mm_counter(vma->vm_mm, MM_SWAPENTS);
KAMEZAWA Hiroyukid559db02010-03-05 13:41:39 -0800931 inc_mm_counter(vma->vm_mm, MM_ANONPAGES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 get_page(page);
933 set_pte_at(vma->vm_mm, addr, pte,
934 pte_mkold(mk_pte(page, vma->vm_page_prot)));
935 page_add_anon_rmap(page, vma, addr);
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -0800936 mem_cgroup_commit_charge_swapin(page, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 swap_free(entry);
938 /*
939 * Move the page to the active list so it is not
940 * immediately swapped out again after swapon.
941 */
942 activate_page(page);
Hugh Dickins044d66c2008-02-07 00:14:04 -0800943out:
944 pte_unmap_unlock(pte, ptl);
KAMEZAWA Hiroyuki85d9fc82009-01-29 14:25:13 -0800945out_nolock:
Hugh Dickins044d66c2008-02-07 00:14:04 -0800946 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947}
948
949static int unuse_pte_range(struct vm_area_struct *vma, pmd_t *pmd,
950 unsigned long addr, unsigned long end,
951 swp_entry_t entry, struct page *page)
952{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 pte_t swp_pte = swp_entry_to_pte(entry);
Hugh Dickins705e87c2005-10-29 18:16:27 -0700954 pte_t *pte;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800955 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956
Hugh Dickins044d66c2008-02-07 00:14:04 -0800957 /*
958 * We don't actually need pte lock while scanning for swp_pte: since
959 * we hold page lock and mmap_sem, swp_pte cannot be inserted into the
960 * page table while we're scanning; though it could get zapped, and on
961 * some architectures (e.g. x86_32 with PAE) we might catch a glimpse
962 * of unmatched parts which look like swp_pte, so unuse_pte must
963 * recheck under pte lock. Scanning without pte lock lets it be
964 * preemptible whenever CONFIG_PREEMPT but not CONFIG_HIGHPTE.
965 */
966 pte = pte_offset_map(pmd, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 do {
968 /*
969 * swapoff spends a _lot_ of time in this loop!
970 * Test inline before going to call unuse_pte.
971 */
972 if (unlikely(pte_same(*pte, swp_pte))) {
Hugh Dickins044d66c2008-02-07 00:14:04 -0800973 pte_unmap(pte);
974 ret = unuse_pte(vma, pmd, addr, entry, page);
975 if (ret)
976 goto out;
977 pte = pte_offset_map(pmd, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 }
979 } while (pte++, addr += PAGE_SIZE, addr != end);
Hugh Dickins044d66c2008-02-07 00:14:04 -0800980 pte_unmap(pte - 1);
981out:
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800982 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983}
984
985static inline int unuse_pmd_range(struct vm_area_struct *vma, pud_t *pud,
986 unsigned long addr, unsigned long end,
987 swp_entry_t entry, struct page *page)
988{
989 pmd_t *pmd;
990 unsigned long next;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800991 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992
993 pmd = pmd_offset(pud, addr);
994 do {
995 next = pmd_addr_end(addr, end);
996 if (pmd_none_or_clear_bad(pmd))
997 continue;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800998 ret = unuse_pte_range(vma, pmd, addr, next, entry, page);
999 if (ret)
1000 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 } while (pmd++, addr = next, addr != end);
1002 return 0;
1003}
1004
1005static inline int unuse_pud_range(struct vm_area_struct *vma, pgd_t *pgd,
1006 unsigned long addr, unsigned long end,
1007 swp_entry_t entry, struct page *page)
1008{
1009 pud_t *pud;
1010 unsigned long next;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08001011 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012
1013 pud = pud_offset(pgd, addr);
1014 do {
1015 next = pud_addr_end(addr, end);
1016 if (pud_none_or_clear_bad(pud))
1017 continue;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08001018 ret = unuse_pmd_range(vma, pud, addr, next, entry, page);
1019 if (ret)
1020 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 } while (pud++, addr = next, addr != end);
1022 return 0;
1023}
1024
1025static int unuse_vma(struct vm_area_struct *vma,
1026 swp_entry_t entry, struct page *page)
1027{
1028 pgd_t *pgd;
1029 unsigned long addr, end, next;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08001030 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031
Hugh Dickins3ca7b3c2009-12-14 17:58:57 -08001032 if (page_anon_vma(page)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 addr = page_address_in_vma(page, vma);
1034 if (addr == -EFAULT)
1035 return 0;
1036 else
1037 end = addr + PAGE_SIZE;
1038 } else {
1039 addr = vma->vm_start;
1040 end = vma->vm_end;
1041 }
1042
1043 pgd = pgd_offset(vma->vm_mm, addr);
1044 do {
1045 next = pgd_addr_end(addr, end);
1046 if (pgd_none_or_clear_bad(pgd))
1047 continue;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08001048 ret = unuse_pud_range(vma, pgd, addr, next, entry, page);
1049 if (ret)
1050 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 } while (pgd++, addr = next, addr != end);
1052 return 0;
1053}
1054
1055static int unuse_mm(struct mm_struct *mm,
1056 swp_entry_t entry, struct page *page)
1057{
1058 struct vm_area_struct *vma;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08001059 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060
1061 if (!down_read_trylock(&mm->mmap_sem)) {
1062 /*
Fernando Luis Vazquez Cao7d034312008-07-29 22:33:41 -07001063 * Activate page so shrink_inactive_list is unlikely to unmap
1064 * its ptes while lock is dropped, so swapoff can make progress.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 */
Hugh Dickinsc475a8a2005-06-21 17:15:12 -07001066 activate_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 unlock_page(page);
1068 down_read(&mm->mmap_sem);
1069 lock_page(page);
1070 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 for (vma = mm->mmap; vma; vma = vma->vm_next) {
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08001072 if (vma->anon_vma && (ret = unuse_vma(vma, entry, page)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 break;
1074 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 up_read(&mm->mmap_sem);
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08001076 return (ret < 0)? ret: 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077}
1078
1079/*
1080 * Scan swap_map from current position to next entry still in use.
1081 * Recycle to start on reaching the end, returning 0 when empty.
1082 */
Hugh Dickins6eb396d2005-09-03 15:54:35 -07001083static unsigned int find_next_to_unuse(struct swap_info_struct *si,
1084 unsigned int prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085{
Hugh Dickins6eb396d2005-09-03 15:54:35 -07001086 unsigned int max = si->max;
1087 unsigned int i = prev;
Hugh Dickins8d69aae2009-12-14 17:58:45 -08001088 unsigned char count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089
1090 /*
Hugh Dickins5d337b92005-09-03 15:54:41 -07001091 * No need for swap_lock here: we're just looking
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 * for whether an entry is in use, not modifying it; false
1093 * hits are okay, and sys_swapoff() has already prevented new
Hugh Dickins5d337b92005-09-03 15:54:41 -07001094 * allocations from this area (while holding swap_lock).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 */
1096 for (;;) {
1097 if (++i >= max) {
1098 if (!prev) {
1099 i = 0;
1100 break;
1101 }
1102 /*
1103 * No entries in use at top of swap_map,
1104 * loop back to start and recheck there.
1105 */
1106 max = prev + 1;
1107 prev = 0;
1108 i = 1;
1109 }
1110 count = si->swap_map[i];
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -07001111 if (count && swap_count(count) != SWAP_MAP_BAD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 break;
1113 }
1114 return i;
1115}
1116
1117/*
1118 * We completely avoid races by reading each swap page in advance,
1119 * and then search for the process using it. All the necessary
1120 * page table adjustments can then be made atomically.
1121 */
1122static int try_to_unuse(unsigned int type)
1123{
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001124 struct swap_info_struct *si = swap_info[type];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 struct mm_struct *start_mm;
Hugh Dickins8d69aae2009-12-14 17:58:45 -08001126 unsigned char *swap_map;
1127 unsigned char swcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 struct page *page;
1129 swp_entry_t entry;
Hugh Dickins6eb396d2005-09-03 15:54:35 -07001130 unsigned int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132
1133 /*
1134 * When searching mms for an entry, a good strategy is to
1135 * start at the first mm we freed the previous entry from
1136 * (though actually we don't notice whether we or coincidence
1137 * freed the entry). Initialize this start_mm with a hold.
1138 *
1139 * A simpler strategy would be to start at the last mm we
1140 * freed the previous entry from; but that would take less
1141 * advantage of mmlist ordering, which clusters forked mms
1142 * together, child after parent. If we race with dup_mmap(), we
1143 * prefer to resolve parent before child, lest we miss entries
1144 * duplicated after we scanned child: using last mm would invert
Hugh Dickins570a335b2009-12-14 17:58:46 -08001145 * that.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 */
1147 start_mm = &init_mm;
1148 atomic_inc(&init_mm.mm_users);
1149
1150 /*
1151 * Keep on scanning until all entries have gone. Usually,
1152 * one pass through swap_map is enough, but not necessarily:
1153 * there are races when an instance of an entry might be missed.
1154 */
1155 while ((i = find_next_to_unuse(si, i)) != 0) {
1156 if (signal_pending(current)) {
1157 retval = -EINTR;
1158 break;
1159 }
1160
Hugh Dickins886bb7e2009-01-06 14:39:48 -08001161 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 * Get a page for the entry, using the existing swap
1163 * cache page if there is one. Otherwise, get a clean
Hugh Dickins886bb7e2009-01-06 14:39:48 -08001164 * page and read the swap into it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 */
1166 swap_map = &si->swap_map[i];
1167 entry = swp_entry(type, i);
Hugh Dickins02098fe2008-02-04 22:28:42 -08001168 page = read_swap_cache_async(entry,
1169 GFP_HIGHUSER_MOVABLE, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 if (!page) {
1171 /*
1172 * Either swap_duplicate() failed because entry
1173 * has been freed independently, and will not be
1174 * reused since sys_swapoff() already disabled
1175 * allocation from here, or alloc_page() failed.
1176 */
1177 if (!*swap_map)
1178 continue;
1179 retval = -ENOMEM;
1180 break;
1181 }
1182
1183 /*
1184 * Don't hold on to start_mm if it looks like exiting.
1185 */
1186 if (atomic_read(&start_mm->mm_users) == 1) {
1187 mmput(start_mm);
1188 start_mm = &init_mm;
1189 atomic_inc(&init_mm.mm_users);
1190 }
1191
1192 /*
1193 * Wait for and lock page. When do_swap_page races with
1194 * try_to_unuse, do_swap_page can handle the fault much
1195 * faster than try_to_unuse can locate the entry. This
1196 * apparently redundant "wait_on_page_locked" lets try_to_unuse
1197 * defer to do_swap_page in such a case - in some tests,
1198 * do_swap_page and try_to_unuse repeatedly compete.
1199 */
1200 wait_on_page_locked(page);
1201 wait_on_page_writeback(page);
1202 lock_page(page);
1203 wait_on_page_writeback(page);
1204
1205 /*
1206 * Remove all references to entry.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 swcount = *swap_map;
Hugh Dickinsaaa46862009-12-14 17:58:47 -08001209 if (swap_count(swcount) == SWAP_MAP_SHMEM) {
1210 retval = shmem_unuse(entry, page);
1211 /* page has already been unlocked and released */
1212 if (retval < 0)
1213 break;
1214 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 }
Hugh Dickinsaaa46862009-12-14 17:58:47 -08001216 if (swap_count(swcount) && start_mm != &init_mm)
1217 retval = unuse_mm(start_mm, entry, page);
1218
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -07001219 if (swap_count(*swap_map)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 int set_start_mm = (*swap_map >= swcount);
1221 struct list_head *p = &start_mm->mmlist;
1222 struct mm_struct *new_start_mm = start_mm;
1223 struct mm_struct *prev_mm = start_mm;
1224 struct mm_struct *mm;
1225
1226 atomic_inc(&new_start_mm->mm_users);
1227 atomic_inc(&prev_mm->mm_users);
1228 spin_lock(&mmlist_lock);
Hugh Dickinsaaa46862009-12-14 17:58:47 -08001229 while (swap_count(*swap_map) && !retval &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 (p = p->next) != &start_mm->mmlist) {
1231 mm = list_entry(p, struct mm_struct, mmlist);
Hugh Dickins70af7c52006-06-23 02:03:44 -07001232 if (!atomic_inc_not_zero(&mm->mm_users))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 spin_unlock(&mmlist_lock);
1235 mmput(prev_mm);
1236 prev_mm = mm;
1237
1238 cond_resched();
1239
1240 swcount = *swap_map;
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -07001241 if (!swap_count(swcount)) /* any usage ? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 ;
Hugh Dickinsaaa46862009-12-14 17:58:47 -08001243 else if (mm == &init_mm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 set_start_mm = 1;
Hugh Dickinsaaa46862009-12-14 17:58:47 -08001245 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 retval = unuse_mm(mm, entry, page);
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -07001247
Bo Liu32c5fc12009-11-02 16:50:33 +00001248 if (set_start_mm && *swap_map < swcount) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 mmput(new_start_mm);
1250 atomic_inc(&mm->mm_users);
1251 new_start_mm = mm;
1252 set_start_mm = 0;
1253 }
1254 spin_lock(&mmlist_lock);
1255 }
1256 spin_unlock(&mmlist_lock);
1257 mmput(prev_mm);
1258 mmput(start_mm);
1259 start_mm = new_start_mm;
1260 }
1261 if (retval) {
1262 unlock_page(page);
1263 page_cache_release(page);
1264 break;
1265 }
1266
1267 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 * If a reference remains (rare), we would like to leave
1269 * the page in the swap cache; but try_to_unmap could
1270 * then re-duplicate the entry once we drop page lock,
1271 * so we might loop indefinitely; also, that page could
1272 * not be swapped out to other storage meanwhile. So:
1273 * delete from cache even if there's another reference,
1274 * after ensuring that the data has been saved to disk -
1275 * since if the reference remains (rarer), it will be
1276 * read from disk into another page. Splitting into two
1277 * pages would be incorrect if swap supported "shared
1278 * private" pages, but they are handled by tmpfs files.
Hugh Dickins5ad64682009-12-14 17:59:24 -08001279 *
1280 * Given how unuse_vma() targets one particular offset
1281 * in an anon_vma, once the anon_vma has been determined,
1282 * this splitting happens to be just what is needed to
1283 * handle where KSM pages have been swapped out: re-reading
1284 * is unnecessarily slow, but we can fix that later on.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 */
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -07001286 if (swap_count(*swap_map) &&
1287 PageDirty(page) && PageSwapCache(page)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 struct writeback_control wbc = {
1289 .sync_mode = WB_SYNC_NONE,
1290 };
1291
1292 swap_writepage(page, &wbc);
1293 lock_page(page);
1294 wait_on_page_writeback(page);
1295 }
Hugh Dickins68bdc8d2009-01-06 14:39:37 -08001296
1297 /*
1298 * It is conceivable that a racing task removed this page from
1299 * swap cache just before we acquired the page lock at the top,
1300 * or while we dropped it in unuse_mm(). The page might even
1301 * be back in swap cache on another swap area: that we must not
1302 * delete, since it may not have been written out to swap yet.
1303 */
1304 if (PageSwapCache(page) &&
1305 likely(page_private(page) == entry.val))
Hugh Dickins2e0e26c2008-02-04 22:28:53 -08001306 delete_from_swap_cache(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307
1308 /*
1309 * So we could skip searching mms once swap count went
1310 * to 1, we did not mark any present ptes as dirty: must
Anderson Briglia2706a1b2007-07-15 23:38:09 -07001311 * mark page dirty so shrink_page_list will preserve it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 */
1313 SetPageDirty(page);
1314 unlock_page(page);
1315 page_cache_release(page);
1316
1317 /*
1318 * Make sure that we aren't completely killing
1319 * interactive performance.
1320 */
1321 cond_resched();
1322 }
1323
1324 mmput(start_mm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 return retval;
1326}
1327
1328/*
Hugh Dickins5d337b92005-09-03 15:54:41 -07001329 * After a successful try_to_unuse, if no swap is now in use, we know
1330 * we can empty the mmlist. swap_lock must be held on entry and exit.
1331 * Note that mmlist_lock nests inside swap_lock, and an mm must be
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 * added to the mmlist just after page_duplicate - before would be racy.
1333 */
1334static void drain_mmlist(void)
1335{
1336 struct list_head *p, *next;
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001337 unsigned int type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001339 for (type = 0; type < nr_swapfiles; type++)
1340 if (swap_info[type]->inuse_pages)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 return;
1342 spin_lock(&mmlist_lock);
1343 list_for_each_safe(p, next, &init_mm.mmlist)
1344 list_del_init(p);
1345 spin_unlock(&mmlist_lock);
1346}
1347
1348/*
1349 * Use this swapdev's extent info to locate the (PAGE_SIZE) block which
Lee Schermerhornd4906e12009-12-14 17:58:49 -08001350 * corresponds to page offset for the specified swap entry.
1351 * Note that the type of this function is sector_t, but it returns page offset
1352 * into the bdev, not sector offset.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 */
Lee Schermerhornd4906e12009-12-14 17:58:49 -08001354static sector_t map_swap_entry(swp_entry_t entry, struct block_device **bdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355{
Hugh Dickinsf29ad6a2009-12-14 17:58:40 -08001356 struct swap_info_struct *sis;
1357 struct swap_extent *start_se;
1358 struct swap_extent *se;
1359 pgoff_t offset;
1360
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001361 sis = swap_info[swp_type(entry)];
Hugh Dickinsf29ad6a2009-12-14 17:58:40 -08001362 *bdev = sis->bdev;
1363
1364 offset = swp_offset(entry);
1365 start_se = sis->curr_swap_extent;
1366 se = start_se;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367
1368 for ( ; ; ) {
1369 struct list_head *lh;
1370
1371 if (se->start_page <= offset &&
1372 offset < (se->start_page + se->nr_pages)) {
1373 return se->start_block + (offset - se->start_page);
1374 }
Hugh Dickins11d31882005-09-03 15:54:34 -07001375 lh = se->list.next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 se = list_entry(lh, struct swap_extent, list);
1377 sis->curr_swap_extent = se;
1378 BUG_ON(se == start_se); /* It *must* be present */
1379 }
1380}
1381
1382/*
Lee Schermerhornd4906e12009-12-14 17:58:49 -08001383 * Returns the page offset into bdev for the specified page's swap entry.
1384 */
1385sector_t map_swap_page(struct page *page, struct block_device **bdev)
1386{
1387 swp_entry_t entry;
1388 entry.val = page_private(page);
1389 return map_swap_entry(entry, bdev);
1390}
1391
1392/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 * Free all of a swapdev's extent information
1394 */
1395static void destroy_swap_extents(struct swap_info_struct *sis)
1396{
Hugh Dickins9625a5f2009-12-14 17:58:42 -08001397 while (!list_empty(&sis->first_swap_extent.list)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 struct swap_extent *se;
1399
Hugh Dickins9625a5f2009-12-14 17:58:42 -08001400 se = list_entry(sis->first_swap_extent.list.next,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 struct swap_extent, list);
1402 list_del(&se->list);
1403 kfree(se);
1404 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405}
1406
1407/*
1408 * Add a block range (and the corresponding page range) into this swapdev's
Hugh Dickins11d31882005-09-03 15:54:34 -07001409 * extent list. The extent list is kept sorted in page order.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 *
Hugh Dickins11d31882005-09-03 15:54:34 -07001411 * This function rather assumes that it is called in ascending page order.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 */
1413static int
1414add_swap_extent(struct swap_info_struct *sis, unsigned long start_page,
1415 unsigned long nr_pages, sector_t start_block)
1416{
1417 struct swap_extent *se;
1418 struct swap_extent *new_se;
1419 struct list_head *lh;
1420
Hugh Dickins9625a5f2009-12-14 17:58:42 -08001421 if (start_page == 0) {
1422 se = &sis->first_swap_extent;
1423 sis->curr_swap_extent = se;
1424 se->start_page = 0;
1425 se->nr_pages = nr_pages;
1426 se->start_block = start_block;
1427 return 1;
1428 } else {
1429 lh = sis->first_swap_extent.list.prev; /* Highest extent */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 se = list_entry(lh, struct swap_extent, list);
Hugh Dickins11d31882005-09-03 15:54:34 -07001431 BUG_ON(se->start_page + se->nr_pages != start_page);
1432 if (se->start_block + se->nr_pages == start_block) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 /* Merge it */
1434 se->nr_pages += nr_pages;
1435 return 0;
1436 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 }
1438
1439 /*
1440 * No merge. Insert a new extent, preserving ordering.
1441 */
1442 new_se = kmalloc(sizeof(*se), GFP_KERNEL);
1443 if (new_se == NULL)
1444 return -ENOMEM;
1445 new_se->start_page = start_page;
1446 new_se->nr_pages = nr_pages;
1447 new_se->start_block = start_block;
1448
Hugh Dickins9625a5f2009-12-14 17:58:42 -08001449 list_add_tail(&new_se->list, &sis->first_swap_extent.list);
Hugh Dickins53092a72005-09-03 15:54:34 -07001450 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451}
1452
1453/*
1454 * A `swap extent' is a simple thing which maps a contiguous range of pages
1455 * onto a contiguous range of disk blocks. An ordered list of swap extents
1456 * is built at swapon time and is then used at swap_writepage/swap_readpage
1457 * time for locating where on disk a page belongs.
1458 *
1459 * If the swapfile is an S_ISBLK block device, a single extent is installed.
1460 * This is done so that the main operating code can treat S_ISBLK and S_ISREG
1461 * swap files identically.
1462 *
1463 * Whether the swapdev is an S_ISREG file or an S_ISBLK blockdev, the swap
1464 * extent list operates in PAGE_SIZE disk blocks. Both S_ISREG and S_ISBLK
1465 * swapfiles are handled *identically* after swapon time.
1466 *
1467 * For S_ISREG swapfiles, setup_swap_extents() will walk all the file's blocks
1468 * and will parse them into an ordered extent list, in PAGE_SIZE chunks. If
1469 * some stray blocks are found which do not fall within the PAGE_SIZE alignment
1470 * requirements, they are simply tossed out - we will never use those blocks
1471 * for swapping.
1472 *
Hugh Dickinsb0d9bcd2005-09-03 15:54:31 -07001473 * For S_ISREG swapfiles we set S_SWAPFILE across the life of the swapon. This
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 * prevents root from shooting her foot off by ftruncating an in-use swapfile,
1475 * which will scribble on the fs.
1476 *
1477 * The amount of disk space which a single swap extent represents varies.
1478 * Typically it is in the 1-4 megabyte range. So we can have hundreds of
1479 * extents in the list. To avoid much list walking, we cache the previous
1480 * search location in `curr_swap_extent', and start new searches from there.
1481 * This is extremely effective. The average number of iterations in
1482 * map_swap_page() has been measured at about 0.3 per page. - akpm.
1483 */
Hugh Dickins53092a72005-09-03 15:54:34 -07001484static int setup_swap_extents(struct swap_info_struct *sis, sector_t *span)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485{
1486 struct inode *inode;
1487 unsigned blocks_per_page;
1488 unsigned long page_no;
1489 unsigned blkbits;
1490 sector_t probe_block;
1491 sector_t last_block;
Hugh Dickins53092a72005-09-03 15:54:34 -07001492 sector_t lowest_block = -1;
1493 sector_t highest_block = 0;
1494 int nr_extents = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 int ret;
1496
1497 inode = sis->swap_file->f_mapping->host;
1498 if (S_ISBLK(inode->i_mode)) {
1499 ret = add_swap_extent(sis, 0, sis->max, 0);
Hugh Dickins53092a72005-09-03 15:54:34 -07001500 *span = sis->pages;
Hugh Dickins9625a5f2009-12-14 17:58:42 -08001501 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 }
1503
1504 blkbits = inode->i_blkbits;
1505 blocks_per_page = PAGE_SIZE >> blkbits;
1506
1507 /*
1508 * Map all the blocks into the extent list. This code doesn't try
1509 * to be very smart.
1510 */
1511 probe_block = 0;
1512 page_no = 0;
1513 last_block = i_size_read(inode) >> blkbits;
1514 while ((probe_block + blocks_per_page) <= last_block &&
1515 page_no < sis->max) {
1516 unsigned block_in_page;
1517 sector_t first_block;
1518
1519 first_block = bmap(inode, probe_block);
1520 if (first_block == 0)
1521 goto bad_bmap;
1522
1523 /*
1524 * It must be PAGE_SIZE aligned on-disk
1525 */
1526 if (first_block & (blocks_per_page - 1)) {
1527 probe_block++;
1528 goto reprobe;
1529 }
1530
1531 for (block_in_page = 1; block_in_page < blocks_per_page;
1532 block_in_page++) {
1533 sector_t block;
1534
1535 block = bmap(inode, probe_block + block_in_page);
1536 if (block == 0)
1537 goto bad_bmap;
1538 if (block != first_block + block_in_page) {
1539 /* Discontiguity */
1540 probe_block++;
1541 goto reprobe;
1542 }
1543 }
1544
Hugh Dickins53092a72005-09-03 15:54:34 -07001545 first_block >>= (PAGE_SHIFT - blkbits);
1546 if (page_no) { /* exclude the header page */
1547 if (first_block < lowest_block)
1548 lowest_block = first_block;
1549 if (first_block > highest_block)
1550 highest_block = first_block;
1551 }
1552
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 /*
1554 * We found a PAGE_SIZE-length, PAGE_SIZE-aligned run of blocks
1555 */
Hugh Dickins53092a72005-09-03 15:54:34 -07001556 ret = add_swap_extent(sis, page_no, 1, first_block);
1557 if (ret < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 goto out;
Hugh Dickins53092a72005-09-03 15:54:34 -07001559 nr_extents += ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 page_no++;
1561 probe_block += blocks_per_page;
1562reprobe:
1563 continue;
1564 }
Hugh Dickins53092a72005-09-03 15:54:34 -07001565 ret = nr_extents;
1566 *span = 1 + highest_block - lowest_block;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 if (page_no == 0)
Hugh Dickinse2244ec2005-09-03 15:54:32 -07001568 page_no = 1; /* force Empty message */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 sis->max = page_no;
Hugh Dickinse2244ec2005-09-03 15:54:32 -07001570 sis->pages = page_no - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 sis->highest_bit = page_no - 1;
Hugh Dickins9625a5f2009-12-14 17:58:42 -08001572out:
1573 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574bad_bmap:
1575 printk(KERN_ERR "swapon: swapfile has holes\n");
1576 ret = -EINVAL;
Hugh Dickins9625a5f2009-12-14 17:58:42 -08001577 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578}
1579
Heiko Carstensc4ea37c2009-01-14 14:14:28 +01001580SYSCALL_DEFINE1(swapoff, const char __user *, specialfile)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581{
Hugh Dickins73c34b62009-12-14 17:58:43 -08001582 struct swap_info_struct *p = NULL;
Hugh Dickins8d69aae2009-12-14 17:58:45 -08001583 unsigned char *swap_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584 struct file *swap_file, *victim;
1585 struct address_space *mapping;
1586 struct inode *inode;
Hugh Dickins73c34b62009-12-14 17:58:43 -08001587 char *pathname;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 int i, type, prev;
1589 int err;
Hugh Dickins886bb7e2009-01-06 14:39:48 -08001590
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 if (!capable(CAP_SYS_ADMIN))
1592 return -EPERM;
1593
1594 pathname = getname(specialfile);
1595 err = PTR_ERR(pathname);
1596 if (IS_ERR(pathname))
1597 goto out;
1598
1599 victim = filp_open(pathname, O_RDWR|O_LARGEFILE, 0);
1600 putname(pathname);
1601 err = PTR_ERR(victim);
1602 if (IS_ERR(victim))
1603 goto out;
1604
1605 mapping = victim->f_mapping;
1606 prev = -1;
Hugh Dickins5d337b92005-09-03 15:54:41 -07001607 spin_lock(&swap_lock);
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001608 for (type = swap_list.head; type >= 0; type = swap_info[type]->next) {
1609 p = swap_info[type];
Hugh Dickins22c6f8f2009-01-06 14:39:48 -08001610 if (p->flags & SWP_WRITEOK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 if (p->swap_file->f_mapping == mapping)
1612 break;
1613 }
1614 prev = type;
1615 }
1616 if (type < 0) {
1617 err = -EINVAL;
Hugh Dickins5d337b92005-09-03 15:54:41 -07001618 spin_unlock(&swap_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 goto out_dput;
1620 }
1621 if (!security_vm_enough_memory(p->pages))
1622 vm_unacct_memory(p->pages);
1623 else {
1624 err = -ENOMEM;
Hugh Dickins5d337b92005-09-03 15:54:41 -07001625 spin_unlock(&swap_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 goto out_dput;
1627 }
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001628 if (prev < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 swap_list.head = p->next;
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001630 else
1631 swap_info[prev]->next = p->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 if (type == swap_list.next) {
1633 /* just pick something that's safe... */
1634 swap_list.next = swap_list.head;
1635 }
Hugh Dickins78ecba02008-07-23 21:28:23 -07001636 if (p->prio < 0) {
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001637 for (i = p->next; i >= 0; i = swap_info[i]->next)
1638 swap_info[i]->prio = p->prio--;
Hugh Dickins78ecba02008-07-23 21:28:23 -07001639 least_priority++;
1640 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 nr_swap_pages -= p->pages;
1642 total_swap_pages -= p->pages;
1643 p->flags &= ~SWP_WRITEOK;
Hugh Dickins5d337b92005-09-03 15:54:41 -07001644 spin_unlock(&swap_lock);
Hugh Dickinsfb4f88d2005-09-03 15:54:37 -07001645
Hugh Dickins35451be2009-09-21 17:02:27 -07001646 current->flags |= PF_OOM_ORIGIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 err = try_to_unuse(type);
Hugh Dickins35451be2009-09-21 17:02:27 -07001648 current->flags &= ~PF_OOM_ORIGIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 if (err) {
1651 /* re-insert swap space back into swap_list */
Hugh Dickins5d337b92005-09-03 15:54:41 -07001652 spin_lock(&swap_lock);
Hugh Dickins78ecba02008-07-23 21:28:23 -07001653 if (p->prio < 0)
1654 p->prio = --least_priority;
1655 prev = -1;
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001656 for (i = swap_list.head; i >= 0; i = swap_info[i]->next) {
1657 if (p->prio >= swap_info[i]->prio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 break;
Hugh Dickins78ecba02008-07-23 21:28:23 -07001659 prev = i;
1660 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 p->next = i;
1662 if (prev < 0)
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001663 swap_list.head = swap_list.next = type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 else
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001665 swap_info[prev]->next = type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666 nr_swap_pages += p->pages;
1667 total_swap_pages += p->pages;
1668 p->flags |= SWP_WRITEOK;
Hugh Dickins5d337b92005-09-03 15:54:41 -07001669 spin_unlock(&swap_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 goto out_dput;
1671 }
Hugh Dickins52b7efdb2005-09-03 15:54:39 -07001672
1673 /* wait for any unplug function to finish */
1674 down_write(&swap_unplug_sem);
1675 up_write(&swap_unplug_sem);
1676
Hugh Dickins4cd3bb12005-09-03 15:54:33 -07001677 destroy_swap_extents(p);
Hugh Dickins570a335b2009-12-14 17:58:46 -08001678 if (p->flags & SWP_CONTINUED)
1679 free_swap_count_continuations(p);
1680
Ingo Molnarfc0abb12006-01-18 17:42:33 -08001681 mutex_lock(&swapon_mutex);
Hugh Dickins5d337b92005-09-03 15:54:41 -07001682 spin_lock(&swap_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 drain_mmlist();
Hugh Dickins5d337b92005-09-03 15:54:41 -07001684
1685 /* wait for anyone still in scan_swap_map */
1686 p->highest_bit = 0; /* cuts scans short */
1687 while (p->flags >= SWP_SCANNING) {
1688 spin_unlock(&swap_lock);
Nishanth Aravamudan13e4b572005-09-10 00:27:25 -07001689 schedule_timeout_uninterruptible(1);
Hugh Dickins5d337b92005-09-03 15:54:41 -07001690 spin_lock(&swap_lock);
1691 }
1692
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 swap_file = p->swap_file;
1694 p->swap_file = NULL;
1695 p->max = 0;
1696 swap_map = p->swap_map;
1697 p->swap_map = NULL;
1698 p->flags = 0;
Hugh Dickins5d337b92005-09-03 15:54:41 -07001699 spin_unlock(&swap_lock);
Ingo Molnarfc0abb12006-01-18 17:42:33 -08001700 mutex_unlock(&swapon_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701 vfree(swap_map);
KAMEZAWA Hiroyuki27a7faa2009-01-07 18:07:58 -08001702 /* Destroy swap account informatin */
1703 swap_cgroup_swapoff(type);
1704
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 inode = mapping->host;
1706 if (S_ISBLK(inode->i_mode)) {
1707 struct block_device *bdev = I_BDEV(inode);
1708 set_blocksize(bdev, p->old_block_size);
1709 bd_release(bdev);
1710 } else {
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001711 mutex_lock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712 inode->i_flags &= ~S_SWAPFILE;
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001713 mutex_unlock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 }
1715 filp_close(swap_file, NULL);
1716 err = 0;
1717
1718out_dput:
1719 filp_close(victim, NULL);
1720out:
1721 return err;
1722}
1723
1724#ifdef CONFIG_PROC_FS
1725/* iterator */
1726static void *swap_start(struct seq_file *swap, loff_t *pos)
1727{
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001728 struct swap_info_struct *si;
1729 int type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730 loff_t l = *pos;
1731
Ingo Molnarfc0abb12006-01-18 17:42:33 -08001732 mutex_lock(&swapon_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733
Suleiman Souhlal881e4aa2006-12-06 20:32:28 -08001734 if (!l)
1735 return SEQ_START_TOKEN;
1736
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001737 for (type = 0; type < nr_swapfiles; type++) {
1738 smp_rmb(); /* read nr_swapfiles before swap_info[type] */
1739 si = swap_info[type];
1740 if (!(si->flags & SWP_USED) || !si->swap_map)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 continue;
Suleiman Souhlal881e4aa2006-12-06 20:32:28 -08001742 if (!--l)
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001743 return si;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744 }
1745
1746 return NULL;
1747}
1748
1749static void *swap_next(struct seq_file *swap, void *v, loff_t *pos)
1750{
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001751 struct swap_info_struct *si = v;
1752 int type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753
Suleiman Souhlal881e4aa2006-12-06 20:32:28 -08001754 if (v == SEQ_START_TOKEN)
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001755 type = 0;
1756 else
1757 type = si->type + 1;
Suleiman Souhlal881e4aa2006-12-06 20:32:28 -08001758
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001759 for (; type < nr_swapfiles; type++) {
1760 smp_rmb(); /* read nr_swapfiles before swap_info[type] */
1761 si = swap_info[type];
1762 if (!(si->flags & SWP_USED) || !si->swap_map)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763 continue;
1764 ++*pos;
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001765 return si;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 }
1767
1768 return NULL;
1769}
1770
1771static void swap_stop(struct seq_file *swap, void *v)
1772{
Ingo Molnarfc0abb12006-01-18 17:42:33 -08001773 mutex_unlock(&swapon_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774}
1775
1776static int swap_show(struct seq_file *swap, void *v)
1777{
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001778 struct swap_info_struct *si = v;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 struct file *file;
1780 int len;
1781
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001782 if (si == SEQ_START_TOKEN) {
Suleiman Souhlal881e4aa2006-12-06 20:32:28 -08001783 seq_puts(swap,"Filename\t\t\t\tType\t\tSize\tUsed\tPriority\n");
1784 return 0;
1785 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001787 file = si->swap_file;
Jan Blunckc32c2f62008-02-14 19:38:43 -08001788 len = seq_path(swap, &file->f_path, " \t\n\\");
Hugh Dickins6eb396d2005-09-03 15:54:35 -07001789 seq_printf(swap, "%*s%s\t%u\t%u\t%d\n",
Hugh Dickins886bb7e2009-01-06 14:39:48 -08001790 len < 40 ? 40 - len : 1, " ",
1791 S_ISBLK(file->f_path.dentry->d_inode->i_mode) ?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792 "partition" : "file\t",
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001793 si->pages << (PAGE_SHIFT - 10),
1794 si->inuse_pages << (PAGE_SHIFT - 10),
1795 si->prio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 return 0;
1797}
1798
Helge Deller15ad7cd2006-12-06 20:40:36 -08001799static const struct seq_operations swaps_op = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800 .start = swap_start,
1801 .next = swap_next,
1802 .stop = swap_stop,
1803 .show = swap_show
1804};
1805
1806static int swaps_open(struct inode *inode, struct file *file)
1807{
1808 return seq_open(file, &swaps_op);
1809}
1810
Helge Deller15ad7cd2006-12-06 20:40:36 -08001811static const struct file_operations proc_swaps_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812 .open = swaps_open,
1813 .read = seq_read,
1814 .llseek = seq_lseek,
1815 .release = seq_release,
1816};
1817
1818static int __init procswaps_init(void)
1819{
Denis V. Lunev3d71f862008-04-29 01:02:13 -07001820 proc_create("swaps", 0, NULL, &proc_swaps_operations);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 return 0;
1822}
1823__initcall(procswaps_init);
1824#endif /* CONFIG_PROC_FS */
1825
Jan Beulich17963162008-12-16 11:35:24 +00001826#ifdef MAX_SWAPFILES_CHECK
1827static int __init max_swapfiles_check(void)
1828{
1829 MAX_SWAPFILES_CHECK();
1830 return 0;
1831}
1832late_initcall(max_swapfiles_check);
1833#endif
1834
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835/*
1836 * Written 01/25/92 by Simmule Turner, heavily changed by Linus.
1837 *
1838 * The swapon system call
1839 */
Heiko Carstensc4ea37c2009-01-14 14:14:28 +01001840SYSCALL_DEFINE2(swapon, const char __user *, specialfile, int, swap_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841{
Hugh Dickins73c34b62009-12-14 17:58:43 -08001842 struct swap_info_struct *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 char *name = NULL;
1844 struct block_device *bdev = NULL;
1845 struct file *swap_file = NULL;
1846 struct address_space *mapping;
1847 unsigned int type;
1848 int i, prev;
1849 int error;
Hugh Dickinsad2bd7e2010-03-05 13:42:12 -08001850 union swap_header *swap_header;
1851 unsigned int nr_good_pages;
Hugh Dickins6eb396d2005-09-03 15:54:35 -07001852 int nr_extents = 0;
Hugh Dickins53092a72005-09-03 15:54:34 -07001853 sector_t span;
Hugh Dickinsad2bd7e2010-03-05 13:42:12 -08001854 unsigned long maxpages;
Hugh Dickins73fd8742009-01-06 14:39:47 -08001855 unsigned long swapfilepages;
Hugh Dickins8d69aae2009-12-14 17:58:45 -08001856 unsigned char *swap_map = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857 struct page *page = NULL;
1858 struct inode *inode = NULL;
1859 int did_down = 0;
1860
1861 if (!capable(CAP_SYS_ADMIN))
1862 return -EPERM;
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001863
1864 p = kzalloc(sizeof(*p), GFP_KERNEL);
1865 if (!p)
1866 return -ENOMEM;
1867
Hugh Dickins5d337b92005-09-03 15:54:41 -07001868 spin_lock(&swap_lock);
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001869 for (type = 0; type < nr_swapfiles; type++) {
1870 if (!(swap_info[type]->flags & SWP_USED))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 break;
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001872 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873 error = -EPERM;
Christoph Lameter06972122006-06-23 02:03:35 -07001874 if (type >= MAX_SWAPFILES) {
Hugh Dickins5d337b92005-09-03 15:54:41 -07001875 spin_unlock(&swap_lock);
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001876 kfree(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 goto out;
1878 }
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001879 if (type >= nr_swapfiles) {
1880 p->type = type;
1881 swap_info[type] = p;
1882 /*
1883 * Write swap_info[type] before nr_swapfiles, in case a
1884 * racing procfs swap_start() or swap_next() is reading them.
1885 * (We never shrink nr_swapfiles, we never free this entry.)
1886 */
1887 smp_wmb();
1888 nr_swapfiles++;
1889 } else {
1890 kfree(p);
1891 p = swap_info[type];
1892 /*
1893 * Do not memset this entry: a racing procfs swap_next()
1894 * would be relying on p->type to remain valid.
1895 */
1896 }
Hugh Dickins9625a5f2009-12-14 17:58:42 -08001897 INIT_LIST_HEAD(&p->first_swap_extent.list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898 p->flags = SWP_USED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 p->next = -1;
Hugh Dickins5d337b92005-09-03 15:54:41 -07001900 spin_unlock(&swap_lock);
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001901
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902 name = getname(specialfile);
1903 error = PTR_ERR(name);
1904 if (IS_ERR(name)) {
1905 name = NULL;
1906 goto bad_swap_2;
1907 }
1908 swap_file = filp_open(name, O_RDWR|O_LARGEFILE, 0);
1909 error = PTR_ERR(swap_file);
1910 if (IS_ERR(swap_file)) {
1911 swap_file = NULL;
1912 goto bad_swap_2;
1913 }
1914
1915 p->swap_file = swap_file;
1916 mapping = swap_file->f_mapping;
1917 inode = mapping->host;
1918
1919 error = -EBUSY;
1920 for (i = 0; i < nr_swapfiles; i++) {
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001921 struct swap_info_struct *q = swap_info[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922
1923 if (i == type || !q->swap_file)
1924 continue;
1925 if (mapping == q->swap_file->f_mapping)
1926 goto bad_swap;
1927 }
1928
1929 error = -EINVAL;
1930 if (S_ISBLK(inode->i_mode)) {
1931 bdev = I_BDEV(inode);
1932 error = bd_claim(bdev, sys_swapon);
1933 if (error < 0) {
1934 bdev = NULL;
Rob Landleyf7b3a432005-09-22 21:44:27 -07001935 error = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936 goto bad_swap;
1937 }
1938 p->old_block_size = block_size(bdev);
1939 error = set_blocksize(bdev, PAGE_SIZE);
1940 if (error < 0)
1941 goto bad_swap;
1942 p->bdev = bdev;
Nitin Guptab2725642010-05-17 11:02:42 +05301943 p->flags |= SWP_BLKDEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 } else if (S_ISREG(inode->i_mode)) {
1945 p->bdev = inode->i_sb->s_bdev;
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001946 mutex_lock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 did_down = 1;
1948 if (IS_SWAPFILE(inode)) {
1949 error = -EBUSY;
1950 goto bad_swap;
1951 }
1952 } else {
1953 goto bad_swap;
1954 }
1955
Hugh Dickins73fd8742009-01-06 14:39:47 -08001956 swapfilepages = i_size_read(inode) >> PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957
1958 /*
1959 * Read the swap header.
1960 */
1961 if (!mapping->a_ops->readpage) {
1962 error = -EINVAL;
1963 goto bad_swap;
1964 }
Pekka Enberg090d2b12006-06-23 02:05:08 -07001965 page = read_mapping_page(mapping, 0, swap_file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 if (IS_ERR(page)) {
1967 error = PTR_ERR(page);
1968 goto bad_swap;
1969 }
Hugh Dickins81e33972009-01-06 14:39:49 -08001970 swap_header = kmap(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971
Hugh Dickins81e33972009-01-06 14:39:49 -08001972 if (memcmp("SWAPSPACE2", swap_header->magic.magic, 10)) {
Jesper Juhle97a3112006-01-11 01:50:28 +01001973 printk(KERN_ERR "Unable to find swap-space signature\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974 error = -EINVAL;
1975 goto bad_swap;
1976 }
Hugh Dickins886bb7e2009-01-06 14:39:48 -08001977
Hugh Dickins81e33972009-01-06 14:39:49 -08001978 /* swap partition endianess hack... */
1979 if (swab32(swap_header->info.version) == 1) {
1980 swab32s(&swap_header->info.version);
1981 swab32s(&swap_header->info.last_page);
1982 swab32s(&swap_header->info.nr_badpages);
1983 for (i = 0; i < swap_header->info.nr_badpages; i++)
1984 swab32s(&swap_header->info.badpages[i]);
1985 }
1986 /* Check the swap header's sub-version */
1987 if (swap_header->info.version != 1) {
1988 printk(KERN_WARNING
1989 "Unable to handle swap header version %d\n",
1990 swap_header->info.version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991 error = -EINVAL;
1992 goto bad_swap;
Hugh Dickins81e33972009-01-06 14:39:49 -08001993 }
1994
1995 p->lowest_bit = 1;
1996 p->cluster_next = 1;
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001997 p->cluster_nr = 0;
Hugh Dickins81e33972009-01-06 14:39:49 -08001998
1999 /*
2000 * Find out how many pages are allowed for a single swap
2001 * device. There are two limiting factors: 1) the number of
2002 * bits for the swap offset in the swp_entry_t type and
2003 * 2) the number of bits in the a swap pte as defined by
2004 * the different architectures. In order to find the
2005 * largest possible bit mask a swap entry with swap type 0
2006 * and swap offset ~0UL is created, encoded to a swap pte,
2007 * decoded to a swp_entry_t again and finally the swap
2008 * offset is extracted. This will mask all the bits from
2009 * the initial ~0UL mask that can't be encoded in either
2010 * the swp_entry_t or the architecture definition of a
2011 * swap pte.
2012 */
2013 maxpages = swp_offset(pte_to_swp_entry(
Hugh Dickinsad2bd7e2010-03-05 13:42:12 -08002014 swp_entry_to_pte(swp_entry(0, ~0UL)))) + 1;
2015 if (maxpages > swap_header->info.last_page) {
2016 maxpages = swap_header->info.last_page + 1;
2017 /* p->max is an unsigned int: don't overflow it */
2018 if ((unsigned int)maxpages == 0)
2019 maxpages = UINT_MAX;
2020 }
Hugh Dickins81e33972009-01-06 14:39:49 -08002021 p->highest_bit = maxpages - 1;
2022
2023 error = -EINVAL;
2024 if (!maxpages)
2025 goto bad_swap;
2026 if (swapfilepages && maxpages > swapfilepages) {
2027 printk(KERN_WARNING
2028 "Swap area shorter than signature indicates\n");
2029 goto bad_swap;
2030 }
2031 if (swap_header->info.nr_badpages && S_ISREG(inode->i_mode))
2032 goto bad_swap;
2033 if (swap_header->info.nr_badpages > MAX_SWAP_BADPAGES)
2034 goto bad_swap;
2035
2036 /* OK, set up the swap map and apply the bad block list */
Hugh Dickins8d69aae2009-12-14 17:58:45 -08002037 swap_map = vmalloc(maxpages);
Hugh Dickins81e33972009-01-06 14:39:49 -08002038 if (!swap_map) {
2039 error = -ENOMEM;
2040 goto bad_swap;
2041 }
2042
Hugh Dickins8d69aae2009-12-14 17:58:45 -08002043 memset(swap_map, 0, maxpages);
Hugh Dickinsad2bd7e2010-03-05 13:42:12 -08002044 nr_good_pages = maxpages - 1; /* omit header page */
2045
Hugh Dickins81e33972009-01-06 14:39:49 -08002046 for (i = 0; i < swap_header->info.nr_badpages; i++) {
Hugh Dickinsad2bd7e2010-03-05 13:42:12 -08002047 unsigned int page_nr = swap_header->info.badpages[i];
2048 if (page_nr == 0 || page_nr > swap_header->info.last_page) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049 error = -EINVAL;
2050 goto bad_swap;
2051 }
Hugh Dickinsad2bd7e2010-03-05 13:42:12 -08002052 if (page_nr < maxpages) {
2053 swap_map[page_nr] = SWAP_MAP_BAD;
2054 nr_good_pages--;
2055 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056 }
KAMEZAWA Hiroyuki27a7faa2009-01-07 18:07:58 -08002057
2058 error = swap_cgroup_swapon(type, maxpages);
2059 if (error)
2060 goto bad_swap;
2061
Hugh Dickinse2244ec2005-09-03 15:54:32 -07002062 if (nr_good_pages) {
Hugh Dickins78ecba02008-07-23 21:28:23 -07002063 swap_map[0] = SWAP_MAP_BAD;
Hugh Dickinse2244ec2005-09-03 15:54:32 -07002064 p->max = maxpages;
2065 p->pages = nr_good_pages;
Hugh Dickins53092a72005-09-03 15:54:34 -07002066 nr_extents = setup_swap_extents(p, &span);
2067 if (nr_extents < 0) {
2068 error = nr_extents;
Hugh Dickinse2244ec2005-09-03 15:54:32 -07002069 goto bad_swap;
Hugh Dickins53092a72005-09-03 15:54:34 -07002070 }
Hugh Dickinse2244ec2005-09-03 15:54:32 -07002071 nr_good_pages = p->pages;
2072 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 if (!nr_good_pages) {
2074 printk(KERN_WARNING "Empty swap-file\n");
2075 error = -EINVAL;
2076 goto bad_swap;
2077 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078
Suresh Jayaraman3bd0f0c2009-09-30 10:53:48 +02002079 if (p->bdev) {
2080 if (blk_queue_nonrot(bdev_get_queue(p->bdev))) {
2081 p->flags |= SWP_SOLIDSTATE;
2082 p->cluster_next = 1 + (random32() % p->highest_bit);
2083 }
2084 if (discard_swap(p) == 0)
2085 p->flags |= SWP_DISCARDABLE;
Hugh Dickins20137a42009-01-06 14:39:54 -08002086 }
Hugh Dickins6a6ba832009-01-06 14:39:51 -08002087
Ingo Molnarfc0abb12006-01-18 17:42:33 -08002088 mutex_lock(&swapon_mutex);
Hugh Dickins5d337b92005-09-03 15:54:41 -07002089 spin_lock(&swap_lock);
Hugh Dickins78ecba02008-07-23 21:28:23 -07002090 if (swap_flags & SWAP_FLAG_PREFER)
2091 p->prio =
2092 (swap_flags & SWAP_FLAG_PRIO_MASK) >> SWAP_FLAG_PRIO_SHIFT;
2093 else
2094 p->prio = --least_priority;
2095 p->swap_map = swap_map;
Hugh Dickins22c6f8f2009-01-06 14:39:48 -08002096 p->flags |= SWP_WRITEOK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097 nr_swap_pages += nr_good_pages;
2098 total_swap_pages += nr_good_pages;
Hugh Dickins53092a72005-09-03 15:54:34 -07002099
Hugh Dickins6eb396d2005-09-03 15:54:35 -07002100 printk(KERN_INFO "Adding %uk swap on %s. "
Hugh Dickins20137a42009-01-06 14:39:54 -08002101 "Priority:%d extents:%d across:%lluk %s%s\n",
Hugh Dickins53092a72005-09-03 15:54:34 -07002102 nr_good_pages<<(PAGE_SHIFT-10), name, p->prio,
Hugh Dickins6a6ba832009-01-06 14:39:51 -08002103 nr_extents, (unsigned long long)span<<(PAGE_SHIFT-10),
Hugh Dickins20137a42009-01-06 14:39:54 -08002104 (p->flags & SWP_SOLIDSTATE) ? "SS" : "",
2105 (p->flags & SWP_DISCARDABLE) ? "D" : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106
2107 /* insert swap space into swap_list: */
2108 prev = -1;
Hugh Dickinsefa90a92009-12-14 17:58:41 -08002109 for (i = swap_list.head; i >= 0; i = swap_info[i]->next) {
2110 if (p->prio >= swap_info[i]->prio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112 prev = i;
2113 }
2114 p->next = i;
Hugh Dickinsefa90a92009-12-14 17:58:41 -08002115 if (prev < 0)
2116 swap_list.head = swap_list.next = type;
2117 else
2118 swap_info[prev]->next = type;
Hugh Dickins5d337b92005-09-03 15:54:41 -07002119 spin_unlock(&swap_lock);
Ingo Molnarfc0abb12006-01-18 17:42:33 -08002120 mutex_unlock(&swapon_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121 error = 0;
2122 goto out;
2123bad_swap:
2124 if (bdev) {
2125 set_blocksize(bdev, p->old_block_size);
2126 bd_release(bdev);
2127 }
Hugh Dickins4cd3bb12005-09-03 15:54:33 -07002128 destroy_swap_extents(p);
KAMEZAWA Hiroyuki27a7faa2009-01-07 18:07:58 -08002129 swap_cgroup_swapoff(type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130bad_swap_2:
Hugh Dickins5d337b92005-09-03 15:54:41 -07002131 spin_lock(&swap_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132 p->swap_file = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133 p->flags = 0;
Hugh Dickins5d337b92005-09-03 15:54:41 -07002134 spin_unlock(&swap_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135 vfree(swap_map);
2136 if (swap_file)
2137 filp_close(swap_file, NULL);
2138out:
2139 if (page && !IS_ERR(page)) {
2140 kunmap(page);
2141 page_cache_release(page);
2142 }
2143 if (name)
2144 putname(name);
2145 if (did_down) {
2146 if (!error)
2147 inode->i_flags |= S_SWAPFILE;
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002148 mutex_unlock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149 }
2150 return error;
2151}
2152
2153void si_swapinfo(struct sysinfo *val)
2154{
Hugh Dickinsefa90a92009-12-14 17:58:41 -08002155 unsigned int type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156 unsigned long nr_to_be_unused = 0;
2157
Hugh Dickins5d337b92005-09-03 15:54:41 -07002158 spin_lock(&swap_lock);
Hugh Dickinsefa90a92009-12-14 17:58:41 -08002159 for (type = 0; type < nr_swapfiles; type++) {
2160 struct swap_info_struct *si = swap_info[type];
2161
2162 if ((si->flags & SWP_USED) && !(si->flags & SWP_WRITEOK))
2163 nr_to_be_unused += si->inuse_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164 }
2165 val->freeswap = nr_swap_pages + nr_to_be_unused;
2166 val->totalswap = total_swap_pages + nr_to_be_unused;
Hugh Dickins5d337b92005-09-03 15:54:41 -07002167 spin_unlock(&swap_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168}
2169
2170/*
2171 * Verify that a swap entry is valid and increment its swap map count.
2172 *
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -07002173 * Returns error code in following case.
2174 * - success -> 0
2175 * - swp_entry is invalid -> EINVAL
2176 * - swp_entry is migration entry -> EINVAL
2177 * - swap-cache reference is requested but there is already one. -> EEXIST
2178 * - swap-cache reference is requested but the entry is not used. -> ENOENT
Hugh Dickins570a335b2009-12-14 17:58:46 -08002179 * - swap-mapped reference requested but needs continued swap count. -> ENOMEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180 */
Hugh Dickins8d69aae2009-12-14 17:58:45 -08002181static int __swap_duplicate(swp_entry_t entry, unsigned char usage)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182{
Hugh Dickins73c34b62009-12-14 17:58:43 -08002183 struct swap_info_struct *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184 unsigned long offset, type;
Hugh Dickins8d69aae2009-12-14 17:58:45 -08002185 unsigned char count;
2186 unsigned char has_cache;
Hugh Dickins253d5532009-12-14 17:58:44 -08002187 int err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188
Andi Kleena7420aa2009-09-16 11:50:05 +02002189 if (non_swap_entry(entry))
Hugh Dickins253d5532009-12-14 17:58:44 -08002190 goto out;
Christoph Lameter06972122006-06-23 02:03:35 -07002191
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192 type = swp_type(entry);
2193 if (type >= nr_swapfiles)
2194 goto bad_file;
Hugh Dickinsefa90a92009-12-14 17:58:41 -08002195 p = swap_info[type];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196 offset = swp_offset(entry);
2197
Hugh Dickins5d337b92005-09-03 15:54:41 -07002198 spin_lock(&swap_lock);
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -07002199 if (unlikely(offset >= p->max))
2200 goto unlock_out;
2201
Hugh Dickins253d5532009-12-14 17:58:44 -08002202 count = p->swap_map[offset];
2203 has_cache = count & SWAP_HAS_CACHE;
2204 count &= ~SWAP_HAS_CACHE;
2205 err = 0;
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -07002206
Hugh Dickins253d5532009-12-14 17:58:44 -08002207 if (usage == SWAP_HAS_CACHE) {
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -07002208
2209 /* set SWAP_HAS_CACHE if there is no cache and entry is used */
Hugh Dickins253d5532009-12-14 17:58:44 -08002210 if (!has_cache && count)
2211 has_cache = SWAP_HAS_CACHE;
2212 else if (has_cache) /* someone else added cache */
2213 err = -EEXIST;
2214 else /* no users remaining */
2215 err = -ENOENT;
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -07002216
2217 } else if (count || has_cache) {
Hugh Dickins253d5532009-12-14 17:58:44 -08002218
Hugh Dickins570a335b2009-12-14 17:58:46 -08002219 if ((count & ~COUNT_CONTINUED) < SWAP_MAP_MAX)
2220 count += usage;
2221 else if ((count & ~COUNT_CONTINUED) > SWAP_MAP_MAX)
Hugh Dickins253d5532009-12-14 17:58:44 -08002222 err = -EINVAL;
Hugh Dickins570a335b2009-12-14 17:58:46 -08002223 else if (swap_count_continued(p, offset, count))
2224 count = COUNT_CONTINUED;
2225 else
2226 err = -ENOMEM;
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -07002227 } else
Hugh Dickins253d5532009-12-14 17:58:44 -08002228 err = -ENOENT; /* unused swap entry */
2229
2230 p->swap_map[offset] = count | has_cache;
2231
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -07002232unlock_out:
Hugh Dickins5d337b92005-09-03 15:54:41 -07002233 spin_unlock(&swap_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234out:
Hugh Dickins253d5532009-12-14 17:58:44 -08002235 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236
2237bad_file:
2238 printk(KERN_ERR "swap_dup: %s%08lx\n", Bad_file, entry.val);
2239 goto out;
2240}
Hugh Dickins253d5532009-12-14 17:58:44 -08002241
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -07002242/*
Hugh Dickinsaaa46862009-12-14 17:58:47 -08002243 * Help swapoff by noting that swap entry belongs to shmem/tmpfs
2244 * (in which case its reference count is never incremented).
2245 */
2246void swap_shmem_alloc(swp_entry_t entry)
2247{
2248 __swap_duplicate(entry, SWAP_MAP_SHMEM);
2249}
2250
2251/*
Hugh Dickins08259d52010-03-05 13:42:25 -08002252 * Increase reference count of swap entry by 1.
2253 * Returns 0 for success, or -ENOMEM if a swap_count_continuation is required
2254 * but could not be atomically allocated. Returns 0, just as if it succeeded,
2255 * if __swap_duplicate() fails for another reason (-EINVAL or -ENOENT), which
2256 * might occur if a page table entry has got corrupted.
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -07002257 */
Hugh Dickins570a335b2009-12-14 17:58:46 -08002258int swap_duplicate(swp_entry_t entry)
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -07002259{
Hugh Dickins570a335b2009-12-14 17:58:46 -08002260 int err = 0;
2261
2262 while (!err && __swap_duplicate(entry, 1) == -ENOMEM)
2263 err = add_swap_count_continuation(entry, GFP_ATOMIC);
2264 return err;
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -07002265}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266
KAMEZAWA Hiroyukicb4b86b2009-06-16 15:32:52 -07002267/*
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -07002268 * @entry: swap entry for which we allocate swap cache.
2269 *
Hugh Dickins73c34b62009-12-14 17:58:43 -08002270 * Called when allocating swap cache for existing swap entry,
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -07002271 * This can return error codes. Returns 0 at success.
2272 * -EBUSY means there is a swap cache.
2273 * Note: return code is different from swap_duplicate().
KAMEZAWA Hiroyukicb4b86b2009-06-16 15:32:52 -07002274 */
2275int swapcache_prepare(swp_entry_t entry)
2276{
Hugh Dickins253d5532009-12-14 17:58:44 -08002277 return __swap_duplicate(entry, SWAP_HAS_CACHE);
KAMEZAWA Hiroyukicb4b86b2009-06-16 15:32:52 -07002278}
2279
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280/*
Hugh Dickins5d337b92005-09-03 15:54:41 -07002281 * swap_lock prevents swap_map being freed. Don't grab an extra
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282 * reference on the swaphandle, it doesn't matter if it becomes unused.
2283 */
2284int valid_swaphandles(swp_entry_t entry, unsigned long *offset)
2285{
Hugh Dickins89528982008-02-04 22:28:45 -08002286 struct swap_info_struct *si;
Hugh Dickins3f9e7942006-09-29 02:01:26 -07002287 int our_page_cluster = page_cluster;
Hugh Dickins89528982008-02-04 22:28:45 -08002288 pgoff_t target, toff;
2289 pgoff_t base, end;
2290 int nr_pages = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291
Hugh Dickins3f9e7942006-09-29 02:01:26 -07002292 if (!our_page_cluster) /* no readahead */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293 return 0;
Hugh Dickins89528982008-02-04 22:28:45 -08002294
Hugh Dickinsefa90a92009-12-14 17:58:41 -08002295 si = swap_info[swp_type(entry)];
Hugh Dickins89528982008-02-04 22:28:45 -08002296 target = swp_offset(entry);
2297 base = (target >> our_page_cluster) << our_page_cluster;
2298 end = base + (1 << our_page_cluster);
2299 if (!base) /* first page is swap header */
2300 base++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301
Hugh Dickins5d337b92005-09-03 15:54:41 -07002302 spin_lock(&swap_lock);
Hugh Dickins89528982008-02-04 22:28:45 -08002303 if (end > si->max) /* don't go beyond end of map */
2304 end = si->max;
2305
2306 /* Count contiguous allocated slots above our target */
2307 for (toff = target; ++toff < end; nr_pages++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308 /* Don't read in free or bad pages */
Hugh Dickins89528982008-02-04 22:28:45 -08002309 if (!si->swap_map[toff])
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310 break;
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -07002311 if (swap_count(si->swap_map[toff]) == SWAP_MAP_BAD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312 break;
Hugh Dickins89528982008-02-04 22:28:45 -08002313 }
2314 /* Count contiguous allocated slots below our target */
2315 for (toff = target; --toff >= base; nr_pages++) {
2316 /* Don't read in free or bad pages */
2317 if (!si->swap_map[toff])
2318 break;
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -07002319 if (swap_count(si->swap_map[toff]) == SWAP_MAP_BAD)
Hugh Dickins89528982008-02-04 22:28:45 -08002320 break;
2321 }
Hugh Dickins5d337b92005-09-03 15:54:41 -07002322 spin_unlock(&swap_lock);
Hugh Dickins89528982008-02-04 22:28:45 -08002323
2324 /*
2325 * Indicate starting offset, and return number of pages to get:
2326 * if only 1, say 0, since there's then no readahead to be done.
2327 */
2328 *offset = ++toff;
2329 return nr_pages? ++nr_pages: 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330}
Hugh Dickins570a335b2009-12-14 17:58:46 -08002331
2332/*
2333 * add_swap_count_continuation - called when a swap count is duplicated
2334 * beyond SWAP_MAP_MAX, it allocates a new page and links that to the entry's
2335 * page of the original vmalloc'ed swap_map, to hold the continuation count
2336 * (for that entry and for its neighbouring PAGE_SIZE swap entries). Called
2337 * again when count is duplicated beyond SWAP_MAP_MAX * SWAP_CONT_MAX, etc.
2338 *
2339 * These continuation pages are seldom referenced: the common paths all work
2340 * on the original swap_map, only referring to a continuation page when the
2341 * low "digit" of a count is incremented or decremented through SWAP_MAP_MAX.
2342 *
2343 * add_swap_count_continuation(, GFP_ATOMIC) can be called while holding
2344 * page table locks; if it fails, add_swap_count_continuation(, GFP_KERNEL)
2345 * can be called after dropping locks.
2346 */
2347int add_swap_count_continuation(swp_entry_t entry, gfp_t gfp_mask)
2348{
2349 struct swap_info_struct *si;
2350 struct page *head;
2351 struct page *page;
2352 struct page *list_page;
2353 pgoff_t offset;
2354 unsigned char count;
2355
2356 /*
2357 * When debugging, it's easier to use __GFP_ZERO here; but it's better
2358 * for latency not to zero a page while GFP_ATOMIC and holding locks.
2359 */
2360 page = alloc_page(gfp_mask | __GFP_HIGHMEM);
2361
2362 si = swap_info_get(entry);
2363 if (!si) {
2364 /*
2365 * An acceptable race has occurred since the failing
2366 * __swap_duplicate(): the swap entry has been freed,
2367 * perhaps even the whole swap_map cleared for swapoff.
2368 */
2369 goto outer;
2370 }
2371
2372 offset = swp_offset(entry);
2373 count = si->swap_map[offset] & ~SWAP_HAS_CACHE;
2374
2375 if ((count & ~COUNT_CONTINUED) != SWAP_MAP_MAX) {
2376 /*
2377 * The higher the swap count, the more likely it is that tasks
2378 * will race to add swap count continuation: we need to avoid
2379 * over-provisioning.
2380 */
2381 goto out;
2382 }
2383
2384 if (!page) {
2385 spin_unlock(&swap_lock);
2386 return -ENOMEM;
2387 }
2388
2389 /*
2390 * We are fortunate that although vmalloc_to_page uses pte_offset_map,
2391 * no architecture is using highmem pages for kernel pagetables: so it
2392 * will not corrupt the GFP_ATOMIC caller's atomic pagetable kmaps.
2393 */
2394 head = vmalloc_to_page(si->swap_map + offset);
2395 offset &= ~PAGE_MASK;
2396
2397 /*
2398 * Page allocation does not initialize the page's lru field,
2399 * but it does always reset its private field.
2400 */
2401 if (!page_private(head)) {
2402 BUG_ON(count & COUNT_CONTINUED);
2403 INIT_LIST_HEAD(&head->lru);
2404 set_page_private(head, SWP_CONTINUED);
2405 si->flags |= SWP_CONTINUED;
2406 }
2407
2408 list_for_each_entry(list_page, &head->lru, lru) {
2409 unsigned char *map;
2410
2411 /*
2412 * If the previous map said no continuation, but we've found
2413 * a continuation page, free our allocation and use this one.
2414 */
2415 if (!(count & COUNT_CONTINUED))
2416 goto out;
2417
2418 map = kmap_atomic(list_page, KM_USER0) + offset;
2419 count = *map;
2420 kunmap_atomic(map, KM_USER0);
2421
2422 /*
2423 * If this continuation count now has some space in it,
2424 * free our allocation and use this one.
2425 */
2426 if ((count & ~COUNT_CONTINUED) != SWAP_CONT_MAX)
2427 goto out;
2428 }
2429
2430 list_add_tail(&page->lru, &head->lru);
2431 page = NULL; /* now it's attached, don't free it */
2432out:
2433 spin_unlock(&swap_lock);
2434outer:
2435 if (page)
2436 __free_page(page);
2437 return 0;
2438}
2439
2440/*
2441 * swap_count_continued - when the original swap_map count is incremented
2442 * from SWAP_MAP_MAX, check if there is already a continuation page to carry
2443 * into, carry if so, or else fail until a new continuation page is allocated;
2444 * when the original swap_map count is decremented from 0 with continuation,
2445 * borrow from the continuation and report whether it still holds more.
2446 * Called while __swap_duplicate() or swap_entry_free() holds swap_lock.
2447 */
2448static bool swap_count_continued(struct swap_info_struct *si,
2449 pgoff_t offset, unsigned char count)
2450{
2451 struct page *head;
2452 struct page *page;
2453 unsigned char *map;
2454
2455 head = vmalloc_to_page(si->swap_map + offset);
2456 if (page_private(head) != SWP_CONTINUED) {
2457 BUG_ON(count & COUNT_CONTINUED);
2458 return false; /* need to add count continuation */
2459 }
2460
2461 offset &= ~PAGE_MASK;
2462 page = list_entry(head->lru.next, struct page, lru);
2463 map = kmap_atomic(page, KM_USER0) + offset;
2464
2465 if (count == SWAP_MAP_MAX) /* initial increment from swap_map */
2466 goto init_map; /* jump over SWAP_CONT_MAX checks */
2467
2468 if (count == (SWAP_MAP_MAX | COUNT_CONTINUED)) { /* incrementing */
2469 /*
2470 * Think of how you add 1 to 999
2471 */
2472 while (*map == (SWAP_CONT_MAX | COUNT_CONTINUED)) {
2473 kunmap_atomic(map, KM_USER0);
2474 page = list_entry(page->lru.next, struct page, lru);
2475 BUG_ON(page == head);
2476 map = kmap_atomic(page, KM_USER0) + offset;
2477 }
2478 if (*map == SWAP_CONT_MAX) {
2479 kunmap_atomic(map, KM_USER0);
2480 page = list_entry(page->lru.next, struct page, lru);
2481 if (page == head)
2482 return false; /* add count continuation */
2483 map = kmap_atomic(page, KM_USER0) + offset;
2484init_map: *map = 0; /* we didn't zero the page */
2485 }
2486 *map += 1;
2487 kunmap_atomic(map, KM_USER0);
2488 page = list_entry(page->lru.prev, struct page, lru);
2489 while (page != head) {
2490 map = kmap_atomic(page, KM_USER0) + offset;
2491 *map = COUNT_CONTINUED;
2492 kunmap_atomic(map, KM_USER0);
2493 page = list_entry(page->lru.prev, struct page, lru);
2494 }
2495 return true; /* incremented */
2496
2497 } else { /* decrementing */
2498 /*
2499 * Think of how you subtract 1 from 1000
2500 */
2501 BUG_ON(count != COUNT_CONTINUED);
2502 while (*map == COUNT_CONTINUED) {
2503 kunmap_atomic(map, KM_USER0);
2504 page = list_entry(page->lru.next, struct page, lru);
2505 BUG_ON(page == head);
2506 map = kmap_atomic(page, KM_USER0) + offset;
2507 }
2508 BUG_ON(*map == 0);
2509 *map -= 1;
2510 if (*map == 0)
2511 count = 0;
2512 kunmap_atomic(map, KM_USER0);
2513 page = list_entry(page->lru.prev, struct page, lru);
2514 while (page != head) {
2515 map = kmap_atomic(page, KM_USER0) + offset;
2516 *map = SWAP_CONT_MAX | count;
2517 count = COUNT_CONTINUED;
2518 kunmap_atomic(map, KM_USER0);
2519 page = list_entry(page->lru.prev, struct page, lru);
2520 }
2521 return count == COUNT_CONTINUED;
2522 }
2523}
2524
2525/*
2526 * free_swap_count_continuations - swapoff free all the continuation pages
2527 * appended to the swap_map, after swap_map is quiesced, before vfree'ing it.
2528 */
2529static void free_swap_count_continuations(struct swap_info_struct *si)
2530{
2531 pgoff_t offset;
2532
2533 for (offset = 0; offset < si->max; offset += PAGE_SIZE) {
2534 struct page *head;
2535 head = vmalloc_to_page(si->swap_map + offset);
2536 if (page_private(head)) {
2537 struct list_head *this, *next;
2538 list_for_each_safe(this, next, &head->lru) {
2539 struct page *page;
2540 page = list_entry(this, struct page, lru);
2541 list_del(this);
2542 __free_page(page);
2543 }
2544 }
2545 }
2546}