filemap.c 65 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484
  1. /*
  2. * linux/mm/filemap.c
  3. *
  4. * Copyright (C) 1994-1999 Linus Torvalds
  5. */
  6. /*
  7. * This file handles the generic file mmap semantics used by
  8. * most "normal" filesystems (but you don't /have/ to use this:
  9. * the NFS filesystem used to do this differently, for example)
  10. */
  11. #include <linux/module.h>
  12. #include <linux/slab.h>
  13. #include <linux/compiler.h>
  14. #include <linux/fs.h>
  15. #include <linux/uaccess.h>
  16. #include <linux/aio.h>
  17. #include <linux/capability.h>
  18. #include <linux/kernel_stat.h>
  19. #include <linux/mm.h>
  20. #include <linux/swap.h>
  21. #include <linux/mman.h>
  22. #include <linux/pagemap.h>
  23. #include <linux/file.h>
  24. #include <linux/uio.h>
  25. #include <linux/hash.h>
  26. #include <linux/writeback.h>
  27. #include <linux/backing-dev.h>
  28. #include <linux/pagevec.h>
  29. #include <linux/blkdev.h>
  30. #include <linux/security.h>
  31. #include <linux/syscalls.h>
  32. #include <linux/cpuset.h>
  33. #include <linux/hardirq.h> /* for BUG_ON(!in_atomic()) only */
  34. #include <linux/memcontrol.h>
  35. #include <linux/mm_inline.h> /* for page_is_file_cache() */
  36. #include "internal.h"
  37. /*
  38. * FIXME: remove all knowledge of the buffer layer from the core VM
  39. */
  40. #include <linux/buffer_head.h> /* for generic_osync_inode */
  41. #include <asm/mman.h>
  42. /*
  43. * Shared mappings implemented 30.11.1994. It's not fully working yet,
  44. * though.
  45. *
  46. * Shared mappings now work. 15.8.1995 Bruno.
  47. *
  48. * finished 'unifying' the page and buffer cache and SMP-threaded the
  49. * page-cache, 21.05.1999, Ingo Molnar <mingo@redhat.com>
  50. *
  51. * SMP-threaded pagemap-LRU 1999, Andrea Arcangeli <andrea@suse.de>
  52. */
  53. /*
  54. * Lock ordering:
  55. *
  56. * ->i_mmap_lock (vmtruncate)
  57. * ->private_lock (__free_pte->__set_page_dirty_buffers)
  58. * ->swap_lock (exclusive_swap_page, others)
  59. * ->mapping->tree_lock
  60. *
  61. * ->i_mutex
  62. * ->i_mmap_lock (truncate->unmap_mapping_range)
  63. *
  64. * ->mmap_sem
  65. * ->i_mmap_lock
  66. * ->page_table_lock or pte_lock (various, mainly in memory.c)
  67. * ->mapping->tree_lock (arch-dependent flush_dcache_mmap_lock)
  68. *
  69. * ->mmap_sem
  70. * ->lock_page (access_process_vm)
  71. *
  72. * ->i_mutex (generic_file_buffered_write)
  73. * ->mmap_sem (fault_in_pages_readable->do_page_fault)
  74. *
  75. * ->i_mutex
  76. * ->i_alloc_sem (various)
  77. *
  78. * ->inode_lock
  79. * ->sb_lock (fs/fs-writeback.c)
  80. * ->mapping->tree_lock (__sync_single_inode)
  81. *
  82. * ->i_mmap_lock
  83. * ->anon_vma.lock (vma_adjust)
  84. *
  85. * ->anon_vma.lock
  86. * ->page_table_lock or pte_lock (anon_vma_prepare and various)
  87. *
  88. * ->page_table_lock or pte_lock
  89. * ->swap_lock (try_to_unmap_one)
  90. * ->private_lock (try_to_unmap_one)
  91. * ->tree_lock (try_to_unmap_one)
  92. * ->zone.lru_lock (follow_page->mark_page_accessed)
  93. * ->zone.lru_lock (check_pte_range->isolate_lru_page)
  94. * ->private_lock (page_remove_rmap->set_page_dirty)
  95. * ->tree_lock (page_remove_rmap->set_page_dirty)
  96. * ->inode_lock (page_remove_rmap->set_page_dirty)
  97. * ->inode_lock (zap_pte_range->set_page_dirty)
  98. * ->private_lock (zap_pte_range->__set_page_dirty_buffers)
  99. *
  100. * ->task->proc_lock
  101. * ->dcache_lock (proc_pid_lookup)
  102. */
  103. /*
  104. * Remove a page from the page cache and free it. Caller has to make
  105. * sure the page is locked and that nobody else uses it - or that usage
  106. * is safe. The caller must hold the mapping's tree_lock.
  107. */
  108. void __remove_from_page_cache(struct page *page)
  109. {
  110. struct address_space *mapping = page->mapping;
  111. radix_tree_delete(&mapping->page_tree, page->index);
  112. page->mapping = NULL;
  113. mapping->nrpages--;
  114. __dec_zone_page_state(page, NR_FILE_PAGES);
  115. BUG_ON(page_mapped(page));
  116. mem_cgroup_uncharge_cache_page(page);
  117. /*
  118. * Some filesystems seem to re-dirty the page even after
  119. * the VM has canceled the dirty bit (eg ext3 journaling).
  120. *
  121. * Fix it up by doing a final dirty accounting check after
  122. * having removed the page entirely.
  123. */
  124. if (PageDirty(page) && mapping_cap_account_dirty(mapping)) {
  125. dec_zone_page_state(page, NR_FILE_DIRTY);
  126. dec_bdi_stat(mapping->backing_dev_info, BDI_RECLAIMABLE);
  127. }
  128. }
  129. void remove_from_page_cache(struct page *page)
  130. {
  131. struct address_space *mapping = page->mapping;
  132. BUG_ON(!PageLocked(page));
  133. spin_lock_irq(&mapping->tree_lock);
  134. __remove_from_page_cache(page);
  135. spin_unlock_irq(&mapping->tree_lock);
  136. }
  137. static int sync_page(void *word)
  138. {
  139. struct address_space *mapping;
  140. struct page *page;
  141. page = container_of((unsigned long *)word, struct page, flags);
  142. /*
  143. * page_mapping() is being called without PG_locked held.
  144. * Some knowledge of the state and use of the page is used to
  145. * reduce the requirements down to a memory barrier.
  146. * The danger here is of a stale page_mapping() return value
  147. * indicating a struct address_space different from the one it's
  148. * associated with when it is associated with one.
  149. * After smp_mb(), it's either the correct page_mapping() for
  150. * the page, or an old page_mapping() and the page's own
  151. * page_mapping() has gone NULL.
  152. * The ->sync_page() address_space operation must tolerate
  153. * page_mapping() going NULL. By an amazing coincidence,
  154. * this comes about because none of the users of the page
  155. * in the ->sync_page() methods make essential use of the
  156. * page_mapping(), merely passing the page down to the backing
  157. * device's unplug functions when it's non-NULL, which in turn
  158. * ignore it for all cases but swap, where only page_private(page) is
  159. * of interest. When page_mapping() does go NULL, the entire
  160. * call stack gracefully ignores the page and returns.
  161. * -- wli
  162. */
  163. smp_mb();
  164. mapping = page_mapping(page);
  165. if (mapping && mapping->a_ops && mapping->a_ops->sync_page)
  166. mapping->a_ops->sync_page(page);
  167. io_schedule();
  168. return 0;
  169. }
  170. static int sync_page_killable(void *word)
  171. {
  172. sync_page(word);
  173. return fatal_signal_pending(current) ? -EINTR : 0;
  174. }
  175. /**
  176. * __filemap_fdatawrite_range - start writeback on mapping dirty pages in range
  177. * @mapping: address space structure to write
  178. * @start: offset in bytes where the range starts
  179. * @end: offset in bytes where the range ends (inclusive)
  180. * @sync_mode: enable synchronous operation
  181. *
  182. * Start writeback against all of a mapping's dirty pages that lie
  183. * within the byte offsets <start, end> inclusive.
  184. *
  185. * If sync_mode is WB_SYNC_ALL then this is a "data integrity" operation, as
  186. * opposed to a regular memory cleansing writeback. The difference between
  187. * these two operations is that if a dirty page/buffer is encountered, it must
  188. * be waited upon, and not just skipped over.
  189. */
  190. int __filemap_fdatawrite_range(struct address_space *mapping, loff_t start,
  191. loff_t end, int sync_mode)
  192. {
  193. int ret;
  194. struct writeback_control wbc = {
  195. .sync_mode = sync_mode,
  196. .nr_to_write = LONG_MAX,
  197. .range_start = start,
  198. .range_end = end,
  199. };
  200. if (!mapping_cap_writeback_dirty(mapping))
  201. return 0;
  202. ret = do_writepages(mapping, &wbc);
  203. return ret;
  204. }
  205. static inline int __filemap_fdatawrite(struct address_space *mapping,
  206. int sync_mode)
  207. {
  208. return __filemap_fdatawrite_range(mapping, 0, LLONG_MAX, sync_mode);
  209. }
  210. int filemap_fdatawrite(struct address_space *mapping)
  211. {
  212. return __filemap_fdatawrite(mapping, WB_SYNC_ALL);
  213. }
  214. EXPORT_SYMBOL(filemap_fdatawrite);
  215. int filemap_fdatawrite_range(struct address_space *mapping, loff_t start,
  216. loff_t end)
  217. {
  218. return __filemap_fdatawrite_range(mapping, start, end, WB_SYNC_ALL);
  219. }
  220. EXPORT_SYMBOL(filemap_fdatawrite_range);
  221. /**
  222. * filemap_flush - mostly a non-blocking flush
  223. * @mapping: target address_space
  224. *
  225. * This is a mostly non-blocking flush. Not suitable for data-integrity
  226. * purposes - I/O may not be started against all dirty pages.
  227. */
  228. int filemap_flush(struct address_space *mapping)
  229. {
  230. return __filemap_fdatawrite(mapping, WB_SYNC_NONE);
  231. }
  232. EXPORT_SYMBOL(filemap_flush);
  233. /**
  234. * wait_on_page_writeback_range - wait for writeback to complete
  235. * @mapping: target address_space
  236. * @start: beginning page index
  237. * @end: ending page index
  238. *
  239. * Wait for writeback to complete against pages indexed by start->end
  240. * inclusive
  241. */
  242. int wait_on_page_writeback_range(struct address_space *mapping,
  243. pgoff_t start, pgoff_t end)
  244. {
  245. struct pagevec pvec;
  246. int nr_pages;
  247. int ret = 0;
  248. pgoff_t index;
  249. if (end < start)
  250. return 0;
  251. pagevec_init(&pvec, 0);
  252. index = start;
  253. while ((index <= end) &&
  254. (nr_pages = pagevec_lookup_tag(&pvec, mapping, &index,
  255. PAGECACHE_TAG_WRITEBACK,
  256. min(end - index, (pgoff_t)PAGEVEC_SIZE-1) + 1)) != 0) {
  257. unsigned i;
  258. for (i = 0; i < nr_pages; i++) {
  259. struct page *page = pvec.pages[i];
  260. /* until radix tree lookup accepts end_index */
  261. if (page->index > end)
  262. continue;
  263. wait_on_page_writeback(page);
  264. if (PageError(page))
  265. ret = -EIO;
  266. }
  267. pagevec_release(&pvec);
  268. cond_resched();
  269. }
  270. /* Check for outstanding write errors */
  271. if (test_and_clear_bit(AS_ENOSPC, &mapping->flags))
  272. ret = -ENOSPC;
  273. if (test_and_clear_bit(AS_EIO, &mapping->flags))
  274. ret = -EIO;
  275. return ret;
  276. }
  277. /**
  278. * sync_page_range - write and wait on all pages in the passed range
  279. * @inode: target inode
  280. * @mapping: target address_space
  281. * @pos: beginning offset in pages to write
  282. * @count: number of bytes to write
  283. *
  284. * Write and wait upon all the pages in the passed range. This is a "data
  285. * integrity" operation. It waits upon in-flight writeout before starting and
  286. * waiting upon new writeout. If there was an IO error, return it.
  287. *
  288. * We need to re-take i_mutex during the generic_osync_inode list walk because
  289. * it is otherwise livelockable.
  290. */
  291. int sync_page_range(struct inode *inode, struct address_space *mapping,
  292. loff_t pos, loff_t count)
  293. {
  294. pgoff_t start = pos >> PAGE_CACHE_SHIFT;
  295. pgoff_t end = (pos + count - 1) >> PAGE_CACHE_SHIFT;
  296. int ret;
  297. if (!mapping_cap_writeback_dirty(mapping) || !count)
  298. return 0;
  299. ret = filemap_fdatawrite_range(mapping, pos, pos + count - 1);
  300. if (ret == 0) {
  301. mutex_lock(&inode->i_mutex);
  302. ret = generic_osync_inode(inode, mapping, OSYNC_METADATA);
  303. mutex_unlock(&inode->i_mutex);
  304. }
  305. if (ret == 0)
  306. ret = wait_on_page_writeback_range(mapping, start, end);
  307. return ret;
  308. }
  309. EXPORT_SYMBOL(sync_page_range);
  310. /**
  311. * sync_page_range_nolock - write & wait on all pages in the passed range without locking
  312. * @inode: target inode
  313. * @mapping: target address_space
  314. * @pos: beginning offset in pages to write
  315. * @count: number of bytes to write
  316. *
  317. * Note: Holding i_mutex across sync_page_range_nolock() is not a good idea
  318. * as it forces O_SYNC writers to different parts of the same file
  319. * to be serialised right until io completion.
  320. */
  321. int sync_page_range_nolock(struct inode *inode, struct address_space *mapping,
  322. loff_t pos, loff_t count)
  323. {
  324. pgoff_t start = pos >> PAGE_CACHE_SHIFT;
  325. pgoff_t end = (pos + count - 1) >> PAGE_CACHE_SHIFT;
  326. int ret;
  327. if (!mapping_cap_writeback_dirty(mapping) || !count)
  328. return 0;
  329. ret = filemap_fdatawrite_range(mapping, pos, pos + count - 1);
  330. if (ret == 0)
  331. ret = generic_osync_inode(inode, mapping, OSYNC_METADATA);
  332. if (ret == 0)
  333. ret = wait_on_page_writeback_range(mapping, start, end);
  334. return ret;
  335. }
  336. EXPORT_SYMBOL(sync_page_range_nolock);
  337. /**
  338. * filemap_fdatawait - wait for all under-writeback pages to complete
  339. * @mapping: address space structure to wait for
  340. *
  341. * Walk the list of under-writeback pages of the given address space
  342. * and wait for all of them.
  343. */
  344. int filemap_fdatawait(struct address_space *mapping)
  345. {
  346. loff_t i_size = i_size_read(mapping->host);
  347. if (i_size == 0)
  348. return 0;
  349. return wait_on_page_writeback_range(mapping, 0,
  350. (i_size - 1) >> PAGE_CACHE_SHIFT);
  351. }
  352. EXPORT_SYMBOL(filemap_fdatawait);
  353. int filemap_write_and_wait(struct address_space *mapping)
  354. {
  355. int err = 0;
  356. if (mapping->nrpages) {
  357. err = filemap_fdatawrite(mapping);
  358. /*
  359. * Even if the above returned error, the pages may be
  360. * written partially (e.g. -ENOSPC), so we wait for it.
  361. * But the -EIO is special case, it may indicate the worst
  362. * thing (e.g. bug) happened, so we avoid waiting for it.
  363. */
  364. if (err != -EIO) {
  365. int err2 = filemap_fdatawait(mapping);
  366. if (!err)
  367. err = err2;
  368. }
  369. }
  370. return err;
  371. }
  372. EXPORT_SYMBOL(filemap_write_and_wait);
  373. /**
  374. * filemap_write_and_wait_range - write out & wait on a file range
  375. * @mapping: the address_space for the pages
  376. * @lstart: offset in bytes where the range starts
  377. * @lend: offset in bytes where the range ends (inclusive)
  378. *
  379. * Write out and wait upon file offsets lstart->lend, inclusive.
  380. *
  381. * Note that `lend' is inclusive (describes the last byte to be written) so
  382. * that this function can be used to write to the very end-of-file (end = -1).
  383. */
  384. int filemap_write_and_wait_range(struct address_space *mapping,
  385. loff_t lstart, loff_t lend)
  386. {
  387. int err = 0;
  388. if (mapping->nrpages) {
  389. err = __filemap_fdatawrite_range(mapping, lstart, lend,
  390. WB_SYNC_ALL);
  391. /* See comment of filemap_write_and_wait() */
  392. if (err != -EIO) {
  393. int err2 = wait_on_page_writeback_range(mapping,
  394. lstart >> PAGE_CACHE_SHIFT,
  395. lend >> PAGE_CACHE_SHIFT);
  396. if (!err)
  397. err = err2;
  398. }
  399. }
  400. return err;
  401. }
  402. /**
  403. * add_to_page_cache_locked - add a locked page to the pagecache
  404. * @page: page to add
  405. * @mapping: the page's address_space
  406. * @offset: page index
  407. * @gfp_mask: page allocation mode
  408. *
  409. * This function is used to add a page to the pagecache. It must be locked.
  410. * This function does not add the page to the LRU. The caller must do that.
  411. */
  412. int add_to_page_cache_locked(struct page *page, struct address_space *mapping,
  413. pgoff_t offset, gfp_t gfp_mask)
  414. {
  415. int error;
  416. VM_BUG_ON(!PageLocked(page));
  417. error = mem_cgroup_cache_charge(page, current->mm,
  418. gfp_mask & GFP_RECLAIM_MASK);
  419. if (error)
  420. goto out;
  421. error = radix_tree_preload(gfp_mask & ~__GFP_HIGHMEM);
  422. if (error == 0) {
  423. page_cache_get(page);
  424. page->mapping = mapping;
  425. page->index = offset;
  426. spin_lock_irq(&mapping->tree_lock);
  427. error = radix_tree_insert(&mapping->page_tree, offset, page);
  428. if (likely(!error)) {
  429. mapping->nrpages++;
  430. __inc_zone_page_state(page, NR_FILE_PAGES);
  431. } else {
  432. page->mapping = NULL;
  433. mem_cgroup_uncharge_cache_page(page);
  434. page_cache_release(page);
  435. }
  436. spin_unlock_irq(&mapping->tree_lock);
  437. radix_tree_preload_end();
  438. } else
  439. mem_cgroup_uncharge_cache_page(page);
  440. out:
  441. return error;
  442. }
  443. EXPORT_SYMBOL(add_to_page_cache_locked);
  444. int add_to_page_cache_lru(struct page *page, struct address_space *mapping,
  445. pgoff_t offset, gfp_t gfp_mask)
  446. {
  447. int ret;
  448. /*
  449. * Splice_read and readahead add shmem/tmpfs pages into the page cache
  450. * before shmem_readpage has a chance to mark them as SwapBacked: they
  451. * need to go on the active_anon lru below, and mem_cgroup_cache_charge
  452. * (called in add_to_page_cache) needs to know where they're going too.
  453. */
  454. if (mapping_cap_swap_backed(mapping))
  455. SetPageSwapBacked(page);
  456. ret = add_to_page_cache(page, mapping, offset, gfp_mask);
  457. if (ret == 0) {
  458. if (page_is_file_cache(page))
  459. lru_cache_add_file(page);
  460. else
  461. lru_cache_add_active_anon(page);
  462. }
  463. return ret;
  464. }
  465. #ifdef CONFIG_NUMA
  466. struct page *__page_cache_alloc(gfp_t gfp)
  467. {
  468. if (cpuset_do_page_mem_spread()) {
  469. int n = cpuset_mem_spread_node();
  470. return alloc_pages_node(n, gfp, 0);
  471. }
  472. return alloc_pages(gfp, 0);
  473. }
  474. EXPORT_SYMBOL(__page_cache_alloc);
  475. #endif
  476. static int __sleep_on_page_lock(void *word)
  477. {
  478. io_schedule();
  479. return 0;
  480. }
  481. /*
  482. * In order to wait for pages to become available there must be
  483. * waitqueues associated with pages. By using a hash table of
  484. * waitqueues where the bucket discipline is to maintain all
  485. * waiters on the same queue and wake all when any of the pages
  486. * become available, and for the woken contexts to check to be
  487. * sure the appropriate page became available, this saves space
  488. * at a cost of "thundering herd" phenomena during rare hash
  489. * collisions.
  490. */
  491. static wait_queue_head_t *page_waitqueue(struct page *page)
  492. {
  493. const struct zone *zone = page_zone(page);
  494. return &zone->wait_table[hash_ptr(page, zone->wait_table_bits)];
  495. }
  496. static inline void wake_up_page(struct page *page, int bit)
  497. {
  498. __wake_up_bit(page_waitqueue(page), &page->flags, bit);
  499. }
  500. void wait_on_page_bit(struct page *page, int bit_nr)
  501. {
  502. DEFINE_WAIT_BIT(wait, &page->flags, bit_nr);
  503. if (test_bit(bit_nr, &page->flags))
  504. __wait_on_bit(page_waitqueue(page), &wait, sync_page,
  505. TASK_UNINTERRUPTIBLE);
  506. }
  507. EXPORT_SYMBOL(wait_on_page_bit);
  508. /**
  509. * unlock_page - unlock a locked page
  510. * @page: the page
  511. *
  512. * Unlocks the page and wakes up sleepers in ___wait_on_page_locked().
  513. * Also wakes sleepers in wait_on_page_writeback() because the wakeup
  514. * mechananism between PageLocked pages and PageWriteback pages is shared.
  515. * But that's OK - sleepers in wait_on_page_writeback() just go back to sleep.
  516. *
  517. * The mb is necessary to enforce ordering between the clear_bit and the read
  518. * of the waitqueue (to avoid SMP races with a parallel wait_on_page_locked()).
  519. */
  520. void unlock_page(struct page *page)
  521. {
  522. VM_BUG_ON(!PageLocked(page));
  523. clear_bit_unlock(PG_locked, &page->flags);
  524. smp_mb__after_clear_bit();
  525. wake_up_page(page, PG_locked);
  526. }
  527. EXPORT_SYMBOL(unlock_page);
  528. /**
  529. * end_page_writeback - end writeback against a page
  530. * @page: the page
  531. */
  532. void end_page_writeback(struct page *page)
  533. {
  534. if (TestClearPageReclaim(page))
  535. rotate_reclaimable_page(page);
  536. if (!test_clear_page_writeback(page))
  537. BUG();
  538. smp_mb__after_clear_bit();
  539. wake_up_page(page, PG_writeback);
  540. }
  541. EXPORT_SYMBOL(end_page_writeback);
  542. /**
  543. * __lock_page - get a lock on the page, assuming we need to sleep to get it
  544. * @page: the page to lock
  545. *
  546. * Ugly. Running sync_page() in state TASK_UNINTERRUPTIBLE is scary. If some
  547. * random driver's requestfn sets TASK_RUNNING, we could busywait. However
  548. * chances are that on the second loop, the block layer's plug list is empty,
  549. * so sync_page() will then return in state TASK_UNINTERRUPTIBLE.
  550. */
  551. void __lock_page(struct page *page)
  552. {
  553. DEFINE_WAIT_BIT(wait, &page->flags, PG_locked);
  554. __wait_on_bit_lock(page_waitqueue(page), &wait, sync_page,
  555. TASK_UNINTERRUPTIBLE);
  556. }
  557. EXPORT_SYMBOL(__lock_page);
  558. int __lock_page_killable(struct page *page)
  559. {
  560. DEFINE_WAIT_BIT(wait, &page->flags, PG_locked);
  561. return __wait_on_bit_lock(page_waitqueue(page), &wait,
  562. sync_page_killable, TASK_KILLABLE);
  563. }
  564. /**
  565. * __lock_page_nosync - get a lock on the page, without calling sync_page()
  566. * @page: the page to lock
  567. *
  568. * Variant of lock_page that does not require the caller to hold a reference
  569. * on the page's mapping.
  570. */
  571. void __lock_page_nosync(struct page *page)
  572. {
  573. DEFINE_WAIT_BIT(wait, &page->flags, PG_locked);
  574. __wait_on_bit_lock(page_waitqueue(page), &wait, __sleep_on_page_lock,
  575. TASK_UNINTERRUPTIBLE);
  576. }
  577. /**
  578. * find_get_page - find and get a page reference
  579. * @mapping: the address_space to search
  580. * @offset: the page index
  581. *
  582. * Is there a pagecache struct page at the given (mapping, offset) tuple?
  583. * If yes, increment its refcount and return it; if no, return NULL.
  584. */
  585. struct page *find_get_page(struct address_space *mapping, pgoff_t offset)
  586. {
  587. void **pagep;
  588. struct page *page;
  589. rcu_read_lock();
  590. repeat:
  591. page = NULL;
  592. pagep = radix_tree_lookup_slot(&mapping->page_tree, offset);
  593. if (pagep) {
  594. page = radix_tree_deref_slot(pagep);
  595. if (unlikely(!page || page == RADIX_TREE_RETRY))
  596. goto repeat;
  597. if (!page_cache_get_speculative(page))
  598. goto repeat;
  599. /*
  600. * Has the page moved?
  601. * This is part of the lockless pagecache protocol. See
  602. * include/linux/pagemap.h for details.
  603. */
  604. if (unlikely(page != *pagep)) {
  605. page_cache_release(page);
  606. goto repeat;
  607. }
  608. }
  609. rcu_read_unlock();
  610. return page;
  611. }
  612. EXPORT_SYMBOL(find_get_page);
  613. /**
  614. * find_lock_page - locate, pin and lock a pagecache page
  615. * @mapping: the address_space to search
  616. * @offset: the page index
  617. *
  618. * Locates the desired pagecache page, locks it, increments its reference
  619. * count and returns its address.
  620. *
  621. * Returns zero if the page was not present. find_lock_page() may sleep.
  622. */
  623. struct page *find_lock_page(struct address_space *mapping, pgoff_t offset)
  624. {
  625. struct page *page;
  626. repeat:
  627. page = find_get_page(mapping, offset);
  628. if (page) {
  629. lock_page(page);
  630. /* Has the page been truncated? */
  631. if (unlikely(page->mapping != mapping)) {
  632. unlock_page(page);
  633. page_cache_release(page);
  634. goto repeat;
  635. }
  636. VM_BUG_ON(page->index != offset);
  637. }
  638. return page;
  639. }
  640. EXPORT_SYMBOL(find_lock_page);
  641. /**
  642. * find_or_create_page - locate or add a pagecache page
  643. * @mapping: the page's address_space
  644. * @index: the page's index into the mapping
  645. * @gfp_mask: page allocation mode
  646. *
  647. * Locates a page in the pagecache. If the page is not present, a new page
  648. * is allocated using @gfp_mask and is added to the pagecache and to the VM's
  649. * LRU list. The returned page is locked and has its reference count
  650. * incremented.
  651. *
  652. * find_or_create_page() may sleep, even if @gfp_flags specifies an atomic
  653. * allocation!
  654. *
  655. * find_or_create_page() returns the desired page's address, or zero on
  656. * memory exhaustion.
  657. */
  658. struct page *find_or_create_page(struct address_space *mapping,
  659. pgoff_t index, gfp_t gfp_mask)
  660. {
  661. struct page *page;
  662. int err;
  663. repeat:
  664. page = find_lock_page(mapping, index);
  665. if (!page) {
  666. page = __page_cache_alloc(gfp_mask);
  667. if (!page)
  668. return NULL;
  669. /*
  670. * We want a regular kernel memory (not highmem or DMA etc)
  671. * allocation for the radix tree nodes, but we need to honour
  672. * the context-specific requirements the caller has asked for.
  673. * GFP_RECLAIM_MASK collects those requirements.
  674. */
  675. err = add_to_page_cache_lru(page, mapping, index,
  676. (gfp_mask & GFP_RECLAIM_MASK));
  677. if (unlikely(err)) {
  678. page_cache_release(page);
  679. page = NULL;
  680. if (err == -EEXIST)
  681. goto repeat;
  682. }
  683. }
  684. return page;
  685. }
  686. EXPORT_SYMBOL(find_or_create_page);
  687. /**
  688. * find_get_pages - gang pagecache lookup
  689. * @mapping: The address_space to search
  690. * @start: The starting page index
  691. * @nr_pages: The maximum number of pages
  692. * @pages: Where the resulting pages are placed
  693. *
  694. * find_get_pages() will search for and return a group of up to
  695. * @nr_pages pages in the mapping. The pages are placed at @pages.
  696. * find_get_pages() takes a reference against the returned pages.
  697. *
  698. * The search returns a group of mapping-contiguous pages with ascending
  699. * indexes. There may be holes in the indices due to not-present pages.
  700. *
  701. * find_get_pages() returns the number of pages which were found.
  702. */
  703. unsigned find_get_pages(struct address_space *mapping, pgoff_t start,
  704. unsigned int nr_pages, struct page **pages)
  705. {
  706. unsigned int i;
  707. unsigned int ret;
  708. unsigned int nr_found;
  709. rcu_read_lock();
  710. restart:
  711. nr_found = radix_tree_gang_lookup_slot(&mapping->page_tree,
  712. (void ***)pages, start, nr_pages);
  713. ret = 0;
  714. for (i = 0; i < nr_found; i++) {
  715. struct page *page;
  716. repeat:
  717. page = radix_tree_deref_slot((void **)pages[i]);
  718. if (unlikely(!page))
  719. continue;
  720. /*
  721. * this can only trigger if nr_found == 1, making livelock
  722. * a non issue.
  723. */
  724. if (unlikely(page == RADIX_TREE_RETRY))
  725. goto restart;
  726. if (!page_cache_get_speculative(page))
  727. goto repeat;
  728. /* Has the page moved? */
  729. if (unlikely(page != *((void **)pages[i]))) {
  730. page_cache_release(page);
  731. goto repeat;
  732. }
  733. pages[ret] = page;
  734. ret++;
  735. }
  736. rcu_read_unlock();
  737. return ret;
  738. }
  739. /**
  740. * find_get_pages_contig - gang contiguous pagecache lookup
  741. * @mapping: The address_space to search
  742. * @index: The starting page index
  743. * @nr_pages: The maximum number of pages
  744. * @pages: Where the resulting pages are placed
  745. *
  746. * find_get_pages_contig() works exactly like find_get_pages(), except
  747. * that the returned number of pages are guaranteed to be contiguous.
  748. *
  749. * find_get_pages_contig() returns the number of pages which were found.
  750. */
  751. unsigned find_get_pages_contig(struct address_space *mapping, pgoff_t index,
  752. unsigned int nr_pages, struct page **pages)
  753. {
  754. unsigned int i;
  755. unsigned int ret;
  756. unsigned int nr_found;
  757. rcu_read_lock();
  758. restart:
  759. nr_found = radix_tree_gang_lookup_slot(&mapping->page_tree,
  760. (void ***)pages, index, nr_pages);
  761. ret = 0;
  762. for (i = 0; i < nr_found; i++) {
  763. struct page *page;
  764. repeat:
  765. page = radix_tree_deref_slot((void **)pages[i]);
  766. if (unlikely(!page))
  767. continue;
  768. /*
  769. * this can only trigger if nr_found == 1, making livelock
  770. * a non issue.
  771. */
  772. if (unlikely(page == RADIX_TREE_RETRY))
  773. goto restart;
  774. if (page->mapping == NULL || page->index != index)
  775. break;
  776. if (!page_cache_get_speculative(page))
  777. goto repeat;
  778. /* Has the page moved? */
  779. if (unlikely(page != *((void **)pages[i]))) {
  780. page_cache_release(page);
  781. goto repeat;
  782. }
  783. pages[ret] = page;
  784. ret++;
  785. index++;
  786. }
  787. rcu_read_unlock();
  788. return ret;
  789. }
  790. EXPORT_SYMBOL(find_get_pages_contig);
  791. /**
  792. * find_get_pages_tag - find and return pages that match @tag
  793. * @mapping: the address_space to search
  794. * @index: the starting page index
  795. * @tag: the tag index
  796. * @nr_pages: the maximum number of pages
  797. * @pages: where the resulting pages are placed
  798. *
  799. * Like find_get_pages, except we only return pages which are tagged with
  800. * @tag. We update @index to index the next page for the traversal.
  801. */
  802. unsigned find_get_pages_tag(struct address_space *mapping, pgoff_t *index,
  803. int tag, unsigned int nr_pages, struct page **pages)
  804. {
  805. unsigned int i;
  806. unsigned int ret;
  807. unsigned int nr_found;
  808. rcu_read_lock();
  809. restart:
  810. nr_found = radix_tree_gang_lookup_tag_slot(&mapping->page_tree,
  811. (void ***)pages, *index, nr_pages, tag);
  812. ret = 0;
  813. for (i = 0; i < nr_found; i++) {
  814. struct page *page;
  815. repeat:
  816. page = radix_tree_deref_slot((void **)pages[i]);
  817. if (unlikely(!page))
  818. continue;
  819. /*
  820. * this can only trigger if nr_found == 1, making livelock
  821. * a non issue.
  822. */
  823. if (unlikely(page == RADIX_TREE_RETRY))
  824. goto restart;
  825. if (!page_cache_get_speculative(page))
  826. goto repeat;
  827. /* Has the page moved? */
  828. if (unlikely(page != *((void **)pages[i]))) {
  829. page_cache_release(page);
  830. goto repeat;
  831. }
  832. pages[ret] = page;
  833. ret++;
  834. }
  835. rcu_read_unlock();
  836. if (ret)
  837. *index = pages[ret - 1]->index + 1;
  838. return ret;
  839. }
  840. EXPORT_SYMBOL(find_get_pages_tag);
  841. /**
  842. * grab_cache_page_nowait - returns locked page at given index in given cache
  843. * @mapping: target address_space
  844. * @index: the page index
  845. *
  846. * Same as grab_cache_page(), but do not wait if the page is unavailable.
  847. * This is intended for speculative data generators, where the data can
  848. * be regenerated if the page couldn't be grabbed. This routine should
  849. * be safe to call while holding the lock for another page.
  850. *
  851. * Clear __GFP_FS when allocating the page to avoid recursion into the fs
  852. * and deadlock against the caller's locked page.
  853. */
  854. struct page *
  855. grab_cache_page_nowait(struct address_space *mapping, pgoff_t index)
  856. {
  857. struct page *page = find_get_page(mapping, index);
  858. if (page) {
  859. if (trylock_page(page))
  860. return page;
  861. page_cache_release(page);
  862. return NULL;
  863. }
  864. page = __page_cache_alloc(mapping_gfp_mask(mapping) & ~__GFP_FS);
  865. if (page && add_to_page_cache_lru(page, mapping, index, GFP_NOFS)) {
  866. page_cache_release(page);
  867. page = NULL;
  868. }
  869. return page;
  870. }
  871. EXPORT_SYMBOL(grab_cache_page_nowait);
  872. /*
  873. * CD/DVDs are error prone. When a medium error occurs, the driver may fail
  874. * a _large_ part of the i/o request. Imagine the worst scenario:
  875. *
  876. * ---R__________________________________________B__________
  877. * ^ reading here ^ bad block(assume 4k)
  878. *
  879. * read(R) => miss => readahead(R...B) => media error => frustrating retries
  880. * => failing the whole request => read(R) => read(R+1) =>
  881. * readahead(R+1...B+1) => bang => read(R+2) => read(R+3) =>
  882. * readahead(R+3...B+2) => bang => read(R+3) => read(R+4) =>
  883. * readahead(R+4...B+3) => bang => read(R+4) => read(R+5) => ......
  884. *
  885. * It is going insane. Fix it by quickly scaling down the readahead size.
  886. */
  887. static void shrink_readahead_size_eio(struct file *filp,
  888. struct file_ra_state *ra)
  889. {
  890. if (!ra->ra_pages)
  891. return;
  892. ra->ra_pages /= 4;
  893. }
  894. /**
  895. * do_generic_file_read - generic file read routine
  896. * @filp: the file to read
  897. * @ppos: current file position
  898. * @desc: read_descriptor
  899. * @actor: read method
  900. *
  901. * This is a generic file read routine, and uses the
  902. * mapping->a_ops->readpage() function for the actual low-level stuff.
  903. *
  904. * This is really ugly. But the goto's actually try to clarify some
  905. * of the logic when it comes to error handling etc.
  906. */
  907. static void do_generic_file_read(struct file *filp, loff_t *ppos,
  908. read_descriptor_t *desc, read_actor_t actor)
  909. {
  910. struct address_space *mapping = filp->f_mapping;
  911. struct inode *inode = mapping->host;
  912. struct file_ra_state *ra = &filp->f_ra;
  913. pgoff_t index;
  914. pgoff_t last_index;
  915. pgoff_t prev_index;
  916. unsigned long offset; /* offset into pagecache page */
  917. unsigned int prev_offset;
  918. int error;
  919. index = *ppos >> PAGE_CACHE_SHIFT;
  920. prev_index = ra->prev_pos >> PAGE_CACHE_SHIFT;
  921. prev_offset = ra->prev_pos & (PAGE_CACHE_SIZE-1);
  922. last_index = (*ppos + desc->count + PAGE_CACHE_SIZE-1) >> PAGE_CACHE_SHIFT;
  923. offset = *ppos & ~PAGE_CACHE_MASK;
  924. for (;;) {
  925. struct page *page;
  926. pgoff_t end_index;
  927. loff_t isize;
  928. unsigned long nr, ret;
  929. cond_resched();
  930. find_page:
  931. page = find_get_page(mapping, index);
  932. if (!page) {
  933. page_cache_sync_readahead(mapping,
  934. ra, filp,
  935. index, last_index - index);
  936. page = find_get_page(mapping, index);
  937. if (unlikely(page == NULL))
  938. goto no_cached_page;
  939. }
  940. if (PageReadahead(page)) {
  941. page_cache_async_readahead(mapping,
  942. ra, filp, page,
  943. index, last_index - index);
  944. }
  945. if (!PageUptodate(page)) {
  946. if (inode->i_blkbits == PAGE_CACHE_SHIFT ||
  947. !mapping->a_ops->is_partially_uptodate)
  948. goto page_not_up_to_date;
  949. if (!trylock_page(page))
  950. goto page_not_up_to_date;
  951. if (!mapping->a_ops->is_partially_uptodate(page,
  952. desc, offset))
  953. goto page_not_up_to_date_locked;
  954. unlock_page(page);
  955. }
  956. page_ok:
  957. /*
  958. * i_size must be checked after we know the page is Uptodate.
  959. *
  960. * Checking i_size after the check allows us to calculate
  961. * the correct value for "nr", which means the zero-filled
  962. * part of the page is not copied back to userspace (unless
  963. * another truncate extends the file - this is desired though).
  964. */
  965. isize = i_size_read(inode);
  966. end_index = (isize - 1) >> PAGE_CACHE_SHIFT;
  967. if (unlikely(!isize || index > end_index)) {
  968. page_cache_release(page);
  969. goto out;
  970. }
  971. /* nr is the maximum number of bytes to copy from this page */
  972. nr = PAGE_CACHE_SIZE;
  973. if (index == end_index) {
  974. nr = ((isize - 1) & ~PAGE_CACHE_MASK) + 1;
  975. if (nr <= offset) {
  976. page_cache_release(page);
  977. goto out;
  978. }
  979. }
  980. nr = nr - offset;
  981. /* If users can be writing to this page using arbitrary
  982. * virtual addresses, take care about potential aliasing
  983. * before reading the page on the kernel side.
  984. */
  985. if (mapping_writably_mapped(mapping))
  986. flush_dcache_page(page);
  987. /*
  988. * When a sequential read accesses a page several times,
  989. * only mark it as accessed the first time.
  990. */
  991. if (prev_index != index || offset != prev_offset)
  992. mark_page_accessed(page);
  993. prev_index = index;
  994. /*
  995. * Ok, we have the page, and it's up-to-date, so
  996. * now we can copy it to user space...
  997. *
  998. * The actor routine returns how many bytes were actually used..
  999. * NOTE! This may not be the same as how much of a user buffer
  1000. * we filled up (we may be padding etc), so we can only update
  1001. * "pos" here (the actor routine has to update the user buffer
  1002. * pointers and the remaining count).
  1003. */
  1004. ret = actor(desc, page, offset, nr);
  1005. offset += ret;
  1006. index += offset >> PAGE_CACHE_SHIFT;
  1007. offset &= ~PAGE_CACHE_MASK;
  1008. prev_offset = offset;
  1009. page_cache_release(page);
  1010. if (ret == nr && desc->count)
  1011. continue;
  1012. goto out;
  1013. page_not_up_to_date:
  1014. /* Get exclusive access to the page ... */
  1015. error = lock_page_killable(page);
  1016. if (unlikely(error))
  1017. goto readpage_error;
  1018. page_not_up_to_date_locked:
  1019. /* Did it get truncated before we got the lock? */
  1020. if (!page->mapping) {
  1021. unlock_page(page);
  1022. page_cache_release(page);
  1023. continue;
  1024. }
  1025. /* Did somebody else fill it already? */
  1026. if (PageUptodate(page)) {
  1027. unlock_page(page);
  1028. goto page_ok;
  1029. }
  1030. readpage:
  1031. /* Start the actual read. The read will unlock the page. */
  1032. error = mapping->a_ops->readpage(filp, page);
  1033. if (unlikely(error)) {
  1034. if (error == AOP_TRUNCATED_PAGE) {
  1035. page_cache_release(page);
  1036. goto find_page;
  1037. }
  1038. goto readpage_error;
  1039. }
  1040. if (!PageUptodate(page)) {
  1041. error = lock_page_killable(page);
  1042. if (unlikely(error))
  1043. goto readpage_error;
  1044. if (!PageUptodate(page)) {
  1045. if (page->mapping == NULL) {
  1046. /*
  1047. * invalidate_inode_pages got it
  1048. */
  1049. unlock_page(page);
  1050. page_cache_release(page);
  1051. goto find_page;
  1052. }
  1053. unlock_page(page);
  1054. shrink_readahead_size_eio(filp, ra);
  1055. error = -EIO;
  1056. goto readpage_error;
  1057. }
  1058. unlock_page(page);
  1059. }
  1060. goto page_ok;
  1061. readpage_error:
  1062. /* UHHUH! A synchronous read error occurred. Report it */
  1063. desc->error = error;
  1064. page_cache_release(page);
  1065. goto out;
  1066. no_cached_page:
  1067. /*
  1068. * Ok, it wasn't cached, so we need to create a new
  1069. * page..
  1070. */
  1071. page = page_cache_alloc_cold(mapping);
  1072. if (!page) {
  1073. desc->error = -ENOMEM;
  1074. goto out;
  1075. }
  1076. error = add_to_page_cache_lru(page, mapping,
  1077. index, GFP_KERNEL);
  1078. if (error) {
  1079. page_cache_release(page);
  1080. if (error == -EEXIST)
  1081. goto find_page;
  1082. desc->error = error;
  1083. goto out;
  1084. }
  1085. goto readpage;
  1086. }
  1087. out:
  1088. ra->prev_pos = prev_index;
  1089. ra->prev_pos <<= PAGE_CACHE_SHIFT;
  1090. ra->prev_pos |= prev_offset;
  1091. *ppos = ((loff_t)index << PAGE_CACHE_SHIFT) + offset;
  1092. file_accessed(filp);
  1093. }
  1094. int file_read_actor(read_descriptor_t *desc, struct page *page,
  1095. unsigned long offset, unsigned long size)
  1096. {
  1097. char *kaddr;
  1098. unsigned long left, count = desc->count;
  1099. if (size > count)
  1100. size = count;
  1101. /*
  1102. * Faults on the destination of a read are common, so do it before
  1103. * taking the kmap.
  1104. */
  1105. if (!fault_in_pages_writeable(desc->arg.buf, size)) {
  1106. kaddr = kmap_atomic(page, KM_USER0);
  1107. left = __copy_to_user_inatomic(desc->arg.buf,
  1108. kaddr + offset, size);
  1109. kunmap_atomic(kaddr, KM_USER0);
  1110. if (left == 0)
  1111. goto success;
  1112. }
  1113. /* Do it the slow way */
  1114. kaddr = kmap(page);
  1115. left = __copy_to_user(desc->arg.buf, kaddr + offset, size);
  1116. kunmap(page);
  1117. if (left) {
  1118. size -= left;
  1119. desc->error = -EFAULT;
  1120. }
  1121. success:
  1122. desc->count = count - size;
  1123. desc->written += size;
  1124. desc->arg.buf += size;
  1125. return size;
  1126. }
  1127. /*
  1128. * Performs necessary checks before doing a write
  1129. * @iov: io vector request
  1130. * @nr_segs: number of segments in the iovec
  1131. * @count: number of bytes to write
  1132. * @access_flags: type of access: %VERIFY_READ or %VERIFY_WRITE
  1133. *
  1134. * Adjust number of segments and amount of bytes to write (nr_segs should be
  1135. * properly initialized first). Returns appropriate error code that caller
  1136. * should return or zero in case that write should be allowed.
  1137. */
  1138. int generic_segment_checks(const struct iovec *iov,
  1139. unsigned long *nr_segs, size_t *count, int access_flags)
  1140. {
  1141. unsigned long seg;
  1142. size_t cnt = 0;
  1143. for (seg = 0; seg < *nr_segs; seg++) {
  1144. const struct iovec *iv = &iov[seg];
  1145. /*
  1146. * If any segment has a negative length, or the cumulative
  1147. * length ever wraps negative then return -EINVAL.
  1148. */
  1149. cnt += iv->iov_len;
  1150. if (unlikely((ssize_t)(cnt|iv->iov_len) < 0))
  1151. return -EINVAL;
  1152. if (access_ok(access_flags, iv->iov_base, iv->iov_len))
  1153. continue;
  1154. if (seg == 0)
  1155. return -EFAULT;
  1156. *nr_segs = seg;
  1157. cnt -= iv->iov_len; /* This segment is no good */
  1158. break;
  1159. }
  1160. *count = cnt;
  1161. return 0;
  1162. }
  1163. EXPORT_SYMBOL(generic_segment_checks);
  1164. /**
  1165. * generic_file_aio_read - generic filesystem read routine
  1166. * @iocb: kernel I/O control block
  1167. * @iov: io vector request
  1168. * @nr_segs: number of segments in the iovec
  1169. * @pos: current file position
  1170. *
  1171. * This is the "read()" routine for all filesystems
  1172. * that can use the page cache directly.
  1173. */
  1174. ssize_t
  1175. generic_file_aio_read(struct kiocb *iocb, const struct iovec *iov,
  1176. unsigned long nr_segs, loff_t pos)
  1177. {
  1178. struct file *filp = iocb->ki_filp;
  1179. ssize_t retval;
  1180. unsigned long seg;
  1181. size_t count;
  1182. loff_t *ppos = &iocb->ki_pos;
  1183. count = 0;
  1184. retval = generic_segment_checks(iov, &nr_segs, &count, VERIFY_WRITE);
  1185. if (retval)
  1186. return retval;
  1187. /* coalesce the iovecs and go direct-to-BIO for O_DIRECT */
  1188. if (filp->f_flags & O_DIRECT) {
  1189. loff_t size;
  1190. struct address_space *mapping;
  1191. struct inode *inode;
  1192. mapping = filp->f_mapping;
  1193. inode = mapping->host;
  1194. if (!count)
  1195. goto out; /* skip atime */
  1196. size = i_size_read(inode);
  1197. if (pos < size) {
  1198. retval = filemap_write_and_wait_range(mapping, pos,
  1199. pos + iov_length(iov, nr_segs) - 1);
  1200. if (!retval) {
  1201. retval = mapping->a_ops->direct_IO(READ, iocb,
  1202. iov, pos, nr_segs);
  1203. }
  1204. if (retval > 0)
  1205. *ppos = pos + retval;
  1206. if (retval) {
  1207. file_accessed(filp);
  1208. goto out;
  1209. }
  1210. }
  1211. }
  1212. for (seg = 0; seg < nr_segs; seg++) {
  1213. read_descriptor_t desc;
  1214. desc.written = 0;
  1215. desc.arg.buf = iov[seg].iov_base;
  1216. desc.count = iov[seg].iov_len;
  1217. if (desc.count == 0)
  1218. continue;
  1219. desc.error = 0;
  1220. do_generic_file_read(filp, ppos, &desc, file_read_actor);
  1221. retval += desc.written;
  1222. if (desc.error) {
  1223. retval = retval ?: desc.error;
  1224. break;
  1225. }
  1226. if (desc.count > 0)
  1227. break;
  1228. }
  1229. out:
  1230. return retval;
  1231. }
  1232. EXPORT_SYMBOL(generic_file_aio_read);
  1233. static ssize_t
  1234. do_readahead(struct address_space *mapping, struct file *filp,
  1235. pgoff_t index, unsigned long nr)
  1236. {
  1237. if (!mapping || !mapping->a_ops || !mapping->a_ops->readpage)
  1238. return -EINVAL;
  1239. force_page_cache_readahead(mapping, filp, index,
  1240. max_sane_readahead(nr));
  1241. return 0;
  1242. }
  1243. SYSCALL_DEFINE(readahead)(int fd, loff_t offset, size_t count)
  1244. {
  1245. ssize_t ret;
  1246. struct file *file;
  1247. ret = -EBADF;
  1248. file = fget(fd);
  1249. if (file) {
  1250. if (file->f_mode & FMODE_READ) {
  1251. struct address_space *mapping = file->f_mapping;
  1252. pgoff_t start = offset >> PAGE_CACHE_SHIFT;
  1253. pgoff_t end = (offset + count - 1) >> PAGE_CACHE_SHIFT;
  1254. unsigned long len = end - start + 1;
  1255. ret = do_readahead(mapping, file, start, len);
  1256. }
  1257. fput(file);
  1258. }
  1259. return ret;
  1260. }
  1261. #ifdef CONFIG_HAVE_SYSCALL_WRAPPERS
  1262. asmlinkage long SyS_readahead(long fd, loff_t offset, long count)
  1263. {
  1264. return SYSC_readahead((int) fd, offset, (size_t) count);
  1265. }
  1266. SYSCALL_ALIAS(sys_readahead, SyS_readahead);
  1267. #endif
  1268. #ifdef CONFIG_MMU
  1269. /**
  1270. * page_cache_read - adds requested page to the page cache if not already there
  1271. * @file: file to read
  1272. * @offset: page index
  1273. *
  1274. * This adds the requested page to the page cache if it isn't already there,
  1275. * and schedules an I/O to read in its contents from disk.
  1276. */
  1277. static int page_cache_read(struct file *file, pgoff_t offset)
  1278. {
  1279. struct address_space *mapping = file->f_mapping;
  1280. struct page *page;
  1281. int ret;
  1282. do {
  1283. page = page_cache_alloc_cold(mapping);
  1284. if (!page)
  1285. return -ENOMEM;
  1286. ret = add_to_page_cache_lru(page, mapping, offset, GFP_KERNEL);
  1287. if (ret == 0)
  1288. ret = mapping->a_ops->readpage(file, page);
  1289. else if (ret == -EEXIST)
  1290. ret = 0; /* losing race to add is OK */
  1291. page_cache_release(page);
  1292. } while (ret == AOP_TRUNCATED_PAGE);
  1293. return ret;
  1294. }
  1295. #define MMAP_LOTSAMISS (100)
  1296. /**
  1297. * filemap_fault - read in file data for page fault handling
  1298. * @vma: vma in which the fault was taken
  1299. * @vmf: struct vm_fault containing details of the fault
  1300. *
  1301. * filemap_fault() is invoked via the vma operations vector for a
  1302. * mapped memory region to read in file data during a page fault.
  1303. *
  1304. * The goto's are kind of ugly, but this streamlines the normal case of having
  1305. * it in the page cache, and handles the special cases reasonably without
  1306. * having a lot of duplicated code.
  1307. */
  1308. int filemap_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
  1309. {
  1310. int error;
  1311. struct file *file = vma->vm_file;
  1312. struct address_space *mapping = file->f_mapping;
  1313. struct file_ra_state *ra = &file->f_ra;
  1314. struct inode *inode = mapping->host;
  1315. struct page *page;
  1316. pgoff_t size;
  1317. int did_readaround = 0;
  1318. int ret = 0;
  1319. size = (i_size_read(inode) + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
  1320. if (vmf->pgoff >= size)
  1321. return VM_FAULT_SIGBUS;
  1322. /* If we don't want any read-ahead, don't bother */
  1323. if (VM_RandomReadHint(vma))
  1324. goto no_cached_page;
  1325. /*
  1326. * Do we have something in the page cache already?
  1327. */
  1328. retry_find:
  1329. page = find_lock_page(mapping, vmf->pgoff);
  1330. /*
  1331. * For sequential accesses, we use the generic readahead logic.
  1332. */
  1333. if (VM_SequentialReadHint(vma)) {
  1334. if (!page) {
  1335. page_cache_sync_readahead(mapping, ra, file,
  1336. vmf->pgoff, 1);
  1337. page = find_lock_page(mapping, vmf->pgoff);
  1338. if (!page)
  1339. goto no_cached_page;
  1340. }
  1341. if (PageReadahead(page)) {
  1342. page_cache_async_readahead(mapping, ra, file, page,
  1343. vmf->pgoff, 1);
  1344. }
  1345. }
  1346. if (!page) {
  1347. unsigned long ra_pages;
  1348. ra->mmap_miss++;
  1349. /*
  1350. * Do we miss much more than hit in this file? If so,
  1351. * stop bothering with read-ahead. It will only hurt.
  1352. */
  1353. if (ra->mmap_miss > MMAP_LOTSAMISS)
  1354. goto no_cached_page;
  1355. /*
  1356. * To keep the pgmajfault counter straight, we need to
  1357. * check did_readaround, as this is an inner loop.
  1358. */
  1359. if (!did_readaround) {
  1360. ret = VM_FAULT_MAJOR;
  1361. count_vm_event(PGMAJFAULT);
  1362. }
  1363. did_readaround = 1;
  1364. ra_pages = max_sane_readahead(file->f_ra.ra_pages);
  1365. if (ra_pages) {
  1366. pgoff_t start = 0;
  1367. if (vmf->pgoff > ra_pages / 2)
  1368. start = vmf->pgoff - ra_pages / 2;
  1369. do_page_cache_readahead(mapping, file, start, ra_pages);
  1370. }
  1371. page = find_lock_page(mapping, vmf->pgoff);
  1372. if (!page)
  1373. goto no_cached_page;
  1374. }
  1375. if (!did_readaround)
  1376. ra->mmap_miss--;
  1377. /*
  1378. * We have a locked page in the page cache, now we need to check
  1379. * that it's up-to-date. If not, it is going to be due to an error.
  1380. */
  1381. if (unlikely(!PageUptodate(page)))
  1382. goto page_not_uptodate;
  1383. /* Must recheck i_size under page lock */
  1384. size = (i_size_read(inode) + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
  1385. if (unlikely(vmf->pgoff >= size)) {
  1386. unlock_page(page);
  1387. page_cache_release(page);
  1388. return VM_FAULT_SIGBUS;
  1389. }
  1390. /*
  1391. * Found the page and have a reference on it.
  1392. */
  1393. ra->prev_pos = (loff_t)page->index << PAGE_CACHE_SHIFT;
  1394. vmf->page = page;
  1395. return ret | VM_FAULT_LOCKED;
  1396. no_cached_page:
  1397. /*
  1398. * We're only likely to ever get here if MADV_RANDOM is in
  1399. * effect.
  1400. */
  1401. error = page_cache_read(file, vmf->pgoff);
  1402. /*
  1403. * The page we want has now been added to the page cache.
  1404. * In the unlikely event that someone removed it in the
  1405. * meantime, we'll just come back here and read it again.
  1406. */
  1407. if (error >= 0)
  1408. goto retry_find;
  1409. /*
  1410. * An error return from page_cache_read can result if the
  1411. * system is low on memory, or a problem occurs while trying
  1412. * to schedule I/O.
  1413. */
  1414. if (error == -ENOMEM)
  1415. return VM_FAULT_OOM;
  1416. return VM_FAULT_SIGBUS;
  1417. page_not_uptodate:
  1418. /* IO error path */
  1419. if (!did_readaround) {
  1420. ret = VM_FAULT_MAJOR;
  1421. count_vm_event(PGMAJFAULT);
  1422. }
  1423. /*
  1424. * Umm, take care of errors if the page isn't up-to-date.
  1425. * Try to re-read it _once_. We do this synchronously,
  1426. * because there really aren't any performance issues here
  1427. * and we need to check for errors.
  1428. */
  1429. ClearPageError(page);
  1430. error = mapping->a_ops->readpage(file, page);
  1431. if (!error) {
  1432. wait_on_page_locked(page);
  1433. if (!PageUptodate(page))
  1434. error = -EIO;
  1435. }
  1436. page_cache_release(page);
  1437. if (!error || error == AOP_TRUNCATED_PAGE)
  1438. goto retry_find;
  1439. /* Things didn't work out. Return zero to tell the mm layer so. */
  1440. shrink_readahead_size_eio(file, ra);
  1441. return VM_FAULT_SIGBUS;
  1442. }
  1443. EXPORT_SYMBOL(filemap_fault);
  1444. struct vm_operations_struct generic_file_vm_ops = {
  1445. .fault = filemap_fault,
  1446. };
  1447. /* This is used for a general mmap of a disk file */
  1448. int generic_file_mmap(struct file * file, struct vm_area_struct * vma)
  1449. {
  1450. struct address_space *mapping = file->f_mapping;
  1451. if (!mapping->a_ops->readpage)
  1452. return -ENOEXEC;
  1453. file_accessed(file);
  1454. vma->vm_ops = &generic_file_vm_ops;
  1455. vma->vm_flags |= VM_CAN_NONLINEAR;
  1456. return 0;
  1457. }
  1458. /*
  1459. * This is for filesystems which do not implement ->writepage.
  1460. */
  1461. int generic_file_readonly_mmap(struct file *file, struct vm_area_struct *vma)
  1462. {
  1463. if ((vma->vm_flags & VM_SHARED) && (vma->vm_flags & VM_MAYWRITE))
  1464. return -EINVAL;
  1465. return generic_file_mmap(file, vma);
  1466. }
  1467. #else
  1468. int generic_file_mmap(struct file * file, struct vm_area_struct * vma)
  1469. {
  1470. return -ENOSYS;
  1471. }
  1472. int generic_file_readonly_mmap(struct file * file, struct vm_area_struct * vma)
  1473. {
  1474. return -ENOSYS;
  1475. }
  1476. #endif /* CONFIG_MMU */
  1477. EXPORT_SYMBOL(generic_file_mmap);
  1478. EXPORT_SYMBOL(generic_file_readonly_mmap);
  1479. static struct page *__read_cache_page(struct address_space *mapping,
  1480. pgoff_t index,
  1481. int (*filler)(void *,struct page*),
  1482. void *data)
  1483. {
  1484. struct page *page;
  1485. int err;
  1486. repeat:
  1487. page = find_get_page(mapping, index);
  1488. if (!page) {
  1489. page = page_cache_alloc_cold(mapping);
  1490. if (!page)
  1491. return ERR_PTR(-ENOMEM);
  1492. err = add_to_page_cache_lru(page, mapping, index, GFP_KERNEL);
  1493. if (unlikely(err)) {
  1494. page_cache_release(page);
  1495. if (err == -EEXIST)
  1496. goto repeat;
  1497. /* Presumably ENOMEM for radix tree node */
  1498. return ERR_PTR(err);
  1499. }
  1500. err = filler(data, page);
  1501. if (err < 0) {
  1502. page_cache_release(page);
  1503. page = ERR_PTR(err);
  1504. }
  1505. }
  1506. return page;
  1507. }
  1508. /**
  1509. * read_cache_page_async - read into page cache, fill it if needed
  1510. * @mapping: the page's address_space
  1511. * @index: the page index
  1512. * @filler: function to perform the read
  1513. * @data: destination for read data
  1514. *
  1515. * Same as read_cache_page, but don't wait for page to become unlocked
  1516. * after submitting it to the filler.
  1517. *
  1518. * Read into the page cache. If a page already exists, and PageUptodate() is
  1519. * not set, try to fill the page but don't wait for it to become unlocked.
  1520. *
  1521. * If the page does not get brought uptodate, return -EIO.
  1522. */
  1523. struct page *read_cache_page_async(struct address_space *mapping,
  1524. pgoff_t index,
  1525. int (*filler)(void *,struct page*),
  1526. void *data)
  1527. {
  1528. struct page *page;
  1529. int err;
  1530. retry:
  1531. page = __read_cache_page(mapping, index, filler, data);
  1532. if (IS_ERR(page))
  1533. return page;
  1534. if (PageUptodate(page))
  1535. goto out;
  1536. lock_page(page);
  1537. if (!page->mapping) {
  1538. unlock_page(page);
  1539. page_cache_release(page);
  1540. goto retry;
  1541. }
  1542. if (PageUptodate(page)) {
  1543. unlock_page(page);
  1544. goto out;
  1545. }
  1546. err = filler(data, page);
  1547. if (err < 0) {
  1548. page_cache_release(page);
  1549. return ERR_PTR(err);
  1550. }
  1551. out:
  1552. mark_page_accessed(page);
  1553. return page;
  1554. }
  1555. EXPORT_SYMBOL(read_cache_page_async);
  1556. /**
  1557. * read_cache_page - read into page cache, fill it if needed
  1558. * @mapping: the page's address_space
  1559. * @index: the page index
  1560. * @filler: function to perform the read
  1561. * @data: destination for read data
  1562. *
  1563. * Read into the page cache. If a page already exists, and PageUptodate() is
  1564. * not set, try to fill the page then wait for it to become unlocked.
  1565. *
  1566. * If the page does not get brought uptodate, return -EIO.
  1567. */
  1568. struct page *read_cache_page(struct address_space *mapping,
  1569. pgoff_t index,
  1570. int (*filler)(void *,struct page*),
  1571. void *data)
  1572. {
  1573. struct page *page;
  1574. page = read_cache_page_async(mapping, index, filler, data);
  1575. if (IS_ERR(page))
  1576. goto out;
  1577. wait_on_page_locked(page);
  1578. if (!PageUptodate(page)) {
  1579. page_cache_release(page);
  1580. page = ERR_PTR(-EIO);
  1581. }
  1582. out:
  1583. return page;
  1584. }
  1585. EXPORT_SYMBOL(read_cache_page);
  1586. /*
  1587. * The logic we want is
  1588. *
  1589. * if suid or (sgid and xgrp)
  1590. * remove privs
  1591. */
  1592. int should_remove_suid(struct dentry *dentry)
  1593. {
  1594. mode_t mode = dentry->d_inode->i_mode;
  1595. int kill = 0;
  1596. /* suid always must be killed */
  1597. if (unlikely(mode & S_ISUID))
  1598. kill = ATTR_KILL_SUID;
  1599. /*
  1600. * sgid without any exec bits is just a mandatory locking mark; leave
  1601. * it alone. If some exec bits are set, it's a real sgid; kill it.
  1602. */
  1603. if (unlikely((mode & S_ISGID) && (mode & S_IXGRP)))
  1604. kill |= ATTR_KILL_SGID;
  1605. if (unlikely(kill && !capable(CAP_FSETID) && S_ISREG(mode)))
  1606. return kill;
  1607. return 0;
  1608. }
  1609. EXPORT_SYMBOL(should_remove_suid);
  1610. static int __remove_suid(struct dentry *dentry, int kill)
  1611. {
  1612. struct iattr newattrs;
  1613. newattrs.ia_valid = ATTR_FORCE | kill;
  1614. return notify_change(dentry, &newattrs);
  1615. }
  1616. int file_remove_suid(struct file *file)
  1617. {
  1618. struct dentry *dentry = file->f_path.dentry;
  1619. int killsuid = should_remove_suid(dentry);
  1620. int killpriv = security_inode_need_killpriv(dentry);
  1621. int error = 0;
  1622. if (killpriv < 0)
  1623. return killpriv;
  1624. if (killpriv)
  1625. error = security_inode_killpriv(dentry);
  1626. if (!error && killsuid)
  1627. error = __remove_suid(dentry, killsuid);
  1628. return error;
  1629. }
  1630. EXPORT_SYMBOL(file_remove_suid);
  1631. static size_t __iovec_copy_from_user_inatomic(char *vaddr,
  1632. const struct iovec *iov, size_t base, size_t bytes)
  1633. {
  1634. size_t copied = 0, left = 0;
  1635. while (bytes) {
  1636. char __user *buf = iov->iov_base + base;
  1637. int copy = min(bytes, iov->iov_len - base);
  1638. base = 0;
  1639. left = __copy_from_user_inatomic_nocache(vaddr, buf, copy);
  1640. copied += copy;
  1641. bytes -= copy;
  1642. vaddr += copy;
  1643. iov++;
  1644. if (unlikely(left))
  1645. break;
  1646. }
  1647. return copied - left;
  1648. }
  1649. /*
  1650. * Copy as much as we can into the page and return the number of bytes which
  1651. * were sucessfully copied. If a fault is encountered then return the number of
  1652. * bytes which were copied.
  1653. */
  1654. size_t iov_iter_copy_from_user_atomic(struct page *page,
  1655. struct iov_iter *i, unsigned long offset, size_t bytes)
  1656. {
  1657. char *kaddr;
  1658. size_t copied;
  1659. BUG_ON(!in_atomic());
  1660. kaddr = kmap_atomic(page, KM_USER0);
  1661. if (likely(i->nr_segs == 1)) {
  1662. int left;
  1663. char __user *buf = i->iov->iov_base + i->iov_offset;
  1664. left = __copy_from_user_inatomic_nocache(kaddr + offset,
  1665. buf, bytes);
  1666. copied = bytes - left;
  1667. } else {
  1668. copied = __iovec_copy_from_user_inatomic(kaddr + offset,
  1669. i->iov, i->iov_offset, bytes);
  1670. }
  1671. kunmap_atomic(kaddr, KM_USER0);
  1672. return copied;
  1673. }
  1674. EXPORT_SYMBOL(iov_iter_copy_from_user_atomic);
  1675. /*
  1676. * This has the same sideeffects and return value as
  1677. * iov_iter_copy_from_user_atomic().
  1678. * The difference is that it attempts to resolve faults.
  1679. * Page must not be locked.
  1680. */
  1681. size_t iov_iter_copy_from_user(struct page *page,
  1682. struct iov_iter *i, unsigned long offset, size_t bytes)
  1683. {
  1684. char *kaddr;
  1685. size_t copied;
  1686. kaddr = kmap(page);
  1687. if (likely(i->nr_segs == 1)) {
  1688. int left;
  1689. char __user *buf = i->iov->iov_base + i->iov_offset;
  1690. left = __copy_from_user_nocache(kaddr + offset, buf, bytes);
  1691. copied = bytes - left;
  1692. } else {
  1693. copied = __iovec_copy_from_user_inatomic(kaddr + offset,
  1694. i->iov, i->iov_offset, bytes);
  1695. }
  1696. kunmap(page);
  1697. return copied;
  1698. }
  1699. EXPORT_SYMBOL(iov_iter_copy_from_user);
  1700. void iov_iter_advance(struct iov_iter *i, size_t bytes)
  1701. {
  1702. BUG_ON(i->count < bytes);
  1703. if (likely(i->nr_segs == 1)) {
  1704. i->iov_offset += bytes;
  1705. i->count -= bytes;
  1706. } else {
  1707. const struct iovec *iov = i->iov;
  1708. size_t base = i->iov_offset;
  1709. /*
  1710. * The !iov->iov_len check ensures we skip over unlikely
  1711. * zero-length segments (without overruning the iovec).
  1712. */
  1713. while (bytes || unlikely(i->count && !iov->iov_len)) {
  1714. int copy;
  1715. copy = min(bytes, iov->iov_len - base);
  1716. BUG_ON(!i->count || i->count < copy);
  1717. i->count -= copy;
  1718. bytes -= copy;
  1719. base += copy;
  1720. if (iov->iov_len == base) {
  1721. iov++;
  1722. base = 0;
  1723. }
  1724. }
  1725. i->iov = iov;
  1726. i->iov_offset = base;
  1727. }
  1728. }
  1729. EXPORT_SYMBOL(iov_iter_advance);
  1730. /*
  1731. * Fault in the first iovec of the given iov_iter, to a maximum length
  1732. * of bytes. Returns 0 on success, or non-zero if the memory could not be
  1733. * accessed (ie. because it is an invalid address).
  1734. *
  1735. * writev-intensive code may want this to prefault several iovecs -- that
  1736. * would be possible (callers must not rely on the fact that _only_ the
  1737. * first iovec will be faulted with the current implementation).
  1738. */
  1739. int iov_iter_fault_in_readable(struct iov_iter *i, size_t bytes)
  1740. {
  1741. char __user *buf = i->iov->iov_base + i->iov_offset;
  1742. bytes = min(bytes, i->iov->iov_len - i->iov_offset);
  1743. return fault_in_pages_readable(buf, bytes);
  1744. }
  1745. EXPORT_SYMBOL(iov_iter_fault_in_readable);
  1746. /*
  1747. * Return the count of just the current iov_iter segment.
  1748. */
  1749. size_t iov_iter_single_seg_count(struct iov_iter *i)
  1750. {
  1751. const struct iovec *iov = i->iov;
  1752. if (i->nr_segs == 1)
  1753. return i->count;
  1754. else
  1755. return min(i->count, iov->iov_len - i->iov_offset);
  1756. }
  1757. EXPORT_SYMBOL(iov_iter_single_seg_count);
  1758. /*
  1759. * Performs necessary checks before doing a write
  1760. *
  1761. * Can adjust writing position or amount of bytes to write.
  1762. * Returns appropriate error code that caller should return or
  1763. * zero in case that write should be allowed.
  1764. */
  1765. inline int generic_write_checks(struct file *file, loff_t *pos, size_t *count, int isblk)
  1766. {
  1767. struct inode *inode = file->f_mapping->host;
  1768. unsigned long limit = current->signal->rlim[RLIMIT_FSIZE].rlim_cur;
  1769. if (unlikely(*pos < 0))
  1770. return -EINVAL;
  1771. if (!isblk) {
  1772. /* FIXME: this is for backwards compatibility with 2.4 */
  1773. if (file->f_flags & O_APPEND)
  1774. *pos = i_size_read(inode);
  1775. if (limit != RLIM_INFINITY) {
  1776. if (*pos >= limit) {
  1777. send_sig(SIGXFSZ, current, 0);
  1778. return -EFBIG;
  1779. }
  1780. if (*count > limit - (typeof(limit))*pos) {
  1781. *count = limit - (typeof(limit))*pos;
  1782. }
  1783. }
  1784. }
  1785. /*
  1786. * LFS rule
  1787. */
  1788. if (unlikely(*pos + *count > MAX_NON_LFS &&
  1789. !(file->f_flags & O_LARGEFILE))) {
  1790. if (*pos >= MAX_NON_LFS) {
  1791. return -EFBIG;
  1792. }
  1793. if (*count > MAX_NON_LFS - (unsigned long)*pos) {
  1794. *count = MAX_NON_LFS - (unsigned long)*pos;
  1795. }
  1796. }
  1797. /*
  1798. * Are we about to exceed the fs block limit ?
  1799. *
  1800. * If we have written data it becomes a short write. If we have
  1801. * exceeded without writing data we send a signal and return EFBIG.
  1802. * Linus frestrict idea will clean these up nicely..
  1803. */
  1804. if (likely(!isblk)) {
  1805. if (unlikely(*pos >= inode->i_sb->s_maxbytes)) {
  1806. if (*count || *pos > inode->i_sb->s_maxbytes) {
  1807. return -EFBIG;
  1808. }
  1809. /* zero-length writes at ->s_maxbytes are OK */
  1810. }
  1811. if (unlikely(*pos + *count > inode->i_sb->s_maxbytes))
  1812. *count = inode->i_sb->s_maxbytes - *pos;
  1813. } else {
  1814. #ifdef CONFIG_BLOCK
  1815. loff_t isize;
  1816. if (bdev_read_only(I_BDEV(inode)))
  1817. return -EPERM;
  1818. isize = i_size_read(inode);
  1819. if (*pos >= isize) {
  1820. if (*count || *pos > isize)
  1821. return -ENOSPC;
  1822. }
  1823. if (*pos + *count > isize)
  1824. *count = isize - *pos;
  1825. #else
  1826. return -EPERM;
  1827. #endif
  1828. }
  1829. return 0;
  1830. }
  1831. EXPORT_SYMBOL(generic_write_checks);
  1832. int pagecache_write_begin(struct file *file, struct address_space *mapping,
  1833. loff_t pos, unsigned len, unsigned flags,
  1834. struct page **pagep, void **fsdata)
  1835. {
  1836. const struct address_space_operations *aops = mapping->a_ops;
  1837. return aops->write_begin(file, mapping, pos, len, flags,
  1838. pagep, fsdata);
  1839. }
  1840. EXPORT_SYMBOL(pagecache_write_begin);
  1841. int pagecache_write_end(struct file *file, struct address_space *mapping,
  1842. loff_t pos, unsigned len, unsigned copied,
  1843. struct page *page, void *fsdata)
  1844. {
  1845. const struct address_space_operations *aops = mapping->a_ops;
  1846. mark_page_accessed(page);
  1847. return aops->write_end(file, mapping, pos, len, copied, page, fsdata);
  1848. }
  1849. EXPORT_SYMBOL(pagecache_write_end);
  1850. ssize_t
  1851. generic_file_direct_write(struct kiocb *iocb, const struct iovec *iov,
  1852. unsigned long *nr_segs, loff_t pos, loff_t *ppos,
  1853. size_t count, size_t ocount)
  1854. {
  1855. struct file *file = iocb->ki_filp;
  1856. struct address_space *mapping = file->f_mapping;
  1857. struct inode *inode = mapping->host;
  1858. ssize_t written;
  1859. size_t write_len;
  1860. pgoff_t end;
  1861. if (count != ocount)
  1862. *nr_segs = iov_shorten((struct iovec *)iov, *nr_segs, count);
  1863. write_len = iov_length(iov, *nr_segs);
  1864. end = (pos + write_len - 1) >> PAGE_CACHE_SHIFT;
  1865. written = filemap_write_and_wait_range(mapping, pos, pos + write_len - 1);
  1866. if (written)
  1867. goto out;
  1868. /*
  1869. * After a write we want buffered reads to be sure to go to disk to get
  1870. * the new data. We invalidate clean cached page from the region we're
  1871. * about to write. We do this *before* the write so that we can return
  1872. * without clobbering -EIOCBQUEUED from ->direct_IO().
  1873. */
  1874. if (mapping->nrpages) {
  1875. written = invalidate_inode_pages2_range(mapping,
  1876. pos >> PAGE_CACHE_SHIFT, end);
  1877. /*
  1878. * If a page can not be invalidated, return 0 to fall back
  1879. * to buffered write.
  1880. */
  1881. if (written) {
  1882. if (written == -EBUSY)
  1883. return 0;
  1884. goto out;
  1885. }
  1886. }
  1887. written = mapping->a_ops->direct_IO(WRITE, iocb, iov, pos, *nr_segs);
  1888. /*
  1889. * Finally, try again to invalidate clean pages which might have been
  1890. * cached by non-direct readahead, or faulted in by get_user_pages()
  1891. * if the source of the write was an mmap'ed region of the file
  1892. * we're writing. Either one is a pretty crazy thing to do,
  1893. * so we don't support it 100%. If this invalidation
  1894. * fails, tough, the write still worked...
  1895. */
  1896. if (mapping->nrpages) {
  1897. invalidate_inode_pages2_range(mapping,
  1898. pos >> PAGE_CACHE_SHIFT, end);
  1899. }
  1900. if (written > 0) {
  1901. loff_t end = pos + written;
  1902. if (end > i_size_read(inode) && !S_ISBLK(inode->i_mode)) {
  1903. i_size_write(inode, end);
  1904. mark_inode_dirty(inode);
  1905. }
  1906. *ppos = end;
  1907. }
  1908. /*
  1909. * Sync the fs metadata but not the minor inode changes and
  1910. * of course not the data as we did direct DMA for the IO.
  1911. * i_mutex is held, which protects generic_osync_inode() from
  1912. * livelocking. AIO O_DIRECT ops attempt to sync metadata here.
  1913. */
  1914. out:
  1915. if ((written >= 0 || written == -EIOCBQUEUED) &&
  1916. ((file->f_flags & O_SYNC) || IS_SYNC(inode))) {
  1917. int err = generic_osync_inode(inode, mapping, OSYNC_METADATA);
  1918. if (err < 0)
  1919. written = err;
  1920. }
  1921. return written;
  1922. }
  1923. EXPORT_SYMBOL(generic_file_direct_write);
  1924. /*
  1925. * Find or create a page at the given pagecache position. Return the locked
  1926. * page. This function is specifically for buffered writes.
  1927. */
  1928. struct page *grab_cache_page_write_begin(struct address_space *mapping,
  1929. pgoff_t index, unsigned flags)
  1930. {
  1931. int status;
  1932. struct page *page;
  1933. gfp_t gfp_notmask = 0;
  1934. if (flags & AOP_FLAG_NOFS)
  1935. gfp_notmask = __GFP_FS;
  1936. repeat:
  1937. page = find_lock_page(mapping, index);
  1938. if (likely(page))
  1939. return page;
  1940. page = __page_cache_alloc(mapping_gfp_mask(mapping) & ~gfp_notmask);
  1941. if (!page)
  1942. return NULL;
  1943. status = add_to_page_cache_lru(page, mapping, index,
  1944. GFP_KERNEL & ~gfp_notmask);
  1945. if (unlikely(status)) {
  1946. page_cache_release(page);
  1947. if (status == -EEXIST)
  1948. goto repeat;
  1949. return NULL;
  1950. }
  1951. return page;
  1952. }
  1953. EXPORT_SYMBOL(grab_cache_page_write_begin);
  1954. static ssize_t generic_perform_write(struct file *file,
  1955. struct iov_iter *i, loff_t pos)
  1956. {
  1957. struct address_space *mapping = file->f_mapping;
  1958. const struct address_space_operations *a_ops = mapping->a_ops;
  1959. long status = 0;
  1960. ssize_t written = 0;
  1961. unsigned int flags = 0;
  1962. /*
  1963. * Copies from kernel address space cannot fail (NFSD is a big user).
  1964. */
  1965. if (segment_eq(get_fs(), KERNEL_DS))
  1966. flags |= AOP_FLAG_UNINTERRUPTIBLE;
  1967. do {
  1968. struct page *page;
  1969. pgoff_t index; /* Pagecache index for current page */
  1970. unsigned long offset; /* Offset into pagecache page */
  1971. unsigned long bytes; /* Bytes to write to page */
  1972. size_t copied; /* Bytes copied from user */
  1973. void *fsdata;
  1974. offset = (pos & (PAGE_CACHE_SIZE - 1));
  1975. index = pos >> PAGE_CACHE_SHIFT;
  1976. bytes = min_t(unsigned long, PAGE_CACHE_SIZE - offset,
  1977. iov_iter_count(i));
  1978. again:
  1979. /*
  1980. * Bring in the user page that we will copy from _first_.
  1981. * Otherwise there's a nasty deadlock on copying from the
  1982. * same page as we're writing to, without it being marked
  1983. * up-to-date.
  1984. *
  1985. * Not only is this an optimisation, but it is also required
  1986. * to check that the address is actually valid, when atomic
  1987. * usercopies are used, below.
  1988. */
  1989. if (unlikely(iov_iter_fault_in_readable(i, bytes))) {
  1990. status = -EFAULT;
  1991. break;
  1992. }
  1993. status = a_ops->write_begin(file, mapping, pos, bytes, flags,
  1994. &page, &fsdata);
  1995. if (unlikely(status))
  1996. break;
  1997. pagefault_disable();
  1998. copied = iov_iter_copy_from_user_atomic(page, i, offset, bytes);
  1999. pagefault_enable();
  2000. flush_dcache_page(page);
  2001. status = a_ops->write_end(file, mapping, pos, bytes, copied,
  2002. page, fsdata);
  2003. if (unlikely(status < 0))
  2004. break;
  2005. copied = status;
  2006. cond_resched();
  2007. iov_iter_advance(i, copied);
  2008. if (unlikely(copied == 0)) {
  2009. /*
  2010. * If we were unable to copy any data at all, we must
  2011. * fall back to a single segment length write.
  2012. *
  2013. * If we didn't fallback here, we could livelock
  2014. * because not all segments in the iov can be copied at
  2015. * once without a pagefault.
  2016. */
  2017. bytes = min_t(unsigned long, PAGE_CACHE_SIZE - offset,
  2018. iov_iter_single_seg_count(i));
  2019. goto again;
  2020. }
  2021. pos += copied;
  2022. written += copied;
  2023. balance_dirty_pages_ratelimited(mapping);
  2024. } while (iov_iter_count(i));
  2025. return written ? written : status;
  2026. }
  2027. ssize_t
  2028. generic_file_buffered_write(struct kiocb *iocb, const struct iovec *iov,
  2029. unsigned long nr_segs, loff_t pos, loff_t *ppos,
  2030. size_t count, ssize_t written)
  2031. {
  2032. struct file *file = iocb->ki_filp;
  2033. struct address_space *mapping = file->f_mapping;
  2034. const struct address_space_operations *a_ops = mapping->a_ops;
  2035. struct inode *inode = mapping->host;
  2036. ssize_t status;
  2037. struct iov_iter i;
  2038. iov_iter_init(&i, iov, nr_segs, count, written);
  2039. status = generic_perform_write(file, &i, pos);
  2040. if (likely(status >= 0)) {
  2041. written += status;
  2042. *ppos = pos + status;
  2043. /*
  2044. * For now, when the user asks for O_SYNC, we'll actually give
  2045. * O_DSYNC
  2046. */
  2047. if (unlikely((file->f_flags & O_SYNC) || IS_SYNC(inode))) {
  2048. if (!a_ops->writepage || !is_sync_kiocb(iocb))
  2049. status = generic_osync_inode(inode, mapping,
  2050. OSYNC_METADATA|OSYNC_DATA);
  2051. }
  2052. }
  2053. /*
  2054. * If we get here for O_DIRECT writes then we must have fallen through
  2055. * to buffered writes (block instantiation inside i_size). So we sync
  2056. * the file data here, to try to honour O_DIRECT expectations.
  2057. */
  2058. if (unlikely(file->f_flags & O_DIRECT) && written)
  2059. status = filemap_write_and_wait_range(mapping,
  2060. pos, pos + written - 1);
  2061. return written ? written : status;
  2062. }
  2063. EXPORT_SYMBOL(generic_file_buffered_write);
  2064. static ssize_t
  2065. __generic_file_aio_write_nolock(struct kiocb *iocb, const struct iovec *iov,
  2066. unsigned long nr_segs, loff_t *ppos)
  2067. {
  2068. struct file *file = iocb->ki_filp;
  2069. struct address_space * mapping = file->f_mapping;
  2070. size_t ocount; /* original count */
  2071. size_t count; /* after file limit checks */
  2072. struct inode *inode = mapping->host;
  2073. loff_t pos;
  2074. ssize_t written;
  2075. ssize_t err;
  2076. ocount = 0;
  2077. err = generic_segment_checks(iov, &nr_segs, &ocount, VERIFY_READ);
  2078. if (err)
  2079. return err;
  2080. count = ocount;
  2081. pos = *ppos;
  2082. vfs_check_frozen(inode->i_sb, SB_FREEZE_WRITE);
  2083. /* We can write back this queue in page reclaim */
  2084. current->backing_dev_info = mapping->backing_dev_info;
  2085. written = 0;
  2086. err = generic_write_checks(file, &pos, &count, S_ISBLK(inode->i_mode));
  2087. if (err)
  2088. goto out;
  2089. if (count == 0)
  2090. goto out;
  2091. err = file_remove_suid(file);
  2092. if (err)
  2093. goto out;
  2094. file_update_time(file);
  2095. /* coalesce the iovecs and go direct-to-BIO for O_DIRECT */
  2096. if (unlikely(file->f_flags & O_DIRECT)) {
  2097. loff_t endbyte;
  2098. ssize_t written_buffered;
  2099. written = generic_file_direct_write(iocb, iov, &nr_segs, pos,
  2100. ppos, count, ocount);
  2101. if (written < 0 || written == count)
  2102. goto out;
  2103. /*
  2104. * direct-io write to a hole: fall through to buffered I/O
  2105. * for completing the rest of the request.
  2106. */
  2107. pos += written;
  2108. count -= written;
  2109. written_buffered = generic_file_buffered_write(iocb, iov,
  2110. nr_segs, pos, ppos, count,
  2111. written);
  2112. /*
  2113. * If generic_file_buffered_write() retuned a synchronous error
  2114. * then we want to return the number of bytes which were
  2115. * direct-written, or the error code if that was zero. Note
  2116. * that this differs from normal direct-io semantics, which
  2117. * will return -EFOO even if some bytes were written.
  2118. */
  2119. if (written_buffered < 0) {
  2120. err = written_buffered;
  2121. goto out;
  2122. }
  2123. /*
  2124. * We need to ensure that the page cache pages are written to
  2125. * disk and invalidated to preserve the expected O_DIRECT
  2126. * semantics.
  2127. */
  2128. endbyte = pos + written_buffered - written - 1;
  2129. err = do_sync_mapping_range(file->f_mapping, pos, endbyte,
  2130. SYNC_FILE_RANGE_WAIT_BEFORE|
  2131. SYNC_FILE_RANGE_WRITE|
  2132. SYNC_FILE_RANGE_WAIT_AFTER);
  2133. if (err == 0) {
  2134. written = written_buffered;
  2135. invalidate_mapping_pages(mapping,
  2136. pos >> PAGE_CACHE_SHIFT,
  2137. endbyte >> PAGE_CACHE_SHIFT);
  2138. } else {
  2139. /*
  2140. * We don't know how much we wrote, so just return
  2141. * the number of bytes which were direct-written
  2142. */
  2143. }
  2144. } else {
  2145. written = generic_file_buffered_write(iocb, iov, nr_segs,
  2146. pos, ppos, count, written);
  2147. }
  2148. out:
  2149. current->backing_dev_info = NULL;
  2150. return written ? written : err;
  2151. }
  2152. ssize_t generic_file_aio_write_nolock(struct kiocb *iocb,
  2153. const struct iovec *iov, unsigned long nr_segs, loff_t pos)
  2154. {
  2155. struct file *file = iocb->ki_filp;
  2156. struct address_space *mapping = file->f_mapping;
  2157. struct inode *inode = mapping->host;
  2158. ssize_t ret;
  2159. BUG_ON(iocb->ki_pos != pos);
  2160. ret = __generic_file_aio_write_nolock(iocb, iov, nr_segs,
  2161. &iocb->ki_pos);
  2162. if (ret > 0 && ((file->f_flags & O_SYNC) || IS_SYNC(inode))) {
  2163. ssize_t err;
  2164. err = sync_page_range_nolock(inode, mapping, pos, ret);
  2165. if (err < 0)
  2166. ret = err;
  2167. }
  2168. return ret;
  2169. }
  2170. EXPORT_SYMBOL(generic_file_aio_write_nolock);
  2171. ssize_t generic_file_aio_write(struct kiocb *iocb, const struct iovec *iov,
  2172. unsigned long nr_segs, loff_t pos)
  2173. {
  2174. struct file *file = iocb->ki_filp;
  2175. struct address_space *mapping = file->f_mapping;
  2176. struct inode *inode = mapping->host;
  2177. ssize_t ret;
  2178. BUG_ON(iocb->ki_pos != pos);
  2179. mutex_lock(&inode->i_mutex);
  2180. ret = __generic_file_aio_write_nolock(iocb, iov, nr_segs,
  2181. &iocb->ki_pos);
  2182. mutex_unlock(&inode->i_mutex);
  2183. if (ret > 0 && ((file->f_flags & O_SYNC) || IS_SYNC(inode))) {
  2184. ssize_t err;
  2185. err = sync_page_range(inode, mapping, pos, ret);
  2186. if (err < 0)
  2187. ret = err;
  2188. }
  2189. return ret;
  2190. }
  2191. EXPORT_SYMBOL(generic_file_aio_write);
  2192. /**
  2193. * try_to_release_page() - release old fs-specific metadata on a page
  2194. *
  2195. * @page: the page which the kernel is trying to free
  2196. * @gfp_mask: memory allocation flags (and I/O mode)
  2197. *
  2198. * The address_space is to try to release any data against the page
  2199. * (presumably at page->private). If the release was successful, return `1'.
  2200. * Otherwise return zero.
  2201. *
  2202. * The @gfp_mask argument specifies whether I/O may be performed to release
  2203. * this page (__GFP_IO), and whether the call may block (__GFP_WAIT & __GFP_FS).
  2204. *
  2205. */
  2206. int try_to_release_page(struct page *page, gfp_t gfp_mask)
  2207. {
  2208. struct address_space * const mapping = page->mapping;
  2209. BUG_ON(!PageLocked(page));
  2210. if (PageWriteback(page))
  2211. return 0;
  2212. if (mapping && mapping->a_ops->releasepage)
  2213. return mapping->a_ops->releasepage(page, gfp_mask);
  2214. return try_to_free_buffers(page);
  2215. }
  2216. EXPORT_SYMBOL(try_to_release_page);