filemap.c 64 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472
  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 = mapping->nrpages * 2,
  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_HIGHMEM);
  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. err = add_to_page_cache_lru(page, mapping, index, gfp_mask);
  670. if (unlikely(err)) {
  671. page_cache_release(page);
  672. page = NULL;
  673. if (err == -EEXIST)
  674. goto repeat;
  675. }
  676. }
  677. return page;
  678. }
  679. EXPORT_SYMBOL(find_or_create_page);
  680. /**
  681. * find_get_pages - gang pagecache lookup
  682. * @mapping: The address_space to search
  683. * @start: The starting page index
  684. * @nr_pages: The maximum number of pages
  685. * @pages: Where the resulting pages are placed
  686. *
  687. * find_get_pages() will search for and return a group of up to
  688. * @nr_pages pages in the mapping. The pages are placed at @pages.
  689. * find_get_pages() takes a reference against the returned pages.
  690. *
  691. * The search returns a group of mapping-contiguous pages with ascending
  692. * indexes. There may be holes in the indices due to not-present pages.
  693. *
  694. * find_get_pages() returns the number of pages which were found.
  695. */
  696. unsigned find_get_pages(struct address_space *mapping, pgoff_t start,
  697. unsigned int nr_pages, struct page **pages)
  698. {
  699. unsigned int i;
  700. unsigned int ret;
  701. unsigned int nr_found;
  702. rcu_read_lock();
  703. restart:
  704. nr_found = radix_tree_gang_lookup_slot(&mapping->page_tree,
  705. (void ***)pages, start, nr_pages);
  706. ret = 0;
  707. for (i = 0; i < nr_found; i++) {
  708. struct page *page;
  709. repeat:
  710. page = radix_tree_deref_slot((void **)pages[i]);
  711. if (unlikely(!page))
  712. continue;
  713. /*
  714. * this can only trigger if nr_found == 1, making livelock
  715. * a non issue.
  716. */
  717. if (unlikely(page == RADIX_TREE_RETRY))
  718. goto restart;
  719. if (!page_cache_get_speculative(page))
  720. goto repeat;
  721. /* Has the page moved? */
  722. if (unlikely(page != *((void **)pages[i]))) {
  723. page_cache_release(page);
  724. goto repeat;
  725. }
  726. pages[ret] = page;
  727. ret++;
  728. }
  729. rcu_read_unlock();
  730. return ret;
  731. }
  732. /**
  733. * find_get_pages_contig - gang contiguous pagecache lookup
  734. * @mapping: The address_space to search
  735. * @index: The starting page index
  736. * @nr_pages: The maximum number of pages
  737. * @pages: Where the resulting pages are placed
  738. *
  739. * find_get_pages_contig() works exactly like find_get_pages(), except
  740. * that the returned number of pages are guaranteed to be contiguous.
  741. *
  742. * find_get_pages_contig() returns the number of pages which were found.
  743. */
  744. unsigned find_get_pages_contig(struct address_space *mapping, pgoff_t index,
  745. unsigned int nr_pages, struct page **pages)
  746. {
  747. unsigned int i;
  748. unsigned int ret;
  749. unsigned int nr_found;
  750. rcu_read_lock();
  751. restart:
  752. nr_found = radix_tree_gang_lookup_slot(&mapping->page_tree,
  753. (void ***)pages, index, nr_pages);
  754. ret = 0;
  755. for (i = 0; i < nr_found; i++) {
  756. struct page *page;
  757. repeat:
  758. page = radix_tree_deref_slot((void **)pages[i]);
  759. if (unlikely(!page))
  760. continue;
  761. /*
  762. * this can only trigger if nr_found == 1, making livelock
  763. * a non issue.
  764. */
  765. if (unlikely(page == RADIX_TREE_RETRY))
  766. goto restart;
  767. if (page->mapping == NULL || page->index != index)
  768. break;
  769. if (!page_cache_get_speculative(page))
  770. goto repeat;
  771. /* Has the page moved? */
  772. if (unlikely(page != *((void **)pages[i]))) {
  773. page_cache_release(page);
  774. goto repeat;
  775. }
  776. pages[ret] = page;
  777. ret++;
  778. index++;
  779. }
  780. rcu_read_unlock();
  781. return ret;
  782. }
  783. EXPORT_SYMBOL(find_get_pages_contig);
  784. /**
  785. * find_get_pages_tag - find and return pages that match @tag
  786. * @mapping: the address_space to search
  787. * @index: the starting page index
  788. * @tag: the tag index
  789. * @nr_pages: the maximum number of pages
  790. * @pages: where the resulting pages are placed
  791. *
  792. * Like find_get_pages, except we only return pages which are tagged with
  793. * @tag. We update @index to index the next page for the traversal.
  794. */
  795. unsigned find_get_pages_tag(struct address_space *mapping, pgoff_t *index,
  796. int tag, unsigned int nr_pages, struct page **pages)
  797. {
  798. unsigned int i;
  799. unsigned int ret;
  800. unsigned int nr_found;
  801. rcu_read_lock();
  802. restart:
  803. nr_found = radix_tree_gang_lookup_tag_slot(&mapping->page_tree,
  804. (void ***)pages, *index, nr_pages, tag);
  805. ret = 0;
  806. for (i = 0; i < nr_found; i++) {
  807. struct page *page;
  808. repeat:
  809. page = radix_tree_deref_slot((void **)pages[i]);
  810. if (unlikely(!page))
  811. continue;
  812. /*
  813. * this can only trigger if nr_found == 1, making livelock
  814. * a non issue.
  815. */
  816. if (unlikely(page == RADIX_TREE_RETRY))
  817. goto restart;
  818. if (!page_cache_get_speculative(page))
  819. goto repeat;
  820. /* Has the page moved? */
  821. if (unlikely(page != *((void **)pages[i]))) {
  822. page_cache_release(page);
  823. goto repeat;
  824. }
  825. pages[ret] = page;
  826. ret++;
  827. }
  828. rcu_read_unlock();
  829. if (ret)
  830. *index = pages[ret - 1]->index + 1;
  831. return ret;
  832. }
  833. EXPORT_SYMBOL(find_get_pages_tag);
  834. /**
  835. * grab_cache_page_nowait - returns locked page at given index in given cache
  836. * @mapping: target address_space
  837. * @index: the page index
  838. *
  839. * Same as grab_cache_page(), but do not wait if the page is unavailable.
  840. * This is intended for speculative data generators, where the data can
  841. * be regenerated if the page couldn't be grabbed. This routine should
  842. * be safe to call while holding the lock for another page.
  843. *
  844. * Clear __GFP_FS when allocating the page to avoid recursion into the fs
  845. * and deadlock against the caller's locked page.
  846. */
  847. struct page *
  848. grab_cache_page_nowait(struct address_space *mapping, pgoff_t index)
  849. {
  850. struct page *page = find_get_page(mapping, index);
  851. if (page) {
  852. if (trylock_page(page))
  853. return page;
  854. page_cache_release(page);
  855. return NULL;
  856. }
  857. page = __page_cache_alloc(mapping_gfp_mask(mapping) & ~__GFP_FS);
  858. if (page && add_to_page_cache_lru(page, mapping, index, GFP_KERNEL)) {
  859. page_cache_release(page);
  860. page = NULL;
  861. }
  862. return page;
  863. }
  864. EXPORT_SYMBOL(grab_cache_page_nowait);
  865. /*
  866. * CD/DVDs are error prone. When a medium error occurs, the driver may fail
  867. * a _large_ part of the i/o request. Imagine the worst scenario:
  868. *
  869. * ---R__________________________________________B__________
  870. * ^ reading here ^ bad block(assume 4k)
  871. *
  872. * read(R) => miss => readahead(R...B) => media error => frustrating retries
  873. * => failing the whole request => read(R) => read(R+1) =>
  874. * readahead(R+1...B+1) => bang => read(R+2) => read(R+3) =>
  875. * readahead(R+3...B+2) => bang => read(R+3) => read(R+4) =>
  876. * readahead(R+4...B+3) => bang => read(R+4) => read(R+5) => ......
  877. *
  878. * It is going insane. Fix it by quickly scaling down the readahead size.
  879. */
  880. static void shrink_readahead_size_eio(struct file *filp,
  881. struct file_ra_state *ra)
  882. {
  883. if (!ra->ra_pages)
  884. return;
  885. ra->ra_pages /= 4;
  886. }
  887. /**
  888. * do_generic_file_read - generic file read routine
  889. * @filp: the file to read
  890. * @ppos: current file position
  891. * @desc: read_descriptor
  892. * @actor: read method
  893. *
  894. * This is a generic file read routine, and uses the
  895. * mapping->a_ops->readpage() function for the actual low-level stuff.
  896. *
  897. * This is really ugly. But the goto's actually try to clarify some
  898. * of the logic when it comes to error handling etc.
  899. */
  900. static void do_generic_file_read(struct file *filp, loff_t *ppos,
  901. read_descriptor_t *desc, read_actor_t actor)
  902. {
  903. struct address_space *mapping = filp->f_mapping;
  904. struct inode *inode = mapping->host;
  905. struct file_ra_state *ra = &filp->f_ra;
  906. pgoff_t index;
  907. pgoff_t last_index;
  908. pgoff_t prev_index;
  909. unsigned long offset; /* offset into pagecache page */
  910. unsigned int prev_offset;
  911. int error;
  912. index = *ppos >> PAGE_CACHE_SHIFT;
  913. prev_index = ra->prev_pos >> PAGE_CACHE_SHIFT;
  914. prev_offset = ra->prev_pos & (PAGE_CACHE_SIZE-1);
  915. last_index = (*ppos + desc->count + PAGE_CACHE_SIZE-1) >> PAGE_CACHE_SHIFT;
  916. offset = *ppos & ~PAGE_CACHE_MASK;
  917. for (;;) {
  918. struct page *page;
  919. pgoff_t end_index;
  920. loff_t isize;
  921. unsigned long nr, ret;
  922. cond_resched();
  923. find_page:
  924. page = find_get_page(mapping, index);
  925. if (!page) {
  926. page_cache_sync_readahead(mapping,
  927. ra, filp,
  928. index, last_index - index);
  929. page = find_get_page(mapping, index);
  930. if (unlikely(page == NULL))
  931. goto no_cached_page;
  932. }
  933. if (PageReadahead(page)) {
  934. page_cache_async_readahead(mapping,
  935. ra, filp, page,
  936. index, last_index - index);
  937. }
  938. if (!PageUptodate(page)) {
  939. if (inode->i_blkbits == PAGE_CACHE_SHIFT ||
  940. !mapping->a_ops->is_partially_uptodate)
  941. goto page_not_up_to_date;
  942. if (!trylock_page(page))
  943. goto page_not_up_to_date;
  944. if (!mapping->a_ops->is_partially_uptodate(page,
  945. desc, offset))
  946. goto page_not_up_to_date_locked;
  947. unlock_page(page);
  948. }
  949. page_ok:
  950. /*
  951. * i_size must be checked after we know the page is Uptodate.
  952. *
  953. * Checking i_size after the check allows us to calculate
  954. * the correct value for "nr", which means the zero-filled
  955. * part of the page is not copied back to userspace (unless
  956. * another truncate extends the file - this is desired though).
  957. */
  958. isize = i_size_read(inode);
  959. end_index = (isize - 1) >> PAGE_CACHE_SHIFT;
  960. if (unlikely(!isize || index > end_index)) {
  961. page_cache_release(page);
  962. goto out;
  963. }
  964. /* nr is the maximum number of bytes to copy from this page */
  965. nr = PAGE_CACHE_SIZE;
  966. if (index == end_index) {
  967. nr = ((isize - 1) & ~PAGE_CACHE_MASK) + 1;
  968. if (nr <= offset) {
  969. page_cache_release(page);
  970. goto out;
  971. }
  972. }
  973. nr = nr - offset;
  974. /* If users can be writing to this page using arbitrary
  975. * virtual addresses, take care about potential aliasing
  976. * before reading the page on the kernel side.
  977. */
  978. if (mapping_writably_mapped(mapping))
  979. flush_dcache_page(page);
  980. /*
  981. * When a sequential read accesses a page several times,
  982. * only mark it as accessed the first time.
  983. */
  984. if (prev_index != index || offset != prev_offset)
  985. mark_page_accessed(page);
  986. prev_index = index;
  987. /*
  988. * Ok, we have the page, and it's up-to-date, so
  989. * now we can copy it to user space...
  990. *
  991. * The actor routine returns how many bytes were actually used..
  992. * NOTE! This may not be the same as how much of a user buffer
  993. * we filled up (we may be padding etc), so we can only update
  994. * "pos" here (the actor routine has to update the user buffer
  995. * pointers and the remaining count).
  996. */
  997. ret = actor(desc, page, offset, nr);
  998. offset += ret;
  999. index += offset >> PAGE_CACHE_SHIFT;
  1000. offset &= ~PAGE_CACHE_MASK;
  1001. prev_offset = offset;
  1002. page_cache_release(page);
  1003. if (ret == nr && desc->count)
  1004. continue;
  1005. goto out;
  1006. page_not_up_to_date:
  1007. /* Get exclusive access to the page ... */
  1008. error = lock_page_killable(page);
  1009. if (unlikely(error))
  1010. goto readpage_error;
  1011. page_not_up_to_date_locked:
  1012. /* Did it get truncated before we got the lock? */
  1013. if (!page->mapping) {
  1014. unlock_page(page);
  1015. page_cache_release(page);
  1016. continue;
  1017. }
  1018. /* Did somebody else fill it already? */
  1019. if (PageUptodate(page)) {
  1020. unlock_page(page);
  1021. goto page_ok;
  1022. }
  1023. readpage:
  1024. /* Start the actual read. The read will unlock the page. */
  1025. error = mapping->a_ops->readpage(filp, page);
  1026. if (unlikely(error)) {
  1027. if (error == AOP_TRUNCATED_PAGE) {
  1028. page_cache_release(page);
  1029. goto find_page;
  1030. }
  1031. goto readpage_error;
  1032. }
  1033. if (!PageUptodate(page)) {
  1034. error = lock_page_killable(page);
  1035. if (unlikely(error))
  1036. goto readpage_error;
  1037. if (!PageUptodate(page)) {
  1038. if (page->mapping == NULL) {
  1039. /*
  1040. * invalidate_inode_pages got it
  1041. */
  1042. unlock_page(page);
  1043. page_cache_release(page);
  1044. goto find_page;
  1045. }
  1046. unlock_page(page);
  1047. shrink_readahead_size_eio(filp, ra);
  1048. error = -EIO;
  1049. goto readpage_error;
  1050. }
  1051. unlock_page(page);
  1052. }
  1053. goto page_ok;
  1054. readpage_error:
  1055. /* UHHUH! A synchronous read error occurred. Report it */
  1056. desc->error = error;
  1057. page_cache_release(page);
  1058. goto out;
  1059. no_cached_page:
  1060. /*
  1061. * Ok, it wasn't cached, so we need to create a new
  1062. * page..
  1063. */
  1064. page = page_cache_alloc_cold(mapping);
  1065. if (!page) {
  1066. desc->error = -ENOMEM;
  1067. goto out;
  1068. }
  1069. error = add_to_page_cache_lru(page, mapping,
  1070. index, GFP_KERNEL);
  1071. if (error) {
  1072. page_cache_release(page);
  1073. if (error == -EEXIST)
  1074. goto find_page;
  1075. desc->error = error;
  1076. goto out;
  1077. }
  1078. goto readpage;
  1079. }
  1080. out:
  1081. ra->prev_pos = prev_index;
  1082. ra->prev_pos <<= PAGE_CACHE_SHIFT;
  1083. ra->prev_pos |= prev_offset;
  1084. *ppos = ((loff_t)index << PAGE_CACHE_SHIFT) + offset;
  1085. file_accessed(filp);
  1086. }
  1087. int file_read_actor(read_descriptor_t *desc, struct page *page,
  1088. unsigned long offset, unsigned long size)
  1089. {
  1090. char *kaddr;
  1091. unsigned long left, count = desc->count;
  1092. if (size > count)
  1093. size = count;
  1094. /*
  1095. * Faults on the destination of a read are common, so do it before
  1096. * taking the kmap.
  1097. */
  1098. if (!fault_in_pages_writeable(desc->arg.buf, size)) {
  1099. kaddr = kmap_atomic(page, KM_USER0);
  1100. left = __copy_to_user_inatomic(desc->arg.buf,
  1101. kaddr + offset, size);
  1102. kunmap_atomic(kaddr, KM_USER0);
  1103. if (left == 0)
  1104. goto success;
  1105. }
  1106. /* Do it the slow way */
  1107. kaddr = kmap(page);
  1108. left = __copy_to_user(desc->arg.buf, kaddr + offset, size);
  1109. kunmap(page);
  1110. if (left) {
  1111. size -= left;
  1112. desc->error = -EFAULT;
  1113. }
  1114. success:
  1115. desc->count = count - size;
  1116. desc->written += size;
  1117. desc->arg.buf += size;
  1118. return size;
  1119. }
  1120. /*
  1121. * Performs necessary checks before doing a write
  1122. * @iov: io vector request
  1123. * @nr_segs: number of segments in the iovec
  1124. * @count: number of bytes to write
  1125. * @access_flags: type of access: %VERIFY_READ or %VERIFY_WRITE
  1126. *
  1127. * Adjust number of segments and amount of bytes to write (nr_segs should be
  1128. * properly initialized first). Returns appropriate error code that caller
  1129. * should return or zero in case that write should be allowed.
  1130. */
  1131. int generic_segment_checks(const struct iovec *iov,
  1132. unsigned long *nr_segs, size_t *count, int access_flags)
  1133. {
  1134. unsigned long seg;
  1135. size_t cnt = 0;
  1136. for (seg = 0; seg < *nr_segs; seg++) {
  1137. const struct iovec *iv = &iov[seg];
  1138. /*
  1139. * If any segment has a negative length, or the cumulative
  1140. * length ever wraps negative then return -EINVAL.
  1141. */
  1142. cnt += iv->iov_len;
  1143. if (unlikely((ssize_t)(cnt|iv->iov_len) < 0))
  1144. return -EINVAL;
  1145. if (access_ok(access_flags, iv->iov_base, iv->iov_len))
  1146. continue;
  1147. if (seg == 0)
  1148. return -EFAULT;
  1149. *nr_segs = seg;
  1150. cnt -= iv->iov_len; /* This segment is no good */
  1151. break;
  1152. }
  1153. *count = cnt;
  1154. return 0;
  1155. }
  1156. EXPORT_SYMBOL(generic_segment_checks);
  1157. /**
  1158. * generic_file_aio_read - generic filesystem read routine
  1159. * @iocb: kernel I/O control block
  1160. * @iov: io vector request
  1161. * @nr_segs: number of segments in the iovec
  1162. * @pos: current file position
  1163. *
  1164. * This is the "read()" routine for all filesystems
  1165. * that can use the page cache directly.
  1166. */
  1167. ssize_t
  1168. generic_file_aio_read(struct kiocb *iocb, const struct iovec *iov,
  1169. unsigned long nr_segs, loff_t pos)
  1170. {
  1171. struct file *filp = iocb->ki_filp;
  1172. ssize_t retval;
  1173. unsigned long seg;
  1174. size_t count;
  1175. loff_t *ppos = &iocb->ki_pos;
  1176. count = 0;
  1177. retval = generic_segment_checks(iov, &nr_segs, &count, VERIFY_WRITE);
  1178. if (retval)
  1179. return retval;
  1180. /* coalesce the iovecs and go direct-to-BIO for O_DIRECT */
  1181. if (filp->f_flags & O_DIRECT) {
  1182. loff_t size;
  1183. struct address_space *mapping;
  1184. struct inode *inode;
  1185. mapping = filp->f_mapping;
  1186. inode = mapping->host;
  1187. if (!count)
  1188. goto out; /* skip atime */
  1189. size = i_size_read(inode);
  1190. if (pos < size) {
  1191. retval = filemap_write_and_wait(mapping);
  1192. if (!retval) {
  1193. retval = mapping->a_ops->direct_IO(READ, iocb,
  1194. iov, pos, nr_segs);
  1195. }
  1196. if (retval > 0)
  1197. *ppos = pos + retval;
  1198. if (retval) {
  1199. file_accessed(filp);
  1200. goto out;
  1201. }
  1202. }
  1203. }
  1204. for (seg = 0; seg < nr_segs; seg++) {
  1205. read_descriptor_t desc;
  1206. desc.written = 0;
  1207. desc.arg.buf = iov[seg].iov_base;
  1208. desc.count = iov[seg].iov_len;
  1209. if (desc.count == 0)
  1210. continue;
  1211. desc.error = 0;
  1212. do_generic_file_read(filp, ppos, &desc, file_read_actor);
  1213. retval += desc.written;
  1214. if (desc.error) {
  1215. retval = retval ?: desc.error;
  1216. break;
  1217. }
  1218. if (desc.count > 0)
  1219. break;
  1220. }
  1221. out:
  1222. return retval;
  1223. }
  1224. EXPORT_SYMBOL(generic_file_aio_read);
  1225. static ssize_t
  1226. do_readahead(struct address_space *mapping, struct file *filp,
  1227. pgoff_t index, unsigned long nr)
  1228. {
  1229. if (!mapping || !mapping->a_ops || !mapping->a_ops->readpage)
  1230. return -EINVAL;
  1231. force_page_cache_readahead(mapping, filp, index,
  1232. max_sane_readahead(nr));
  1233. return 0;
  1234. }
  1235. asmlinkage ssize_t sys_readahead(int fd, loff_t offset, size_t count)
  1236. {
  1237. ssize_t ret;
  1238. struct file *file;
  1239. ret = -EBADF;
  1240. file = fget(fd);
  1241. if (file) {
  1242. if (file->f_mode & FMODE_READ) {
  1243. struct address_space *mapping = file->f_mapping;
  1244. pgoff_t start = offset >> PAGE_CACHE_SHIFT;
  1245. pgoff_t end = (offset + count - 1) >> PAGE_CACHE_SHIFT;
  1246. unsigned long len = end - start + 1;
  1247. ret = do_readahead(mapping, file, start, len);
  1248. }
  1249. fput(file);
  1250. }
  1251. return ret;
  1252. }
  1253. #ifdef CONFIG_MMU
  1254. /**
  1255. * page_cache_read - adds requested page to the page cache if not already there
  1256. * @file: file to read
  1257. * @offset: page index
  1258. *
  1259. * This adds the requested page to the page cache if it isn't already there,
  1260. * and schedules an I/O to read in its contents from disk.
  1261. */
  1262. static int page_cache_read(struct file *file, pgoff_t offset)
  1263. {
  1264. struct address_space *mapping = file->f_mapping;
  1265. struct page *page;
  1266. int ret;
  1267. do {
  1268. page = page_cache_alloc_cold(mapping);
  1269. if (!page)
  1270. return -ENOMEM;
  1271. ret = add_to_page_cache_lru(page, mapping, offset, GFP_KERNEL);
  1272. if (ret == 0)
  1273. ret = mapping->a_ops->readpage(file, page);
  1274. else if (ret == -EEXIST)
  1275. ret = 0; /* losing race to add is OK */
  1276. page_cache_release(page);
  1277. } while (ret == AOP_TRUNCATED_PAGE);
  1278. return ret;
  1279. }
  1280. #define MMAP_LOTSAMISS (100)
  1281. /**
  1282. * filemap_fault - read in file data for page fault handling
  1283. * @vma: vma in which the fault was taken
  1284. * @vmf: struct vm_fault containing details of the fault
  1285. *
  1286. * filemap_fault() is invoked via the vma operations vector for a
  1287. * mapped memory region to read in file data during a page fault.
  1288. *
  1289. * The goto's are kind of ugly, but this streamlines the normal case of having
  1290. * it in the page cache, and handles the special cases reasonably without
  1291. * having a lot of duplicated code.
  1292. */
  1293. int filemap_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
  1294. {
  1295. int error;
  1296. struct file *file = vma->vm_file;
  1297. struct address_space *mapping = file->f_mapping;
  1298. struct file_ra_state *ra = &file->f_ra;
  1299. struct inode *inode = mapping->host;
  1300. struct page *page;
  1301. pgoff_t size;
  1302. int did_readaround = 0;
  1303. int ret = 0;
  1304. size = (i_size_read(inode) + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
  1305. if (vmf->pgoff >= size)
  1306. return VM_FAULT_SIGBUS;
  1307. /* If we don't want any read-ahead, don't bother */
  1308. if (VM_RandomReadHint(vma))
  1309. goto no_cached_page;
  1310. /*
  1311. * Do we have something in the page cache already?
  1312. */
  1313. retry_find:
  1314. page = find_lock_page(mapping, vmf->pgoff);
  1315. /*
  1316. * For sequential accesses, we use the generic readahead logic.
  1317. */
  1318. if (VM_SequentialReadHint(vma)) {
  1319. if (!page) {
  1320. page_cache_sync_readahead(mapping, ra, file,
  1321. vmf->pgoff, 1);
  1322. page = find_lock_page(mapping, vmf->pgoff);
  1323. if (!page)
  1324. goto no_cached_page;
  1325. }
  1326. if (PageReadahead(page)) {
  1327. page_cache_async_readahead(mapping, ra, file, page,
  1328. vmf->pgoff, 1);
  1329. }
  1330. }
  1331. if (!page) {
  1332. unsigned long ra_pages;
  1333. ra->mmap_miss++;
  1334. /*
  1335. * Do we miss much more than hit in this file? If so,
  1336. * stop bothering with read-ahead. It will only hurt.
  1337. */
  1338. if (ra->mmap_miss > MMAP_LOTSAMISS)
  1339. goto no_cached_page;
  1340. /*
  1341. * To keep the pgmajfault counter straight, we need to
  1342. * check did_readaround, as this is an inner loop.
  1343. */
  1344. if (!did_readaround) {
  1345. ret = VM_FAULT_MAJOR;
  1346. count_vm_event(PGMAJFAULT);
  1347. }
  1348. did_readaround = 1;
  1349. ra_pages = max_sane_readahead(file->f_ra.ra_pages);
  1350. if (ra_pages) {
  1351. pgoff_t start = 0;
  1352. if (vmf->pgoff > ra_pages / 2)
  1353. start = vmf->pgoff - ra_pages / 2;
  1354. do_page_cache_readahead(mapping, file, start, ra_pages);
  1355. }
  1356. page = find_lock_page(mapping, vmf->pgoff);
  1357. if (!page)
  1358. goto no_cached_page;
  1359. }
  1360. if (!did_readaround)
  1361. ra->mmap_miss--;
  1362. /*
  1363. * We have a locked page in the page cache, now we need to check
  1364. * that it's up-to-date. If not, it is going to be due to an error.
  1365. */
  1366. if (unlikely(!PageUptodate(page)))
  1367. goto page_not_uptodate;
  1368. /* Must recheck i_size under page lock */
  1369. size = (i_size_read(inode) + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
  1370. if (unlikely(vmf->pgoff >= size)) {
  1371. unlock_page(page);
  1372. page_cache_release(page);
  1373. return VM_FAULT_SIGBUS;
  1374. }
  1375. /*
  1376. * Found the page and have a reference on it.
  1377. */
  1378. mark_page_accessed(page);
  1379. ra->prev_pos = (loff_t)page->index << PAGE_CACHE_SHIFT;
  1380. vmf->page = page;
  1381. return ret | VM_FAULT_LOCKED;
  1382. no_cached_page:
  1383. /*
  1384. * We're only likely to ever get here if MADV_RANDOM is in
  1385. * effect.
  1386. */
  1387. error = page_cache_read(file, vmf->pgoff);
  1388. /*
  1389. * The page we want has now been added to the page cache.
  1390. * In the unlikely event that someone removed it in the
  1391. * meantime, we'll just come back here and read it again.
  1392. */
  1393. if (error >= 0)
  1394. goto retry_find;
  1395. /*
  1396. * An error return from page_cache_read can result if the
  1397. * system is low on memory, or a problem occurs while trying
  1398. * to schedule I/O.
  1399. */
  1400. if (error == -ENOMEM)
  1401. return VM_FAULT_OOM;
  1402. return VM_FAULT_SIGBUS;
  1403. page_not_uptodate:
  1404. /* IO error path */
  1405. if (!did_readaround) {
  1406. ret = VM_FAULT_MAJOR;
  1407. count_vm_event(PGMAJFAULT);
  1408. }
  1409. /*
  1410. * Umm, take care of errors if the page isn't up-to-date.
  1411. * Try to re-read it _once_. We do this synchronously,
  1412. * because there really aren't any performance issues here
  1413. * and we need to check for errors.
  1414. */
  1415. ClearPageError(page);
  1416. error = mapping->a_ops->readpage(file, page);
  1417. if (!error) {
  1418. wait_on_page_locked(page);
  1419. if (!PageUptodate(page))
  1420. error = -EIO;
  1421. }
  1422. page_cache_release(page);
  1423. if (!error || error == AOP_TRUNCATED_PAGE)
  1424. goto retry_find;
  1425. /* Things didn't work out. Return zero to tell the mm layer so. */
  1426. shrink_readahead_size_eio(file, ra);
  1427. return VM_FAULT_SIGBUS;
  1428. }
  1429. EXPORT_SYMBOL(filemap_fault);
  1430. struct vm_operations_struct generic_file_vm_ops = {
  1431. .fault = filemap_fault,
  1432. };
  1433. /* This is used for a general mmap of a disk file */
  1434. int generic_file_mmap(struct file * file, struct vm_area_struct * vma)
  1435. {
  1436. struct address_space *mapping = file->f_mapping;
  1437. if (!mapping->a_ops->readpage)
  1438. return -ENOEXEC;
  1439. file_accessed(file);
  1440. vma->vm_ops = &generic_file_vm_ops;
  1441. vma->vm_flags |= VM_CAN_NONLINEAR;
  1442. return 0;
  1443. }
  1444. /*
  1445. * This is for filesystems which do not implement ->writepage.
  1446. */
  1447. int generic_file_readonly_mmap(struct file *file, struct vm_area_struct *vma)
  1448. {
  1449. if ((vma->vm_flags & VM_SHARED) && (vma->vm_flags & VM_MAYWRITE))
  1450. return -EINVAL;
  1451. return generic_file_mmap(file, vma);
  1452. }
  1453. #else
  1454. int generic_file_mmap(struct file * file, struct vm_area_struct * vma)
  1455. {
  1456. return -ENOSYS;
  1457. }
  1458. int generic_file_readonly_mmap(struct file * file, struct vm_area_struct * vma)
  1459. {
  1460. return -ENOSYS;
  1461. }
  1462. #endif /* CONFIG_MMU */
  1463. EXPORT_SYMBOL(generic_file_mmap);
  1464. EXPORT_SYMBOL(generic_file_readonly_mmap);
  1465. static struct page *__read_cache_page(struct address_space *mapping,
  1466. pgoff_t index,
  1467. int (*filler)(void *,struct page*),
  1468. void *data)
  1469. {
  1470. struct page *page;
  1471. int err;
  1472. repeat:
  1473. page = find_get_page(mapping, index);
  1474. if (!page) {
  1475. page = page_cache_alloc_cold(mapping);
  1476. if (!page)
  1477. return ERR_PTR(-ENOMEM);
  1478. err = add_to_page_cache_lru(page, mapping, index, GFP_KERNEL);
  1479. if (unlikely(err)) {
  1480. page_cache_release(page);
  1481. if (err == -EEXIST)
  1482. goto repeat;
  1483. /* Presumably ENOMEM for radix tree node */
  1484. return ERR_PTR(err);
  1485. }
  1486. err = filler(data, page);
  1487. if (err < 0) {
  1488. page_cache_release(page);
  1489. page = ERR_PTR(err);
  1490. }
  1491. }
  1492. return page;
  1493. }
  1494. /**
  1495. * read_cache_page_async - read into page cache, fill it if needed
  1496. * @mapping: the page's address_space
  1497. * @index: the page index
  1498. * @filler: function to perform the read
  1499. * @data: destination for read data
  1500. *
  1501. * Same as read_cache_page, but don't wait for page to become unlocked
  1502. * after submitting it to the filler.
  1503. *
  1504. * Read into the page cache. If a page already exists, and PageUptodate() is
  1505. * not set, try to fill the page but don't wait for it to become unlocked.
  1506. *
  1507. * If the page does not get brought uptodate, return -EIO.
  1508. */
  1509. struct page *read_cache_page_async(struct address_space *mapping,
  1510. pgoff_t index,
  1511. int (*filler)(void *,struct page*),
  1512. void *data)
  1513. {
  1514. struct page *page;
  1515. int err;
  1516. retry:
  1517. page = __read_cache_page(mapping, index, filler, data);
  1518. if (IS_ERR(page))
  1519. return page;
  1520. if (PageUptodate(page))
  1521. goto out;
  1522. lock_page(page);
  1523. if (!page->mapping) {
  1524. unlock_page(page);
  1525. page_cache_release(page);
  1526. goto retry;
  1527. }
  1528. if (PageUptodate(page)) {
  1529. unlock_page(page);
  1530. goto out;
  1531. }
  1532. err = filler(data, page);
  1533. if (err < 0) {
  1534. page_cache_release(page);
  1535. return ERR_PTR(err);
  1536. }
  1537. out:
  1538. mark_page_accessed(page);
  1539. return page;
  1540. }
  1541. EXPORT_SYMBOL(read_cache_page_async);
  1542. /**
  1543. * read_cache_page - read into page cache, fill it if needed
  1544. * @mapping: the page's address_space
  1545. * @index: the page index
  1546. * @filler: function to perform the read
  1547. * @data: destination for read data
  1548. *
  1549. * Read into the page cache. If a page already exists, and PageUptodate() is
  1550. * not set, try to fill the page then wait for it to become unlocked.
  1551. *
  1552. * If the page does not get brought uptodate, return -EIO.
  1553. */
  1554. struct page *read_cache_page(struct address_space *mapping,
  1555. pgoff_t index,
  1556. int (*filler)(void *,struct page*),
  1557. void *data)
  1558. {
  1559. struct page *page;
  1560. page = read_cache_page_async(mapping, index, filler, data);
  1561. if (IS_ERR(page))
  1562. goto out;
  1563. wait_on_page_locked(page);
  1564. if (!PageUptodate(page)) {
  1565. page_cache_release(page);
  1566. page = ERR_PTR(-EIO);
  1567. }
  1568. out:
  1569. return page;
  1570. }
  1571. EXPORT_SYMBOL(read_cache_page);
  1572. /*
  1573. * The logic we want is
  1574. *
  1575. * if suid or (sgid and xgrp)
  1576. * remove privs
  1577. */
  1578. int should_remove_suid(struct dentry *dentry)
  1579. {
  1580. mode_t mode = dentry->d_inode->i_mode;
  1581. int kill = 0;
  1582. /* suid always must be killed */
  1583. if (unlikely(mode & S_ISUID))
  1584. kill = ATTR_KILL_SUID;
  1585. /*
  1586. * sgid without any exec bits is just a mandatory locking mark; leave
  1587. * it alone. If some exec bits are set, it's a real sgid; kill it.
  1588. */
  1589. if (unlikely((mode & S_ISGID) && (mode & S_IXGRP)))
  1590. kill |= ATTR_KILL_SGID;
  1591. if (unlikely(kill && !capable(CAP_FSETID)))
  1592. return kill;
  1593. return 0;
  1594. }
  1595. EXPORT_SYMBOL(should_remove_suid);
  1596. static int __remove_suid(struct dentry *dentry, int kill)
  1597. {
  1598. struct iattr newattrs;
  1599. newattrs.ia_valid = ATTR_FORCE | kill;
  1600. return notify_change(dentry, &newattrs);
  1601. }
  1602. int file_remove_suid(struct file *file)
  1603. {
  1604. struct dentry *dentry = file->f_path.dentry;
  1605. int killsuid = should_remove_suid(dentry);
  1606. int killpriv = security_inode_need_killpriv(dentry);
  1607. int error = 0;
  1608. if (killpriv < 0)
  1609. return killpriv;
  1610. if (killpriv)
  1611. error = security_inode_killpriv(dentry);
  1612. if (!error && killsuid)
  1613. error = __remove_suid(dentry, killsuid);
  1614. return error;
  1615. }
  1616. EXPORT_SYMBOL(file_remove_suid);
  1617. static size_t __iovec_copy_from_user_inatomic(char *vaddr,
  1618. const struct iovec *iov, size_t base, size_t bytes)
  1619. {
  1620. size_t copied = 0, left = 0;
  1621. while (bytes) {
  1622. char __user *buf = iov->iov_base + base;
  1623. int copy = min(bytes, iov->iov_len - base);
  1624. base = 0;
  1625. left = __copy_from_user_inatomic_nocache(vaddr, buf, copy);
  1626. copied += copy;
  1627. bytes -= copy;
  1628. vaddr += copy;
  1629. iov++;
  1630. if (unlikely(left))
  1631. break;
  1632. }
  1633. return copied - left;
  1634. }
  1635. /*
  1636. * Copy as much as we can into the page and return the number of bytes which
  1637. * were sucessfully copied. If a fault is encountered then return the number of
  1638. * bytes which were copied.
  1639. */
  1640. size_t iov_iter_copy_from_user_atomic(struct page *page,
  1641. struct iov_iter *i, unsigned long offset, size_t bytes)
  1642. {
  1643. char *kaddr;
  1644. size_t copied;
  1645. BUG_ON(!in_atomic());
  1646. kaddr = kmap_atomic(page, KM_USER0);
  1647. if (likely(i->nr_segs == 1)) {
  1648. int left;
  1649. char __user *buf = i->iov->iov_base + i->iov_offset;
  1650. left = __copy_from_user_inatomic_nocache(kaddr + offset,
  1651. buf, bytes);
  1652. copied = bytes - left;
  1653. } else {
  1654. copied = __iovec_copy_from_user_inatomic(kaddr + offset,
  1655. i->iov, i->iov_offset, bytes);
  1656. }
  1657. kunmap_atomic(kaddr, KM_USER0);
  1658. return copied;
  1659. }
  1660. EXPORT_SYMBOL(iov_iter_copy_from_user_atomic);
  1661. /*
  1662. * This has the same sideeffects and return value as
  1663. * iov_iter_copy_from_user_atomic().
  1664. * The difference is that it attempts to resolve faults.
  1665. * Page must not be locked.
  1666. */
  1667. size_t iov_iter_copy_from_user(struct page *page,
  1668. struct iov_iter *i, unsigned long offset, size_t bytes)
  1669. {
  1670. char *kaddr;
  1671. size_t copied;
  1672. kaddr = kmap(page);
  1673. if (likely(i->nr_segs == 1)) {
  1674. int left;
  1675. char __user *buf = i->iov->iov_base + i->iov_offset;
  1676. left = __copy_from_user_nocache(kaddr + offset, buf, bytes);
  1677. copied = bytes - left;
  1678. } else {
  1679. copied = __iovec_copy_from_user_inatomic(kaddr + offset,
  1680. i->iov, i->iov_offset, bytes);
  1681. }
  1682. kunmap(page);
  1683. return copied;
  1684. }
  1685. EXPORT_SYMBOL(iov_iter_copy_from_user);
  1686. void iov_iter_advance(struct iov_iter *i, size_t bytes)
  1687. {
  1688. BUG_ON(i->count < bytes);
  1689. if (likely(i->nr_segs == 1)) {
  1690. i->iov_offset += bytes;
  1691. i->count -= bytes;
  1692. } else {
  1693. const struct iovec *iov = i->iov;
  1694. size_t base = i->iov_offset;
  1695. /*
  1696. * The !iov->iov_len check ensures we skip over unlikely
  1697. * zero-length segments (without overruning the iovec).
  1698. */
  1699. while (bytes || unlikely(i->count && !iov->iov_len)) {
  1700. int copy;
  1701. copy = min(bytes, iov->iov_len - base);
  1702. BUG_ON(!i->count || i->count < copy);
  1703. i->count -= copy;
  1704. bytes -= copy;
  1705. base += copy;
  1706. if (iov->iov_len == base) {
  1707. iov++;
  1708. base = 0;
  1709. }
  1710. }
  1711. i->iov = iov;
  1712. i->iov_offset = base;
  1713. }
  1714. }
  1715. EXPORT_SYMBOL(iov_iter_advance);
  1716. /*
  1717. * Fault in the first iovec of the given iov_iter, to a maximum length
  1718. * of bytes. Returns 0 on success, or non-zero if the memory could not be
  1719. * accessed (ie. because it is an invalid address).
  1720. *
  1721. * writev-intensive code may want this to prefault several iovecs -- that
  1722. * would be possible (callers must not rely on the fact that _only_ the
  1723. * first iovec will be faulted with the current implementation).
  1724. */
  1725. int iov_iter_fault_in_readable(struct iov_iter *i, size_t bytes)
  1726. {
  1727. char __user *buf = i->iov->iov_base + i->iov_offset;
  1728. bytes = min(bytes, i->iov->iov_len - i->iov_offset);
  1729. return fault_in_pages_readable(buf, bytes);
  1730. }
  1731. EXPORT_SYMBOL(iov_iter_fault_in_readable);
  1732. /*
  1733. * Return the count of just the current iov_iter segment.
  1734. */
  1735. size_t iov_iter_single_seg_count(struct iov_iter *i)
  1736. {
  1737. const struct iovec *iov = i->iov;
  1738. if (i->nr_segs == 1)
  1739. return i->count;
  1740. else
  1741. return min(i->count, iov->iov_len - i->iov_offset);
  1742. }
  1743. EXPORT_SYMBOL(iov_iter_single_seg_count);
  1744. /*
  1745. * Performs necessary checks before doing a write
  1746. *
  1747. * Can adjust writing position or amount of bytes to write.
  1748. * Returns appropriate error code that caller should return or
  1749. * zero in case that write should be allowed.
  1750. */
  1751. inline int generic_write_checks(struct file *file, loff_t *pos, size_t *count, int isblk)
  1752. {
  1753. struct inode *inode = file->f_mapping->host;
  1754. unsigned long limit = current->signal->rlim[RLIMIT_FSIZE].rlim_cur;
  1755. if (unlikely(*pos < 0))
  1756. return -EINVAL;
  1757. if (!isblk) {
  1758. /* FIXME: this is for backwards compatibility with 2.4 */
  1759. if (file->f_flags & O_APPEND)
  1760. *pos = i_size_read(inode);
  1761. if (limit != RLIM_INFINITY) {
  1762. if (*pos >= limit) {
  1763. send_sig(SIGXFSZ, current, 0);
  1764. return -EFBIG;
  1765. }
  1766. if (*count > limit - (typeof(limit))*pos) {
  1767. *count = limit - (typeof(limit))*pos;
  1768. }
  1769. }
  1770. }
  1771. /*
  1772. * LFS rule
  1773. */
  1774. if (unlikely(*pos + *count > MAX_NON_LFS &&
  1775. !(file->f_flags & O_LARGEFILE))) {
  1776. if (*pos >= MAX_NON_LFS) {
  1777. return -EFBIG;
  1778. }
  1779. if (*count > MAX_NON_LFS - (unsigned long)*pos) {
  1780. *count = MAX_NON_LFS - (unsigned long)*pos;
  1781. }
  1782. }
  1783. /*
  1784. * Are we about to exceed the fs block limit ?
  1785. *
  1786. * If we have written data it becomes a short write. If we have
  1787. * exceeded without writing data we send a signal and return EFBIG.
  1788. * Linus frestrict idea will clean these up nicely..
  1789. */
  1790. if (likely(!isblk)) {
  1791. if (unlikely(*pos >= inode->i_sb->s_maxbytes)) {
  1792. if (*count || *pos > inode->i_sb->s_maxbytes) {
  1793. return -EFBIG;
  1794. }
  1795. /* zero-length writes at ->s_maxbytes are OK */
  1796. }
  1797. if (unlikely(*pos + *count > inode->i_sb->s_maxbytes))
  1798. *count = inode->i_sb->s_maxbytes - *pos;
  1799. } else {
  1800. #ifdef CONFIG_BLOCK
  1801. loff_t isize;
  1802. if (bdev_read_only(I_BDEV(inode)))
  1803. return -EPERM;
  1804. isize = i_size_read(inode);
  1805. if (*pos >= isize) {
  1806. if (*count || *pos > isize)
  1807. return -ENOSPC;
  1808. }
  1809. if (*pos + *count > isize)
  1810. *count = isize - *pos;
  1811. #else
  1812. return -EPERM;
  1813. #endif
  1814. }
  1815. return 0;
  1816. }
  1817. EXPORT_SYMBOL(generic_write_checks);
  1818. int pagecache_write_begin(struct file *file, struct address_space *mapping,
  1819. loff_t pos, unsigned len, unsigned flags,
  1820. struct page **pagep, void **fsdata)
  1821. {
  1822. const struct address_space_operations *aops = mapping->a_ops;
  1823. return aops->write_begin(file, mapping, pos, len, flags,
  1824. pagep, fsdata);
  1825. }
  1826. EXPORT_SYMBOL(pagecache_write_begin);
  1827. int pagecache_write_end(struct file *file, struct address_space *mapping,
  1828. loff_t pos, unsigned len, unsigned copied,
  1829. struct page *page, void *fsdata)
  1830. {
  1831. const struct address_space_operations *aops = mapping->a_ops;
  1832. mark_page_accessed(page);
  1833. return aops->write_end(file, mapping, pos, len, copied, page, fsdata);
  1834. }
  1835. EXPORT_SYMBOL(pagecache_write_end);
  1836. ssize_t
  1837. generic_file_direct_write(struct kiocb *iocb, const struct iovec *iov,
  1838. unsigned long *nr_segs, loff_t pos, loff_t *ppos,
  1839. size_t count, size_t ocount)
  1840. {
  1841. struct file *file = iocb->ki_filp;
  1842. struct address_space *mapping = file->f_mapping;
  1843. struct inode *inode = mapping->host;
  1844. ssize_t written;
  1845. size_t write_len;
  1846. pgoff_t end;
  1847. if (count != ocount)
  1848. *nr_segs = iov_shorten((struct iovec *)iov, *nr_segs, count);
  1849. /*
  1850. * Unmap all mmappings of the file up-front.
  1851. *
  1852. * This will cause any pte dirty bits to be propagated into the
  1853. * pageframes for the subsequent filemap_write_and_wait().
  1854. */
  1855. write_len = iov_length(iov, *nr_segs);
  1856. end = (pos + write_len - 1) >> PAGE_CACHE_SHIFT;
  1857. if (mapping_mapped(mapping))
  1858. unmap_mapping_range(mapping, pos, write_len, 0);
  1859. written = filemap_write_and_wait(mapping);
  1860. if (written)
  1861. goto out;
  1862. /*
  1863. * After a write we want buffered reads to be sure to go to disk to get
  1864. * the new data. We invalidate clean cached page from the region we're
  1865. * about to write. We do this *before* the write so that we can return
  1866. * without clobbering -EIOCBQUEUED from ->direct_IO().
  1867. */
  1868. if (mapping->nrpages) {
  1869. written = invalidate_inode_pages2_range(mapping,
  1870. pos >> PAGE_CACHE_SHIFT, end);
  1871. /*
  1872. * If a page can not be invalidated, return 0 to fall back
  1873. * to buffered write.
  1874. */
  1875. if (written) {
  1876. if (written == -EBUSY)
  1877. return 0;
  1878. goto out;
  1879. }
  1880. }
  1881. written = mapping->a_ops->direct_IO(WRITE, iocb, iov, pos, *nr_segs);
  1882. /*
  1883. * Finally, try again to invalidate clean pages which might have been
  1884. * cached by non-direct readahead, or faulted in by get_user_pages()
  1885. * if the source of the write was an mmap'ed region of the file
  1886. * we're writing. Either one is a pretty crazy thing to do,
  1887. * so we don't support it 100%. If this invalidation
  1888. * fails, tough, the write still worked...
  1889. */
  1890. if (mapping->nrpages) {
  1891. invalidate_inode_pages2_range(mapping,
  1892. pos >> PAGE_CACHE_SHIFT, end);
  1893. }
  1894. if (written > 0) {
  1895. loff_t end = pos + written;
  1896. if (end > i_size_read(inode) && !S_ISBLK(inode->i_mode)) {
  1897. i_size_write(inode, end);
  1898. mark_inode_dirty(inode);
  1899. }
  1900. *ppos = end;
  1901. }
  1902. /*
  1903. * Sync the fs metadata but not the minor inode changes and
  1904. * of course not the data as we did direct DMA for the IO.
  1905. * i_mutex is held, which protects generic_osync_inode() from
  1906. * livelocking. AIO O_DIRECT ops attempt to sync metadata here.
  1907. */
  1908. out:
  1909. if ((written >= 0 || written == -EIOCBQUEUED) &&
  1910. ((file->f_flags & O_SYNC) || IS_SYNC(inode))) {
  1911. int err = generic_osync_inode(inode, mapping, OSYNC_METADATA);
  1912. if (err < 0)
  1913. written = err;
  1914. }
  1915. return written;
  1916. }
  1917. EXPORT_SYMBOL(generic_file_direct_write);
  1918. /*
  1919. * Find or create a page at the given pagecache position. Return the locked
  1920. * page. This function is specifically for buffered writes.
  1921. */
  1922. struct page *__grab_cache_page(struct address_space *mapping, pgoff_t index)
  1923. {
  1924. int status;
  1925. struct page *page;
  1926. repeat:
  1927. page = find_lock_page(mapping, index);
  1928. if (likely(page))
  1929. return page;
  1930. page = page_cache_alloc(mapping);
  1931. if (!page)
  1932. return NULL;
  1933. status = add_to_page_cache_lru(page, mapping, index, GFP_KERNEL);
  1934. if (unlikely(status)) {
  1935. page_cache_release(page);
  1936. if (status == -EEXIST)
  1937. goto repeat;
  1938. return NULL;
  1939. }
  1940. return page;
  1941. }
  1942. EXPORT_SYMBOL(__grab_cache_page);
  1943. static ssize_t generic_perform_write(struct file *file,
  1944. struct iov_iter *i, loff_t pos)
  1945. {
  1946. struct address_space *mapping = file->f_mapping;
  1947. const struct address_space_operations *a_ops = mapping->a_ops;
  1948. long status = 0;
  1949. ssize_t written = 0;
  1950. unsigned int flags = 0;
  1951. /*
  1952. * Copies from kernel address space cannot fail (NFSD is a big user).
  1953. */
  1954. if (segment_eq(get_fs(), KERNEL_DS))
  1955. flags |= AOP_FLAG_UNINTERRUPTIBLE;
  1956. do {
  1957. struct page *page;
  1958. pgoff_t index; /* Pagecache index for current page */
  1959. unsigned long offset; /* Offset into pagecache page */
  1960. unsigned long bytes; /* Bytes to write to page */
  1961. size_t copied; /* Bytes copied from user */
  1962. void *fsdata;
  1963. offset = (pos & (PAGE_CACHE_SIZE - 1));
  1964. index = pos >> PAGE_CACHE_SHIFT;
  1965. bytes = min_t(unsigned long, PAGE_CACHE_SIZE - offset,
  1966. iov_iter_count(i));
  1967. again:
  1968. /*
  1969. * Bring in the user page that we will copy from _first_.
  1970. * Otherwise there's a nasty deadlock on copying from the
  1971. * same page as we're writing to, without it being marked
  1972. * up-to-date.
  1973. *
  1974. * Not only is this an optimisation, but it is also required
  1975. * to check that the address is actually valid, when atomic
  1976. * usercopies are used, below.
  1977. */
  1978. if (unlikely(iov_iter_fault_in_readable(i, bytes))) {
  1979. status = -EFAULT;
  1980. break;
  1981. }
  1982. status = a_ops->write_begin(file, mapping, pos, bytes, flags,
  1983. &page, &fsdata);
  1984. if (unlikely(status))
  1985. break;
  1986. pagefault_disable();
  1987. copied = iov_iter_copy_from_user_atomic(page, i, offset, bytes);
  1988. pagefault_enable();
  1989. flush_dcache_page(page);
  1990. status = a_ops->write_end(file, mapping, pos, bytes, copied,
  1991. page, fsdata);
  1992. if (unlikely(status < 0))
  1993. break;
  1994. copied = status;
  1995. cond_resched();
  1996. iov_iter_advance(i, copied);
  1997. if (unlikely(copied == 0)) {
  1998. /*
  1999. * If we were unable to copy any data at all, we must
  2000. * fall back to a single segment length write.
  2001. *
  2002. * If we didn't fallback here, we could livelock
  2003. * because not all segments in the iov can be copied at
  2004. * once without a pagefault.
  2005. */
  2006. bytes = min_t(unsigned long, PAGE_CACHE_SIZE - offset,
  2007. iov_iter_single_seg_count(i));
  2008. goto again;
  2009. }
  2010. pos += copied;
  2011. written += copied;
  2012. balance_dirty_pages_ratelimited(mapping);
  2013. } while (iov_iter_count(i));
  2014. return written ? written : status;
  2015. }
  2016. ssize_t
  2017. generic_file_buffered_write(struct kiocb *iocb, const struct iovec *iov,
  2018. unsigned long nr_segs, loff_t pos, loff_t *ppos,
  2019. size_t count, ssize_t written)
  2020. {
  2021. struct file *file = iocb->ki_filp;
  2022. struct address_space *mapping = file->f_mapping;
  2023. const struct address_space_operations *a_ops = mapping->a_ops;
  2024. struct inode *inode = mapping->host;
  2025. ssize_t status;
  2026. struct iov_iter i;
  2027. iov_iter_init(&i, iov, nr_segs, count, written);
  2028. status = generic_perform_write(file, &i, pos);
  2029. if (likely(status >= 0)) {
  2030. written += status;
  2031. *ppos = pos + status;
  2032. /*
  2033. * For now, when the user asks for O_SYNC, we'll actually give
  2034. * O_DSYNC
  2035. */
  2036. if (unlikely((file->f_flags & O_SYNC) || IS_SYNC(inode))) {
  2037. if (!a_ops->writepage || !is_sync_kiocb(iocb))
  2038. status = generic_osync_inode(inode, mapping,
  2039. OSYNC_METADATA|OSYNC_DATA);
  2040. }
  2041. }
  2042. /*
  2043. * If we get here for O_DIRECT writes then we must have fallen through
  2044. * to buffered writes (block instantiation inside i_size). So we sync
  2045. * the file data here, to try to honour O_DIRECT expectations.
  2046. */
  2047. if (unlikely(file->f_flags & O_DIRECT) && written)
  2048. status = filemap_write_and_wait(mapping);
  2049. return written ? written : status;
  2050. }
  2051. EXPORT_SYMBOL(generic_file_buffered_write);
  2052. static ssize_t
  2053. __generic_file_aio_write_nolock(struct kiocb *iocb, const struct iovec *iov,
  2054. unsigned long nr_segs, loff_t *ppos)
  2055. {
  2056. struct file *file = iocb->ki_filp;
  2057. struct address_space * mapping = file->f_mapping;
  2058. size_t ocount; /* original count */
  2059. size_t count; /* after file limit checks */
  2060. struct inode *inode = mapping->host;
  2061. loff_t pos;
  2062. ssize_t written;
  2063. ssize_t err;
  2064. ocount = 0;
  2065. err = generic_segment_checks(iov, &nr_segs, &ocount, VERIFY_READ);
  2066. if (err)
  2067. return err;
  2068. count = ocount;
  2069. pos = *ppos;
  2070. vfs_check_frozen(inode->i_sb, SB_FREEZE_WRITE);
  2071. /* We can write back this queue in page reclaim */
  2072. current->backing_dev_info = mapping->backing_dev_info;
  2073. written = 0;
  2074. err = generic_write_checks(file, &pos, &count, S_ISBLK(inode->i_mode));
  2075. if (err)
  2076. goto out;
  2077. if (count == 0)
  2078. goto out;
  2079. err = file_remove_suid(file);
  2080. if (err)
  2081. goto out;
  2082. file_update_time(file);
  2083. /* coalesce the iovecs and go direct-to-BIO for O_DIRECT */
  2084. if (unlikely(file->f_flags & O_DIRECT)) {
  2085. loff_t endbyte;
  2086. ssize_t written_buffered;
  2087. written = generic_file_direct_write(iocb, iov, &nr_segs, pos,
  2088. ppos, count, ocount);
  2089. if (written < 0 || written == count)
  2090. goto out;
  2091. /*
  2092. * direct-io write to a hole: fall through to buffered I/O
  2093. * for completing the rest of the request.
  2094. */
  2095. pos += written;
  2096. count -= written;
  2097. written_buffered = generic_file_buffered_write(iocb, iov,
  2098. nr_segs, pos, ppos, count,
  2099. written);
  2100. /*
  2101. * If generic_file_buffered_write() retuned a synchronous error
  2102. * then we want to return the number of bytes which were
  2103. * direct-written, or the error code if that was zero. Note
  2104. * that this differs from normal direct-io semantics, which
  2105. * will return -EFOO even if some bytes were written.
  2106. */
  2107. if (written_buffered < 0) {
  2108. err = written_buffered;
  2109. goto out;
  2110. }
  2111. /*
  2112. * We need to ensure that the page cache pages are written to
  2113. * disk and invalidated to preserve the expected O_DIRECT
  2114. * semantics.
  2115. */
  2116. endbyte = pos + written_buffered - written - 1;
  2117. err = do_sync_mapping_range(file->f_mapping, pos, endbyte,
  2118. SYNC_FILE_RANGE_WAIT_BEFORE|
  2119. SYNC_FILE_RANGE_WRITE|
  2120. SYNC_FILE_RANGE_WAIT_AFTER);
  2121. if (err == 0) {
  2122. written = written_buffered;
  2123. invalidate_mapping_pages(mapping,
  2124. pos >> PAGE_CACHE_SHIFT,
  2125. endbyte >> PAGE_CACHE_SHIFT);
  2126. } else {
  2127. /*
  2128. * We don't know how much we wrote, so just return
  2129. * the number of bytes which were direct-written
  2130. */
  2131. }
  2132. } else {
  2133. written = generic_file_buffered_write(iocb, iov, nr_segs,
  2134. pos, ppos, count, written);
  2135. }
  2136. out:
  2137. current->backing_dev_info = NULL;
  2138. return written ? written : err;
  2139. }
  2140. ssize_t generic_file_aio_write_nolock(struct kiocb *iocb,
  2141. const struct iovec *iov, unsigned long nr_segs, loff_t pos)
  2142. {
  2143. struct file *file = iocb->ki_filp;
  2144. struct address_space *mapping = file->f_mapping;
  2145. struct inode *inode = mapping->host;
  2146. ssize_t ret;
  2147. BUG_ON(iocb->ki_pos != pos);
  2148. ret = __generic_file_aio_write_nolock(iocb, iov, nr_segs,
  2149. &iocb->ki_pos);
  2150. if (ret > 0 && ((file->f_flags & O_SYNC) || IS_SYNC(inode))) {
  2151. ssize_t err;
  2152. err = sync_page_range_nolock(inode, mapping, pos, ret);
  2153. if (err < 0)
  2154. ret = err;
  2155. }
  2156. return ret;
  2157. }
  2158. EXPORT_SYMBOL(generic_file_aio_write_nolock);
  2159. ssize_t generic_file_aio_write(struct kiocb *iocb, const struct iovec *iov,
  2160. unsigned long nr_segs, loff_t pos)
  2161. {
  2162. struct file *file = iocb->ki_filp;
  2163. struct address_space *mapping = file->f_mapping;
  2164. struct inode *inode = mapping->host;
  2165. ssize_t ret;
  2166. BUG_ON(iocb->ki_pos != pos);
  2167. mutex_lock(&inode->i_mutex);
  2168. ret = __generic_file_aio_write_nolock(iocb, iov, nr_segs,
  2169. &iocb->ki_pos);
  2170. mutex_unlock(&inode->i_mutex);
  2171. if (ret > 0 && ((file->f_flags & O_SYNC) || IS_SYNC(inode))) {
  2172. ssize_t err;
  2173. err = sync_page_range(inode, mapping, pos, ret);
  2174. if (err < 0)
  2175. ret = err;
  2176. }
  2177. return ret;
  2178. }
  2179. EXPORT_SYMBOL(generic_file_aio_write);
  2180. /**
  2181. * try_to_release_page() - release old fs-specific metadata on a page
  2182. *
  2183. * @page: the page which the kernel is trying to free
  2184. * @gfp_mask: memory allocation flags (and I/O mode)
  2185. *
  2186. * The address_space is to try to release any data against the page
  2187. * (presumably at page->private). If the release was successful, return `1'.
  2188. * Otherwise return zero.
  2189. *
  2190. * The @gfp_mask argument specifies whether I/O may be performed to release
  2191. * this page (__GFP_IO), and whether the call may block (__GFP_WAIT & __GFP_FS).
  2192. *
  2193. */
  2194. int try_to_release_page(struct page *page, gfp_t gfp_mask)
  2195. {
  2196. struct address_space * const mapping = page->mapping;
  2197. BUG_ON(!PageLocked(page));
  2198. if (PageWriteback(page))
  2199. return 0;
  2200. if (mapping && mapping->a_ops->releasepage)
  2201. return mapping->a_ops->releasepage(page, gfp_mask);
  2202. return try_to_free_buffers(page);
  2203. }
  2204. EXPORT_SYMBOL(try_to_release_page);