filemap.c 68 KB

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