- patches.arch/x86_mce_intel_decode_physical_address.patch:
[linux-flexiantxendom0-3.2.10.git] / mm / swapfile.c
1 /*
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
8 #include <linux/mm.h>
9 #include <linux/hugetlb.h>
10 #include <linux/mman.h>
11 #include <linux/slab.h>
12 #include <linux/kernel_stat.h>
13 #include <linux/swap.h>
14 #include <linux/vmalloc.h>
15 #include <linux/pagemap.h>
16 #include <linux/namei.h>
17 #include <linux/shm.h>
18 #include <linux/blkdev.h>
19 #include <linux/random.h>
20 #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>
25 #include <linux/ksm.h>
26 #include <linux/rmap.h>
27 #include <linux/security.h>
28 #include <linux/backing-dev.h>
29 #include <linux/mutex.h>
30 #include <linux/capability.h>
31 #include <linux/syscalls.h>
32 #include <linux/memcontrol.h>
33
34 #include <asm/pgtable.h>
35 #include <asm/tlbflush.h>
36 #include <linux/swapops.h>
37 #include <linux/page_cgroup.h>
38
39 static bool swap_count_continued(struct swap_info_struct *, pgoff_t,
40                                  unsigned char);
41 static void free_swap_count_continuations(struct swap_info_struct *);
42 static sector_t map_swap_entry(swp_entry_t, struct block_device**);
43
44 static DEFINE_SPINLOCK(swap_lock);
45 static unsigned int nr_swapfiles;
46 long nr_swap_pages;
47 long total_swap_pages;
48 static int least_priority;
49
50 static const char Bad_file[] = "Bad swap file entry ";
51 static const char Unused_file[] = "Unused swap file entry ";
52 static const char Bad_offset[] = "Bad swap offset entry ";
53 static const char Unused_offset[] = "Unused swap offset entry ";
54
55 static struct swap_list_t swap_list = {-1, -1};
56
57 static struct swap_info_struct *swap_info[MAX_SWAPFILES];
58
59 static DEFINE_MUTEX(swapon_mutex);
60
61 static inline unsigned char swap_count(unsigned char ent)
62 {
63         return ent & ~SWAP_HAS_CACHE;   /* may include SWAP_HAS_CONT flag */
64 }
65
66 /* returns 1 if swap entry is freed */
67 static int
68 __try_to_reclaim_swap(struct swap_info_struct *si, unsigned long offset)
69 {
70         swp_entry_t entry = swp_entry(si->type, offset);
71         struct page *page;
72         int ret = 0;
73
74         page = find_get_page(&swapper_space, entry.val);
75         if (!page)
76                 return 0;
77         /*
78          * This function is called from scan_swap_map() and it's called
79          * by vmscan.c at reclaiming pages. So, we hold a lock on a page, here.
80          * We have to use trylock for avoiding deadlock. This is a special
81          * case and you should use try_to_free_swap() with explicit lock_page()
82          * in usual operations.
83          */
84         if (trylock_page(page)) {
85                 ret = try_to_free_swap(page);
86                 unlock_page(page);
87         }
88         page_cache_release(page);
89         return ret;
90 }
91
92 /*
93  * We need this because the bdev->unplug_fn can sleep and we cannot
94  * hold swap_lock while calling the unplug_fn. And swap_lock
95  * cannot be turned into a mutex.
96  */
97 static DECLARE_RWSEM(swap_unplug_sem);
98
99 void swap_unplug_io_fn(struct backing_dev_info *unused_bdi, struct page *page)
100 {
101         swp_entry_t entry;
102
103         down_read(&swap_unplug_sem);
104         entry.val = page_private(page);
105         if (PageSwapCache(page)) {
106                 struct block_device *bdev = swap_info[swp_type(entry)]->bdev;
107                 struct backing_dev_info *bdi;
108
109                 /*
110                  * If the page is removed from swapcache from under us (with a
111                  * racy try_to_unuse/swapoff) we need an additional reference
112                  * count to avoid reading garbage from page_private(page) above.
113                  * If the WARN_ON triggers during a swapoff it maybe the race
114                  * condition and it's harmless. However if it triggers without
115                  * swapoff it signals a problem.
116                  */
117                 WARN_ON(page_count(page) <= 1);
118
119                 bdi = bdev->bd_inode->i_mapping->backing_dev_info;
120                 blk_run_backing_dev(bdi, page);
121         }
122         up_read(&swap_unplug_sem);
123 }
124
125 /*
126  * swapon tell device that all the old swap contents can be discarded,
127  * to allow the swap device to optimize its wear-levelling.
128  */
129 static int discard_swap(struct swap_info_struct *si)
130 {
131         struct swap_extent *se;
132         sector_t start_block;
133         sector_t nr_blocks;
134         int err = 0;
135
136         /* Do not discard the swap header page! */
137         se = &si->first_swap_extent;
138         start_block = (se->start_block + 1) << (PAGE_SHIFT - 9);
139         nr_blocks = ((sector_t)se->nr_pages - 1) << (PAGE_SHIFT - 9);
140         if (nr_blocks) {
141                 err = blkdev_issue_discard(si->bdev, start_block,
142                                 nr_blocks, GFP_KERNEL,
143                                 BLKDEV_IFL_WAIT | BLKDEV_IFL_BARRIER);
144                 if (err)
145                         return err;
146                 cond_resched();
147         }
148
149         list_for_each_entry(se, &si->first_swap_extent.list, list) {
150                 start_block = se->start_block << (PAGE_SHIFT - 9);
151                 nr_blocks = (sector_t)se->nr_pages << (PAGE_SHIFT - 9);
152
153                 err = blkdev_issue_discard(si->bdev, start_block,
154                                 nr_blocks, GFP_KERNEL,
155                                 BLKDEV_IFL_WAIT | BLKDEV_IFL_BARRIER);
156                 if (err)
157                         break;
158
159                 cond_resched();
160         }
161         return err;             /* That will often be -EOPNOTSUPP */
162 }
163
164 /*
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  */
168 static 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;
181                         sector_t nr_blocks = se->nr_pages - offset;
182
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,
194                                     nr_blocks, GFP_NOIO, BLKDEV_IFL_WAIT |
195                                                         BLKDEV_IFL_BARRIER))
196                                 break;
197                 }
198
199                 lh = se->list.next;
200                 se = list_entry(lh, struct swap_extent, list);
201         }
202 }
203
204 static int wait_for_discard(void *word)
205 {
206         schedule();
207         return 0;
208 }
209
210 #define SWAPFILE_CLUSTER        256
211 #define LATENCY_LIMIT           256
212
213 static inline unsigned long scan_swap_map(struct swap_info_struct *si,
214                                           unsigned char usage)
215 {
216         unsigned long offset;
217         unsigned long scan_base;
218         unsigned long last_in_cluster = 0;
219         int latency_ration = LATENCY_LIMIT;
220         int found_free_cluster = 0;
221
222         /*
223          * We try to cluster swap pages by allocating them sequentially
224          * in swap.  Once we've allocated SWAPFILE_CLUSTER pages this
225          * way, however, we resort to first-free allocation, starting
226          * a new cluster.  This prevents us from scattering swap pages
227          * all over the entire swap partition, so that we reduce
228          * overall disk seek times between swap pages.  -- sct
229          * But we do now try to find an empty cluster.  -Andrea
230          * And we let swap pages go all over an SSD partition.  Hugh
231          */
232
233         si->flags += SWP_SCANNING;
234         scan_base = offset = si->cluster_next;
235
236         if (unlikely(!si->cluster_nr--)) {
237                 if (si->pages - si->inuse_pages < SWAPFILE_CLUSTER) {
238                         si->cluster_nr = SWAPFILE_CLUSTER - 1;
239                         goto checks;
240                 }
241                 if (si->flags & SWP_DISCARDABLE) {
242                         /*
243                          * Start range check on racing allocations, in case
244                          * they overlap the cluster we eventually decide on
245                          * (we scan without swap_lock to allow preemption).
246                          * It's hardly conceivable that cluster_nr could be
247                          * wrapped during our scan, but don't depend on it.
248                          */
249                         if (si->lowest_alloc)
250                                 goto checks;
251                         si->lowest_alloc = si->max;
252                         si->highest_alloc = 0;
253                 }
254                 spin_unlock(&swap_lock);
255
256                 /*
257                  * If seek is expensive, start searching for new cluster from
258                  * start of partition, to minimize the span of allocated swap.
259                  * But if seek is cheap, search from our current position, so
260                  * that swap is allocated from all over the partition: if the
261                  * Flash Translation Layer only remaps within limited zones,
262                  * we don't want to wear out the first zone too quickly.
263                  */
264                 if (!(si->flags & SWP_SOLIDSTATE))
265                         scan_base = offset = si->lowest_bit;
266                 last_in_cluster = offset + SWAPFILE_CLUSTER - 1;
267
268                 /* Locate the first empty (unaligned) cluster */
269                 for (; last_in_cluster <= si->highest_bit; offset++) {
270                         if (si->swap_map[offset])
271                                 last_in_cluster = offset + SWAPFILE_CLUSTER;
272                         else if (offset == last_in_cluster) {
273                                 spin_lock(&swap_lock);
274                                 offset -= SWAPFILE_CLUSTER - 1;
275                                 si->cluster_next = offset;
276                                 si->cluster_nr = SWAPFILE_CLUSTER - 1;
277                                 found_free_cluster = 1;
278                                 goto checks;
279                         }
280                         if (unlikely(--latency_ration < 0)) {
281                                 cond_resched();
282                                 latency_ration = LATENCY_LIMIT;
283                         }
284                 }
285
286                 offset = si->lowest_bit;
287                 last_in_cluster = offset + SWAPFILE_CLUSTER - 1;
288
289                 /* Locate the first empty (unaligned) cluster */
290                 for (; last_in_cluster < scan_base; offset++) {
291                         if (si->swap_map[offset])
292                                 last_in_cluster = offset + SWAPFILE_CLUSTER;
293                         else if (offset == last_in_cluster) {
294                                 spin_lock(&swap_lock);
295                                 offset -= SWAPFILE_CLUSTER - 1;
296                                 si->cluster_next = offset;
297                                 si->cluster_nr = SWAPFILE_CLUSTER - 1;
298                                 found_free_cluster = 1;
299                                 goto checks;
300                         }
301                         if (unlikely(--latency_ration < 0)) {
302                                 cond_resched();
303                                 latency_ration = LATENCY_LIMIT;
304                         }
305                 }
306
307                 offset = scan_base;
308                 spin_lock(&swap_lock);
309                 si->cluster_nr = SWAPFILE_CLUSTER - 1;
310                 si->lowest_alloc = 0;
311         }
312
313 checks:
314         if (!(si->flags & SWP_WRITEOK))
315                 goto no_page;
316         if (!si->highest_bit)
317                 goto no_page;
318         if (offset > si->highest_bit)
319                 scan_base = offset = si->lowest_bit;
320
321         /* reuse swap entry of cache-only swap if not busy. */
322         if (vm_swap_full() && si->swap_map[offset] == SWAP_HAS_CACHE) {
323                 int swap_was_freed;
324                 spin_unlock(&swap_lock);
325                 swap_was_freed = __try_to_reclaim_swap(si, offset);
326                 spin_lock(&swap_lock);
327                 /* entry was freed successfully, try to use this again */
328                 if (swap_was_freed)
329                         goto checks;
330                 goto scan; /* check next one */
331         }
332
333         if (si->swap_map[offset])
334                 goto scan;
335
336         if (offset == si->lowest_bit)
337                 si->lowest_bit++;
338         if (offset == si->highest_bit)
339                 si->highest_bit--;
340         si->inuse_pages++;
341         if (si->inuse_pages == si->pages) {
342                 si->lowest_bit = si->max;
343                 si->highest_bit = 0;
344         }
345         si->swap_map[offset] = usage;
346         si->cluster_next = offset + 1;
347         si->flags -= SWP_SCANNING;
348
349         if (si->lowest_alloc) {
350                 /*
351                  * Only set when SWP_DISCARDABLE, and there's a scan
352                  * for a free cluster in progress or just completed.
353                  */
354                 if (found_free_cluster) {
355                         /*
356                          * To optimize wear-levelling, discard the
357                          * old data of the cluster, taking care not to
358                          * discard any of its pages that have already
359                          * been allocated by racing tasks (offset has
360                          * already stepped over any at the beginning).
361                          */
362                         if (offset < si->highest_alloc &&
363                             si->lowest_alloc <= last_in_cluster)
364                                 last_in_cluster = si->lowest_alloc - 1;
365                         si->flags |= SWP_DISCARDING;
366                         spin_unlock(&swap_lock);
367
368                         if (offset < last_in_cluster)
369                                 discard_swap_cluster(si, offset,
370                                         last_in_cluster - offset + 1);
371
372                         spin_lock(&swap_lock);
373                         si->lowest_alloc = 0;
374                         si->flags &= ~SWP_DISCARDING;
375
376                         smp_mb();       /* wake_up_bit advises this */
377                         wake_up_bit(&si->flags, ilog2(SWP_DISCARDING));
378
379                 } else if (si->flags & SWP_DISCARDING) {
380                         /*
381                          * Delay using pages allocated by racing tasks
382                          * until the whole discard has been issued. We
383                          * could defer that delay until swap_writepage,
384                          * but it's easier to keep this self-contained.
385                          */
386                         spin_unlock(&swap_lock);
387                         wait_on_bit(&si->flags, ilog2(SWP_DISCARDING),
388                                 wait_for_discard, TASK_UNINTERRUPTIBLE);
389                         spin_lock(&swap_lock);
390                 } else {
391                         /*
392                          * Note pages allocated by racing tasks while
393                          * scan for a free cluster is in progress, so
394                          * that its final discard can exclude them.
395                          */
396                         if (offset < si->lowest_alloc)
397                                 si->lowest_alloc = offset;
398                         if (offset > si->highest_alloc)
399                                 si->highest_alloc = offset;
400                 }
401         }
402         return offset;
403
404 scan:
405         spin_unlock(&swap_lock);
406         while (++offset <= si->highest_bit) {
407                 if (!si->swap_map[offset]) {
408                         spin_lock(&swap_lock);
409                         goto checks;
410                 }
411                 if (vm_swap_full() && si->swap_map[offset] == SWAP_HAS_CACHE) {
412                         spin_lock(&swap_lock);
413                         goto checks;
414                 }
415                 if (unlikely(--latency_ration < 0)) {
416                         cond_resched();
417                         latency_ration = LATENCY_LIMIT;
418                 }
419         }
420         offset = si->lowest_bit;
421         while (++offset < scan_base) {
422                 if (!si->swap_map[offset]) {
423                         spin_lock(&swap_lock);
424                         goto checks;
425                 }
426                 if (vm_swap_full() && si->swap_map[offset] == SWAP_HAS_CACHE) {
427                         spin_lock(&swap_lock);
428                         goto checks;
429                 }
430                 if (unlikely(--latency_ration < 0)) {
431                         cond_resched();
432                         latency_ration = LATENCY_LIMIT;
433                 }
434         }
435         spin_lock(&swap_lock);
436
437 no_page:
438         si->flags -= SWP_SCANNING;
439         return 0;
440 }
441
442 swp_entry_t get_swap_page(void)
443 {
444         struct swap_info_struct *si;
445         pgoff_t offset;
446         int type, next;
447         int wrapped = 0;
448
449         spin_lock(&swap_lock);
450         if (nr_swap_pages <= 0)
451                 goto noswap;
452         nr_swap_pages--;
453
454         for (type = swap_list.next; type >= 0 && wrapped < 2; type = next) {
455                 si = swap_info[type];
456                 next = si->next;
457                 if (next < 0 ||
458                     (!wrapped && si->prio != swap_info[next]->prio)) {
459                         next = swap_list.head;
460                         wrapped++;
461                 }
462
463                 if (!si->highest_bit)
464                         continue;
465                 if (!(si->flags & SWP_WRITEOK))
466                         continue;
467
468                 swap_list.next = next;
469                 /* This is called for allocating swap entry for cache */
470                 offset = scan_swap_map(si, SWAP_HAS_CACHE);
471                 if (offset) {
472                         spin_unlock(&swap_lock);
473                         return swp_entry(type, offset);
474                 }
475                 next = swap_list.next;
476         }
477
478         nr_swap_pages++;
479 noswap:
480         spin_unlock(&swap_lock);
481         return (swp_entry_t) {0};
482 }
483
484 /* The only caller of this function is now susupend routine */
485 swp_entry_t get_swap_page_of_type(int type)
486 {
487         struct swap_info_struct *si;
488         pgoff_t offset;
489
490         spin_lock(&swap_lock);
491         si = swap_info[type];
492         if (si && (si->flags & SWP_WRITEOK)) {
493                 nr_swap_pages--;
494                 /* This is called for allocating swap entry, not cache */
495                 offset = scan_swap_map(si, 1);
496                 if (offset) {
497                         spin_unlock(&swap_lock);
498                         return swp_entry(type, offset);
499                 }
500                 nr_swap_pages++;
501         }
502         spin_unlock(&swap_lock);
503         return (swp_entry_t) {0};
504 }
505
506 static struct swap_info_struct *swap_info_get(swp_entry_t entry)
507 {
508         struct swap_info_struct *p;
509         unsigned long offset, type;
510
511         if (!entry.val)
512                 goto out;
513         type = swp_type(entry);
514         if (type >= nr_swapfiles)
515                 goto bad_nofile;
516         p = swap_info[type];
517         if (!(p->flags & SWP_USED))
518                 goto bad_device;
519         offset = swp_offset(entry);
520         if (offset >= p->max)
521                 goto bad_offset;
522         if (!p->swap_map[offset])
523                 goto bad_free;
524         spin_lock(&swap_lock);
525         return p;
526
527 bad_free:
528         printk(KERN_ERR "swap_free: %s%08lx\n", Unused_offset, entry.val);
529         goto out;
530 bad_offset:
531         printk(KERN_ERR "swap_free: %s%08lx\n", Bad_offset, entry.val);
532         goto out;
533 bad_device:
534         printk(KERN_ERR "swap_free: %s%08lx\n", Unused_file, entry.val);
535         goto out;
536 bad_nofile:
537         printk(KERN_ERR "swap_free: %s%08lx\n", Bad_file, entry.val);
538 out:
539         return NULL;
540 }
541
542 static unsigned char swap_entry_free(struct swap_info_struct *p,
543                                      swp_entry_t entry, unsigned char usage)
544 {
545         unsigned long offset = swp_offset(entry);
546         unsigned char count;
547         unsigned char has_cache;
548
549         count = p->swap_map[offset];
550         has_cache = count & SWAP_HAS_CACHE;
551         count &= ~SWAP_HAS_CACHE;
552
553         if (usage == SWAP_HAS_CACHE) {
554                 VM_BUG_ON(!has_cache);
555                 has_cache = 0;
556         } else if (count == SWAP_MAP_SHMEM) {
557                 /*
558                  * Or we could insist on shmem.c using a special
559                  * swap_shmem_free() and free_shmem_swap_and_cache()...
560                  */
561                 count = 0;
562         } else if ((count & ~COUNT_CONTINUED) <= SWAP_MAP_MAX) {
563                 if (count == COUNT_CONTINUED) {
564                         if (swap_count_continued(p, offset, count))
565                                 count = SWAP_MAP_MAX | COUNT_CONTINUED;
566                         else
567                                 count = SWAP_MAP_MAX;
568                 } else
569                         count--;
570         }
571
572         if (!count)
573                 mem_cgroup_uncharge_swap(entry);
574
575         usage = count | has_cache;
576         p->swap_map[offset] = usage;
577
578         /* free if no reference */
579         if (!usage) {
580                 struct gendisk *disk = p->bdev->bd_disk;
581                 if (offset < p->lowest_bit)
582                         p->lowest_bit = offset;
583                 if (offset > p->highest_bit)
584                         p->highest_bit = offset;
585                 if (swap_list.next >= 0 &&
586                     p->prio > swap_info[swap_list.next]->prio)
587                         swap_list.next = p->type;
588                 nr_swap_pages++;
589                 p->inuse_pages--;
590                 if ((p->flags & SWP_BLKDEV) &&
591                                 disk->fops->swap_slot_free_notify)
592                         disk->fops->swap_slot_free_notify(p->bdev, offset);
593         }
594
595         return usage;
596 }
597
598 /*
599  * Caller has made sure that the swapdevice corresponding to entry
600  * is still around or has not been recycled.
601  */
602 void swap_free(swp_entry_t entry)
603 {
604         struct swap_info_struct *p;
605
606         p = swap_info_get(entry);
607         if (p) {
608                 swap_entry_free(p, entry, 1);
609                 spin_unlock(&swap_lock);
610         }
611 }
612
613 /*
614  * Called after dropping swapcache to decrease refcnt to swap entries.
615  */
616 void swapcache_free(swp_entry_t entry, struct page *page)
617 {
618         struct swap_info_struct *p;
619         unsigned char count;
620
621         p = swap_info_get(entry);
622         if (p) {
623                 count = swap_entry_free(p, entry, SWAP_HAS_CACHE);
624                 if (page)
625                         mem_cgroup_uncharge_swapcache(page, entry, count != 0);
626                 spin_unlock(&swap_lock);
627         }
628 }
629
630 /*
631  * How many references to page are currently swapped out?
632  * This does not give an exact answer when swap count is continued,
633  * but does include the high COUNT_CONTINUED flag to allow for that.
634  */
635 static inline int page_swapcount(struct page *page)
636 {
637         int count = 0;
638         struct swap_info_struct *p;
639         swp_entry_t entry;
640
641         entry.val = page_private(page);
642         p = swap_info_get(entry);
643         if (p) {
644                 count = swap_count(p->swap_map[swp_offset(entry)]);
645                 spin_unlock(&swap_lock);
646         }
647         return count;
648 }
649
650 /*
651  * We can write to an anon page without COW if there are no other references
652  * to it.  And as a side-effect, free up its swap: because the old content
653  * on disk will never be read, and seeking back there to write new content
654  * later would only waste time away from clustering.
655  */
656 int reuse_swap_page(struct page *page)
657 {
658         int count;
659
660         VM_BUG_ON(!PageLocked(page));
661         if (unlikely(PageKsm(page)))
662                 return 0;
663         count = page_mapcount(page);
664         if (count <= 1 && PageSwapCache(page)) {
665                 count += page_swapcount(page);
666                 if (count == 1 && !PageWriteback(page)) {
667                         delete_from_swap_cache(page);
668                         SetPageDirty(page);
669                 }
670         }
671         return count <= 1;
672 }
673
674 /*
675  * If swap is getting full, or if there are no more mappings of this page,
676  * then try_to_free_swap is called to free its swap space.
677  */
678 int try_to_free_swap(struct page *page)
679 {
680         VM_BUG_ON(!PageLocked(page));
681
682         if (!PageSwapCache(page))
683                 return 0;
684         if (PageWriteback(page))
685                 return 0;
686         if (page_swapcount(page))
687                 return 0;
688
689         delete_from_swap_cache(page);
690         SetPageDirty(page);
691         return 1;
692 }
693
694 /*
695  * Free the swap entry like above, but also try to
696  * free the page cache entry if it is the last user.
697  */
698 int free_swap_and_cache(swp_entry_t entry)
699 {
700         struct swap_info_struct *p;
701         struct page *page = NULL;
702
703         if (non_swap_entry(entry))
704                 return 1;
705
706         p = swap_info_get(entry);
707         if (p) {
708                 if (swap_entry_free(p, entry, 1) == SWAP_HAS_CACHE) {
709                         page = find_get_page(&swapper_space, entry.val);
710                         if (page && !trylock_page(page)) {
711                                 page_cache_release(page);
712                                 page = NULL;
713                         }
714                 }
715                 spin_unlock(&swap_lock);
716         }
717         if (page) {
718                 /*
719                  * Not mapped elsewhere, or swap space full? Free it!
720                  * Also recheck PageSwapCache now page is locked (above).
721                  */
722                 if (PageSwapCache(page) && !PageWriteback(page) &&
723                                 (!page_mapped(page) || vm_swap_full())) {
724                         delete_from_swap_cache(page);
725                         SetPageDirty(page);
726                 }
727                 unlock_page(page);
728                 page_cache_release(page);
729         }
730         return p != NULL;
731 }
732
733 #ifdef CONFIG_CGROUP_MEM_RES_CTLR
734 /**
735  * mem_cgroup_count_swap_user - count the user of a swap entry
736  * @ent: the swap entry to be checked
737  * @pagep: the pointer for the swap cache page of the entry to be stored
738  *
739  * Returns the number of the user of the swap entry. The number is valid only
740  * for swaps of anonymous pages.
741  * If the entry is found on swap cache, the page is stored to pagep with
742  * refcount of it being incremented.
743  */
744 int mem_cgroup_count_swap_user(swp_entry_t ent, struct page **pagep)
745 {
746         struct page *page;
747         struct swap_info_struct *p;
748         int count = 0;
749
750         page = find_get_page(&swapper_space, ent.val);
751         if (page)
752                 count += page_mapcount(page);
753         p = swap_info_get(ent);
754         if (p) {
755                 count += swap_count(p->swap_map[swp_offset(ent)]);
756                 spin_unlock(&swap_lock);
757         }
758
759         *pagep = page;
760         return count;
761 }
762 #endif
763
764 #ifdef CONFIG_HIBERNATION
765 /*
766  * Find the swap type that corresponds to given device (if any).
767  *
768  * @offset - number of the PAGE_SIZE-sized block of the device, starting
769  * from 0, in which the swap header is expected to be located.
770  *
771  * This is needed for the suspend to disk (aka swsusp).
772  */
773 int swap_type_of(dev_t device, sector_t offset, struct block_device **bdev_p)
774 {
775         struct block_device *bdev = NULL;
776         int type;
777
778         if (device)
779                 bdev = bdget(device);
780
781         spin_lock(&swap_lock);
782         for (type = 0; type < nr_swapfiles; type++) {
783                 struct swap_info_struct *sis = swap_info[type];
784
785                 if (!(sis->flags & SWP_WRITEOK))
786                         continue;
787
788                 if (!bdev) {
789                         if (bdev_p)
790                                 *bdev_p = bdgrab(sis->bdev);
791
792                         spin_unlock(&swap_lock);
793                         return type;
794                 }
795                 if (bdev == sis->bdev) {
796                         struct swap_extent *se = &sis->first_swap_extent;
797
798                         if (se->start_block == offset) {
799                                 if (bdev_p)
800                                         *bdev_p = bdgrab(sis->bdev);
801
802                                 spin_unlock(&swap_lock);
803                                 bdput(bdev);
804                                 return type;
805                         }
806                 }
807         }
808         spin_unlock(&swap_lock);
809         if (bdev)
810                 bdput(bdev);
811
812         return -ENODEV;
813 }
814
815 /*
816  * Get the (PAGE_SIZE) block corresponding to given offset on the swapdev
817  * corresponding to given index in swap_info (swap type).
818  */
819 sector_t swapdev_block(int type, pgoff_t offset)
820 {
821         struct block_device *bdev;
822
823         if ((unsigned int)type >= nr_swapfiles)
824                 return 0;
825         if (!(swap_info[type]->flags & SWP_WRITEOK))
826                 return 0;
827         return map_swap_entry(swp_entry(type, offset), &bdev);
828 }
829
830 /*
831  * Return either the total number of swap pages of given type, or the number
832  * of free pages of that type (depending on @free)
833  *
834  * This is needed for software suspend
835  */
836 unsigned int count_swap_pages(int type, int free)
837 {
838         unsigned int n = 0;
839
840         spin_lock(&swap_lock);
841         if ((unsigned int)type < nr_swapfiles) {
842                 struct swap_info_struct *sis = swap_info[type];
843
844                 if (sis->flags & SWP_WRITEOK) {
845                         n = sis->pages;
846                         if (free)
847                                 n -= sis->inuse_pages;
848                 }
849         }
850         spin_unlock(&swap_lock);
851         return n;
852 }
853 #endif /* CONFIG_HIBERNATION */
854
855 /*
856  * No need to decide whether this PTE shares the swap entry with others,
857  * just let do_wp_page work it out if a write is requested later - to
858  * force COW, vm_page_prot omits write permission from any private vma.
859  */
860 static int unuse_pte(struct vm_area_struct *vma, pmd_t *pmd,
861                 unsigned long addr, swp_entry_t entry, struct page *page)
862 {
863         struct mem_cgroup *ptr = NULL;
864         spinlock_t *ptl;
865         pte_t *pte;
866         int ret = 1;
867
868         if (mem_cgroup_try_charge_swapin(vma->vm_mm, page, GFP_KERNEL, &ptr)) {
869                 ret = -ENOMEM;
870                 goto out_nolock;
871         }
872
873         pte = pte_offset_map_lock(vma->vm_mm, pmd, addr, &ptl);
874         if (unlikely(!pte_same(*pte, swp_entry_to_pte(entry)))) {
875                 if (ret > 0)
876                         mem_cgroup_cancel_charge_swapin(ptr);
877                 ret = 0;
878                 goto out;
879         }
880
881         dec_mm_counter(vma->vm_mm, MM_SWAPENTS);
882         inc_mm_counter(vma->vm_mm, MM_ANONPAGES);
883         get_page(page);
884         set_pte_at(vma->vm_mm, addr, pte,
885                    pte_mkold(mk_pte(page, vma->vm_page_prot)));
886         page_add_anon_rmap(page, vma, addr);
887         mem_cgroup_commit_charge_swapin(page, ptr);
888         swap_free(entry);
889         /*
890          * Move the page to the active list so it is not
891          * immediately swapped out again after swapon.
892          */
893         activate_page(page);
894 out:
895         pte_unmap_unlock(pte, ptl);
896 out_nolock:
897         return ret;
898 }
899
900 static int unuse_pte_range(struct vm_area_struct *vma, pmd_t *pmd,
901                                 unsigned long addr, unsigned long end,
902                                 swp_entry_t entry, struct page *page)
903 {
904         pte_t swp_pte = swp_entry_to_pte(entry);
905         pte_t *pte;
906         int ret = 0;
907
908         /*
909          * We don't actually need pte lock while scanning for swp_pte: since
910          * we hold page lock and mmap_sem, swp_pte cannot be inserted into the
911          * page table while we're scanning; though it could get zapped, and on
912          * some architectures (e.g. x86_32 with PAE) we might catch a glimpse
913          * of unmatched parts which look like swp_pte, so unuse_pte must
914          * recheck under pte lock.  Scanning without pte lock lets it be
915          * preemptible whenever CONFIG_PREEMPT but not CONFIG_HIGHPTE.
916          */
917         pte = pte_offset_map(pmd, addr);
918         do {
919                 /*
920                  * swapoff spends a _lot_ of time in this loop!
921                  * Test inline before going to call unuse_pte.
922                  */
923                 if (unlikely(pte_same(*pte, swp_pte))) {
924                         pte_unmap(pte);
925                         ret = unuse_pte(vma, pmd, addr, entry, page);
926                         if (ret)
927                                 goto out;
928                         pte = pte_offset_map(pmd, addr);
929                 }
930         } while (pte++, addr += PAGE_SIZE, addr != end);
931         pte_unmap(pte - 1);
932 out:
933         return ret;
934 }
935
936 static inline int unuse_pmd_range(struct vm_area_struct *vma, pud_t *pud,
937                                 unsigned long addr, unsigned long end,
938                                 swp_entry_t entry, struct page *page)
939 {
940         pmd_t *pmd;
941         unsigned long next;
942         int ret;
943
944         pmd = pmd_offset(pud, addr);
945         do {
946                 next = pmd_addr_end(addr, end);
947                 if (pmd_none_or_clear_bad(pmd))
948                         continue;
949                 ret = unuse_pte_range(vma, pmd, addr, next, entry, page);
950                 if (ret)
951                         return ret;
952         } while (pmd++, addr = next, addr != end);
953         return 0;
954 }
955
956 static inline int unuse_pud_range(struct vm_area_struct *vma, pgd_t *pgd,
957                                 unsigned long addr, unsigned long end,
958                                 swp_entry_t entry, struct page *page)
959 {
960         pud_t *pud;
961         unsigned long next;
962         int ret;
963
964         pud = pud_offset(pgd, addr);
965         do {
966                 next = pud_addr_end(addr, end);
967                 if (pud_none_or_clear_bad(pud))
968                         continue;
969                 ret = unuse_pmd_range(vma, pud, addr, next, entry, page);
970                 if (ret)
971                         return ret;
972         } while (pud++, addr = next, addr != end);
973         return 0;
974 }
975
976 static int unuse_vma(struct vm_area_struct *vma,
977                                 swp_entry_t entry, struct page *page)
978 {
979         pgd_t *pgd;
980         unsigned long addr, end, next;
981         int ret;
982
983         if (page_anon_vma(page)) {
984                 addr = page_address_in_vma(page, vma);
985                 if (addr == -EFAULT)
986                         return 0;
987                 else
988                         end = addr + PAGE_SIZE;
989         } else {
990                 addr = vma->vm_start;
991                 end = vma->vm_end;
992         }
993
994         pgd = pgd_offset(vma->vm_mm, addr);
995         do {
996                 next = pgd_addr_end(addr, end);
997                 if (pgd_none_or_clear_bad(pgd))
998                         continue;
999                 ret = unuse_pud_range(vma, pgd, addr, next, entry, page);
1000                 if (ret)
1001                         return ret;
1002         } while (pgd++, addr = next, addr != end);
1003         return 0;
1004 }
1005
1006 static int unuse_mm(struct mm_struct *mm,
1007                                 swp_entry_t entry, struct page *page)
1008 {
1009         struct vm_area_struct *vma;
1010         int ret = 0;
1011
1012         if (!down_read_trylock(&mm->mmap_sem)) {
1013                 /*
1014                  * Activate page so shrink_inactive_list is unlikely to unmap
1015                  * its ptes while lock is dropped, so swapoff can make progress.
1016                  */
1017                 activate_page(page);
1018                 unlock_page(page);
1019                 down_read(&mm->mmap_sem);
1020                 lock_page(page);
1021         }
1022         for (vma = mm->mmap; vma; vma = vma->vm_next) {
1023                 if (vma->anon_vma && (ret = unuse_vma(vma, entry, page)))
1024                         break;
1025         }
1026         up_read(&mm->mmap_sem);
1027         return (ret < 0)? ret: 0;
1028 }
1029
1030 /*
1031  * Scan swap_map from current position to next entry still in use.
1032  * Recycle to start on reaching the end, returning 0 when empty.
1033  */
1034 static unsigned int find_next_to_unuse(struct swap_info_struct *si,
1035                                         unsigned int prev)
1036 {
1037         unsigned int max = si->max;
1038         unsigned int i = prev;
1039         unsigned char count;
1040
1041         /*
1042          * No need for swap_lock here: we're just looking
1043          * for whether an entry is in use, not modifying it; false
1044          * hits are okay, and sys_swapoff() has already prevented new
1045          * allocations from this area (while holding swap_lock).
1046          */
1047         for (;;) {
1048                 if (++i >= max) {
1049                         if (!prev) {
1050                                 i = 0;
1051                                 break;
1052                         }
1053                         /*
1054                          * No entries in use at top of swap_map,
1055                          * loop back to start and recheck there.
1056                          */
1057                         max = prev + 1;
1058                         prev = 0;
1059                         i = 1;
1060                 }
1061                 count = si->swap_map[i];
1062                 if (count && swap_count(count) != SWAP_MAP_BAD)
1063                         break;
1064         }
1065         return i;
1066 }
1067
1068 /*
1069  * We completely avoid races by reading each swap page in advance,
1070  * and then search for the process using it.  All the necessary
1071  * page table adjustments can then be made atomically.
1072  */
1073 static int try_to_unuse(unsigned int type)
1074 {
1075         struct swap_info_struct *si = swap_info[type];
1076         struct mm_struct *start_mm;
1077         unsigned char *swap_map;
1078         unsigned char swcount;
1079         struct page *page;
1080         swp_entry_t entry;
1081         unsigned int i = 0;
1082         int retval = 0;
1083
1084         /*
1085          * When searching mms for an entry, a good strategy is to
1086          * start at the first mm we freed the previous entry from
1087          * (though actually we don't notice whether we or coincidence
1088          * freed the entry).  Initialize this start_mm with a hold.
1089          *
1090          * A simpler strategy would be to start at the last mm we
1091          * freed the previous entry from; but that would take less
1092          * advantage of mmlist ordering, which clusters forked mms
1093          * together, child after parent.  If we race with dup_mmap(), we
1094          * prefer to resolve parent before child, lest we miss entries
1095          * duplicated after we scanned child: using last mm would invert
1096          * that.
1097          */
1098         start_mm = &init_mm;
1099         atomic_inc(&init_mm.mm_users);
1100
1101         /*
1102          * Keep on scanning until all entries have gone.  Usually,
1103          * one pass through swap_map is enough, but not necessarily:
1104          * there are races when an instance of an entry might be missed.
1105          */
1106         while ((i = find_next_to_unuse(si, i)) != 0) {
1107                 if (signal_pending(current)) {
1108                         retval = -EINTR;
1109                         break;
1110                 }
1111
1112                 /*
1113                  * Get a page for the entry, using the existing swap
1114                  * cache page if there is one.  Otherwise, get a clean
1115                  * page and read the swap into it.
1116                  */
1117                 swap_map = &si->swap_map[i];
1118                 entry = swp_entry(type, i);
1119                 page = read_swap_cache_async(entry,
1120                                         GFP_HIGHUSER_MOVABLE, NULL, 0);
1121                 if (!page) {
1122                         /*
1123                          * Either swap_duplicate() failed because entry
1124                          * has been freed independently, and will not be
1125                          * reused since sys_swapoff() already disabled
1126                          * allocation from here, or alloc_page() failed.
1127                          */
1128                         if (!*swap_map)
1129                                 continue;
1130                         retval = -ENOMEM;
1131                         break;
1132                 }
1133
1134                 /*
1135                  * Don't hold on to start_mm if it looks like exiting.
1136                  */
1137                 if (atomic_read(&start_mm->mm_users) == 1) {
1138                         mmput(start_mm);
1139                         start_mm = &init_mm;
1140                         atomic_inc(&init_mm.mm_users);
1141                 }
1142
1143                 /*
1144                  * Wait for and lock page.  When do_swap_page races with
1145                  * try_to_unuse, do_swap_page can handle the fault much
1146                  * faster than try_to_unuse can locate the entry.  This
1147                  * apparently redundant "wait_on_page_locked" lets try_to_unuse
1148                  * defer to do_swap_page in such a case - in some tests,
1149                  * do_swap_page and try_to_unuse repeatedly compete.
1150                  */
1151                 wait_on_page_locked(page);
1152                 wait_on_page_writeback(page);
1153                 lock_page(page);
1154                 wait_on_page_writeback(page);
1155
1156                 /*
1157                  * Remove all references to entry.
1158                  */
1159                 swcount = *swap_map;
1160                 if (swap_count(swcount) == SWAP_MAP_SHMEM) {
1161                         retval = shmem_unuse(entry, page);
1162                         /* page has already been unlocked and released */
1163                         if (retval < 0)
1164                                 break;
1165                         continue;
1166                 }
1167                 if (swap_count(swcount) && start_mm != &init_mm)
1168                         retval = unuse_mm(start_mm, entry, page);
1169
1170                 if (swap_count(*swap_map)) {
1171                         int set_start_mm = (*swap_map >= swcount);
1172                         struct list_head *p = &start_mm->mmlist;
1173                         struct mm_struct *new_start_mm = start_mm;
1174                         struct mm_struct *prev_mm = start_mm;
1175                         struct mm_struct *mm;
1176
1177                         atomic_inc(&new_start_mm->mm_users);
1178                         atomic_inc(&prev_mm->mm_users);
1179                         spin_lock(&mmlist_lock);
1180                         while (swap_count(*swap_map) && !retval &&
1181                                         (p = p->next) != &start_mm->mmlist) {
1182                                 mm = list_entry(p, struct mm_struct, mmlist);
1183                                 if (!atomic_inc_not_zero(&mm->mm_users))
1184                                         continue;
1185                                 spin_unlock(&mmlist_lock);
1186                                 mmput(prev_mm);
1187                                 prev_mm = mm;
1188
1189                                 cond_resched();
1190
1191                                 swcount = *swap_map;
1192                                 if (!swap_count(swcount)) /* any usage ? */
1193                                         ;
1194                                 else if (mm == &init_mm)
1195                                         set_start_mm = 1;
1196                                 else
1197                                         retval = unuse_mm(mm, entry, page);
1198
1199                                 if (set_start_mm && *swap_map < swcount) {
1200                                         mmput(new_start_mm);
1201                                         atomic_inc(&mm->mm_users);
1202                                         new_start_mm = mm;
1203                                         set_start_mm = 0;
1204                                 }
1205                                 spin_lock(&mmlist_lock);
1206                         }
1207                         spin_unlock(&mmlist_lock);
1208                         mmput(prev_mm);
1209                         mmput(start_mm);
1210                         start_mm = new_start_mm;
1211                 }
1212                 if (retval) {
1213                         unlock_page(page);
1214                         page_cache_release(page);
1215                         break;
1216                 }
1217
1218                 /*
1219                  * If a reference remains (rare), we would like to leave
1220                  * the page in the swap cache; but try_to_unmap could
1221                  * then re-duplicate the entry once we drop page lock,
1222                  * so we might loop indefinitely; also, that page could
1223                  * not be swapped out to other storage meanwhile.  So:
1224                  * delete from cache even if there's another reference,
1225                  * after ensuring that the data has been saved to disk -
1226                  * since if the reference remains (rarer), it will be
1227                  * read from disk into another page.  Splitting into two
1228                  * pages would be incorrect if swap supported "shared
1229                  * private" pages, but they are handled by tmpfs files.
1230                  *
1231                  * Given how unuse_vma() targets one particular offset
1232                  * in an anon_vma, once the anon_vma has been determined,
1233                  * this splitting happens to be just what is needed to
1234                  * handle where KSM pages have been swapped out: re-reading
1235                  * is unnecessarily slow, but we can fix that later on.
1236                  */
1237                 if (swap_count(*swap_map) &&
1238                      PageDirty(page) && PageSwapCache(page)) {
1239                         struct writeback_control wbc = {
1240                                 .sync_mode = WB_SYNC_NONE,
1241                         };
1242
1243                         swap_writepage(page, &wbc);
1244                         lock_page(page);
1245                         wait_on_page_writeback(page);
1246                 }
1247
1248                 /*
1249                  * It is conceivable that a racing task removed this page from
1250                  * swap cache just before we acquired the page lock at the top,
1251                  * or while we dropped it in unuse_mm().  The page might even
1252                  * be back in swap cache on another swap area: that we must not
1253                  * delete, since it may not have been written out to swap yet.
1254                  */
1255                 if (PageSwapCache(page) &&
1256                     likely(page_private(page) == entry.val))
1257                         delete_from_swap_cache(page);
1258
1259                 /*
1260                  * So we could skip searching mms once swap count went
1261                  * to 1, we did not mark any present ptes as dirty: must
1262                  * mark page dirty so shrink_page_list will preserve it.
1263                  */
1264                 SetPageDirty(page);
1265                 unlock_page(page);
1266                 page_cache_release(page);
1267
1268                 /*
1269                  * Make sure that we aren't completely killing
1270                  * interactive performance.
1271                  */
1272                 cond_resched();
1273         }
1274
1275         mmput(start_mm);
1276         return retval;
1277 }
1278
1279 /*
1280  * After a successful try_to_unuse, if no swap is now in use, we know
1281  * we can empty the mmlist.  swap_lock must be held on entry and exit.
1282  * Note that mmlist_lock nests inside swap_lock, and an mm must be
1283  * added to the mmlist just after page_duplicate - before would be racy.
1284  */
1285 static void drain_mmlist(void)
1286 {
1287         struct list_head *p, *next;
1288         unsigned int type;
1289
1290         for (type = 0; type < nr_swapfiles; type++)
1291                 if (swap_info[type]->inuse_pages)
1292                         return;
1293         spin_lock(&mmlist_lock);
1294         list_for_each_safe(p, next, &init_mm.mmlist)
1295                 list_del_init(p);
1296         spin_unlock(&mmlist_lock);
1297 }
1298
1299 /*
1300  * Use this swapdev's extent info to locate the (PAGE_SIZE) block which
1301  * corresponds to page offset for the specified swap entry.
1302  * Note that the type of this function is sector_t, but it returns page offset
1303  * into the bdev, not sector offset.
1304  */
1305 static sector_t map_swap_entry(swp_entry_t entry, struct block_device **bdev)
1306 {
1307         struct swap_info_struct *sis;
1308         struct swap_extent *start_se;
1309         struct swap_extent *se;
1310         pgoff_t offset;
1311
1312         sis = swap_info[swp_type(entry)];
1313         *bdev = sis->bdev;
1314
1315         offset = swp_offset(entry);
1316         start_se = sis->curr_swap_extent;
1317         se = start_se;
1318
1319         for ( ; ; ) {
1320                 struct list_head *lh;
1321
1322                 if (se->start_page <= offset &&
1323                                 offset < (se->start_page + se->nr_pages)) {
1324                         return se->start_block + (offset - se->start_page);
1325                 }
1326                 lh = se->list.next;
1327                 se = list_entry(lh, struct swap_extent, list);
1328                 sis->curr_swap_extent = se;
1329                 BUG_ON(se == start_se);         /* It *must* be present */
1330         }
1331 }
1332
1333 /*
1334  * Returns the page offset into bdev for the specified page's swap entry.
1335  */
1336 sector_t map_swap_page(struct page *page, struct block_device **bdev)
1337 {
1338         swp_entry_t entry;
1339         entry.val = page_private(page);
1340         return map_swap_entry(entry, bdev);
1341 }
1342
1343 /*
1344  * Free all of a swapdev's extent information
1345  */
1346 static void destroy_swap_extents(struct swap_info_struct *sis)
1347 {
1348         while (!list_empty(&sis->first_swap_extent.list)) {
1349                 struct swap_extent *se;
1350
1351                 se = list_entry(sis->first_swap_extent.list.next,
1352                                 struct swap_extent, list);
1353                 list_del(&se->list);
1354                 kfree(se);
1355         }
1356
1357         if (sis->flags & SWP_FILE) {
1358                 struct file *swap_file = sis->swap_file;
1359                 struct address_space *mapping = swap_file->f_mapping;
1360
1361                 sis->flags &= ~SWP_FILE;
1362                 mapping->a_ops->swapoff(swap_file);
1363         }
1364 }
1365
1366 /*
1367  * Add a block range (and the corresponding page range) into this swapdev's
1368  * extent list.  The extent list is kept sorted in page order.
1369  *
1370  * This function rather assumes that it is called in ascending page order.
1371  */
1372 static int
1373 add_swap_extent(struct swap_info_struct *sis, unsigned long start_page,
1374                 unsigned long nr_pages, sector_t start_block)
1375 {
1376         struct swap_extent *se;
1377         struct swap_extent *new_se;
1378         struct list_head *lh;
1379
1380         if (start_page == 0) {
1381                 se = &sis->first_swap_extent;
1382                 sis->curr_swap_extent = se;
1383                 se->start_page = 0;
1384                 se->nr_pages = nr_pages;
1385                 se->start_block = start_block;
1386                 return 1;
1387         } else {
1388                 lh = sis->first_swap_extent.list.prev;  /* Highest extent */
1389                 se = list_entry(lh, struct swap_extent, list);
1390                 BUG_ON(se->start_page + se->nr_pages != start_page);
1391                 if (se->start_block + se->nr_pages == start_block) {
1392                         /* Merge it */
1393                         se->nr_pages += nr_pages;
1394                         return 0;
1395                 }
1396         }
1397
1398         /*
1399          * No merge.  Insert a new extent, preserving ordering.
1400          */
1401         new_se = kmalloc(sizeof(*se), GFP_KERNEL);
1402         if (new_se == NULL)
1403                 return -ENOMEM;
1404         new_se->start_page = start_page;
1405         new_se->nr_pages = nr_pages;
1406         new_se->start_block = start_block;
1407
1408         list_add_tail(&new_se->list, &sis->first_swap_extent.list);
1409         return 1;
1410 }
1411
1412 /*
1413  * A `swap extent' is a simple thing which maps a contiguous range of pages
1414  * onto a contiguous range of disk blocks.  An ordered list of swap extents
1415  * is built at swapon time and is then used at swap_writepage/swap_readpage
1416  * time for locating where on disk a page belongs.
1417  *
1418  * If the swapfile is an S_ISBLK block device, a single extent is installed.
1419  * This is done so that the main operating code can treat S_ISBLK and S_ISREG
1420  * swap files identically.
1421  *
1422  * Whether the swapdev is an S_ISREG file or an S_ISBLK blockdev, the swap
1423  * extent list operates in PAGE_SIZE disk blocks.  Both S_ISREG and S_ISBLK
1424  * swapfiles are handled *identically* after swapon time.
1425  *
1426  * For S_ISREG swapfiles, setup_swap_extents() will walk all the file's blocks
1427  * and will parse them into an ordered extent list, in PAGE_SIZE chunks.  If
1428  * some stray blocks are found which do not fall within the PAGE_SIZE alignment
1429  * requirements, they are simply tossed out - we will never use those blocks
1430  * for swapping.
1431  *
1432  * For S_ISREG swapfiles we set S_SWAPFILE across the life of the swapon.  This
1433  * prevents root from shooting her foot off by ftruncating an in-use swapfile,
1434  * which will scribble on the fs.
1435  *
1436  * The amount of disk space which a single swap extent represents varies.
1437  * Typically it is in the 1-4 megabyte range.  So we can have hundreds of
1438  * extents in the list.  To avoid much list walking, we cache the previous
1439  * search location in `curr_swap_extent', and start new searches from there.
1440  * This is extremely effective.  The average number of iterations in
1441  * map_swap_page() has been measured at about 0.3 per page.  - akpm.
1442  */
1443 static int setup_swap_extents(struct swap_info_struct *sis, sector_t *span)
1444 {
1445         struct file *swap_file = sis->swap_file;
1446         struct address_space *mapping = swap_file->f_mapping;
1447         struct inode *inode = mapping->host;
1448         unsigned blocks_per_page;
1449         unsigned long page_no;
1450         unsigned blkbits;
1451         sector_t probe_block;
1452         sector_t last_block;
1453         sector_t lowest_block = -1;
1454         sector_t highest_block = 0;
1455         int nr_extents = 0;
1456         int ret;
1457
1458         if (S_ISBLK(inode->i_mode)) {
1459                 ret = add_swap_extent(sis, 0, sis->max, 0);
1460                 *span = sis->pages;
1461                 goto out;
1462         }
1463
1464         if (mapping->a_ops->swapon) {
1465                 ret = mapping->a_ops->swapon(swap_file);
1466                 if (!ret) {
1467                         sis->flags |= SWP_FILE;
1468                         ret = add_swap_extent(sis, 0, sis->max, 0);
1469                         *span = sis->pages;
1470                 }
1471                 goto out;
1472         }
1473
1474         blkbits = inode->i_blkbits;
1475         blocks_per_page = PAGE_SIZE >> blkbits;
1476
1477         /*
1478          * Map all the blocks into the extent list.  This code doesn't try
1479          * to be very smart.
1480          */
1481         probe_block = 0;
1482         page_no = 0;
1483         last_block = i_size_read(inode) >> blkbits;
1484         while ((probe_block + blocks_per_page) <= last_block &&
1485                         page_no < sis->max) {
1486                 unsigned block_in_page;
1487                 sector_t first_block;
1488
1489                 first_block = bmap(inode, probe_block);
1490                 if (first_block == 0)
1491                         goto bad_bmap;
1492
1493                 /*
1494                  * It must be PAGE_SIZE aligned on-disk
1495                  */
1496                 if (first_block & (blocks_per_page - 1)) {
1497                         probe_block++;
1498                         goto reprobe;
1499                 }
1500
1501                 for (block_in_page = 1; block_in_page < blocks_per_page;
1502                                         block_in_page++) {
1503                         sector_t block;
1504
1505                         block = bmap(inode, probe_block + block_in_page);
1506                         if (block == 0)
1507                                 goto bad_bmap;
1508                         if (block != first_block + block_in_page) {
1509                                 /* Discontiguity */
1510                                 probe_block++;
1511                                 goto reprobe;
1512                         }
1513                 }
1514
1515                 first_block >>= (PAGE_SHIFT - blkbits);
1516                 if (page_no) {  /* exclude the header page */
1517                         if (first_block < lowest_block)
1518                                 lowest_block = first_block;
1519                         if (first_block > highest_block)
1520                                 highest_block = first_block;
1521                 }
1522
1523                 /*
1524                  * We found a PAGE_SIZE-length, PAGE_SIZE-aligned run of blocks
1525                  */
1526                 ret = add_swap_extent(sis, page_no, 1, first_block);
1527                 if (ret < 0)
1528                         goto out;
1529                 nr_extents += ret;
1530                 page_no++;
1531                 probe_block += blocks_per_page;
1532 reprobe:
1533                 continue;
1534         }
1535         ret = nr_extents;
1536         *span = 1 + highest_block - lowest_block;
1537         if (page_no == 0)
1538                 page_no = 1;    /* force Empty message */
1539         sis->max = page_no;
1540         sis->pages = page_no - 1;
1541         sis->highest_bit = page_no - 1;
1542 out:
1543         return ret;
1544 bad_bmap:
1545         printk(KERN_ERR "swapon: swapfile has holes\n");
1546         ret = -EINVAL;
1547         goto out;
1548 }
1549
1550 SYSCALL_DEFINE1(swapoff, const char __user *, specialfile)
1551 {
1552         struct swap_info_struct *p = NULL;
1553         unsigned char *swap_map;
1554         struct file *swap_file, *victim;
1555         struct address_space *mapping;
1556         struct inode *inode;
1557         char *pathname;
1558         int i, type, prev;
1559         int err;
1560
1561         if (!capable(CAP_SYS_ADMIN))
1562                 return -EPERM;
1563
1564         pathname = getname(specialfile);
1565         err = PTR_ERR(pathname);
1566         if (IS_ERR(pathname))
1567                 goto out;
1568
1569         victim = filp_open(pathname, O_RDWR|O_LARGEFILE, 0);
1570         putname(pathname);
1571         err = PTR_ERR(victim);
1572         if (IS_ERR(victim))
1573                 goto out;
1574
1575         mapping = victim->f_mapping;
1576         prev = -1;
1577         spin_lock(&swap_lock);
1578         for (type = swap_list.head; type >= 0; type = swap_info[type]->next) {
1579                 p = swap_info[type];
1580                 if (p->flags & SWP_WRITEOK) {
1581                         if (p->swap_file->f_mapping == mapping)
1582                                 break;
1583                 }
1584                 prev = type;
1585         }
1586         if (type < 0) {
1587                 err = -EINVAL;
1588                 spin_unlock(&swap_lock);
1589                 goto out_dput;
1590         }
1591         if (!security_vm_enough_memory(p->pages))
1592                 vm_unacct_memory(p->pages);
1593         else {
1594                 err = -ENOMEM;
1595                 spin_unlock(&swap_lock);
1596                 goto out_dput;
1597         }
1598         if (prev < 0)
1599                 swap_list.head = p->next;
1600         else
1601                 swap_info[prev]->next = p->next;
1602         if (type == swap_list.next) {
1603                 /* just pick something that's safe... */
1604                 swap_list.next = swap_list.head;
1605         }
1606         if (p->prio < 0) {
1607                 for (i = p->next; i >= 0; i = swap_info[i]->next)
1608                         swap_info[i]->prio = p->prio--;
1609                 least_priority++;
1610         }
1611         nr_swap_pages -= p->pages;
1612         total_swap_pages -= p->pages;
1613         p->flags &= ~SWP_WRITEOK;
1614         spin_unlock(&swap_lock);
1615
1616         current->flags |= PF_OOM_ORIGIN;
1617         err = try_to_unuse(type);
1618         current->flags &= ~PF_OOM_ORIGIN;
1619
1620         if (err) {
1621                 /* re-insert swap space back into swap_list */
1622                 spin_lock(&swap_lock);
1623                 if (p->prio < 0)
1624                         p->prio = --least_priority;
1625                 prev = -1;
1626                 for (i = swap_list.head; i >= 0; i = swap_info[i]->next) {
1627                         if (p->prio >= swap_info[i]->prio)
1628                                 break;
1629                         prev = i;
1630                 }
1631                 p->next = i;
1632                 if (prev < 0)
1633                         swap_list.head = swap_list.next = type;
1634                 else
1635                         swap_info[prev]->next = type;
1636                 nr_swap_pages += p->pages;
1637                 total_swap_pages += p->pages;
1638                 p->flags |= SWP_WRITEOK;
1639                 spin_unlock(&swap_lock);
1640                 goto out_dput;
1641         }
1642
1643         /* wait for any unplug function to finish */
1644         down_write(&swap_unplug_sem);
1645         up_write(&swap_unplug_sem);
1646
1647         destroy_swap_extents(p);
1648         if (p->flags & SWP_CONTINUED)
1649                 free_swap_count_continuations(p);
1650
1651         mutex_lock(&swapon_mutex);
1652         spin_lock(&swap_lock);
1653         drain_mmlist();
1654
1655         /* wait for anyone still in scan_swap_map */
1656         p->highest_bit = 0;             /* cuts scans short */
1657         while (p->flags >= SWP_SCANNING) {
1658                 spin_unlock(&swap_lock);
1659                 schedule_timeout_uninterruptible(1);
1660                 spin_lock(&swap_lock);
1661         }
1662
1663         swap_file = p->swap_file;
1664         p->swap_file = NULL;
1665         p->max = 0;
1666         swap_map = p->swap_map;
1667         p->swap_map = NULL;
1668         p->flags = 0;
1669         spin_unlock(&swap_lock);
1670         mutex_unlock(&swapon_mutex);
1671         vfree(swap_map);
1672         /* Destroy swap account informatin */
1673         swap_cgroup_swapoff(type);
1674
1675         inode = mapping->host;
1676         if (S_ISBLK(inode->i_mode)) {
1677                 struct block_device *bdev = I_BDEV(inode);
1678                 set_blocksize(bdev, p->old_block_size);
1679                 bd_release(bdev);
1680         } else {
1681                 mutex_lock(&inode->i_mutex);
1682                 inode->i_flags &= ~S_SWAPFILE;
1683                 mutex_unlock(&inode->i_mutex);
1684         }
1685         filp_close(swap_file, NULL);
1686         err = 0;
1687
1688 out_dput:
1689         filp_close(victim, NULL);
1690 out:
1691         return err;
1692 }
1693
1694 #ifdef CONFIG_PROC_FS
1695 /* iterator */
1696 static void *swap_start(struct seq_file *swap, loff_t *pos)
1697 {
1698         struct swap_info_struct *si;
1699         int type;
1700         loff_t l = *pos;
1701
1702         mutex_lock(&swapon_mutex);
1703
1704         if (!l)
1705                 return SEQ_START_TOKEN;
1706
1707         for (type = 0; type < nr_swapfiles; type++) {
1708                 smp_rmb();      /* read nr_swapfiles before swap_info[type] */
1709                 si = swap_info[type];
1710                 if (!(si->flags & SWP_USED) || !si->swap_map)
1711                         continue;
1712                 if (!--l)
1713                         return si;
1714         }
1715
1716         return NULL;
1717 }
1718
1719 static void *swap_next(struct seq_file *swap, void *v, loff_t *pos)
1720 {
1721         struct swap_info_struct *si = v;
1722         int type;
1723
1724         if (v == SEQ_START_TOKEN)
1725                 type = 0;
1726         else
1727                 type = si->type + 1;
1728
1729         for (; type < nr_swapfiles; type++) {
1730                 smp_rmb();      /* read nr_swapfiles before swap_info[type] */
1731                 si = swap_info[type];
1732                 if (!(si->flags & SWP_USED) || !si->swap_map)
1733                         continue;
1734                 ++*pos;
1735                 return si;
1736         }
1737
1738         return NULL;
1739 }
1740
1741 static void swap_stop(struct seq_file *swap, void *v)
1742 {
1743         mutex_unlock(&swapon_mutex);
1744 }
1745
1746 static int swap_show(struct seq_file *swap, void *v)
1747 {
1748         struct swap_info_struct *si = v;
1749         struct file *file;
1750         int len;
1751
1752         if (si == SEQ_START_TOKEN) {
1753                 seq_puts(swap,"Filename\t\t\t\tType\t\tSize\tUsed\tPriority\n");
1754                 return 0;
1755         }
1756
1757         file = si->swap_file;
1758         len = seq_path(swap, &file->f_path, " \t\n\\");
1759         seq_printf(swap, "%*s%s\t%u\t%u\t%d\n",
1760                         len < 40 ? 40 - len : 1, " ",
1761                         S_ISBLK(file->f_path.dentry->d_inode->i_mode) ?
1762                                 "partition" : "file\t",
1763                         si->pages << (PAGE_SHIFT - 10),
1764                         si->inuse_pages << (PAGE_SHIFT - 10),
1765                         si->prio);
1766         return 0;
1767 }
1768
1769 static const struct seq_operations swaps_op = {
1770         .start =        swap_start,
1771         .next =         swap_next,
1772         .stop =         swap_stop,
1773         .show =         swap_show
1774 };
1775
1776 static int swaps_open(struct inode *inode, struct file *file)
1777 {
1778         return seq_open(file, &swaps_op);
1779 }
1780
1781 static const struct file_operations proc_swaps_operations = {
1782         .open           = swaps_open,
1783         .read           = seq_read,
1784         .llseek         = seq_lseek,
1785         .release        = seq_release,
1786 };
1787
1788 static int __init procswaps_init(void)
1789 {
1790         proc_create("swaps", 0, NULL, &proc_swaps_operations);
1791         return 0;
1792 }
1793 __initcall(procswaps_init);
1794 #endif /* CONFIG_PROC_FS */
1795
1796 #ifdef MAX_SWAPFILES_CHECK
1797 static int __init max_swapfiles_check(void)
1798 {
1799         MAX_SWAPFILES_CHECK();
1800         return 0;
1801 }
1802 late_initcall(max_swapfiles_check);
1803 #endif
1804
1805 /*
1806  * Written 01/25/92 by Simmule Turner, heavily changed by Linus.
1807  *
1808  * The swapon system call
1809  */
1810 SYSCALL_DEFINE2(swapon, const char __user *, specialfile, int, swap_flags)
1811 {
1812         struct swap_info_struct *p;
1813         char *name = NULL;
1814         struct block_device *bdev = NULL;
1815         struct file *swap_file = NULL;
1816         struct address_space *mapping;
1817         unsigned int type;
1818         int i, prev;
1819         int error;
1820         union swap_header *swap_header;
1821         unsigned int nr_good_pages;
1822         int nr_extents = 0;
1823         sector_t span;
1824         unsigned long maxpages;
1825         unsigned long swapfilepages;
1826         unsigned char *swap_map = NULL;
1827         struct page *page = NULL;
1828         struct inode *inode = NULL;
1829         int did_down = 0;
1830
1831         if (!capable(CAP_SYS_ADMIN))
1832                 return -EPERM;
1833
1834         p = kzalloc(sizeof(*p), GFP_KERNEL);
1835         if (!p)
1836                 return -ENOMEM;
1837
1838         spin_lock(&swap_lock);
1839         for (type = 0; type < nr_swapfiles; type++) {
1840                 if (!(swap_info[type]->flags & SWP_USED))
1841                         break;
1842         }
1843         error = -EPERM;
1844         if (type >= MAX_SWAPFILES) {
1845                 spin_unlock(&swap_lock);
1846                 kfree(p);
1847                 goto out;
1848         }
1849         if (type >= nr_swapfiles) {
1850                 p->type = type;
1851                 swap_info[type] = p;
1852                 /*
1853                  * Write swap_info[type] before nr_swapfiles, in case a
1854                  * racing procfs swap_start() or swap_next() is reading them.
1855                  * (We never shrink nr_swapfiles, we never free this entry.)
1856                  */
1857                 smp_wmb();
1858                 nr_swapfiles++;
1859         } else {
1860                 kfree(p);
1861                 p = swap_info[type];
1862                 /*
1863                  * Do not memset this entry: a racing procfs swap_next()
1864                  * would be relying on p->type to remain valid.
1865                  */
1866         }
1867         INIT_LIST_HEAD(&p->first_swap_extent.list);
1868         p->flags = SWP_USED;
1869         p->next = -1;
1870         spin_unlock(&swap_lock);
1871
1872         name = getname(specialfile);
1873         error = PTR_ERR(name);
1874         if (IS_ERR(name)) {
1875                 name = NULL;
1876                 goto bad_swap_2;
1877         }
1878         swap_file = filp_open(name, O_RDWR|O_LARGEFILE, 0);
1879         error = PTR_ERR(swap_file);
1880         if (IS_ERR(swap_file)) {
1881                 swap_file = NULL;
1882                 goto bad_swap_2;
1883         }
1884
1885         p->swap_file = swap_file;
1886         mapping = swap_file->f_mapping;
1887         inode = mapping->host;
1888
1889         error = -EBUSY;
1890         for (i = 0; i < nr_swapfiles; i++) {
1891                 struct swap_info_struct *q = swap_info[i];
1892
1893                 if (i == type || !q->swap_file)
1894                         continue;
1895                 if (mapping == q->swap_file->f_mapping)
1896                         goto bad_swap;
1897         }
1898
1899         error = -EINVAL;
1900         if (S_ISBLK(inode->i_mode)) {
1901                 bdev = I_BDEV(inode);
1902                 error = bd_claim(bdev, sys_swapon);
1903                 if (error < 0) {
1904                         bdev = NULL;
1905                         error = -EINVAL;
1906                         goto bad_swap;
1907                 }
1908                 p->old_block_size = block_size(bdev);
1909                 error = set_blocksize(bdev, PAGE_SIZE);
1910                 if (error < 0)
1911                         goto bad_swap;
1912                 p->bdev = bdev;
1913                 p->flags |= SWP_BLKDEV;
1914         } else if (S_ISREG(inode->i_mode)) {
1915                 p->bdev = inode->i_sb->s_bdev;
1916                 mutex_lock(&inode->i_mutex);
1917                 did_down = 1;
1918                 if (IS_SWAPFILE(inode)) {
1919                         error = -EBUSY;
1920                         goto bad_swap;
1921                 }
1922         } else {
1923                 goto bad_swap;
1924         }
1925
1926         swapfilepages = i_size_read(inode) >> PAGE_SHIFT;
1927
1928         /*
1929          * Read the swap header.
1930          */
1931         if (!mapping->a_ops->readpage) {
1932                 error = -EINVAL;
1933                 goto bad_swap;
1934         }
1935         page = read_mapping_page(mapping, 0, swap_file);
1936         if (IS_ERR(page)) {
1937                 error = PTR_ERR(page);
1938                 goto bad_swap;
1939         }
1940         swap_header = kmap(page);
1941
1942         if (memcmp("SWAPSPACE2", swap_header->magic.magic, 10)) {
1943                 printk(KERN_ERR "Unable to find swap-space signature\n");
1944                 error = -EINVAL;
1945                 goto bad_swap;
1946         }
1947
1948         /* swap partition endianess hack... */
1949         if (swab32(swap_header->info.version) == 1) {
1950                 swab32s(&swap_header->info.version);
1951                 swab32s(&swap_header->info.last_page);
1952                 swab32s(&swap_header->info.nr_badpages);
1953                 for (i = 0; i < swap_header->info.nr_badpages; i++)
1954                         swab32s(&swap_header->info.badpages[i]);
1955         }
1956         /* Check the swap header's sub-version */
1957         if (swap_header->info.version != 1) {
1958                 printk(KERN_WARNING
1959                        "Unable to handle swap header version %d\n",
1960                        swap_header->info.version);
1961                 error = -EINVAL;
1962                 goto bad_swap;
1963         }
1964
1965         p->lowest_bit  = 1;
1966         p->cluster_next = 1;
1967         p->cluster_nr = 0;
1968
1969         /*
1970          * Find out how many pages are allowed for a single swap
1971          * device. There are two limiting factors: 1) the number of
1972          * bits for the swap offset in the swp_entry_t type and
1973          * 2) the number of bits in the a swap pte as defined by
1974          * the different architectures. In order to find the
1975          * largest possible bit mask a swap entry with swap type 0
1976          * and swap offset ~0UL is created, encoded to a swap pte,
1977          * decoded to a swp_entry_t again and finally the swap
1978          * offset is extracted. This will mask all the bits from
1979          * the initial ~0UL mask that can't be encoded in either
1980          * the swp_entry_t or the architecture definition of a
1981          * swap pte.
1982          */
1983         maxpages = swp_offset(pte_to_swp_entry(
1984                         swp_entry_to_pte(swp_entry(0, ~0UL)))) + 1;
1985         if (maxpages > swap_header->info.last_page) {
1986                 maxpages = swap_header->info.last_page + 1;
1987                 /* p->max is an unsigned int: don't overflow it */
1988                 if ((unsigned int)maxpages == 0)
1989                         maxpages = UINT_MAX;
1990         }
1991         p->highest_bit = maxpages - 1;
1992
1993         error = -EINVAL;
1994         if (!maxpages)
1995                 goto bad_swap;
1996         if (swapfilepages && maxpages > swapfilepages) {
1997                 printk(KERN_WARNING
1998                        "Swap area shorter than signature indicates\n");
1999                 goto bad_swap;
2000         }
2001         if (swap_header->info.nr_badpages && S_ISREG(inode->i_mode))
2002                 goto bad_swap;
2003         if (swap_header->info.nr_badpages > MAX_SWAP_BADPAGES)
2004                 goto bad_swap;
2005
2006         /* OK, set up the swap map and apply the bad block list */
2007         swap_map = vmalloc(maxpages);
2008         if (!swap_map) {
2009                 error = -ENOMEM;
2010                 goto bad_swap;
2011         }
2012
2013         memset(swap_map, 0, maxpages);
2014         nr_good_pages = maxpages - 1;   /* omit header page */
2015
2016         for (i = 0; i < swap_header->info.nr_badpages; i++) {
2017                 unsigned int page_nr = swap_header->info.badpages[i];
2018                 if (page_nr == 0 || page_nr > swap_header->info.last_page) {
2019                         error = -EINVAL;
2020                         goto bad_swap;
2021                 }
2022                 if (page_nr < maxpages) {
2023                         swap_map[page_nr] = SWAP_MAP_BAD;
2024                         nr_good_pages--;
2025                 }
2026         }
2027
2028         error = swap_cgroup_swapon(type, maxpages);
2029         if (error)
2030                 goto bad_swap;
2031
2032         if (nr_good_pages) {
2033                 swap_map[0] = SWAP_MAP_BAD;
2034                 p->max = maxpages;
2035                 p->pages = nr_good_pages;
2036                 nr_extents = setup_swap_extents(p, &span);
2037                 if (nr_extents < 0) {
2038                         error = nr_extents;
2039                         goto bad_swap;
2040                 }
2041                 nr_good_pages = p->pages;
2042         }
2043         if (!nr_good_pages) {
2044                 printk(KERN_WARNING "Empty swap-file\n");
2045                 error = -EINVAL;
2046                 goto bad_swap;
2047         }
2048
2049         if (p->bdev) {
2050                 if (blk_queue_nonrot(bdev_get_queue(p->bdev))) {
2051                         p->flags |= SWP_SOLIDSTATE;
2052                         p->cluster_next = 1 + (random32() % p->highest_bit);
2053                 }
2054                 if (discard_swap(p) == 0)
2055                         p->flags |= SWP_DISCARDABLE;
2056         }
2057
2058         mutex_lock(&swapon_mutex);
2059         spin_lock(&swap_lock);
2060         if (swap_flags & SWAP_FLAG_PREFER)
2061                 p->prio =
2062                   (swap_flags & SWAP_FLAG_PRIO_MASK) >> SWAP_FLAG_PRIO_SHIFT;
2063         else
2064                 p->prio = --least_priority;
2065         p->swap_map = swap_map;
2066         p->flags |= SWP_WRITEOK;
2067         nr_swap_pages += nr_good_pages;
2068         total_swap_pages += nr_good_pages;
2069
2070         printk(KERN_INFO "Adding %uk swap on %s.  "
2071                         "Priority:%d extents:%d across:%lluk %s%s\n",
2072                 nr_good_pages<<(PAGE_SHIFT-10), name, p->prio,
2073                 nr_extents, (unsigned long long)span<<(PAGE_SHIFT-10),
2074                 (p->flags & SWP_SOLIDSTATE) ? "SS" : "",
2075                 (p->flags & SWP_DISCARDABLE) ? "D" : "");
2076
2077         /* insert swap space into swap_list: */
2078         prev = -1;
2079         for (i = swap_list.head; i >= 0; i = swap_info[i]->next) {
2080                 if (p->prio >= swap_info[i]->prio)
2081                         break;
2082                 prev = i;
2083         }
2084         p->next = i;
2085         if (prev < 0)
2086                 swap_list.head = swap_list.next = type;
2087         else
2088                 swap_info[prev]->next = type;
2089         spin_unlock(&swap_lock);
2090         mutex_unlock(&swapon_mutex);
2091         error = 0;
2092         goto out;
2093 bad_swap:
2094         if (bdev) {
2095                 set_blocksize(bdev, p->old_block_size);
2096                 bd_release(bdev);
2097         }
2098         destroy_swap_extents(p);
2099         swap_cgroup_swapoff(type);
2100 bad_swap_2:
2101         spin_lock(&swap_lock);
2102         p->swap_file = NULL;
2103         p->flags = 0;
2104         spin_unlock(&swap_lock);
2105         vfree(swap_map);
2106         if (swap_file)
2107                 filp_close(swap_file, NULL);
2108 out:
2109         if (page && !IS_ERR(page)) {
2110                 kunmap(page);
2111                 page_cache_release(page);
2112         }
2113         if (name)
2114                 putname(name);
2115         if (did_down) {
2116                 if (!error)
2117                         inode->i_flags |= S_SWAPFILE;
2118                 mutex_unlock(&inode->i_mutex);
2119         }
2120         return error;
2121 }
2122
2123 void si_swapinfo(struct sysinfo *val)
2124 {
2125         unsigned int type;
2126         unsigned long nr_to_be_unused = 0;
2127
2128         spin_lock(&swap_lock);
2129         for (type = 0; type < nr_swapfiles; type++) {
2130                 struct swap_info_struct *si = swap_info[type];
2131
2132                 if ((si->flags & SWP_USED) && !(si->flags & SWP_WRITEOK))
2133                         nr_to_be_unused += si->inuse_pages;
2134         }
2135         val->freeswap = nr_swap_pages + nr_to_be_unused;
2136         val->totalswap = total_swap_pages + nr_to_be_unused;
2137         spin_unlock(&swap_lock);
2138 }
2139
2140 /*
2141  * Verify that a swap entry is valid and increment its swap map count.
2142  *
2143  * Returns error code in following case.
2144  * - success -> 0
2145  * - swp_entry is invalid -> EINVAL
2146  * - swp_entry is migration entry -> EINVAL
2147  * - swap-cache reference is requested but there is already one. -> EEXIST
2148  * - swap-cache reference is requested but the entry is not used. -> ENOENT
2149  * - swap-mapped reference requested but needs continued swap count. -> ENOMEM
2150  */
2151 static int __swap_duplicate(swp_entry_t entry, unsigned char usage)
2152 {
2153         struct swap_info_struct *p;
2154         unsigned long offset, type;
2155         unsigned char count;
2156         unsigned char has_cache;
2157         int err = -EINVAL;
2158
2159         if (non_swap_entry(entry))
2160                 goto out;
2161
2162         type = swp_type(entry);
2163         if (type >= nr_swapfiles)
2164                 goto bad_file;
2165         p = swap_info[type];
2166         offset = swp_offset(entry);
2167
2168         spin_lock(&swap_lock);
2169         if (unlikely(offset >= p->max))
2170                 goto unlock_out;
2171
2172         count = p->swap_map[offset];
2173         has_cache = count & SWAP_HAS_CACHE;
2174         count &= ~SWAP_HAS_CACHE;
2175         err = 0;
2176
2177         if (usage == SWAP_HAS_CACHE) {
2178
2179                 /* set SWAP_HAS_CACHE if there is no cache and entry is used */
2180                 if (!has_cache && count)
2181                         has_cache = SWAP_HAS_CACHE;
2182                 else if (has_cache)             /* someone else added cache */
2183                         err = -EEXIST;
2184                 else                            /* no users remaining */
2185                         err = -ENOENT;
2186
2187         } else if (count || has_cache) {
2188
2189                 if ((count & ~COUNT_CONTINUED) < SWAP_MAP_MAX)
2190                         count += usage;
2191                 else if ((count & ~COUNT_CONTINUED) > SWAP_MAP_MAX)
2192                         err = -EINVAL;
2193                 else if (swap_count_continued(p, offset, count))
2194                         count = COUNT_CONTINUED;
2195                 else
2196                         err = -ENOMEM;
2197         } else
2198                 err = -ENOENT;                  /* unused swap entry */
2199
2200         p->swap_map[offset] = count | has_cache;
2201
2202 unlock_out:
2203         spin_unlock(&swap_lock);
2204 out:
2205         return err;
2206
2207 bad_file:
2208         printk(KERN_ERR "swap_dup: %s%08lx\n", Bad_file, entry.val);
2209         goto out;
2210 }
2211
2212 /*
2213  * Help swapoff by noting that swap entry belongs to shmem/tmpfs
2214  * (in which case its reference count is never incremented).
2215  */
2216 void swap_shmem_alloc(swp_entry_t entry)
2217 {
2218         __swap_duplicate(entry, SWAP_MAP_SHMEM);
2219 }
2220
2221 /*
2222  * Increase reference count of swap entry by 1.
2223  * Returns 0 for success, or -ENOMEM if a swap_count_continuation is required
2224  * but could not be atomically allocated.  Returns 0, just as if it succeeded,
2225  * if __swap_duplicate() fails for another reason (-EINVAL or -ENOENT), which
2226  * might occur if a page table entry has got corrupted.
2227  */
2228 int swap_duplicate(swp_entry_t entry)
2229 {
2230         int err = 0;
2231
2232         while (!err && __swap_duplicate(entry, 1) == -ENOMEM)
2233                 err = add_swap_count_continuation(entry, GFP_ATOMIC);
2234         return err;
2235 }
2236
2237 /*
2238  * @entry: swap entry for which we allocate swap cache.
2239  *
2240  * Called when allocating swap cache for existing swap entry,
2241  * This can return error codes. Returns 0 at success.
2242  * -EBUSY means there is a swap cache.
2243  * Note: return code is different from swap_duplicate().
2244  */
2245 int swapcache_prepare(swp_entry_t entry)
2246 {
2247         return __swap_duplicate(entry, SWAP_HAS_CACHE);
2248 }
2249
2250 struct swap_info_struct *page_swap_info(struct page *page)
2251 {
2252         swp_entry_t swap = { .val = page_private(page) };
2253         if (!PageSwapCache(page) || !swap.val) {
2254                 /* This should only happen from sync_page.
2255                  * In other cases the page should be locked and
2256                  * should be in a SwapCache
2257                  */
2258                 return NULL;
2259         }
2260         return swap_info[swp_type(swap)];
2261 }
2262
2263 /*
2264  * out-of-line __page_file_ methods to avoid include hell.
2265  */
2266
2267 struct address_space *__page_file_mapping(struct page *page)
2268 {
2269         VM_BUG_ON(!PageSwapCache(page));
2270         return page_swap_info(page)->swap_file->f_mapping;
2271 }
2272 EXPORT_SYMBOL_GPL(__page_file_mapping);
2273
2274 pgoff_t __page_file_index(struct page *page)
2275 {
2276         swp_entry_t swap = { .val = page_private(page) };
2277         VM_BUG_ON(!PageSwapCache(page));
2278         return swp_offset(swap);
2279 }
2280 EXPORT_SYMBOL_GPL(__page_file_index);
2281
2282 /*
2283  * swap_lock prevents swap_map being freed. Don't grab an extra
2284  * reference on the swaphandle, it doesn't matter if it becomes unused.
2285  */
2286 int valid_swaphandles(swp_entry_t entry, unsigned long *offset)
2287 {
2288         struct swap_info_struct *si;
2289         int our_page_cluster = page_cluster;
2290         pgoff_t target, toff;
2291         pgoff_t base, end;
2292         int nr_pages = 0;
2293
2294         if (!our_page_cluster)  /* no readahead */
2295                 return 0;
2296
2297         si = swap_info[swp_type(entry)];
2298         target = swp_offset(entry);
2299         base = (target >> our_page_cluster) << our_page_cluster;
2300         end = base + (1 << our_page_cluster);
2301         if (!base)              /* first page is swap header */
2302                 base++;
2303
2304         spin_lock(&swap_lock);
2305         if (end > si->max)      /* don't go beyond end of map */
2306                 end = si->max;
2307
2308         /* Count contiguous allocated slots above our target */
2309         for (toff = target; ++toff < end; nr_pages++) {
2310                 /* Don't read in free or bad pages */
2311                 if (!si->swap_map[toff])
2312                         break;
2313                 if (swap_count(si->swap_map[toff]) == SWAP_MAP_BAD)
2314                         break;
2315         }
2316         /* Count contiguous allocated slots below our target */
2317         for (toff = target; --toff >= base; nr_pages++) {
2318                 /* Don't read in free or bad pages */
2319                 if (!si->swap_map[toff])
2320                         break;
2321                 if (swap_count(si->swap_map[toff]) == SWAP_MAP_BAD)
2322                         break;
2323         }
2324         spin_unlock(&swap_lock);
2325
2326         /*
2327          * Indicate starting offset, and return number of pages to get:
2328          * if only 1, say 0, since there's then no readahead to be done.
2329          */
2330         *offset = ++toff;
2331         return nr_pages? ++nr_pages: 0;
2332 }
2333
2334 /*
2335  * add_swap_count_continuation - called when a swap count is duplicated
2336  * beyond SWAP_MAP_MAX, it allocates a new page and links that to the entry's
2337  * page of the original vmalloc'ed swap_map, to hold the continuation count
2338  * (for that entry and for its neighbouring PAGE_SIZE swap entries).  Called
2339  * again when count is duplicated beyond SWAP_MAP_MAX * SWAP_CONT_MAX, etc.
2340  *
2341  * These continuation pages are seldom referenced: the common paths all work
2342  * on the original swap_map, only referring to a continuation page when the
2343  * low "digit" of a count is incremented or decremented through SWAP_MAP_MAX.
2344  *
2345  * add_swap_count_continuation(, GFP_ATOMIC) can be called while holding
2346  * page table locks; if it fails, add_swap_count_continuation(, GFP_KERNEL)
2347  * can be called after dropping locks.
2348  */
2349 int add_swap_count_continuation(swp_entry_t entry, gfp_t gfp_mask)
2350 {
2351         struct swap_info_struct *si;
2352         struct page *head;
2353         struct page *page;
2354         struct page *list_page;
2355         pgoff_t offset;
2356         unsigned char count;
2357
2358         /*
2359          * When debugging, it's easier to use __GFP_ZERO here; but it's better
2360          * for latency not to zero a page while GFP_ATOMIC and holding locks.
2361          */
2362         page = alloc_page(gfp_mask | __GFP_HIGHMEM);
2363
2364         si = swap_info_get(entry);
2365         if (!si) {
2366                 /*
2367                  * An acceptable race has occurred since the failing
2368                  * __swap_duplicate(): the swap entry has been freed,
2369                  * perhaps even the whole swap_map cleared for swapoff.
2370                  */
2371                 goto outer;
2372         }
2373
2374         offset = swp_offset(entry);
2375         count = si->swap_map[offset] & ~SWAP_HAS_CACHE;
2376
2377         if ((count & ~COUNT_CONTINUED) != SWAP_MAP_MAX) {
2378                 /*
2379                  * The higher the swap count, the more likely it is that tasks
2380                  * will race to add swap count continuation: we need to avoid
2381                  * over-provisioning.
2382                  */
2383                 goto out;
2384         }
2385
2386         if (!page) {
2387                 spin_unlock(&swap_lock);
2388                 return -ENOMEM;
2389         }
2390
2391         /*
2392          * We are fortunate that although vmalloc_to_page uses pte_offset_map,
2393          * no architecture is using highmem pages for kernel pagetables: so it
2394          * will not corrupt the GFP_ATOMIC caller's atomic pagetable kmaps.
2395          */
2396         head = vmalloc_to_page(si->swap_map + offset);
2397         offset &= ~PAGE_MASK;
2398
2399         /*
2400          * Page allocation does not initialize the page's lru field,
2401          * but it does always reset its private field.
2402          */
2403         if (!page_private(head)) {
2404                 BUG_ON(count & COUNT_CONTINUED);
2405                 INIT_LIST_HEAD(&head->lru);
2406                 set_page_private(head, SWP_CONTINUED);
2407                 si->flags |= SWP_CONTINUED;
2408         }
2409
2410         list_for_each_entry(list_page, &head->lru, lru) {
2411                 unsigned char *map;
2412
2413                 /*
2414                  * If the previous map said no continuation, but we've found
2415                  * a continuation page, free our allocation and use this one.
2416                  */
2417                 if (!(count & COUNT_CONTINUED))
2418                         goto out;
2419
2420                 map = kmap_atomic(list_page, KM_USER0) + offset;
2421                 count = *map;
2422                 kunmap_atomic(map, KM_USER0);
2423
2424                 /*
2425                  * If this continuation count now has some space in it,
2426                  * free our allocation and use this one.
2427                  */
2428                 if ((count & ~COUNT_CONTINUED) != SWAP_CONT_MAX)
2429                         goto out;
2430         }
2431
2432         list_add_tail(&page->lru, &head->lru);
2433         page = NULL;                    /* now it's attached, don't free it */
2434 out:
2435         spin_unlock(&swap_lock);
2436 outer:
2437         if (page)
2438                 __free_page(page);
2439         return 0;
2440 }
2441
2442 /*
2443  * swap_count_continued - when the original swap_map count is incremented
2444  * from SWAP_MAP_MAX, check if there is already a continuation page to carry
2445  * into, carry if so, or else fail until a new continuation page is allocated;
2446  * when the original swap_map count is decremented from 0 with continuation,
2447  * borrow from the continuation and report whether it still holds more.
2448  * Called while __swap_duplicate() or swap_entry_free() holds swap_lock.
2449  */
2450 static bool swap_count_continued(struct swap_info_struct *si,
2451                                  pgoff_t offset, unsigned char count)
2452 {
2453         struct page *head;
2454         struct page *page;
2455         unsigned char *map;
2456
2457         head = vmalloc_to_page(si->swap_map + offset);
2458         if (page_private(head) != SWP_CONTINUED) {
2459                 BUG_ON(count & COUNT_CONTINUED);
2460                 return false;           /* need to add count continuation */
2461         }
2462
2463         offset &= ~PAGE_MASK;
2464         page = list_entry(head->lru.next, struct page, lru);
2465         map = kmap_atomic(page, KM_USER0) + offset;
2466
2467         if (count == SWAP_MAP_MAX)      /* initial increment from swap_map */
2468                 goto init_map;          /* jump over SWAP_CONT_MAX checks */
2469
2470         if (count == (SWAP_MAP_MAX | COUNT_CONTINUED)) { /* incrementing */
2471                 /*
2472                  * Think of how you add 1 to 999
2473                  */
2474                 while (*map == (SWAP_CONT_MAX | COUNT_CONTINUED)) {
2475                         kunmap_atomic(map, KM_USER0);
2476                         page = list_entry(page->lru.next, struct page, lru);
2477                         BUG_ON(page == head);
2478                         map = kmap_atomic(page, KM_USER0) + offset;
2479                 }
2480                 if (*map == SWAP_CONT_MAX) {
2481                         kunmap_atomic(map, KM_USER0);
2482                         page = list_entry(page->lru.next, struct page, lru);
2483                         if (page == head)
2484                                 return false;   /* add count continuation */
2485                         map = kmap_atomic(page, KM_USER0) + offset;
2486 init_map:               *map = 0;               /* we didn't zero the page */
2487                 }
2488                 *map += 1;
2489                 kunmap_atomic(map, KM_USER0);
2490                 page = list_entry(page->lru.prev, struct page, lru);
2491                 while (page != head) {
2492                         map = kmap_atomic(page, KM_USER0) + offset;
2493                         *map = COUNT_CONTINUED;
2494                         kunmap_atomic(map, KM_USER0);
2495                         page = list_entry(page->lru.prev, struct page, lru);
2496                 }
2497                 return true;                    /* incremented */
2498
2499         } else {                                /* decrementing */
2500                 /*
2501                  * Think of how you subtract 1 from 1000
2502                  */
2503                 BUG_ON(count != COUNT_CONTINUED);
2504                 while (*map == COUNT_CONTINUED) {
2505                         kunmap_atomic(map, KM_USER0);
2506                         page = list_entry(page->lru.next, struct page, lru);
2507                         BUG_ON(page == head);
2508                         map = kmap_atomic(page, KM_USER0) + offset;
2509                 }
2510                 BUG_ON(*map == 0);
2511                 *map -= 1;
2512                 if (*map == 0)
2513                         count = 0;
2514                 kunmap_atomic(map, KM_USER0);
2515                 page = list_entry(page->lru.prev, struct page, lru);
2516                 while (page != head) {
2517                         map = kmap_atomic(page, KM_USER0) + offset;
2518                         *map = SWAP_CONT_MAX | count;
2519                         count = COUNT_CONTINUED;
2520                         kunmap_atomic(map, KM_USER0);
2521                         page = list_entry(page->lru.prev, struct page, lru);
2522                 }
2523                 return count == COUNT_CONTINUED;
2524         }
2525 }
2526
2527 /*
2528  * free_swap_count_continuations - swapoff free all the continuation pages
2529  * appended to the swap_map, after swap_map is quiesced, before vfree'ing it.
2530  */
2531 static void free_swap_count_continuations(struct swap_info_struct *si)
2532 {
2533         pgoff_t offset;
2534
2535         for (offset = 0; offset < si->max; offset += PAGE_SIZE) {
2536                 struct page *head;
2537                 head = vmalloc_to_page(si->swap_map + offset);
2538                 if (page_private(head)) {
2539                         struct list_head *this, *next;
2540                         list_for_each_safe(this, next, &head->lru) {
2541                                 struct page *page;
2542                                 page = list_entry(this, struct page, lru);
2543                                 list_del(this);
2544                                 __free_page(page);
2545                         }
2546                 }
2547         }
2548 }