aops.c 50 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989
  1. /* -*- mode: c; c-basic-offset: 8; -*-
  2. * vim: noexpandtab sw=8 ts=8 sts=0:
  3. *
  4. * Copyright (C) 2002, 2004 Oracle. All rights reserved.
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 2 of the License, or (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public
  17. * License along with this program; if not, write to the
  18. * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  19. * Boston, MA 021110-1307, USA.
  20. */
  21. #include <linux/fs.h>
  22. #include <linux/slab.h>
  23. #include <linux/highmem.h>
  24. #include <linux/pagemap.h>
  25. #include <asm/byteorder.h>
  26. #include <linux/swap.h>
  27. #include <linux/pipe_fs_i.h>
  28. #include <linux/mpage.h>
  29. #include <linux/quotaops.h>
  30. #define MLOG_MASK_PREFIX ML_FILE_IO
  31. #include <cluster/masklog.h>
  32. #include "ocfs2.h"
  33. #include "alloc.h"
  34. #include "aops.h"
  35. #include "dlmglue.h"
  36. #include "extent_map.h"
  37. #include "file.h"
  38. #include "inode.h"
  39. #include "journal.h"
  40. #include "suballoc.h"
  41. #include "super.h"
  42. #include "symlink.h"
  43. #include "refcounttree.h"
  44. #include "buffer_head_io.h"
  45. static int ocfs2_symlink_get_block(struct inode *inode, sector_t iblock,
  46. struct buffer_head *bh_result, int create)
  47. {
  48. int err = -EIO;
  49. int status;
  50. struct ocfs2_dinode *fe = NULL;
  51. struct buffer_head *bh = NULL;
  52. struct buffer_head *buffer_cache_bh = NULL;
  53. struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
  54. void *kaddr;
  55. mlog_entry("(0x%p, %llu, 0x%p, %d)\n", inode,
  56. (unsigned long long)iblock, bh_result, create);
  57. BUG_ON(ocfs2_inode_is_fast_symlink(inode));
  58. if ((iblock << inode->i_sb->s_blocksize_bits) > PATH_MAX + 1) {
  59. mlog(ML_ERROR, "block offset > PATH_MAX: %llu",
  60. (unsigned long long)iblock);
  61. goto bail;
  62. }
  63. status = ocfs2_read_inode_block(inode, &bh);
  64. if (status < 0) {
  65. mlog_errno(status);
  66. goto bail;
  67. }
  68. fe = (struct ocfs2_dinode *) bh->b_data;
  69. if ((u64)iblock >= ocfs2_clusters_to_blocks(inode->i_sb,
  70. le32_to_cpu(fe->i_clusters))) {
  71. mlog(ML_ERROR, "block offset is outside the allocated size: "
  72. "%llu\n", (unsigned long long)iblock);
  73. goto bail;
  74. }
  75. /* We don't use the page cache to create symlink data, so if
  76. * need be, copy it over from the buffer cache. */
  77. if (!buffer_uptodate(bh_result) && ocfs2_inode_is_new(inode)) {
  78. u64 blkno = le64_to_cpu(fe->id2.i_list.l_recs[0].e_blkno) +
  79. iblock;
  80. buffer_cache_bh = sb_getblk(osb->sb, blkno);
  81. if (!buffer_cache_bh) {
  82. mlog(ML_ERROR, "couldn't getblock for symlink!\n");
  83. goto bail;
  84. }
  85. /* we haven't locked out transactions, so a commit
  86. * could've happened. Since we've got a reference on
  87. * the bh, even if it commits while we're doing the
  88. * copy, the data is still good. */
  89. if (buffer_jbd(buffer_cache_bh)
  90. && ocfs2_inode_is_new(inode)) {
  91. kaddr = kmap_atomic(bh_result->b_page, KM_USER0);
  92. if (!kaddr) {
  93. mlog(ML_ERROR, "couldn't kmap!\n");
  94. goto bail;
  95. }
  96. memcpy(kaddr + (bh_result->b_size * iblock),
  97. buffer_cache_bh->b_data,
  98. bh_result->b_size);
  99. kunmap_atomic(kaddr, KM_USER0);
  100. set_buffer_uptodate(bh_result);
  101. }
  102. brelse(buffer_cache_bh);
  103. }
  104. map_bh(bh_result, inode->i_sb,
  105. le64_to_cpu(fe->id2.i_list.l_recs[0].e_blkno) + iblock);
  106. err = 0;
  107. bail:
  108. brelse(bh);
  109. mlog_exit(err);
  110. return err;
  111. }
  112. int ocfs2_get_block(struct inode *inode, sector_t iblock,
  113. struct buffer_head *bh_result, int create)
  114. {
  115. int err = 0;
  116. unsigned int ext_flags;
  117. u64 max_blocks = bh_result->b_size >> inode->i_blkbits;
  118. u64 p_blkno, count, past_eof;
  119. struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
  120. mlog_entry("(0x%p, %llu, 0x%p, %d)\n", inode,
  121. (unsigned long long)iblock, bh_result, create);
  122. if (OCFS2_I(inode)->ip_flags & OCFS2_INODE_SYSTEM_FILE)
  123. mlog(ML_NOTICE, "get_block on system inode 0x%p (%lu)\n",
  124. inode, inode->i_ino);
  125. if (S_ISLNK(inode->i_mode)) {
  126. /* this always does I/O for some reason. */
  127. err = ocfs2_symlink_get_block(inode, iblock, bh_result, create);
  128. goto bail;
  129. }
  130. err = ocfs2_extent_map_get_blocks(inode, iblock, &p_blkno, &count,
  131. &ext_flags);
  132. if (err) {
  133. mlog(ML_ERROR, "Error %d from get_blocks(0x%p, %llu, 1, "
  134. "%llu, NULL)\n", err, inode, (unsigned long long)iblock,
  135. (unsigned long long)p_blkno);
  136. goto bail;
  137. }
  138. if (max_blocks < count)
  139. count = max_blocks;
  140. /*
  141. * ocfs2 never allocates in this function - the only time we
  142. * need to use BH_New is when we're extending i_size on a file
  143. * system which doesn't support holes, in which case BH_New
  144. * allows block_prepare_write() to zero.
  145. *
  146. * If we see this on a sparse file system, then a truncate has
  147. * raced us and removed the cluster. In this case, we clear
  148. * the buffers dirty and uptodate bits and let the buffer code
  149. * ignore it as a hole.
  150. */
  151. if (create && p_blkno == 0 && ocfs2_sparse_alloc(osb)) {
  152. clear_buffer_dirty(bh_result);
  153. clear_buffer_uptodate(bh_result);
  154. goto bail;
  155. }
  156. /* Treat the unwritten extent as a hole for zeroing purposes. */
  157. if (p_blkno && !(ext_flags & OCFS2_EXT_UNWRITTEN))
  158. map_bh(bh_result, inode->i_sb, p_blkno);
  159. bh_result->b_size = count << inode->i_blkbits;
  160. if (!ocfs2_sparse_alloc(osb)) {
  161. if (p_blkno == 0) {
  162. err = -EIO;
  163. mlog(ML_ERROR,
  164. "iblock = %llu p_blkno = %llu blkno=(%llu)\n",
  165. (unsigned long long)iblock,
  166. (unsigned long long)p_blkno,
  167. (unsigned long long)OCFS2_I(inode)->ip_blkno);
  168. mlog(ML_ERROR, "Size %llu, clusters %u\n", (unsigned long long)i_size_read(inode), OCFS2_I(inode)->ip_clusters);
  169. dump_stack();
  170. goto bail;
  171. }
  172. }
  173. past_eof = ocfs2_blocks_for_bytes(inode->i_sb, i_size_read(inode));
  174. mlog(0, "Inode %lu, past_eof = %llu\n", inode->i_ino,
  175. (unsigned long long)past_eof);
  176. if (create && (iblock >= past_eof))
  177. set_buffer_new(bh_result);
  178. bail:
  179. if (err < 0)
  180. err = -EIO;
  181. mlog_exit(err);
  182. return err;
  183. }
  184. int ocfs2_read_inline_data(struct inode *inode, struct page *page,
  185. struct buffer_head *di_bh)
  186. {
  187. void *kaddr;
  188. loff_t size;
  189. struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data;
  190. if (!(le16_to_cpu(di->i_dyn_features) & OCFS2_INLINE_DATA_FL)) {
  191. ocfs2_error(inode->i_sb, "Inode %llu lost inline data flag",
  192. (unsigned long long)OCFS2_I(inode)->ip_blkno);
  193. return -EROFS;
  194. }
  195. size = i_size_read(inode);
  196. if (size > PAGE_CACHE_SIZE ||
  197. size > ocfs2_max_inline_data_with_xattr(inode->i_sb, di)) {
  198. ocfs2_error(inode->i_sb,
  199. "Inode %llu has with inline data has bad size: %Lu",
  200. (unsigned long long)OCFS2_I(inode)->ip_blkno,
  201. (unsigned long long)size);
  202. return -EROFS;
  203. }
  204. kaddr = kmap_atomic(page, KM_USER0);
  205. if (size)
  206. memcpy(kaddr, di->id2.i_data.id_data, size);
  207. /* Clear the remaining part of the page */
  208. memset(kaddr + size, 0, PAGE_CACHE_SIZE - size);
  209. flush_dcache_page(page);
  210. kunmap_atomic(kaddr, KM_USER0);
  211. SetPageUptodate(page);
  212. return 0;
  213. }
  214. static int ocfs2_readpage_inline(struct inode *inode, struct page *page)
  215. {
  216. int ret;
  217. struct buffer_head *di_bh = NULL;
  218. BUG_ON(!PageLocked(page));
  219. BUG_ON(!(OCFS2_I(inode)->ip_dyn_features & OCFS2_INLINE_DATA_FL));
  220. ret = ocfs2_read_inode_block(inode, &di_bh);
  221. if (ret) {
  222. mlog_errno(ret);
  223. goto out;
  224. }
  225. ret = ocfs2_read_inline_data(inode, page, di_bh);
  226. out:
  227. unlock_page(page);
  228. brelse(di_bh);
  229. return ret;
  230. }
  231. static int ocfs2_readpage(struct file *file, struct page *page)
  232. {
  233. struct inode *inode = page->mapping->host;
  234. struct ocfs2_inode_info *oi = OCFS2_I(inode);
  235. loff_t start = (loff_t)page->index << PAGE_CACHE_SHIFT;
  236. int ret, unlock = 1;
  237. mlog_entry("(0x%p, %lu)\n", file, (page ? page->index : 0));
  238. ret = ocfs2_inode_lock_with_page(inode, NULL, 0, page);
  239. if (ret != 0) {
  240. if (ret == AOP_TRUNCATED_PAGE)
  241. unlock = 0;
  242. mlog_errno(ret);
  243. goto out;
  244. }
  245. if (down_read_trylock(&oi->ip_alloc_sem) == 0) {
  246. ret = AOP_TRUNCATED_PAGE;
  247. goto out_inode_unlock;
  248. }
  249. /*
  250. * i_size might have just been updated as we grabed the meta lock. We
  251. * might now be discovering a truncate that hit on another node.
  252. * block_read_full_page->get_block freaks out if it is asked to read
  253. * beyond the end of a file, so we check here. Callers
  254. * (generic_file_read, vm_ops->fault) are clever enough to check i_size
  255. * and notice that the page they just read isn't needed.
  256. *
  257. * XXX sys_readahead() seems to get that wrong?
  258. */
  259. if (start >= i_size_read(inode)) {
  260. zero_user(page, 0, PAGE_SIZE);
  261. SetPageUptodate(page);
  262. ret = 0;
  263. goto out_alloc;
  264. }
  265. if (oi->ip_dyn_features & OCFS2_INLINE_DATA_FL)
  266. ret = ocfs2_readpage_inline(inode, page);
  267. else
  268. ret = block_read_full_page(page, ocfs2_get_block);
  269. unlock = 0;
  270. out_alloc:
  271. up_read(&OCFS2_I(inode)->ip_alloc_sem);
  272. out_inode_unlock:
  273. ocfs2_inode_unlock(inode, 0);
  274. out:
  275. if (unlock)
  276. unlock_page(page);
  277. mlog_exit(ret);
  278. return ret;
  279. }
  280. /*
  281. * This is used only for read-ahead. Failures or difficult to handle
  282. * situations are safe to ignore.
  283. *
  284. * Right now, we don't bother with BH_Boundary - in-inode extent lists
  285. * are quite large (243 extents on 4k blocks), so most inodes don't
  286. * grow out to a tree. If need be, detecting boundary extents could
  287. * trivially be added in a future version of ocfs2_get_block().
  288. */
  289. static int ocfs2_readpages(struct file *filp, struct address_space *mapping,
  290. struct list_head *pages, unsigned nr_pages)
  291. {
  292. int ret, err = -EIO;
  293. struct inode *inode = mapping->host;
  294. struct ocfs2_inode_info *oi = OCFS2_I(inode);
  295. loff_t start;
  296. struct page *last;
  297. /*
  298. * Use the nonblocking flag for the dlm code to avoid page
  299. * lock inversion, but don't bother with retrying.
  300. */
  301. ret = ocfs2_inode_lock_full(inode, NULL, 0, OCFS2_LOCK_NONBLOCK);
  302. if (ret)
  303. return err;
  304. if (down_read_trylock(&oi->ip_alloc_sem) == 0) {
  305. ocfs2_inode_unlock(inode, 0);
  306. return err;
  307. }
  308. /*
  309. * Don't bother with inline-data. There isn't anything
  310. * to read-ahead in that case anyway...
  311. */
  312. if (oi->ip_dyn_features & OCFS2_INLINE_DATA_FL)
  313. goto out_unlock;
  314. /*
  315. * Check whether a remote node truncated this file - we just
  316. * drop out in that case as it's not worth handling here.
  317. */
  318. last = list_entry(pages->prev, struct page, lru);
  319. start = (loff_t)last->index << PAGE_CACHE_SHIFT;
  320. if (start >= i_size_read(inode))
  321. goto out_unlock;
  322. err = mpage_readpages(mapping, pages, nr_pages, ocfs2_get_block);
  323. out_unlock:
  324. up_read(&oi->ip_alloc_sem);
  325. ocfs2_inode_unlock(inode, 0);
  326. return err;
  327. }
  328. /* Note: Because we don't support holes, our allocation has
  329. * already happened (allocation writes zeros to the file data)
  330. * so we don't have to worry about ordered writes in
  331. * ocfs2_writepage.
  332. *
  333. * ->writepage is called during the process of invalidating the page cache
  334. * during blocked lock processing. It can't block on any cluster locks
  335. * to during block mapping. It's relying on the fact that the block
  336. * mapping can't have disappeared under the dirty pages that it is
  337. * being asked to write back.
  338. */
  339. static int ocfs2_writepage(struct page *page, struct writeback_control *wbc)
  340. {
  341. int ret;
  342. mlog_entry("(0x%p)\n", page);
  343. ret = block_write_full_page(page, ocfs2_get_block, wbc);
  344. mlog_exit(ret);
  345. return ret;
  346. }
  347. /*
  348. * This is called from ocfs2_write_zero_page() which has handled it's
  349. * own cluster locking and has ensured allocation exists for those
  350. * blocks to be written.
  351. */
  352. int ocfs2_prepare_write_nolock(struct inode *inode, struct page *page,
  353. unsigned from, unsigned to)
  354. {
  355. int ret;
  356. ret = block_prepare_write(page, from, to, ocfs2_get_block);
  357. return ret;
  358. }
  359. /* Taken from ext3. We don't necessarily need the full blown
  360. * functionality yet, but IMHO it's better to cut and paste the whole
  361. * thing so we can avoid introducing our own bugs (and easily pick up
  362. * their fixes when they happen) --Mark */
  363. int walk_page_buffers( handle_t *handle,
  364. struct buffer_head *head,
  365. unsigned from,
  366. unsigned to,
  367. int *partial,
  368. int (*fn)( handle_t *handle,
  369. struct buffer_head *bh))
  370. {
  371. struct buffer_head *bh;
  372. unsigned block_start, block_end;
  373. unsigned blocksize = head->b_size;
  374. int err, ret = 0;
  375. struct buffer_head *next;
  376. for ( bh = head, block_start = 0;
  377. ret == 0 && (bh != head || !block_start);
  378. block_start = block_end, bh = next)
  379. {
  380. next = bh->b_this_page;
  381. block_end = block_start + blocksize;
  382. if (block_end <= from || block_start >= to) {
  383. if (partial && !buffer_uptodate(bh))
  384. *partial = 1;
  385. continue;
  386. }
  387. err = (*fn)(handle, bh);
  388. if (!ret)
  389. ret = err;
  390. }
  391. return ret;
  392. }
  393. static sector_t ocfs2_bmap(struct address_space *mapping, sector_t block)
  394. {
  395. sector_t status;
  396. u64 p_blkno = 0;
  397. int err = 0;
  398. struct inode *inode = mapping->host;
  399. mlog_entry("(block = %llu)\n", (unsigned long long)block);
  400. /* We don't need to lock journal system files, since they aren't
  401. * accessed concurrently from multiple nodes.
  402. */
  403. if (!INODE_JOURNAL(inode)) {
  404. err = ocfs2_inode_lock(inode, NULL, 0);
  405. if (err) {
  406. if (err != -ENOENT)
  407. mlog_errno(err);
  408. goto bail;
  409. }
  410. down_read(&OCFS2_I(inode)->ip_alloc_sem);
  411. }
  412. if (!(OCFS2_I(inode)->ip_dyn_features & OCFS2_INLINE_DATA_FL))
  413. err = ocfs2_extent_map_get_blocks(inode, block, &p_blkno, NULL,
  414. NULL);
  415. if (!INODE_JOURNAL(inode)) {
  416. up_read(&OCFS2_I(inode)->ip_alloc_sem);
  417. ocfs2_inode_unlock(inode, 0);
  418. }
  419. if (err) {
  420. mlog(ML_ERROR, "get_blocks() failed, block = %llu\n",
  421. (unsigned long long)block);
  422. mlog_errno(err);
  423. goto bail;
  424. }
  425. bail:
  426. status = err ? 0 : p_blkno;
  427. mlog_exit((int)status);
  428. return status;
  429. }
  430. /*
  431. * TODO: Make this into a generic get_blocks function.
  432. *
  433. * From do_direct_io in direct-io.c:
  434. * "So what we do is to permit the ->get_blocks function to populate
  435. * bh.b_size with the size of IO which is permitted at this offset and
  436. * this i_blkbits."
  437. *
  438. * This function is called directly from get_more_blocks in direct-io.c.
  439. *
  440. * called like this: dio->get_blocks(dio->inode, fs_startblk,
  441. * fs_count, map_bh, dio->rw == WRITE);
  442. *
  443. * Note that we never bother to allocate blocks here, and thus ignore the
  444. * create argument.
  445. */
  446. static int ocfs2_direct_IO_get_blocks(struct inode *inode, sector_t iblock,
  447. struct buffer_head *bh_result, int create)
  448. {
  449. int ret;
  450. u64 p_blkno, inode_blocks, contig_blocks;
  451. unsigned int ext_flags;
  452. unsigned char blocksize_bits = inode->i_sb->s_blocksize_bits;
  453. unsigned long max_blocks = bh_result->b_size >> inode->i_blkbits;
  454. /* This function won't even be called if the request isn't all
  455. * nicely aligned and of the right size, so there's no need
  456. * for us to check any of that. */
  457. inode_blocks = ocfs2_blocks_for_bytes(inode->i_sb, i_size_read(inode));
  458. /* This figures out the size of the next contiguous block, and
  459. * our logical offset */
  460. ret = ocfs2_extent_map_get_blocks(inode, iblock, &p_blkno,
  461. &contig_blocks, &ext_flags);
  462. if (ret) {
  463. mlog(ML_ERROR, "get_blocks() failed iblock=%llu\n",
  464. (unsigned long long)iblock);
  465. ret = -EIO;
  466. goto bail;
  467. }
  468. /* We should already CoW the refcounted extent in case of create. */
  469. BUG_ON(create && (ext_flags & OCFS2_EXT_REFCOUNTED));
  470. /*
  471. * get_more_blocks() expects us to describe a hole by clearing
  472. * the mapped bit on bh_result().
  473. *
  474. * Consider an unwritten extent as a hole.
  475. */
  476. if (p_blkno && !(ext_flags & OCFS2_EXT_UNWRITTEN))
  477. map_bh(bh_result, inode->i_sb, p_blkno);
  478. else
  479. clear_buffer_mapped(bh_result);
  480. /* make sure we don't map more than max_blocks blocks here as
  481. that's all the kernel will handle at this point. */
  482. if (max_blocks < contig_blocks)
  483. contig_blocks = max_blocks;
  484. bh_result->b_size = contig_blocks << blocksize_bits;
  485. bail:
  486. return ret;
  487. }
  488. /*
  489. * ocfs2_dio_end_io is called by the dio core when a dio is finished. We're
  490. * particularly interested in the aio/dio case. Like the core uses
  491. * i_alloc_sem, we use the rw_lock DLM lock to protect io on one node from
  492. * truncation on another.
  493. */
  494. static void ocfs2_dio_end_io(struct kiocb *iocb,
  495. loff_t offset,
  496. ssize_t bytes,
  497. void *private)
  498. {
  499. struct inode *inode = iocb->ki_filp->f_path.dentry->d_inode;
  500. int level;
  501. /* this io's submitter should not have unlocked this before we could */
  502. BUG_ON(!ocfs2_iocb_is_rw_locked(iocb));
  503. ocfs2_iocb_clear_rw_locked(iocb);
  504. level = ocfs2_iocb_rw_locked_level(iocb);
  505. if (!level)
  506. up_read(&inode->i_alloc_sem);
  507. ocfs2_rw_unlock(inode, level);
  508. }
  509. /*
  510. * ocfs2_invalidatepage() and ocfs2_releasepage() are shamelessly stolen
  511. * from ext3. PageChecked() bits have been removed as OCFS2 does not
  512. * do journalled data.
  513. */
  514. static void ocfs2_invalidatepage(struct page *page, unsigned long offset)
  515. {
  516. journal_t *journal = OCFS2_SB(page->mapping->host->i_sb)->journal->j_journal;
  517. jbd2_journal_invalidatepage(journal, page, offset);
  518. }
  519. static int ocfs2_releasepage(struct page *page, gfp_t wait)
  520. {
  521. journal_t *journal = OCFS2_SB(page->mapping->host->i_sb)->journal->j_journal;
  522. if (!page_has_buffers(page))
  523. return 0;
  524. return jbd2_journal_try_to_free_buffers(journal, page, wait);
  525. }
  526. static ssize_t ocfs2_direct_IO(int rw,
  527. struct kiocb *iocb,
  528. const struct iovec *iov,
  529. loff_t offset,
  530. unsigned long nr_segs)
  531. {
  532. struct file *file = iocb->ki_filp;
  533. struct inode *inode = file->f_path.dentry->d_inode->i_mapping->host;
  534. int ret;
  535. mlog_entry_void();
  536. /*
  537. * Fallback to buffered I/O if we see an inode without
  538. * extents.
  539. */
  540. if (OCFS2_I(inode)->ip_dyn_features & OCFS2_INLINE_DATA_FL)
  541. return 0;
  542. /* Fallback to buffered I/O if we are appending. */
  543. if (i_size_read(inode) <= offset)
  544. return 0;
  545. ret = blockdev_direct_IO_no_locking(rw, iocb, inode,
  546. inode->i_sb->s_bdev, iov, offset,
  547. nr_segs,
  548. ocfs2_direct_IO_get_blocks,
  549. ocfs2_dio_end_io);
  550. mlog_exit(ret);
  551. return ret;
  552. }
  553. static void ocfs2_figure_cluster_boundaries(struct ocfs2_super *osb,
  554. u32 cpos,
  555. unsigned int *start,
  556. unsigned int *end)
  557. {
  558. unsigned int cluster_start = 0, cluster_end = PAGE_CACHE_SIZE;
  559. if (unlikely(PAGE_CACHE_SHIFT > osb->s_clustersize_bits)) {
  560. unsigned int cpp;
  561. cpp = 1 << (PAGE_CACHE_SHIFT - osb->s_clustersize_bits);
  562. cluster_start = cpos % cpp;
  563. cluster_start = cluster_start << osb->s_clustersize_bits;
  564. cluster_end = cluster_start + osb->s_clustersize;
  565. }
  566. BUG_ON(cluster_start > PAGE_SIZE);
  567. BUG_ON(cluster_end > PAGE_SIZE);
  568. if (start)
  569. *start = cluster_start;
  570. if (end)
  571. *end = cluster_end;
  572. }
  573. /*
  574. * 'from' and 'to' are the region in the page to avoid zeroing.
  575. *
  576. * If pagesize > clustersize, this function will avoid zeroing outside
  577. * of the cluster boundary.
  578. *
  579. * from == to == 0 is code for "zero the entire cluster region"
  580. */
  581. static void ocfs2_clear_page_regions(struct page *page,
  582. struct ocfs2_super *osb, u32 cpos,
  583. unsigned from, unsigned to)
  584. {
  585. void *kaddr;
  586. unsigned int cluster_start, cluster_end;
  587. ocfs2_figure_cluster_boundaries(osb, cpos, &cluster_start, &cluster_end);
  588. kaddr = kmap_atomic(page, KM_USER0);
  589. if (from || to) {
  590. if (from > cluster_start)
  591. memset(kaddr + cluster_start, 0, from - cluster_start);
  592. if (to < cluster_end)
  593. memset(kaddr + to, 0, cluster_end - to);
  594. } else {
  595. memset(kaddr + cluster_start, 0, cluster_end - cluster_start);
  596. }
  597. kunmap_atomic(kaddr, KM_USER0);
  598. }
  599. /*
  600. * Nonsparse file systems fully allocate before we get to the write
  601. * code. This prevents ocfs2_write() from tagging the write as an
  602. * allocating one, which means ocfs2_map_page_blocks() might try to
  603. * read-in the blocks at the tail of our file. Avoid reading them by
  604. * testing i_size against each block offset.
  605. */
  606. static int ocfs2_should_read_blk(struct inode *inode, struct page *page,
  607. unsigned int block_start)
  608. {
  609. u64 offset = page_offset(page) + block_start;
  610. if (ocfs2_sparse_alloc(OCFS2_SB(inode->i_sb)))
  611. return 1;
  612. if (i_size_read(inode) > offset)
  613. return 1;
  614. return 0;
  615. }
  616. /*
  617. * Some of this taken from block_prepare_write(). We already have our
  618. * mapping by now though, and the entire write will be allocating or
  619. * it won't, so not much need to use BH_New.
  620. *
  621. * This will also skip zeroing, which is handled externally.
  622. */
  623. int ocfs2_map_page_blocks(struct page *page, u64 *p_blkno,
  624. struct inode *inode, unsigned int from,
  625. unsigned int to, int new)
  626. {
  627. int ret = 0;
  628. struct buffer_head *head, *bh, *wait[2], **wait_bh = wait;
  629. unsigned int block_end, block_start;
  630. unsigned int bsize = 1 << inode->i_blkbits;
  631. if (!page_has_buffers(page))
  632. create_empty_buffers(page, bsize, 0);
  633. head = page_buffers(page);
  634. for (bh = head, block_start = 0; bh != head || !block_start;
  635. bh = bh->b_this_page, block_start += bsize) {
  636. block_end = block_start + bsize;
  637. clear_buffer_new(bh);
  638. /*
  639. * Ignore blocks outside of our i/o range -
  640. * they may belong to unallocated clusters.
  641. */
  642. if (block_start >= to || block_end <= from) {
  643. if (PageUptodate(page))
  644. set_buffer_uptodate(bh);
  645. continue;
  646. }
  647. /*
  648. * For an allocating write with cluster size >= page
  649. * size, we always write the entire page.
  650. */
  651. if (new)
  652. set_buffer_new(bh);
  653. if (!buffer_mapped(bh)) {
  654. map_bh(bh, inode->i_sb, *p_blkno);
  655. unmap_underlying_metadata(bh->b_bdev, bh->b_blocknr);
  656. }
  657. if (PageUptodate(page)) {
  658. if (!buffer_uptodate(bh))
  659. set_buffer_uptodate(bh);
  660. } else if (!buffer_uptodate(bh) && !buffer_delay(bh) &&
  661. !buffer_new(bh) &&
  662. ocfs2_should_read_blk(inode, page, block_start) &&
  663. (block_start < from || block_end > to)) {
  664. ll_rw_block(READ, 1, &bh);
  665. *wait_bh++=bh;
  666. }
  667. *p_blkno = *p_blkno + 1;
  668. }
  669. /*
  670. * If we issued read requests - let them complete.
  671. */
  672. while(wait_bh > wait) {
  673. wait_on_buffer(*--wait_bh);
  674. if (!buffer_uptodate(*wait_bh))
  675. ret = -EIO;
  676. }
  677. if (ret == 0 || !new)
  678. return ret;
  679. /*
  680. * If we get -EIO above, zero out any newly allocated blocks
  681. * to avoid exposing stale data.
  682. */
  683. bh = head;
  684. block_start = 0;
  685. do {
  686. block_end = block_start + bsize;
  687. if (block_end <= from)
  688. goto next_bh;
  689. if (block_start >= to)
  690. break;
  691. zero_user(page, block_start, bh->b_size);
  692. set_buffer_uptodate(bh);
  693. mark_buffer_dirty(bh);
  694. next_bh:
  695. block_start = block_end;
  696. bh = bh->b_this_page;
  697. } while (bh != head);
  698. return ret;
  699. }
  700. #if (PAGE_CACHE_SIZE >= OCFS2_MAX_CLUSTERSIZE)
  701. #define OCFS2_MAX_CTXT_PAGES 1
  702. #else
  703. #define OCFS2_MAX_CTXT_PAGES (OCFS2_MAX_CLUSTERSIZE / PAGE_CACHE_SIZE)
  704. #endif
  705. #define OCFS2_MAX_CLUSTERS_PER_PAGE (PAGE_CACHE_SIZE / OCFS2_MIN_CLUSTERSIZE)
  706. /*
  707. * Describe the state of a single cluster to be written to.
  708. */
  709. struct ocfs2_write_cluster_desc {
  710. u32 c_cpos;
  711. u32 c_phys;
  712. /*
  713. * Give this a unique field because c_phys eventually gets
  714. * filled.
  715. */
  716. unsigned c_new;
  717. unsigned c_unwritten;
  718. unsigned c_needs_zero;
  719. };
  720. struct ocfs2_write_ctxt {
  721. /* Logical cluster position / len of write */
  722. u32 w_cpos;
  723. u32 w_clen;
  724. /* First cluster allocated in a nonsparse extend */
  725. u32 w_first_new_cpos;
  726. struct ocfs2_write_cluster_desc w_desc[OCFS2_MAX_CLUSTERS_PER_PAGE];
  727. /*
  728. * This is true if page_size > cluster_size.
  729. *
  730. * It triggers a set of special cases during write which might
  731. * have to deal with allocating writes to partial pages.
  732. */
  733. unsigned int w_large_pages;
  734. /*
  735. * Pages involved in this write.
  736. *
  737. * w_target_page is the page being written to by the user.
  738. *
  739. * w_pages is an array of pages which always contains
  740. * w_target_page, and in the case of an allocating write with
  741. * page_size < cluster size, it will contain zero'd and mapped
  742. * pages adjacent to w_target_page which need to be written
  743. * out in so that future reads from that region will get
  744. * zero's.
  745. */
  746. struct page *w_pages[OCFS2_MAX_CTXT_PAGES];
  747. unsigned int w_num_pages;
  748. struct page *w_target_page;
  749. /*
  750. * ocfs2_write_end() uses this to know what the real range to
  751. * write in the target should be.
  752. */
  753. unsigned int w_target_from;
  754. unsigned int w_target_to;
  755. /*
  756. * We could use journal_current_handle() but this is cleaner,
  757. * IMHO -Mark
  758. */
  759. handle_t *w_handle;
  760. struct buffer_head *w_di_bh;
  761. struct ocfs2_cached_dealloc_ctxt w_dealloc;
  762. };
  763. void ocfs2_unlock_and_free_pages(struct page **pages, int num_pages)
  764. {
  765. int i;
  766. for(i = 0; i < num_pages; i++) {
  767. if (pages[i]) {
  768. unlock_page(pages[i]);
  769. mark_page_accessed(pages[i]);
  770. page_cache_release(pages[i]);
  771. }
  772. }
  773. }
  774. static void ocfs2_free_write_ctxt(struct ocfs2_write_ctxt *wc)
  775. {
  776. ocfs2_unlock_and_free_pages(wc->w_pages, wc->w_num_pages);
  777. brelse(wc->w_di_bh);
  778. kfree(wc);
  779. }
  780. static int ocfs2_alloc_write_ctxt(struct ocfs2_write_ctxt **wcp,
  781. struct ocfs2_super *osb, loff_t pos,
  782. unsigned len, struct buffer_head *di_bh)
  783. {
  784. u32 cend;
  785. struct ocfs2_write_ctxt *wc;
  786. wc = kzalloc(sizeof(struct ocfs2_write_ctxt), GFP_NOFS);
  787. if (!wc)
  788. return -ENOMEM;
  789. wc->w_cpos = pos >> osb->s_clustersize_bits;
  790. wc->w_first_new_cpos = UINT_MAX;
  791. cend = (pos + len - 1) >> osb->s_clustersize_bits;
  792. wc->w_clen = cend - wc->w_cpos + 1;
  793. get_bh(di_bh);
  794. wc->w_di_bh = di_bh;
  795. if (unlikely(PAGE_CACHE_SHIFT > osb->s_clustersize_bits))
  796. wc->w_large_pages = 1;
  797. else
  798. wc->w_large_pages = 0;
  799. ocfs2_init_dealloc_ctxt(&wc->w_dealloc);
  800. *wcp = wc;
  801. return 0;
  802. }
  803. /*
  804. * If a page has any new buffers, zero them out here, and mark them uptodate
  805. * and dirty so they'll be written out (in order to prevent uninitialised
  806. * block data from leaking). And clear the new bit.
  807. */
  808. static void ocfs2_zero_new_buffers(struct page *page, unsigned from, unsigned to)
  809. {
  810. unsigned int block_start, block_end;
  811. struct buffer_head *head, *bh;
  812. BUG_ON(!PageLocked(page));
  813. if (!page_has_buffers(page))
  814. return;
  815. bh = head = page_buffers(page);
  816. block_start = 0;
  817. do {
  818. block_end = block_start + bh->b_size;
  819. if (buffer_new(bh)) {
  820. if (block_end > from && block_start < to) {
  821. if (!PageUptodate(page)) {
  822. unsigned start, end;
  823. start = max(from, block_start);
  824. end = min(to, block_end);
  825. zero_user_segment(page, start, end);
  826. set_buffer_uptodate(bh);
  827. }
  828. clear_buffer_new(bh);
  829. mark_buffer_dirty(bh);
  830. }
  831. }
  832. block_start = block_end;
  833. bh = bh->b_this_page;
  834. } while (bh != head);
  835. }
  836. /*
  837. * Only called when we have a failure during allocating write to write
  838. * zero's to the newly allocated region.
  839. */
  840. static void ocfs2_write_failure(struct inode *inode,
  841. struct ocfs2_write_ctxt *wc,
  842. loff_t user_pos, unsigned user_len)
  843. {
  844. int i;
  845. unsigned from = user_pos & (PAGE_CACHE_SIZE - 1),
  846. to = user_pos + user_len;
  847. struct page *tmppage;
  848. ocfs2_zero_new_buffers(wc->w_target_page, from, to);
  849. for(i = 0; i < wc->w_num_pages; i++) {
  850. tmppage = wc->w_pages[i];
  851. if (page_has_buffers(tmppage)) {
  852. if (ocfs2_should_order_data(inode))
  853. ocfs2_jbd2_file_inode(wc->w_handle, inode);
  854. block_commit_write(tmppage, from, to);
  855. }
  856. }
  857. }
  858. static int ocfs2_prepare_page_for_write(struct inode *inode, u64 *p_blkno,
  859. struct ocfs2_write_ctxt *wc,
  860. struct page *page, u32 cpos,
  861. loff_t user_pos, unsigned user_len,
  862. int new)
  863. {
  864. int ret;
  865. unsigned int map_from = 0, map_to = 0;
  866. unsigned int cluster_start, cluster_end;
  867. unsigned int user_data_from = 0, user_data_to = 0;
  868. ocfs2_figure_cluster_boundaries(OCFS2_SB(inode->i_sb), cpos,
  869. &cluster_start, &cluster_end);
  870. if (page == wc->w_target_page) {
  871. map_from = user_pos & (PAGE_CACHE_SIZE - 1);
  872. map_to = map_from + user_len;
  873. if (new)
  874. ret = ocfs2_map_page_blocks(page, p_blkno, inode,
  875. cluster_start, cluster_end,
  876. new);
  877. else
  878. ret = ocfs2_map_page_blocks(page, p_blkno, inode,
  879. map_from, map_to, new);
  880. if (ret) {
  881. mlog_errno(ret);
  882. goto out;
  883. }
  884. user_data_from = map_from;
  885. user_data_to = map_to;
  886. if (new) {
  887. map_from = cluster_start;
  888. map_to = cluster_end;
  889. }
  890. } else {
  891. /*
  892. * If we haven't allocated the new page yet, we
  893. * shouldn't be writing it out without copying user
  894. * data. This is likely a math error from the caller.
  895. */
  896. BUG_ON(!new);
  897. map_from = cluster_start;
  898. map_to = cluster_end;
  899. ret = ocfs2_map_page_blocks(page, p_blkno, inode,
  900. cluster_start, cluster_end, new);
  901. if (ret) {
  902. mlog_errno(ret);
  903. goto out;
  904. }
  905. }
  906. /*
  907. * Parts of newly allocated pages need to be zero'd.
  908. *
  909. * Above, we have also rewritten 'to' and 'from' - as far as
  910. * the rest of the function is concerned, the entire cluster
  911. * range inside of a page needs to be written.
  912. *
  913. * We can skip this if the page is up to date - it's already
  914. * been zero'd from being read in as a hole.
  915. */
  916. if (new && !PageUptodate(page))
  917. ocfs2_clear_page_regions(page, OCFS2_SB(inode->i_sb),
  918. cpos, user_data_from, user_data_to);
  919. flush_dcache_page(page);
  920. out:
  921. return ret;
  922. }
  923. /*
  924. * This function will only grab one clusters worth of pages.
  925. */
  926. static int ocfs2_grab_pages_for_write(struct address_space *mapping,
  927. struct ocfs2_write_ctxt *wc,
  928. u32 cpos, loff_t user_pos, int new,
  929. struct page *mmap_page)
  930. {
  931. int ret = 0, i;
  932. unsigned long start, target_index, index;
  933. struct inode *inode = mapping->host;
  934. target_index = user_pos >> PAGE_CACHE_SHIFT;
  935. /*
  936. * Figure out how many pages we'll be manipulating here. For
  937. * non allocating write, we just change the one
  938. * page. Otherwise, we'll need a whole clusters worth.
  939. */
  940. if (new) {
  941. wc->w_num_pages = ocfs2_pages_per_cluster(inode->i_sb);
  942. start = ocfs2_align_clusters_to_page_index(inode->i_sb, cpos);
  943. } else {
  944. wc->w_num_pages = 1;
  945. start = target_index;
  946. }
  947. for(i = 0; i < wc->w_num_pages; i++) {
  948. index = start + i;
  949. if (index == target_index && mmap_page) {
  950. /*
  951. * ocfs2_pagemkwrite() is a little different
  952. * and wants us to directly use the page
  953. * passed in.
  954. */
  955. lock_page(mmap_page);
  956. if (mmap_page->mapping != mapping) {
  957. unlock_page(mmap_page);
  958. /*
  959. * Sanity check - the locking in
  960. * ocfs2_pagemkwrite() should ensure
  961. * that this code doesn't trigger.
  962. */
  963. ret = -EINVAL;
  964. mlog_errno(ret);
  965. goto out;
  966. }
  967. page_cache_get(mmap_page);
  968. wc->w_pages[i] = mmap_page;
  969. } else {
  970. wc->w_pages[i] = find_or_create_page(mapping, index,
  971. GFP_NOFS);
  972. if (!wc->w_pages[i]) {
  973. ret = -ENOMEM;
  974. mlog_errno(ret);
  975. goto out;
  976. }
  977. }
  978. if (index == target_index)
  979. wc->w_target_page = wc->w_pages[i];
  980. }
  981. out:
  982. return ret;
  983. }
  984. /*
  985. * Prepare a single cluster for write one cluster into the file.
  986. */
  987. static int ocfs2_write_cluster(struct address_space *mapping,
  988. u32 phys, unsigned int unwritten,
  989. unsigned int should_zero,
  990. struct ocfs2_alloc_context *data_ac,
  991. struct ocfs2_alloc_context *meta_ac,
  992. struct ocfs2_write_ctxt *wc, u32 cpos,
  993. loff_t user_pos, unsigned user_len)
  994. {
  995. int ret, i, new;
  996. u64 v_blkno, p_blkno;
  997. struct inode *inode = mapping->host;
  998. struct ocfs2_extent_tree et;
  999. new = phys == 0 ? 1 : 0;
  1000. if (new) {
  1001. u32 tmp_pos;
  1002. /*
  1003. * This is safe to call with the page locks - it won't take
  1004. * any additional semaphores or cluster locks.
  1005. */
  1006. tmp_pos = cpos;
  1007. ret = ocfs2_add_inode_data(OCFS2_SB(inode->i_sb), inode,
  1008. &tmp_pos, 1, 0, wc->w_di_bh,
  1009. wc->w_handle, data_ac,
  1010. meta_ac, NULL);
  1011. /*
  1012. * This shouldn't happen because we must have already
  1013. * calculated the correct meta data allocation required. The
  1014. * internal tree allocation code should know how to increase
  1015. * transaction credits itself.
  1016. *
  1017. * If need be, we could handle -EAGAIN for a
  1018. * RESTART_TRANS here.
  1019. */
  1020. mlog_bug_on_msg(ret == -EAGAIN,
  1021. "Inode %llu: EAGAIN return during allocation.\n",
  1022. (unsigned long long)OCFS2_I(inode)->ip_blkno);
  1023. if (ret < 0) {
  1024. mlog_errno(ret);
  1025. goto out;
  1026. }
  1027. } else if (unwritten) {
  1028. ocfs2_init_dinode_extent_tree(&et, INODE_CACHE(inode),
  1029. wc->w_di_bh);
  1030. ret = ocfs2_mark_extent_written(inode, &et,
  1031. wc->w_handle, cpos, 1, phys,
  1032. meta_ac, &wc->w_dealloc);
  1033. if (ret < 0) {
  1034. mlog_errno(ret);
  1035. goto out;
  1036. }
  1037. }
  1038. if (should_zero)
  1039. v_blkno = ocfs2_clusters_to_blocks(inode->i_sb, cpos);
  1040. else
  1041. v_blkno = user_pos >> inode->i_sb->s_blocksize_bits;
  1042. /*
  1043. * The only reason this should fail is due to an inability to
  1044. * find the extent added.
  1045. */
  1046. ret = ocfs2_extent_map_get_blocks(inode, v_blkno, &p_blkno, NULL,
  1047. NULL);
  1048. if (ret < 0) {
  1049. ocfs2_error(inode->i_sb, "Corrupting extend for inode %llu, "
  1050. "at logical block %llu",
  1051. (unsigned long long)OCFS2_I(inode)->ip_blkno,
  1052. (unsigned long long)v_blkno);
  1053. goto out;
  1054. }
  1055. BUG_ON(p_blkno == 0);
  1056. for(i = 0; i < wc->w_num_pages; i++) {
  1057. int tmpret;
  1058. tmpret = ocfs2_prepare_page_for_write(inode, &p_blkno, wc,
  1059. wc->w_pages[i], cpos,
  1060. user_pos, user_len,
  1061. should_zero);
  1062. if (tmpret) {
  1063. mlog_errno(tmpret);
  1064. if (ret == 0)
  1065. ret = tmpret;
  1066. }
  1067. }
  1068. /*
  1069. * We only have cleanup to do in case of allocating write.
  1070. */
  1071. if (ret && new)
  1072. ocfs2_write_failure(inode, wc, user_pos, user_len);
  1073. out:
  1074. return ret;
  1075. }
  1076. static int ocfs2_write_cluster_by_desc(struct address_space *mapping,
  1077. struct ocfs2_alloc_context *data_ac,
  1078. struct ocfs2_alloc_context *meta_ac,
  1079. struct ocfs2_write_ctxt *wc,
  1080. loff_t pos, unsigned len)
  1081. {
  1082. int ret, i;
  1083. loff_t cluster_off;
  1084. unsigned int local_len = len;
  1085. struct ocfs2_write_cluster_desc *desc;
  1086. struct ocfs2_super *osb = OCFS2_SB(mapping->host->i_sb);
  1087. for (i = 0; i < wc->w_clen; i++) {
  1088. desc = &wc->w_desc[i];
  1089. /*
  1090. * We have to make sure that the total write passed in
  1091. * doesn't extend past a single cluster.
  1092. */
  1093. local_len = len;
  1094. cluster_off = pos & (osb->s_clustersize - 1);
  1095. if ((cluster_off + local_len) > osb->s_clustersize)
  1096. local_len = osb->s_clustersize - cluster_off;
  1097. ret = ocfs2_write_cluster(mapping, desc->c_phys,
  1098. desc->c_unwritten,
  1099. desc->c_needs_zero,
  1100. data_ac, meta_ac,
  1101. wc, desc->c_cpos, pos, local_len);
  1102. if (ret) {
  1103. mlog_errno(ret);
  1104. goto out;
  1105. }
  1106. len -= local_len;
  1107. pos += local_len;
  1108. }
  1109. ret = 0;
  1110. out:
  1111. return ret;
  1112. }
  1113. /*
  1114. * ocfs2_write_end() wants to know which parts of the target page it
  1115. * should complete the write on. It's easiest to compute them ahead of
  1116. * time when a more complete view of the write is available.
  1117. */
  1118. static void ocfs2_set_target_boundaries(struct ocfs2_super *osb,
  1119. struct ocfs2_write_ctxt *wc,
  1120. loff_t pos, unsigned len, int alloc)
  1121. {
  1122. struct ocfs2_write_cluster_desc *desc;
  1123. wc->w_target_from = pos & (PAGE_CACHE_SIZE - 1);
  1124. wc->w_target_to = wc->w_target_from + len;
  1125. if (alloc == 0)
  1126. return;
  1127. /*
  1128. * Allocating write - we may have different boundaries based
  1129. * on page size and cluster size.
  1130. *
  1131. * NOTE: We can no longer compute one value from the other as
  1132. * the actual write length and user provided length may be
  1133. * different.
  1134. */
  1135. if (wc->w_large_pages) {
  1136. /*
  1137. * We only care about the 1st and last cluster within
  1138. * our range and whether they should be zero'd or not. Either
  1139. * value may be extended out to the start/end of a
  1140. * newly allocated cluster.
  1141. */
  1142. desc = &wc->w_desc[0];
  1143. if (desc->c_needs_zero)
  1144. ocfs2_figure_cluster_boundaries(osb,
  1145. desc->c_cpos,
  1146. &wc->w_target_from,
  1147. NULL);
  1148. desc = &wc->w_desc[wc->w_clen - 1];
  1149. if (desc->c_needs_zero)
  1150. ocfs2_figure_cluster_boundaries(osb,
  1151. desc->c_cpos,
  1152. NULL,
  1153. &wc->w_target_to);
  1154. } else {
  1155. wc->w_target_from = 0;
  1156. wc->w_target_to = PAGE_CACHE_SIZE;
  1157. }
  1158. }
  1159. /*
  1160. * Populate each single-cluster write descriptor in the write context
  1161. * with information about the i/o to be done.
  1162. *
  1163. * Returns the number of clusters that will have to be allocated, as
  1164. * well as a worst case estimate of the number of extent records that
  1165. * would have to be created during a write to an unwritten region.
  1166. */
  1167. static int ocfs2_populate_write_desc(struct inode *inode,
  1168. struct ocfs2_write_ctxt *wc,
  1169. unsigned int *clusters_to_alloc,
  1170. unsigned int *extents_to_split)
  1171. {
  1172. int ret;
  1173. struct ocfs2_write_cluster_desc *desc;
  1174. unsigned int num_clusters = 0;
  1175. unsigned int ext_flags = 0;
  1176. u32 phys = 0;
  1177. int i;
  1178. *clusters_to_alloc = 0;
  1179. *extents_to_split = 0;
  1180. for (i = 0; i < wc->w_clen; i++) {
  1181. desc = &wc->w_desc[i];
  1182. desc->c_cpos = wc->w_cpos + i;
  1183. if (num_clusters == 0) {
  1184. /*
  1185. * Need to look up the next extent record.
  1186. */
  1187. ret = ocfs2_get_clusters(inode, desc->c_cpos, &phys,
  1188. &num_clusters, &ext_flags);
  1189. if (ret) {
  1190. mlog_errno(ret);
  1191. goto out;
  1192. }
  1193. /* We should already CoW the refcountd extent. */
  1194. BUG_ON(ext_flags & OCFS2_EXT_REFCOUNTED);
  1195. /*
  1196. * Assume worst case - that we're writing in
  1197. * the middle of the extent.
  1198. *
  1199. * We can assume that the write proceeds from
  1200. * left to right, in which case the extent
  1201. * insert code is smart enough to coalesce the
  1202. * next splits into the previous records created.
  1203. */
  1204. if (ext_flags & OCFS2_EXT_UNWRITTEN)
  1205. *extents_to_split = *extents_to_split + 2;
  1206. } else if (phys) {
  1207. /*
  1208. * Only increment phys if it doesn't describe
  1209. * a hole.
  1210. */
  1211. phys++;
  1212. }
  1213. /*
  1214. * If w_first_new_cpos is < UINT_MAX, we have a non-sparse
  1215. * file that got extended. w_first_new_cpos tells us
  1216. * where the newly allocated clusters are so we can
  1217. * zero them.
  1218. */
  1219. if (desc->c_cpos >= wc->w_first_new_cpos) {
  1220. BUG_ON(phys == 0);
  1221. desc->c_needs_zero = 1;
  1222. }
  1223. desc->c_phys = phys;
  1224. if (phys == 0) {
  1225. desc->c_new = 1;
  1226. desc->c_needs_zero = 1;
  1227. *clusters_to_alloc = *clusters_to_alloc + 1;
  1228. }
  1229. if (ext_flags & OCFS2_EXT_UNWRITTEN) {
  1230. desc->c_unwritten = 1;
  1231. desc->c_needs_zero = 1;
  1232. }
  1233. num_clusters--;
  1234. }
  1235. ret = 0;
  1236. out:
  1237. return ret;
  1238. }
  1239. static int ocfs2_write_begin_inline(struct address_space *mapping,
  1240. struct inode *inode,
  1241. struct ocfs2_write_ctxt *wc)
  1242. {
  1243. int ret;
  1244. struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
  1245. struct page *page;
  1246. handle_t *handle;
  1247. struct ocfs2_dinode *di = (struct ocfs2_dinode *)wc->w_di_bh->b_data;
  1248. page = find_or_create_page(mapping, 0, GFP_NOFS);
  1249. if (!page) {
  1250. ret = -ENOMEM;
  1251. mlog_errno(ret);
  1252. goto out;
  1253. }
  1254. /*
  1255. * If we don't set w_num_pages then this page won't get unlocked
  1256. * and freed on cleanup of the write context.
  1257. */
  1258. wc->w_pages[0] = wc->w_target_page = page;
  1259. wc->w_num_pages = 1;
  1260. handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS);
  1261. if (IS_ERR(handle)) {
  1262. ret = PTR_ERR(handle);
  1263. mlog_errno(ret);
  1264. goto out;
  1265. }
  1266. ret = ocfs2_journal_access_di(handle, INODE_CACHE(inode), wc->w_di_bh,
  1267. OCFS2_JOURNAL_ACCESS_WRITE);
  1268. if (ret) {
  1269. ocfs2_commit_trans(osb, handle);
  1270. mlog_errno(ret);
  1271. goto out;
  1272. }
  1273. if (!(OCFS2_I(inode)->ip_dyn_features & OCFS2_INLINE_DATA_FL))
  1274. ocfs2_set_inode_data_inline(inode, di);
  1275. if (!PageUptodate(page)) {
  1276. ret = ocfs2_read_inline_data(inode, page, wc->w_di_bh);
  1277. if (ret) {
  1278. ocfs2_commit_trans(osb, handle);
  1279. goto out;
  1280. }
  1281. }
  1282. wc->w_handle = handle;
  1283. out:
  1284. return ret;
  1285. }
  1286. int ocfs2_size_fits_inline_data(struct buffer_head *di_bh, u64 new_size)
  1287. {
  1288. struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data;
  1289. if (new_size <= le16_to_cpu(di->id2.i_data.id_count))
  1290. return 1;
  1291. return 0;
  1292. }
  1293. static int ocfs2_try_to_write_inline_data(struct address_space *mapping,
  1294. struct inode *inode, loff_t pos,
  1295. unsigned len, struct page *mmap_page,
  1296. struct ocfs2_write_ctxt *wc)
  1297. {
  1298. int ret, written = 0;
  1299. loff_t end = pos + len;
  1300. struct ocfs2_inode_info *oi = OCFS2_I(inode);
  1301. struct ocfs2_dinode *di = NULL;
  1302. mlog(0, "Inode %llu, write of %u bytes at off %llu. features: 0x%x\n",
  1303. (unsigned long long)oi->ip_blkno, len, (unsigned long long)pos,
  1304. oi->ip_dyn_features);
  1305. /*
  1306. * Handle inodes which already have inline data 1st.
  1307. */
  1308. if (oi->ip_dyn_features & OCFS2_INLINE_DATA_FL) {
  1309. if (mmap_page == NULL &&
  1310. ocfs2_size_fits_inline_data(wc->w_di_bh, end))
  1311. goto do_inline_write;
  1312. /*
  1313. * The write won't fit - we have to give this inode an
  1314. * inline extent list now.
  1315. */
  1316. ret = ocfs2_convert_inline_data_to_extents(inode, wc->w_di_bh);
  1317. if (ret)
  1318. mlog_errno(ret);
  1319. goto out;
  1320. }
  1321. /*
  1322. * Check whether the inode can accept inline data.
  1323. */
  1324. if (oi->ip_clusters != 0 || i_size_read(inode) != 0)
  1325. return 0;
  1326. /*
  1327. * Check whether the write can fit.
  1328. */
  1329. di = (struct ocfs2_dinode *)wc->w_di_bh->b_data;
  1330. if (mmap_page ||
  1331. end > ocfs2_max_inline_data_with_xattr(inode->i_sb, di))
  1332. return 0;
  1333. do_inline_write:
  1334. ret = ocfs2_write_begin_inline(mapping, inode, wc);
  1335. if (ret) {
  1336. mlog_errno(ret);
  1337. goto out;
  1338. }
  1339. /*
  1340. * This signals to the caller that the data can be written
  1341. * inline.
  1342. */
  1343. written = 1;
  1344. out:
  1345. return written ? written : ret;
  1346. }
  1347. /*
  1348. * This function only does anything for file systems which can't
  1349. * handle sparse files.
  1350. *
  1351. * What we want to do here is fill in any hole between the current end
  1352. * of allocation and the end of our write. That way the rest of the
  1353. * write path can treat it as an non-allocating write, which has no
  1354. * special case code for sparse/nonsparse files.
  1355. */
  1356. static int ocfs2_expand_nonsparse_inode(struct inode *inode,
  1357. struct buffer_head *di_bh,
  1358. loff_t pos, unsigned len,
  1359. struct ocfs2_write_ctxt *wc)
  1360. {
  1361. int ret;
  1362. loff_t newsize = pos + len;
  1363. BUG_ON(ocfs2_sparse_alloc(OCFS2_SB(inode->i_sb)));
  1364. if (newsize <= i_size_read(inode))
  1365. return 0;
  1366. ret = ocfs2_extend_no_holes(inode, di_bh, newsize, pos);
  1367. if (ret)
  1368. mlog_errno(ret);
  1369. wc->w_first_new_cpos =
  1370. ocfs2_clusters_for_bytes(inode->i_sb, i_size_read(inode));
  1371. return ret;
  1372. }
  1373. static int ocfs2_zero_tail(struct inode *inode, struct buffer_head *di_bh,
  1374. loff_t pos)
  1375. {
  1376. int ret = 0;
  1377. BUG_ON(!ocfs2_sparse_alloc(OCFS2_SB(inode->i_sb)));
  1378. if (pos > i_size_read(inode))
  1379. ret = ocfs2_zero_extend(inode, di_bh, pos);
  1380. return ret;
  1381. }
  1382. int ocfs2_write_begin_nolock(struct address_space *mapping,
  1383. loff_t pos, unsigned len, unsigned flags,
  1384. struct page **pagep, void **fsdata,
  1385. struct buffer_head *di_bh, struct page *mmap_page)
  1386. {
  1387. int ret, cluster_of_pages, credits = OCFS2_INODE_UPDATE_CREDITS;
  1388. unsigned int clusters_to_alloc, extents_to_split;
  1389. struct ocfs2_write_ctxt *wc;
  1390. struct inode *inode = mapping->host;
  1391. struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
  1392. struct ocfs2_dinode *di;
  1393. struct ocfs2_alloc_context *data_ac = NULL;
  1394. struct ocfs2_alloc_context *meta_ac = NULL;
  1395. handle_t *handle;
  1396. struct ocfs2_extent_tree et;
  1397. ret = ocfs2_alloc_write_ctxt(&wc, osb, pos, len, di_bh);
  1398. if (ret) {
  1399. mlog_errno(ret);
  1400. return ret;
  1401. }
  1402. if (ocfs2_supports_inline_data(osb)) {
  1403. ret = ocfs2_try_to_write_inline_data(mapping, inode, pos, len,
  1404. mmap_page, wc);
  1405. if (ret == 1) {
  1406. ret = 0;
  1407. goto success;
  1408. }
  1409. if (ret < 0) {
  1410. mlog_errno(ret);
  1411. goto out;
  1412. }
  1413. }
  1414. if (ocfs2_sparse_alloc(osb))
  1415. ret = ocfs2_zero_tail(inode, di_bh, pos);
  1416. else
  1417. ret = ocfs2_expand_nonsparse_inode(inode, di_bh, pos, len,
  1418. wc);
  1419. if (ret) {
  1420. mlog_errno(ret);
  1421. goto out;
  1422. }
  1423. ret = ocfs2_check_range_for_refcount(inode, pos, len);
  1424. if (ret < 0) {
  1425. mlog_errno(ret);
  1426. goto out;
  1427. } else if (ret == 1) {
  1428. ret = ocfs2_refcount_cow(inode, di_bh,
  1429. wc->w_cpos, wc->w_clen, UINT_MAX);
  1430. if (ret) {
  1431. mlog_errno(ret);
  1432. goto out;
  1433. }
  1434. }
  1435. ret = ocfs2_populate_write_desc(inode, wc, &clusters_to_alloc,
  1436. &extents_to_split);
  1437. if (ret) {
  1438. mlog_errno(ret);
  1439. goto out;
  1440. }
  1441. di = (struct ocfs2_dinode *)wc->w_di_bh->b_data;
  1442. /*
  1443. * We set w_target_from, w_target_to here so that
  1444. * ocfs2_write_end() knows which range in the target page to
  1445. * write out. An allocation requires that we write the entire
  1446. * cluster range.
  1447. */
  1448. if (clusters_to_alloc || extents_to_split) {
  1449. /*
  1450. * XXX: We are stretching the limits of
  1451. * ocfs2_lock_allocators(). It greatly over-estimates
  1452. * the work to be done.
  1453. */
  1454. mlog(0, "extend inode %llu, i_size = %lld, di->i_clusters = %u,"
  1455. " clusters_to_add = %u, extents_to_split = %u\n",
  1456. (unsigned long long)OCFS2_I(inode)->ip_blkno,
  1457. (long long)i_size_read(inode), le32_to_cpu(di->i_clusters),
  1458. clusters_to_alloc, extents_to_split);
  1459. ocfs2_init_dinode_extent_tree(&et, INODE_CACHE(inode),
  1460. wc->w_di_bh);
  1461. ret = ocfs2_lock_allocators(inode, &et,
  1462. clusters_to_alloc, extents_to_split,
  1463. &data_ac, &meta_ac);
  1464. if (ret) {
  1465. mlog_errno(ret);
  1466. goto out;
  1467. }
  1468. if (data_ac)
  1469. data_ac->ac_resv = &OCFS2_I(inode)->ip_la_data_resv;
  1470. credits = ocfs2_calc_extend_credits(inode->i_sb,
  1471. &di->id2.i_list,
  1472. clusters_to_alloc);
  1473. }
  1474. /*
  1475. * We have to zero sparse allocated clusters, unwritten extent clusters,
  1476. * and non-sparse clusters we just extended. For non-sparse writes,
  1477. * we know zeros will only be needed in the first and/or last cluster.
  1478. */
  1479. if (clusters_to_alloc || extents_to_split ||
  1480. (wc->w_clen && (wc->w_desc[0].c_needs_zero ||
  1481. wc->w_desc[wc->w_clen - 1].c_needs_zero)))
  1482. cluster_of_pages = 1;
  1483. else
  1484. cluster_of_pages = 0;
  1485. ocfs2_set_target_boundaries(osb, wc, pos, len, cluster_of_pages);
  1486. handle = ocfs2_start_trans(osb, credits);
  1487. if (IS_ERR(handle)) {
  1488. ret = PTR_ERR(handle);
  1489. mlog_errno(ret);
  1490. goto out;
  1491. }
  1492. wc->w_handle = handle;
  1493. if (clusters_to_alloc) {
  1494. ret = dquot_alloc_space_nodirty(inode,
  1495. ocfs2_clusters_to_bytes(osb->sb, clusters_to_alloc));
  1496. if (ret)
  1497. goto out_commit;
  1498. }
  1499. /*
  1500. * We don't want this to fail in ocfs2_write_end(), so do it
  1501. * here.
  1502. */
  1503. ret = ocfs2_journal_access_di(handle, INODE_CACHE(inode), wc->w_di_bh,
  1504. OCFS2_JOURNAL_ACCESS_WRITE);
  1505. if (ret) {
  1506. mlog_errno(ret);
  1507. goto out_quota;
  1508. }
  1509. /*
  1510. * Fill our page array first. That way we've grabbed enough so
  1511. * that we can zero and flush if we error after adding the
  1512. * extent.
  1513. */
  1514. ret = ocfs2_grab_pages_for_write(mapping, wc, wc->w_cpos, pos,
  1515. cluster_of_pages, mmap_page);
  1516. if (ret) {
  1517. mlog_errno(ret);
  1518. goto out_quota;
  1519. }
  1520. ret = ocfs2_write_cluster_by_desc(mapping, data_ac, meta_ac, wc, pos,
  1521. len);
  1522. if (ret) {
  1523. mlog_errno(ret);
  1524. goto out_quota;
  1525. }
  1526. if (data_ac)
  1527. ocfs2_free_alloc_context(data_ac);
  1528. if (meta_ac)
  1529. ocfs2_free_alloc_context(meta_ac);
  1530. success:
  1531. *pagep = wc->w_target_page;
  1532. *fsdata = wc;
  1533. return 0;
  1534. out_quota:
  1535. if (clusters_to_alloc)
  1536. dquot_free_space(inode,
  1537. ocfs2_clusters_to_bytes(osb->sb, clusters_to_alloc));
  1538. out_commit:
  1539. ocfs2_commit_trans(osb, handle);
  1540. out:
  1541. ocfs2_free_write_ctxt(wc);
  1542. if (data_ac)
  1543. ocfs2_free_alloc_context(data_ac);
  1544. if (meta_ac)
  1545. ocfs2_free_alloc_context(meta_ac);
  1546. return ret;
  1547. }
  1548. static int ocfs2_write_begin(struct file *file, struct address_space *mapping,
  1549. loff_t pos, unsigned len, unsigned flags,
  1550. struct page **pagep, void **fsdata)
  1551. {
  1552. int ret;
  1553. struct buffer_head *di_bh = NULL;
  1554. struct inode *inode = mapping->host;
  1555. ret = ocfs2_inode_lock(inode, &di_bh, 1);
  1556. if (ret) {
  1557. mlog_errno(ret);
  1558. return ret;
  1559. }
  1560. /*
  1561. * Take alloc sem here to prevent concurrent lookups. That way
  1562. * the mapping, zeroing and tree manipulation within
  1563. * ocfs2_write() will be safe against ->readpage(). This
  1564. * should also serve to lock out allocation from a shared
  1565. * writeable region.
  1566. */
  1567. down_write(&OCFS2_I(inode)->ip_alloc_sem);
  1568. ret = ocfs2_write_begin_nolock(mapping, pos, len, flags, pagep,
  1569. fsdata, di_bh, NULL);
  1570. if (ret) {
  1571. mlog_errno(ret);
  1572. goto out_fail;
  1573. }
  1574. brelse(di_bh);
  1575. return 0;
  1576. out_fail:
  1577. up_write(&OCFS2_I(inode)->ip_alloc_sem);
  1578. brelse(di_bh);
  1579. ocfs2_inode_unlock(inode, 1);
  1580. return ret;
  1581. }
  1582. static void ocfs2_write_end_inline(struct inode *inode, loff_t pos,
  1583. unsigned len, unsigned *copied,
  1584. struct ocfs2_dinode *di,
  1585. struct ocfs2_write_ctxt *wc)
  1586. {
  1587. void *kaddr;
  1588. if (unlikely(*copied < len)) {
  1589. if (!PageUptodate(wc->w_target_page)) {
  1590. *copied = 0;
  1591. return;
  1592. }
  1593. }
  1594. kaddr = kmap_atomic(wc->w_target_page, KM_USER0);
  1595. memcpy(di->id2.i_data.id_data + pos, kaddr + pos, *copied);
  1596. kunmap_atomic(kaddr, KM_USER0);
  1597. mlog(0, "Data written to inode at offset %llu. "
  1598. "id_count = %u, copied = %u, i_dyn_features = 0x%x\n",
  1599. (unsigned long long)pos, *copied,
  1600. le16_to_cpu(di->id2.i_data.id_count),
  1601. le16_to_cpu(di->i_dyn_features));
  1602. }
  1603. int ocfs2_write_end_nolock(struct address_space *mapping,
  1604. loff_t pos, unsigned len, unsigned copied,
  1605. struct page *page, void *fsdata)
  1606. {
  1607. int i;
  1608. unsigned from, to, start = pos & (PAGE_CACHE_SIZE - 1);
  1609. struct inode *inode = mapping->host;
  1610. struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
  1611. struct ocfs2_write_ctxt *wc = fsdata;
  1612. struct ocfs2_dinode *di = (struct ocfs2_dinode *)wc->w_di_bh->b_data;
  1613. handle_t *handle = wc->w_handle;
  1614. struct page *tmppage;
  1615. if (OCFS2_I(inode)->ip_dyn_features & OCFS2_INLINE_DATA_FL) {
  1616. ocfs2_write_end_inline(inode, pos, len, &copied, di, wc);
  1617. goto out_write_size;
  1618. }
  1619. if (unlikely(copied < len)) {
  1620. if (!PageUptodate(wc->w_target_page))
  1621. copied = 0;
  1622. ocfs2_zero_new_buffers(wc->w_target_page, start+copied,
  1623. start+len);
  1624. }
  1625. flush_dcache_page(wc->w_target_page);
  1626. for(i = 0; i < wc->w_num_pages; i++) {
  1627. tmppage = wc->w_pages[i];
  1628. if (tmppage == wc->w_target_page) {
  1629. from = wc->w_target_from;
  1630. to = wc->w_target_to;
  1631. BUG_ON(from > PAGE_CACHE_SIZE ||
  1632. to > PAGE_CACHE_SIZE ||
  1633. to < from);
  1634. } else {
  1635. /*
  1636. * Pages adjacent to the target (if any) imply
  1637. * a hole-filling write in which case we want
  1638. * to flush their entire range.
  1639. */
  1640. from = 0;
  1641. to = PAGE_CACHE_SIZE;
  1642. }
  1643. if (page_has_buffers(tmppage)) {
  1644. if (ocfs2_should_order_data(inode))
  1645. ocfs2_jbd2_file_inode(wc->w_handle, inode);
  1646. block_commit_write(tmppage, from, to);
  1647. }
  1648. }
  1649. out_write_size:
  1650. pos += copied;
  1651. if (pos > inode->i_size) {
  1652. i_size_write(inode, pos);
  1653. mark_inode_dirty(inode);
  1654. }
  1655. inode->i_blocks = ocfs2_inode_sector_count(inode);
  1656. di->i_size = cpu_to_le64((u64)i_size_read(inode));
  1657. inode->i_mtime = inode->i_ctime = CURRENT_TIME;
  1658. di->i_mtime = di->i_ctime = cpu_to_le64(inode->i_mtime.tv_sec);
  1659. di->i_mtime_nsec = di->i_ctime_nsec = cpu_to_le32(inode->i_mtime.tv_nsec);
  1660. ocfs2_journal_dirty(handle, wc->w_di_bh);
  1661. ocfs2_commit_trans(osb, handle);
  1662. ocfs2_run_deallocs(osb, &wc->w_dealloc);
  1663. ocfs2_free_write_ctxt(wc);
  1664. return copied;
  1665. }
  1666. static int ocfs2_write_end(struct file *file, struct address_space *mapping,
  1667. loff_t pos, unsigned len, unsigned copied,
  1668. struct page *page, void *fsdata)
  1669. {
  1670. int ret;
  1671. struct inode *inode = mapping->host;
  1672. ret = ocfs2_write_end_nolock(mapping, pos, len, copied, page, fsdata);
  1673. up_write(&OCFS2_I(inode)->ip_alloc_sem);
  1674. ocfs2_inode_unlock(inode, 1);
  1675. return ret;
  1676. }
  1677. const struct address_space_operations ocfs2_aops = {
  1678. .readpage = ocfs2_readpage,
  1679. .readpages = ocfs2_readpages,
  1680. .writepage = ocfs2_writepage,
  1681. .write_begin = ocfs2_write_begin,
  1682. .write_end = ocfs2_write_end,
  1683. .bmap = ocfs2_bmap,
  1684. .sync_page = block_sync_page,
  1685. .direct_IO = ocfs2_direct_IO,
  1686. .invalidatepage = ocfs2_invalidatepage,
  1687. .releasepage = ocfs2_releasepage,
  1688. .migratepage = buffer_migrate_page,
  1689. .is_partially_uptodate = block_is_partially_uptodate,
  1690. .error_remove_page = generic_error_remove_page,
  1691. };