swapfile.c 63 KB

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