inode.c 106 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609
  1. /*
  2. * linux/fs/ext3/inode.c
  3. *
  4. * Copyright (C) 1992, 1993, 1994, 1995
  5. * Remy Card (card@masi.ibp.fr)
  6. * Laboratoire MASI - Institut Blaise Pascal
  7. * Universite Pierre et Marie Curie (Paris VI)
  8. *
  9. * from
  10. *
  11. * linux/fs/minix/inode.c
  12. *
  13. * Copyright (C) 1991, 1992 Linus Torvalds
  14. *
  15. * Goal-directed block allocation by Stephen Tweedie
  16. * (sct@redhat.com), 1993, 1998
  17. * Big-endian to little-endian byte-swapping/bitmaps by
  18. * David S. Miller (davem@caip.rutgers.edu), 1995
  19. * 64-bit file support on 64-bit platforms by Jakub Jelinek
  20. * (jj@sunsite.ms.mff.cuni.cz)
  21. *
  22. * Assorted race fixes, rewrite of ext3_get_block() by Al Viro, 2000
  23. */
  24. #include <linux/highuid.h>
  25. #include <linux/quotaops.h>
  26. #include <linux/writeback.h>
  27. #include <linux/mpage.h>
  28. #include <linux/namei.h>
  29. #include <linux/aio.h>
  30. #include "ext3.h"
  31. #include "xattr.h"
  32. #include "acl.h"
  33. static int ext3_writepage_trans_blocks(struct inode *inode);
  34. static int ext3_block_truncate_page(struct inode *inode, loff_t from);
  35. /*
  36. * Test whether an inode is a fast symlink.
  37. */
  38. static int ext3_inode_is_fast_symlink(struct inode *inode)
  39. {
  40. int ea_blocks = EXT3_I(inode)->i_file_acl ?
  41. (inode->i_sb->s_blocksize >> 9) : 0;
  42. return (S_ISLNK(inode->i_mode) && inode->i_blocks - ea_blocks == 0);
  43. }
  44. /*
  45. * The ext3 forget function must perform a revoke if we are freeing data
  46. * which has been journaled. Metadata (eg. indirect blocks) must be
  47. * revoked in all cases.
  48. *
  49. * "bh" may be NULL: a metadata block may have been freed from memory
  50. * but there may still be a record of it in the journal, and that record
  51. * still needs to be revoked.
  52. */
  53. int ext3_forget(handle_t *handle, int is_metadata, struct inode *inode,
  54. struct buffer_head *bh, ext3_fsblk_t blocknr)
  55. {
  56. int err;
  57. might_sleep();
  58. trace_ext3_forget(inode, is_metadata, blocknr);
  59. BUFFER_TRACE(bh, "enter");
  60. jbd_debug(4, "forgetting bh %p: is_metadata = %d, mode %o, "
  61. "data mode %lx\n",
  62. bh, is_metadata, inode->i_mode,
  63. test_opt(inode->i_sb, DATA_FLAGS));
  64. /* Never use the revoke function if we are doing full data
  65. * journaling: there is no need to, and a V1 superblock won't
  66. * support it. Otherwise, only skip the revoke on un-journaled
  67. * data blocks. */
  68. if (test_opt(inode->i_sb, DATA_FLAGS) == EXT3_MOUNT_JOURNAL_DATA ||
  69. (!is_metadata && !ext3_should_journal_data(inode))) {
  70. if (bh) {
  71. BUFFER_TRACE(bh, "call journal_forget");
  72. return ext3_journal_forget(handle, bh);
  73. }
  74. return 0;
  75. }
  76. /*
  77. * data!=journal && (is_metadata || should_journal_data(inode))
  78. */
  79. BUFFER_TRACE(bh, "call ext3_journal_revoke");
  80. err = ext3_journal_revoke(handle, blocknr, bh);
  81. if (err)
  82. ext3_abort(inode->i_sb, __func__,
  83. "error %d when attempting revoke", err);
  84. BUFFER_TRACE(bh, "exit");
  85. return err;
  86. }
  87. /*
  88. * Work out how many blocks we need to proceed with the next chunk of a
  89. * truncate transaction.
  90. */
  91. static unsigned long blocks_for_truncate(struct inode *inode)
  92. {
  93. unsigned long needed;
  94. needed = inode->i_blocks >> (inode->i_sb->s_blocksize_bits - 9);
  95. /* Give ourselves just enough room to cope with inodes in which
  96. * i_blocks is corrupt: we've seen disk corruptions in the past
  97. * which resulted in random data in an inode which looked enough
  98. * like a regular file for ext3 to try to delete it. Things
  99. * will go a bit crazy if that happens, but at least we should
  100. * try not to panic the whole kernel. */
  101. if (needed < 2)
  102. needed = 2;
  103. /* But we need to bound the transaction so we don't overflow the
  104. * journal. */
  105. if (needed > EXT3_MAX_TRANS_DATA)
  106. needed = EXT3_MAX_TRANS_DATA;
  107. return EXT3_DATA_TRANS_BLOCKS(inode->i_sb) + needed;
  108. }
  109. /*
  110. * Truncate transactions can be complex and absolutely huge. So we need to
  111. * be able to restart the transaction at a conventient checkpoint to make
  112. * sure we don't overflow the journal.
  113. *
  114. * start_transaction gets us a new handle for a truncate transaction,
  115. * and extend_transaction tries to extend the existing one a bit. If
  116. * extend fails, we need to propagate the failure up and restart the
  117. * transaction in the top-level truncate loop. --sct
  118. */
  119. static handle_t *start_transaction(struct inode *inode)
  120. {
  121. handle_t *result;
  122. result = ext3_journal_start(inode, blocks_for_truncate(inode));
  123. if (!IS_ERR(result))
  124. return result;
  125. ext3_std_error(inode->i_sb, PTR_ERR(result));
  126. return result;
  127. }
  128. /*
  129. * Try to extend this transaction for the purposes of truncation.
  130. *
  131. * Returns 0 if we managed to create more room. If we can't create more
  132. * room, and the transaction must be restarted we return 1.
  133. */
  134. static int try_to_extend_transaction(handle_t *handle, struct inode *inode)
  135. {
  136. if (handle->h_buffer_credits > EXT3_RESERVE_TRANS_BLOCKS)
  137. return 0;
  138. if (!ext3_journal_extend(handle, blocks_for_truncate(inode)))
  139. return 0;
  140. return 1;
  141. }
  142. /*
  143. * Restart the transaction associated with *handle. This does a commit,
  144. * so before we call here everything must be consistently dirtied against
  145. * this transaction.
  146. */
  147. static int truncate_restart_transaction(handle_t *handle, struct inode *inode)
  148. {
  149. int ret;
  150. jbd_debug(2, "restarting handle %p\n", handle);
  151. /*
  152. * Drop truncate_mutex to avoid deadlock with ext3_get_blocks_handle
  153. * At this moment, get_block can be called only for blocks inside
  154. * i_size since page cache has been already dropped and writes are
  155. * blocked by i_mutex. So we can safely drop the truncate_mutex.
  156. */
  157. mutex_unlock(&EXT3_I(inode)->truncate_mutex);
  158. ret = ext3_journal_restart(handle, blocks_for_truncate(inode));
  159. mutex_lock(&EXT3_I(inode)->truncate_mutex);
  160. return ret;
  161. }
  162. /*
  163. * Called at inode eviction from icache
  164. */
  165. void ext3_evict_inode (struct inode *inode)
  166. {
  167. struct ext3_inode_info *ei = EXT3_I(inode);
  168. struct ext3_block_alloc_info *rsv;
  169. handle_t *handle;
  170. int want_delete = 0;
  171. trace_ext3_evict_inode(inode);
  172. if (!inode->i_nlink && !is_bad_inode(inode)) {
  173. dquot_initialize(inode);
  174. want_delete = 1;
  175. }
  176. /*
  177. * When journalling data dirty buffers are tracked only in the journal.
  178. * So although mm thinks everything is clean and ready for reaping the
  179. * inode might still have some pages to write in the running
  180. * transaction or waiting to be checkpointed. Thus calling
  181. * journal_invalidatepage() (via truncate_inode_pages()) to discard
  182. * these buffers can cause data loss. Also even if we did not discard
  183. * these buffers, we would have no way to find them after the inode
  184. * is reaped and thus user could see stale data if he tries to read
  185. * them before the transaction is checkpointed. So be careful and
  186. * force everything to disk here... We use ei->i_datasync_tid to
  187. * store the newest transaction containing inode's data.
  188. *
  189. * Note that directories do not have this problem because they don't
  190. * use page cache.
  191. *
  192. * The s_journal check handles the case when ext3_get_journal() fails
  193. * and puts the journal inode.
  194. */
  195. if (inode->i_nlink && ext3_should_journal_data(inode) &&
  196. EXT3_SB(inode->i_sb)->s_journal &&
  197. (S_ISLNK(inode->i_mode) || S_ISREG(inode->i_mode)) &&
  198. inode->i_ino != EXT3_JOURNAL_INO) {
  199. tid_t commit_tid = atomic_read(&ei->i_datasync_tid);
  200. journal_t *journal = EXT3_SB(inode->i_sb)->s_journal;
  201. log_start_commit(journal, commit_tid);
  202. log_wait_commit(journal, commit_tid);
  203. filemap_write_and_wait(&inode->i_data);
  204. }
  205. truncate_inode_pages(&inode->i_data, 0);
  206. ext3_discard_reservation(inode);
  207. rsv = ei->i_block_alloc_info;
  208. ei->i_block_alloc_info = NULL;
  209. if (unlikely(rsv))
  210. kfree(rsv);
  211. if (!want_delete)
  212. goto no_delete;
  213. handle = start_transaction(inode);
  214. if (IS_ERR(handle)) {
  215. /*
  216. * If we're going to skip the normal cleanup, we still need to
  217. * make sure that the in-core orphan linked list is properly
  218. * cleaned up.
  219. */
  220. ext3_orphan_del(NULL, inode);
  221. goto no_delete;
  222. }
  223. if (IS_SYNC(inode))
  224. handle->h_sync = 1;
  225. inode->i_size = 0;
  226. if (inode->i_blocks)
  227. ext3_truncate(inode);
  228. /*
  229. * Kill off the orphan record created when the inode lost the last
  230. * link. Note that ext3_orphan_del() has to be able to cope with the
  231. * deletion of a non-existent orphan - ext3_truncate() could
  232. * have removed the record.
  233. */
  234. ext3_orphan_del(handle, inode);
  235. ei->i_dtime = get_seconds();
  236. /*
  237. * One subtle ordering requirement: if anything has gone wrong
  238. * (transaction abort, IO errors, whatever), then we can still
  239. * do these next steps (the fs will already have been marked as
  240. * having errors), but we can't free the inode if the mark_dirty
  241. * fails.
  242. */
  243. if (ext3_mark_inode_dirty(handle, inode)) {
  244. /* If that failed, just dquot_drop() and be done with that */
  245. dquot_drop(inode);
  246. clear_inode(inode);
  247. } else {
  248. ext3_xattr_delete_inode(handle, inode);
  249. dquot_free_inode(inode);
  250. dquot_drop(inode);
  251. clear_inode(inode);
  252. ext3_free_inode(handle, inode);
  253. }
  254. ext3_journal_stop(handle);
  255. return;
  256. no_delete:
  257. clear_inode(inode);
  258. dquot_drop(inode);
  259. }
  260. typedef struct {
  261. __le32 *p;
  262. __le32 key;
  263. struct buffer_head *bh;
  264. } Indirect;
  265. static inline void add_chain(Indirect *p, struct buffer_head *bh, __le32 *v)
  266. {
  267. p->key = *(p->p = v);
  268. p->bh = bh;
  269. }
  270. static int verify_chain(Indirect *from, Indirect *to)
  271. {
  272. while (from <= to && from->key == *from->p)
  273. from++;
  274. return (from > to);
  275. }
  276. /**
  277. * ext3_block_to_path - parse the block number into array of offsets
  278. * @inode: inode in question (we are only interested in its superblock)
  279. * @i_block: block number to be parsed
  280. * @offsets: array to store the offsets in
  281. * @boundary: set this non-zero if the referred-to block is likely to be
  282. * followed (on disk) by an indirect block.
  283. *
  284. * To store the locations of file's data ext3 uses a data structure common
  285. * for UNIX filesystems - tree of pointers anchored in the inode, with
  286. * data blocks at leaves and indirect blocks in intermediate nodes.
  287. * This function translates the block number into path in that tree -
  288. * return value is the path length and @offsets[n] is the offset of
  289. * pointer to (n+1)th node in the nth one. If @block is out of range
  290. * (negative or too large) warning is printed and zero returned.
  291. *
  292. * Note: function doesn't find node addresses, so no IO is needed. All
  293. * we need to know is the capacity of indirect blocks (taken from the
  294. * inode->i_sb).
  295. */
  296. /*
  297. * Portability note: the last comparison (check that we fit into triple
  298. * indirect block) is spelled differently, because otherwise on an
  299. * architecture with 32-bit longs and 8Kb pages we might get into trouble
  300. * if our filesystem had 8Kb blocks. We might use long long, but that would
  301. * kill us on x86. Oh, well, at least the sign propagation does not matter -
  302. * i_block would have to be negative in the very beginning, so we would not
  303. * get there at all.
  304. */
  305. static int ext3_block_to_path(struct inode *inode,
  306. long i_block, int offsets[4], int *boundary)
  307. {
  308. int ptrs = EXT3_ADDR_PER_BLOCK(inode->i_sb);
  309. int ptrs_bits = EXT3_ADDR_PER_BLOCK_BITS(inode->i_sb);
  310. const long direct_blocks = EXT3_NDIR_BLOCKS,
  311. indirect_blocks = ptrs,
  312. double_blocks = (1 << (ptrs_bits * 2));
  313. int n = 0;
  314. int final = 0;
  315. if (i_block < 0) {
  316. ext3_warning (inode->i_sb, "ext3_block_to_path", "block < 0");
  317. } else if (i_block < direct_blocks) {
  318. offsets[n++] = i_block;
  319. final = direct_blocks;
  320. } else if ( (i_block -= direct_blocks) < indirect_blocks) {
  321. offsets[n++] = EXT3_IND_BLOCK;
  322. offsets[n++] = i_block;
  323. final = ptrs;
  324. } else if ((i_block -= indirect_blocks) < double_blocks) {
  325. offsets[n++] = EXT3_DIND_BLOCK;
  326. offsets[n++] = i_block >> ptrs_bits;
  327. offsets[n++] = i_block & (ptrs - 1);
  328. final = ptrs;
  329. } else if (((i_block -= double_blocks) >> (ptrs_bits * 2)) < ptrs) {
  330. offsets[n++] = EXT3_TIND_BLOCK;
  331. offsets[n++] = i_block >> (ptrs_bits * 2);
  332. offsets[n++] = (i_block >> ptrs_bits) & (ptrs - 1);
  333. offsets[n++] = i_block & (ptrs - 1);
  334. final = ptrs;
  335. } else {
  336. ext3_warning(inode->i_sb, "ext3_block_to_path", "block > big");
  337. }
  338. if (boundary)
  339. *boundary = final - 1 - (i_block & (ptrs - 1));
  340. return n;
  341. }
  342. /**
  343. * ext3_get_branch - read the chain of indirect blocks leading to data
  344. * @inode: inode in question
  345. * @depth: depth of the chain (1 - direct pointer, etc.)
  346. * @offsets: offsets of pointers in inode/indirect blocks
  347. * @chain: place to store the result
  348. * @err: here we store the error value
  349. *
  350. * Function fills the array of triples <key, p, bh> and returns %NULL
  351. * if everything went OK or the pointer to the last filled triple
  352. * (incomplete one) otherwise. Upon the return chain[i].key contains
  353. * the number of (i+1)-th block in the chain (as it is stored in memory,
  354. * i.e. little-endian 32-bit), chain[i].p contains the address of that
  355. * number (it points into struct inode for i==0 and into the bh->b_data
  356. * for i>0) and chain[i].bh points to the buffer_head of i-th indirect
  357. * block for i>0 and NULL for i==0. In other words, it holds the block
  358. * numbers of the chain, addresses they were taken from (and where we can
  359. * verify that chain did not change) and buffer_heads hosting these
  360. * numbers.
  361. *
  362. * Function stops when it stumbles upon zero pointer (absent block)
  363. * (pointer to last triple returned, *@err == 0)
  364. * or when it gets an IO error reading an indirect block
  365. * (ditto, *@err == -EIO)
  366. * or when it notices that chain had been changed while it was reading
  367. * (ditto, *@err == -EAGAIN)
  368. * or when it reads all @depth-1 indirect blocks successfully and finds
  369. * the whole chain, all way to the data (returns %NULL, *err == 0).
  370. */
  371. static Indirect *ext3_get_branch(struct inode *inode, int depth, int *offsets,
  372. Indirect chain[4], int *err)
  373. {
  374. struct super_block *sb = inode->i_sb;
  375. Indirect *p = chain;
  376. struct buffer_head *bh;
  377. *err = 0;
  378. /* i_data is not going away, no lock needed */
  379. add_chain (chain, NULL, EXT3_I(inode)->i_data + *offsets);
  380. if (!p->key)
  381. goto no_block;
  382. while (--depth) {
  383. bh = sb_bread(sb, le32_to_cpu(p->key));
  384. if (!bh)
  385. goto failure;
  386. /* Reader: pointers */
  387. if (!verify_chain(chain, p))
  388. goto changed;
  389. add_chain(++p, bh, (__le32*)bh->b_data + *++offsets);
  390. /* Reader: end */
  391. if (!p->key)
  392. goto no_block;
  393. }
  394. return NULL;
  395. changed:
  396. brelse(bh);
  397. *err = -EAGAIN;
  398. goto no_block;
  399. failure:
  400. *err = -EIO;
  401. no_block:
  402. return p;
  403. }
  404. /**
  405. * ext3_find_near - find a place for allocation with sufficient locality
  406. * @inode: owner
  407. * @ind: descriptor of indirect block.
  408. *
  409. * This function returns the preferred place for block allocation.
  410. * It is used when heuristic for sequential allocation fails.
  411. * Rules are:
  412. * + if there is a block to the left of our position - allocate near it.
  413. * + if pointer will live in indirect block - allocate near that block.
  414. * + if pointer will live in inode - allocate in the same
  415. * cylinder group.
  416. *
  417. * In the latter case we colour the starting block by the callers PID to
  418. * prevent it from clashing with concurrent allocations for a different inode
  419. * in the same block group. The PID is used here so that functionally related
  420. * files will be close-by on-disk.
  421. *
  422. * Caller must make sure that @ind is valid and will stay that way.
  423. */
  424. static ext3_fsblk_t ext3_find_near(struct inode *inode, Indirect *ind)
  425. {
  426. struct ext3_inode_info *ei = EXT3_I(inode);
  427. __le32 *start = ind->bh ? (__le32*) ind->bh->b_data : ei->i_data;
  428. __le32 *p;
  429. ext3_fsblk_t bg_start;
  430. ext3_grpblk_t colour;
  431. /* Try to find previous block */
  432. for (p = ind->p - 1; p >= start; p--) {
  433. if (*p)
  434. return le32_to_cpu(*p);
  435. }
  436. /* No such thing, so let's try location of indirect block */
  437. if (ind->bh)
  438. return ind->bh->b_blocknr;
  439. /*
  440. * It is going to be referred to from the inode itself? OK, just put it
  441. * into the same cylinder group then.
  442. */
  443. bg_start = ext3_group_first_block_no(inode->i_sb, ei->i_block_group);
  444. colour = (current->pid % 16) *
  445. (EXT3_BLOCKS_PER_GROUP(inode->i_sb) / 16);
  446. return bg_start + colour;
  447. }
  448. /**
  449. * ext3_find_goal - find a preferred place for allocation.
  450. * @inode: owner
  451. * @block: block we want
  452. * @partial: pointer to the last triple within a chain
  453. *
  454. * Normally this function find the preferred place for block allocation,
  455. * returns it.
  456. */
  457. static ext3_fsblk_t ext3_find_goal(struct inode *inode, long block,
  458. Indirect *partial)
  459. {
  460. struct ext3_block_alloc_info *block_i;
  461. block_i = EXT3_I(inode)->i_block_alloc_info;
  462. /*
  463. * try the heuristic for sequential allocation,
  464. * failing that at least try to get decent locality.
  465. */
  466. if (block_i && (block == block_i->last_alloc_logical_block + 1)
  467. && (block_i->last_alloc_physical_block != 0)) {
  468. return block_i->last_alloc_physical_block + 1;
  469. }
  470. return ext3_find_near(inode, partial);
  471. }
  472. /**
  473. * ext3_blks_to_allocate - Look up the block map and count the number
  474. * of direct blocks need to be allocated for the given branch.
  475. *
  476. * @branch: chain of indirect blocks
  477. * @k: number of blocks need for indirect blocks
  478. * @blks: number of data blocks to be mapped.
  479. * @blocks_to_boundary: the offset in the indirect block
  480. *
  481. * return the total number of blocks to be allocate, including the
  482. * direct and indirect blocks.
  483. */
  484. static int ext3_blks_to_allocate(Indirect *branch, int k, unsigned long blks,
  485. int blocks_to_boundary)
  486. {
  487. unsigned long count = 0;
  488. /*
  489. * Simple case, [t,d]Indirect block(s) has not allocated yet
  490. * then it's clear blocks on that path have not allocated
  491. */
  492. if (k > 0) {
  493. /* right now we don't handle cross boundary allocation */
  494. if (blks < blocks_to_boundary + 1)
  495. count += blks;
  496. else
  497. count += blocks_to_boundary + 1;
  498. return count;
  499. }
  500. count++;
  501. while (count < blks && count <= blocks_to_boundary &&
  502. le32_to_cpu(*(branch[0].p + count)) == 0) {
  503. count++;
  504. }
  505. return count;
  506. }
  507. /**
  508. * ext3_alloc_blocks - multiple allocate blocks needed for a branch
  509. * @handle: handle for this transaction
  510. * @inode: owner
  511. * @goal: preferred place for allocation
  512. * @indirect_blks: the number of blocks need to allocate for indirect
  513. * blocks
  514. * @blks: number of blocks need to allocated for direct blocks
  515. * @new_blocks: on return it will store the new block numbers for
  516. * the indirect blocks(if needed) and the first direct block,
  517. * @err: here we store the error value
  518. *
  519. * return the number of direct blocks allocated
  520. */
  521. static int ext3_alloc_blocks(handle_t *handle, struct inode *inode,
  522. ext3_fsblk_t goal, int indirect_blks, int blks,
  523. ext3_fsblk_t new_blocks[4], int *err)
  524. {
  525. int target, i;
  526. unsigned long count = 0;
  527. int index = 0;
  528. ext3_fsblk_t current_block = 0;
  529. int ret = 0;
  530. /*
  531. * Here we try to allocate the requested multiple blocks at once,
  532. * on a best-effort basis.
  533. * To build a branch, we should allocate blocks for
  534. * the indirect blocks(if not allocated yet), and at least
  535. * the first direct block of this branch. That's the
  536. * minimum number of blocks need to allocate(required)
  537. */
  538. target = blks + indirect_blks;
  539. while (1) {
  540. count = target;
  541. /* allocating blocks for indirect blocks and direct blocks */
  542. current_block = ext3_new_blocks(handle,inode,goal,&count,err);
  543. if (*err)
  544. goto failed_out;
  545. target -= count;
  546. /* allocate blocks for indirect blocks */
  547. while (index < indirect_blks && count) {
  548. new_blocks[index++] = current_block++;
  549. count--;
  550. }
  551. if (count > 0)
  552. break;
  553. }
  554. /* save the new block number for the first direct block */
  555. new_blocks[index] = current_block;
  556. /* total number of blocks allocated for direct blocks */
  557. ret = count;
  558. *err = 0;
  559. return ret;
  560. failed_out:
  561. for (i = 0; i <index; i++)
  562. ext3_free_blocks(handle, inode, new_blocks[i], 1);
  563. return ret;
  564. }
  565. /**
  566. * ext3_alloc_branch - allocate and set up a chain of blocks.
  567. * @handle: handle for this transaction
  568. * @inode: owner
  569. * @indirect_blks: number of allocated indirect blocks
  570. * @blks: number of allocated direct blocks
  571. * @goal: preferred place for allocation
  572. * @offsets: offsets (in the blocks) to store the pointers to next.
  573. * @branch: place to store the chain in.
  574. *
  575. * This function allocates blocks, zeroes out all but the last one,
  576. * links them into chain and (if we are synchronous) writes them to disk.
  577. * In other words, it prepares a branch that can be spliced onto the
  578. * inode. It stores the information about that chain in the branch[], in
  579. * the same format as ext3_get_branch() would do. We are calling it after
  580. * we had read the existing part of chain and partial points to the last
  581. * triple of that (one with zero ->key). Upon the exit we have the same
  582. * picture as after the successful ext3_get_block(), except that in one
  583. * place chain is disconnected - *branch->p is still zero (we did not
  584. * set the last link), but branch->key contains the number that should
  585. * be placed into *branch->p to fill that gap.
  586. *
  587. * If allocation fails we free all blocks we've allocated (and forget
  588. * their buffer_heads) and return the error value the from failed
  589. * ext3_alloc_block() (normally -ENOSPC). Otherwise we set the chain
  590. * as described above and return 0.
  591. */
  592. static int ext3_alloc_branch(handle_t *handle, struct inode *inode,
  593. int indirect_blks, int *blks, ext3_fsblk_t goal,
  594. int *offsets, Indirect *branch)
  595. {
  596. int blocksize = inode->i_sb->s_blocksize;
  597. int i, n = 0;
  598. int err = 0;
  599. struct buffer_head *bh;
  600. int num;
  601. ext3_fsblk_t new_blocks[4];
  602. ext3_fsblk_t current_block;
  603. num = ext3_alloc_blocks(handle, inode, goal, indirect_blks,
  604. *blks, new_blocks, &err);
  605. if (err)
  606. return err;
  607. branch[0].key = cpu_to_le32(new_blocks[0]);
  608. /*
  609. * metadata blocks and data blocks are allocated.
  610. */
  611. for (n = 1; n <= indirect_blks; n++) {
  612. /*
  613. * Get buffer_head for parent block, zero it out
  614. * and set the pointer to new one, then send
  615. * parent to disk.
  616. */
  617. bh = sb_getblk(inode->i_sb, new_blocks[n-1]);
  618. if (unlikely(!bh)) {
  619. err = -ENOMEM;
  620. goto failed;
  621. }
  622. branch[n].bh = bh;
  623. lock_buffer(bh);
  624. BUFFER_TRACE(bh, "call get_create_access");
  625. err = ext3_journal_get_create_access(handle, bh);
  626. if (err) {
  627. unlock_buffer(bh);
  628. brelse(bh);
  629. goto failed;
  630. }
  631. memset(bh->b_data, 0, blocksize);
  632. branch[n].p = (__le32 *) bh->b_data + offsets[n];
  633. branch[n].key = cpu_to_le32(new_blocks[n]);
  634. *branch[n].p = branch[n].key;
  635. if ( n == indirect_blks) {
  636. current_block = new_blocks[n];
  637. /*
  638. * End of chain, update the last new metablock of
  639. * the chain to point to the new allocated
  640. * data blocks numbers
  641. */
  642. for (i=1; i < num; i++)
  643. *(branch[n].p + i) = cpu_to_le32(++current_block);
  644. }
  645. BUFFER_TRACE(bh, "marking uptodate");
  646. set_buffer_uptodate(bh);
  647. unlock_buffer(bh);
  648. BUFFER_TRACE(bh, "call ext3_journal_dirty_metadata");
  649. err = ext3_journal_dirty_metadata(handle, bh);
  650. if (err)
  651. goto failed;
  652. }
  653. *blks = num;
  654. return err;
  655. failed:
  656. /* Allocation failed, free what we already allocated */
  657. for (i = 1; i <= n ; i++) {
  658. BUFFER_TRACE(branch[i].bh, "call journal_forget");
  659. ext3_journal_forget(handle, branch[i].bh);
  660. }
  661. for (i = 0; i < indirect_blks; i++)
  662. ext3_free_blocks(handle, inode, new_blocks[i], 1);
  663. ext3_free_blocks(handle, inode, new_blocks[i], num);
  664. return err;
  665. }
  666. /**
  667. * ext3_splice_branch - splice the allocated branch onto inode.
  668. * @handle: handle for this transaction
  669. * @inode: owner
  670. * @block: (logical) number of block we are adding
  671. * @where: location of missing link
  672. * @num: number of indirect blocks we are adding
  673. * @blks: number of direct blocks we are adding
  674. *
  675. * This function fills the missing link and does all housekeeping needed in
  676. * inode (->i_blocks, etc.). In case of success we end up with the full
  677. * chain to new block and return 0.
  678. */
  679. static int ext3_splice_branch(handle_t *handle, struct inode *inode,
  680. long block, Indirect *where, int num, int blks)
  681. {
  682. int i;
  683. int err = 0;
  684. struct ext3_block_alloc_info *block_i;
  685. ext3_fsblk_t current_block;
  686. struct ext3_inode_info *ei = EXT3_I(inode);
  687. struct timespec now;
  688. block_i = ei->i_block_alloc_info;
  689. /*
  690. * If we're splicing into a [td]indirect block (as opposed to the
  691. * inode) then we need to get write access to the [td]indirect block
  692. * before the splice.
  693. */
  694. if (where->bh) {
  695. BUFFER_TRACE(where->bh, "get_write_access");
  696. err = ext3_journal_get_write_access(handle, where->bh);
  697. if (err)
  698. goto err_out;
  699. }
  700. /* That's it */
  701. *where->p = where->key;
  702. /*
  703. * Update the host buffer_head or inode to point to more just allocated
  704. * direct blocks blocks
  705. */
  706. if (num == 0 && blks > 1) {
  707. current_block = le32_to_cpu(where->key) + 1;
  708. for (i = 1; i < blks; i++)
  709. *(where->p + i ) = cpu_to_le32(current_block++);
  710. }
  711. /*
  712. * update the most recently allocated logical & physical block
  713. * in i_block_alloc_info, to assist find the proper goal block for next
  714. * allocation
  715. */
  716. if (block_i) {
  717. block_i->last_alloc_logical_block = block + blks - 1;
  718. block_i->last_alloc_physical_block =
  719. le32_to_cpu(where[num].key) + blks - 1;
  720. }
  721. /* We are done with atomic stuff, now do the rest of housekeeping */
  722. now = CURRENT_TIME_SEC;
  723. if (!timespec_equal(&inode->i_ctime, &now) || !where->bh) {
  724. inode->i_ctime = now;
  725. ext3_mark_inode_dirty(handle, inode);
  726. }
  727. /* ext3_mark_inode_dirty already updated i_sync_tid */
  728. atomic_set(&ei->i_datasync_tid, handle->h_transaction->t_tid);
  729. /* had we spliced it onto indirect block? */
  730. if (where->bh) {
  731. /*
  732. * If we spliced it onto an indirect block, we haven't
  733. * altered the inode. Note however that if it is being spliced
  734. * onto an indirect block at the very end of the file (the
  735. * file is growing) then we *will* alter the inode to reflect
  736. * the new i_size. But that is not done here - it is done in
  737. * generic_commit_write->__mark_inode_dirty->ext3_dirty_inode.
  738. */
  739. jbd_debug(5, "splicing indirect only\n");
  740. BUFFER_TRACE(where->bh, "call ext3_journal_dirty_metadata");
  741. err = ext3_journal_dirty_metadata(handle, where->bh);
  742. if (err)
  743. goto err_out;
  744. } else {
  745. /*
  746. * OK, we spliced it into the inode itself on a direct block.
  747. * Inode was dirtied above.
  748. */
  749. jbd_debug(5, "splicing direct\n");
  750. }
  751. return err;
  752. err_out:
  753. for (i = 1; i <= num; i++) {
  754. BUFFER_TRACE(where[i].bh, "call journal_forget");
  755. ext3_journal_forget(handle, where[i].bh);
  756. ext3_free_blocks(handle,inode,le32_to_cpu(where[i-1].key),1);
  757. }
  758. ext3_free_blocks(handle, inode, le32_to_cpu(where[num].key), blks);
  759. return err;
  760. }
  761. /*
  762. * Allocation strategy is simple: if we have to allocate something, we will
  763. * have to go the whole way to leaf. So let's do it before attaching anything
  764. * to tree, set linkage between the newborn blocks, write them if sync is
  765. * required, recheck the path, free and repeat if check fails, otherwise
  766. * set the last missing link (that will protect us from any truncate-generated
  767. * removals - all blocks on the path are immune now) and possibly force the
  768. * write on the parent block.
  769. * That has a nice additional property: no special recovery from the failed
  770. * allocations is needed - we simply release blocks and do not touch anything
  771. * reachable from inode.
  772. *
  773. * `handle' can be NULL if create == 0.
  774. *
  775. * The BKL may not be held on entry here. Be sure to take it early.
  776. * return > 0, # of blocks mapped or allocated.
  777. * return = 0, if plain lookup failed.
  778. * return < 0, error case.
  779. */
  780. int ext3_get_blocks_handle(handle_t *handle, struct inode *inode,
  781. sector_t iblock, unsigned long maxblocks,
  782. struct buffer_head *bh_result,
  783. int create)
  784. {
  785. int err = -EIO;
  786. int offsets[4];
  787. Indirect chain[4];
  788. Indirect *partial;
  789. ext3_fsblk_t goal;
  790. int indirect_blks;
  791. int blocks_to_boundary = 0;
  792. int depth;
  793. struct ext3_inode_info *ei = EXT3_I(inode);
  794. int count = 0;
  795. ext3_fsblk_t first_block = 0;
  796. trace_ext3_get_blocks_enter(inode, iblock, maxblocks, create);
  797. J_ASSERT(handle != NULL || create == 0);
  798. depth = ext3_block_to_path(inode,iblock,offsets,&blocks_to_boundary);
  799. if (depth == 0)
  800. goto out;
  801. partial = ext3_get_branch(inode, depth, offsets, chain, &err);
  802. /* Simplest case - block found, no allocation needed */
  803. if (!partial) {
  804. first_block = le32_to_cpu(chain[depth - 1].key);
  805. clear_buffer_new(bh_result);
  806. count++;
  807. /*map more blocks*/
  808. while (count < maxblocks && count <= blocks_to_boundary) {
  809. ext3_fsblk_t blk;
  810. if (!verify_chain(chain, chain + depth - 1)) {
  811. /*
  812. * Indirect block might be removed by
  813. * truncate while we were reading it.
  814. * Handling of that case: forget what we've
  815. * got now. Flag the err as EAGAIN, so it
  816. * will reread.
  817. */
  818. err = -EAGAIN;
  819. count = 0;
  820. break;
  821. }
  822. blk = le32_to_cpu(*(chain[depth-1].p + count));
  823. if (blk == first_block + count)
  824. count++;
  825. else
  826. break;
  827. }
  828. if (err != -EAGAIN)
  829. goto got_it;
  830. }
  831. /* Next simple case - plain lookup or failed read of indirect block */
  832. if (!create || err == -EIO)
  833. goto cleanup;
  834. /*
  835. * Block out ext3_truncate while we alter the tree
  836. */
  837. mutex_lock(&ei->truncate_mutex);
  838. /*
  839. * If the indirect block is missing while we are reading
  840. * the chain(ext3_get_branch() returns -EAGAIN err), or
  841. * if the chain has been changed after we grab the semaphore,
  842. * (either because another process truncated this branch, or
  843. * another get_block allocated this branch) re-grab the chain to see if
  844. * the request block has been allocated or not.
  845. *
  846. * Since we already block the truncate/other get_block
  847. * at this point, we will have the current copy of the chain when we
  848. * splice the branch into the tree.
  849. */
  850. if (err == -EAGAIN || !verify_chain(chain, partial)) {
  851. while (partial > chain) {
  852. brelse(partial->bh);
  853. partial--;
  854. }
  855. partial = ext3_get_branch(inode, depth, offsets, chain, &err);
  856. if (!partial) {
  857. count++;
  858. mutex_unlock(&ei->truncate_mutex);
  859. if (err)
  860. goto cleanup;
  861. clear_buffer_new(bh_result);
  862. goto got_it;
  863. }
  864. }
  865. /*
  866. * Okay, we need to do block allocation. Lazily initialize the block
  867. * allocation info here if necessary
  868. */
  869. if (S_ISREG(inode->i_mode) && (!ei->i_block_alloc_info))
  870. ext3_init_block_alloc_info(inode);
  871. goal = ext3_find_goal(inode, iblock, partial);
  872. /* the number of blocks need to allocate for [d,t]indirect blocks */
  873. indirect_blks = (chain + depth) - partial - 1;
  874. /*
  875. * Next look up the indirect map to count the totoal number of
  876. * direct blocks to allocate for this branch.
  877. */
  878. count = ext3_blks_to_allocate(partial, indirect_blks,
  879. maxblocks, blocks_to_boundary);
  880. err = ext3_alloc_branch(handle, inode, indirect_blks, &count, goal,
  881. offsets + (partial - chain), partial);
  882. /*
  883. * The ext3_splice_branch call will free and forget any buffers
  884. * on the new chain if there is a failure, but that risks using
  885. * up transaction credits, especially for bitmaps where the
  886. * credits cannot be returned. Can we handle this somehow? We
  887. * may need to return -EAGAIN upwards in the worst case. --sct
  888. */
  889. if (!err)
  890. err = ext3_splice_branch(handle, inode, iblock,
  891. partial, indirect_blks, count);
  892. mutex_unlock(&ei->truncate_mutex);
  893. if (err)
  894. goto cleanup;
  895. set_buffer_new(bh_result);
  896. got_it:
  897. map_bh(bh_result, inode->i_sb, le32_to_cpu(chain[depth-1].key));
  898. if (count > blocks_to_boundary)
  899. set_buffer_boundary(bh_result);
  900. err = count;
  901. /* Clean up and exit */
  902. partial = chain + depth - 1; /* the whole chain */
  903. cleanup:
  904. while (partial > chain) {
  905. BUFFER_TRACE(partial->bh, "call brelse");
  906. brelse(partial->bh);
  907. partial--;
  908. }
  909. BUFFER_TRACE(bh_result, "returned");
  910. out:
  911. trace_ext3_get_blocks_exit(inode, iblock,
  912. depth ? le32_to_cpu(chain[depth-1].key) : 0,
  913. count, err);
  914. return err;
  915. }
  916. /* Maximum number of blocks we map for direct IO at once. */
  917. #define DIO_MAX_BLOCKS 4096
  918. /*
  919. * Number of credits we need for writing DIO_MAX_BLOCKS:
  920. * We need sb + group descriptor + bitmap + inode -> 4
  921. * For B blocks with A block pointers per block we need:
  922. * 1 (triple ind.) + (B/A/A + 2) (doubly ind.) + (B/A + 2) (indirect).
  923. * If we plug in 4096 for B and 256 for A (for 1KB block size), we get 25.
  924. */
  925. #define DIO_CREDITS 25
  926. static int ext3_get_block(struct inode *inode, sector_t iblock,
  927. struct buffer_head *bh_result, int create)
  928. {
  929. handle_t *handle = ext3_journal_current_handle();
  930. int ret = 0, started = 0;
  931. unsigned max_blocks = bh_result->b_size >> inode->i_blkbits;
  932. if (create && !handle) { /* Direct IO write... */
  933. if (max_blocks > DIO_MAX_BLOCKS)
  934. max_blocks = DIO_MAX_BLOCKS;
  935. handle = ext3_journal_start(inode, DIO_CREDITS +
  936. EXT3_MAXQUOTAS_TRANS_BLOCKS(inode->i_sb));
  937. if (IS_ERR(handle)) {
  938. ret = PTR_ERR(handle);
  939. goto out;
  940. }
  941. started = 1;
  942. }
  943. ret = ext3_get_blocks_handle(handle, inode, iblock,
  944. max_blocks, bh_result, create);
  945. if (ret > 0) {
  946. bh_result->b_size = (ret << inode->i_blkbits);
  947. ret = 0;
  948. }
  949. if (started)
  950. ext3_journal_stop(handle);
  951. out:
  952. return ret;
  953. }
  954. int ext3_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
  955. u64 start, u64 len)
  956. {
  957. return generic_block_fiemap(inode, fieinfo, start, len,
  958. ext3_get_block);
  959. }
  960. /*
  961. * `handle' can be NULL if create is zero
  962. */
  963. struct buffer_head *ext3_getblk(handle_t *handle, struct inode *inode,
  964. long block, int create, int *errp)
  965. {
  966. struct buffer_head dummy;
  967. int fatal = 0, err;
  968. J_ASSERT(handle != NULL || create == 0);
  969. dummy.b_state = 0;
  970. dummy.b_blocknr = -1000;
  971. buffer_trace_init(&dummy.b_history);
  972. err = ext3_get_blocks_handle(handle, inode, block, 1,
  973. &dummy, create);
  974. /*
  975. * ext3_get_blocks_handle() returns number of blocks
  976. * mapped. 0 in case of a HOLE.
  977. */
  978. if (err > 0) {
  979. WARN_ON(err > 1);
  980. err = 0;
  981. }
  982. *errp = err;
  983. if (!err && buffer_mapped(&dummy)) {
  984. struct buffer_head *bh;
  985. bh = sb_getblk(inode->i_sb, dummy.b_blocknr);
  986. if (unlikely(!bh)) {
  987. *errp = -ENOMEM;
  988. goto err;
  989. }
  990. if (buffer_new(&dummy)) {
  991. J_ASSERT(create != 0);
  992. J_ASSERT(handle != NULL);
  993. /*
  994. * Now that we do not always journal data, we should
  995. * keep in mind whether this should always journal the
  996. * new buffer as metadata. For now, regular file
  997. * writes use ext3_get_block instead, so it's not a
  998. * problem.
  999. */
  1000. lock_buffer(bh);
  1001. BUFFER_TRACE(bh, "call get_create_access");
  1002. fatal = ext3_journal_get_create_access(handle, bh);
  1003. if (!fatal && !buffer_uptodate(bh)) {
  1004. memset(bh->b_data,0,inode->i_sb->s_blocksize);
  1005. set_buffer_uptodate(bh);
  1006. }
  1007. unlock_buffer(bh);
  1008. BUFFER_TRACE(bh, "call ext3_journal_dirty_metadata");
  1009. err = ext3_journal_dirty_metadata(handle, bh);
  1010. if (!fatal)
  1011. fatal = err;
  1012. } else {
  1013. BUFFER_TRACE(bh, "not a new buffer");
  1014. }
  1015. if (fatal) {
  1016. *errp = fatal;
  1017. brelse(bh);
  1018. bh = NULL;
  1019. }
  1020. return bh;
  1021. }
  1022. err:
  1023. return NULL;
  1024. }
  1025. struct buffer_head *ext3_bread(handle_t *handle, struct inode *inode,
  1026. int block, int create, int *err)
  1027. {
  1028. struct buffer_head * bh;
  1029. bh = ext3_getblk(handle, inode, block, create, err);
  1030. if (!bh)
  1031. return bh;
  1032. if (bh_uptodate_or_lock(bh))
  1033. return bh;
  1034. get_bh(bh);
  1035. bh->b_end_io = end_buffer_read_sync;
  1036. submit_bh(READ | REQ_META | REQ_PRIO, bh);
  1037. wait_on_buffer(bh);
  1038. if (buffer_uptodate(bh))
  1039. return bh;
  1040. put_bh(bh);
  1041. *err = -EIO;
  1042. return NULL;
  1043. }
  1044. static int walk_page_buffers( handle_t *handle,
  1045. struct buffer_head *head,
  1046. unsigned from,
  1047. unsigned to,
  1048. int *partial,
  1049. int (*fn)( handle_t *handle,
  1050. struct buffer_head *bh))
  1051. {
  1052. struct buffer_head *bh;
  1053. unsigned block_start, block_end;
  1054. unsigned blocksize = head->b_size;
  1055. int err, ret = 0;
  1056. struct buffer_head *next;
  1057. for ( bh = head, block_start = 0;
  1058. ret == 0 && (bh != head || !block_start);
  1059. block_start = block_end, bh = next)
  1060. {
  1061. next = bh->b_this_page;
  1062. block_end = block_start + blocksize;
  1063. if (block_end <= from || block_start >= to) {
  1064. if (partial && !buffer_uptodate(bh))
  1065. *partial = 1;
  1066. continue;
  1067. }
  1068. err = (*fn)(handle, bh);
  1069. if (!ret)
  1070. ret = err;
  1071. }
  1072. return ret;
  1073. }
  1074. /*
  1075. * To preserve ordering, it is essential that the hole instantiation and
  1076. * the data write be encapsulated in a single transaction. We cannot
  1077. * close off a transaction and start a new one between the ext3_get_block()
  1078. * and the commit_write(). So doing the journal_start at the start of
  1079. * prepare_write() is the right place.
  1080. *
  1081. * Also, this function can nest inside ext3_writepage() ->
  1082. * block_write_full_page(). In that case, we *know* that ext3_writepage()
  1083. * has generated enough buffer credits to do the whole page. So we won't
  1084. * block on the journal in that case, which is good, because the caller may
  1085. * be PF_MEMALLOC.
  1086. *
  1087. * By accident, ext3 can be reentered when a transaction is open via
  1088. * quota file writes. If we were to commit the transaction while thus
  1089. * reentered, there can be a deadlock - we would be holding a quota
  1090. * lock, and the commit would never complete if another thread had a
  1091. * transaction open and was blocking on the quota lock - a ranking
  1092. * violation.
  1093. *
  1094. * So what we do is to rely on the fact that journal_stop/journal_start
  1095. * will _not_ run commit under these circumstances because handle->h_ref
  1096. * is elevated. We'll still have enough credits for the tiny quotafile
  1097. * write.
  1098. */
  1099. static int do_journal_get_write_access(handle_t *handle,
  1100. struct buffer_head *bh)
  1101. {
  1102. int dirty = buffer_dirty(bh);
  1103. int ret;
  1104. if (!buffer_mapped(bh) || buffer_freed(bh))
  1105. return 0;
  1106. /*
  1107. * __block_prepare_write() could have dirtied some buffers. Clean
  1108. * the dirty bit as jbd2_journal_get_write_access() could complain
  1109. * otherwise about fs integrity issues. Setting of the dirty bit
  1110. * by __block_prepare_write() isn't a real problem here as we clear
  1111. * the bit before releasing a page lock and thus writeback cannot
  1112. * ever write the buffer.
  1113. */
  1114. if (dirty)
  1115. clear_buffer_dirty(bh);
  1116. ret = ext3_journal_get_write_access(handle, bh);
  1117. if (!ret && dirty)
  1118. ret = ext3_journal_dirty_metadata(handle, bh);
  1119. return ret;
  1120. }
  1121. /*
  1122. * Truncate blocks that were not used by write. We have to truncate the
  1123. * pagecache as well so that corresponding buffers get properly unmapped.
  1124. */
  1125. static void ext3_truncate_failed_write(struct inode *inode)
  1126. {
  1127. truncate_inode_pages(inode->i_mapping, inode->i_size);
  1128. ext3_truncate(inode);
  1129. }
  1130. /*
  1131. * Truncate blocks that were not used by direct IO write. We have to zero out
  1132. * the last file block as well because direct IO might have written to it.
  1133. */
  1134. static void ext3_truncate_failed_direct_write(struct inode *inode)
  1135. {
  1136. ext3_block_truncate_page(inode, inode->i_size);
  1137. ext3_truncate(inode);
  1138. }
  1139. static int ext3_write_begin(struct file *file, struct address_space *mapping,
  1140. loff_t pos, unsigned len, unsigned flags,
  1141. struct page **pagep, void **fsdata)
  1142. {
  1143. struct inode *inode = mapping->host;
  1144. int ret;
  1145. handle_t *handle;
  1146. int retries = 0;
  1147. struct page *page;
  1148. pgoff_t index;
  1149. unsigned from, to;
  1150. /* Reserve one block more for addition to orphan list in case
  1151. * we allocate blocks but write fails for some reason */
  1152. int needed_blocks = ext3_writepage_trans_blocks(inode) + 1;
  1153. trace_ext3_write_begin(inode, pos, len, flags);
  1154. index = pos >> PAGE_CACHE_SHIFT;
  1155. from = pos & (PAGE_CACHE_SIZE - 1);
  1156. to = from + len;
  1157. retry:
  1158. page = grab_cache_page_write_begin(mapping, index, flags);
  1159. if (!page)
  1160. return -ENOMEM;
  1161. *pagep = page;
  1162. handle = ext3_journal_start(inode, needed_blocks);
  1163. if (IS_ERR(handle)) {
  1164. unlock_page(page);
  1165. page_cache_release(page);
  1166. ret = PTR_ERR(handle);
  1167. goto out;
  1168. }
  1169. ret = __block_write_begin(page, pos, len, ext3_get_block);
  1170. if (ret)
  1171. goto write_begin_failed;
  1172. if (ext3_should_journal_data(inode)) {
  1173. ret = walk_page_buffers(handle, page_buffers(page),
  1174. from, to, NULL, do_journal_get_write_access);
  1175. }
  1176. write_begin_failed:
  1177. if (ret) {
  1178. /*
  1179. * block_write_begin may have instantiated a few blocks
  1180. * outside i_size. Trim these off again. Don't need
  1181. * i_size_read because we hold i_mutex.
  1182. *
  1183. * Add inode to orphan list in case we crash before truncate
  1184. * finishes. Do this only if ext3_can_truncate() agrees so
  1185. * that orphan processing code is happy.
  1186. */
  1187. if (pos + len > inode->i_size && ext3_can_truncate(inode))
  1188. ext3_orphan_add(handle, inode);
  1189. ext3_journal_stop(handle);
  1190. unlock_page(page);
  1191. page_cache_release(page);
  1192. if (pos + len > inode->i_size)
  1193. ext3_truncate_failed_write(inode);
  1194. }
  1195. if (ret == -ENOSPC && ext3_should_retry_alloc(inode->i_sb, &retries))
  1196. goto retry;
  1197. out:
  1198. return ret;
  1199. }
  1200. int ext3_journal_dirty_data(handle_t *handle, struct buffer_head *bh)
  1201. {
  1202. int err = journal_dirty_data(handle, bh);
  1203. if (err)
  1204. ext3_journal_abort_handle(__func__, __func__,
  1205. bh, handle, err);
  1206. return err;
  1207. }
  1208. /* For ordered writepage and write_end functions */
  1209. static int journal_dirty_data_fn(handle_t *handle, struct buffer_head *bh)
  1210. {
  1211. /*
  1212. * Write could have mapped the buffer but it didn't copy the data in
  1213. * yet. So avoid filing such buffer into a transaction.
  1214. */
  1215. if (buffer_mapped(bh) && buffer_uptodate(bh))
  1216. return ext3_journal_dirty_data(handle, bh);
  1217. return 0;
  1218. }
  1219. /* For write_end() in data=journal mode */
  1220. static int write_end_fn(handle_t *handle, struct buffer_head *bh)
  1221. {
  1222. if (!buffer_mapped(bh) || buffer_freed(bh))
  1223. return 0;
  1224. set_buffer_uptodate(bh);
  1225. return ext3_journal_dirty_metadata(handle, bh);
  1226. }
  1227. /*
  1228. * This is nasty and subtle: ext3_write_begin() could have allocated blocks
  1229. * for the whole page but later we failed to copy the data in. Update inode
  1230. * size according to what we managed to copy. The rest is going to be
  1231. * truncated in write_end function.
  1232. */
  1233. static void update_file_sizes(struct inode *inode, loff_t pos, unsigned copied)
  1234. {
  1235. /* What matters to us is i_disksize. We don't write i_size anywhere */
  1236. if (pos + copied > inode->i_size)
  1237. i_size_write(inode, pos + copied);
  1238. if (pos + copied > EXT3_I(inode)->i_disksize) {
  1239. EXT3_I(inode)->i_disksize = pos + copied;
  1240. mark_inode_dirty(inode);
  1241. }
  1242. }
  1243. /*
  1244. * We need to pick up the new inode size which generic_commit_write gave us
  1245. * `file' can be NULL - eg, when called from page_symlink().
  1246. *
  1247. * ext3 never places buffers on inode->i_mapping->private_list. metadata
  1248. * buffers are managed internally.
  1249. */
  1250. static int ext3_ordered_write_end(struct file *file,
  1251. struct address_space *mapping,
  1252. loff_t pos, unsigned len, unsigned copied,
  1253. struct page *page, void *fsdata)
  1254. {
  1255. handle_t *handle = ext3_journal_current_handle();
  1256. struct inode *inode = file->f_mapping->host;
  1257. unsigned from, to;
  1258. int ret = 0, ret2;
  1259. trace_ext3_ordered_write_end(inode, pos, len, copied);
  1260. copied = block_write_end(file, mapping, pos, len, copied, page, fsdata);
  1261. from = pos & (PAGE_CACHE_SIZE - 1);
  1262. to = from + copied;
  1263. ret = walk_page_buffers(handle, page_buffers(page),
  1264. from, to, NULL, journal_dirty_data_fn);
  1265. if (ret == 0)
  1266. update_file_sizes(inode, pos, copied);
  1267. /*
  1268. * There may be allocated blocks outside of i_size because
  1269. * we failed to copy some data. Prepare for truncate.
  1270. */
  1271. if (pos + len > inode->i_size && ext3_can_truncate(inode))
  1272. ext3_orphan_add(handle, inode);
  1273. ret2 = ext3_journal_stop(handle);
  1274. if (!ret)
  1275. ret = ret2;
  1276. unlock_page(page);
  1277. page_cache_release(page);
  1278. if (pos + len > inode->i_size)
  1279. ext3_truncate_failed_write(inode);
  1280. return ret ? ret : copied;
  1281. }
  1282. static int ext3_writeback_write_end(struct file *file,
  1283. struct address_space *mapping,
  1284. loff_t pos, unsigned len, unsigned copied,
  1285. struct page *page, void *fsdata)
  1286. {
  1287. handle_t *handle = ext3_journal_current_handle();
  1288. struct inode *inode = file->f_mapping->host;
  1289. int ret;
  1290. trace_ext3_writeback_write_end(inode, pos, len, copied);
  1291. copied = block_write_end(file, mapping, pos, len, copied, page, fsdata);
  1292. update_file_sizes(inode, pos, copied);
  1293. /*
  1294. * There may be allocated blocks outside of i_size because
  1295. * we failed to copy some data. Prepare for truncate.
  1296. */
  1297. if (pos + len > inode->i_size && ext3_can_truncate(inode))
  1298. ext3_orphan_add(handle, inode);
  1299. ret = ext3_journal_stop(handle);
  1300. unlock_page(page);
  1301. page_cache_release(page);
  1302. if (pos + len > inode->i_size)
  1303. ext3_truncate_failed_write(inode);
  1304. return ret ? ret : copied;
  1305. }
  1306. static int ext3_journalled_write_end(struct file *file,
  1307. struct address_space *mapping,
  1308. loff_t pos, unsigned len, unsigned copied,
  1309. struct page *page, void *fsdata)
  1310. {
  1311. handle_t *handle = ext3_journal_current_handle();
  1312. struct inode *inode = mapping->host;
  1313. struct ext3_inode_info *ei = EXT3_I(inode);
  1314. int ret = 0, ret2;
  1315. int partial = 0;
  1316. unsigned from, to;
  1317. trace_ext3_journalled_write_end(inode, pos, len, copied);
  1318. from = pos & (PAGE_CACHE_SIZE - 1);
  1319. to = from + len;
  1320. if (copied < len) {
  1321. if (!PageUptodate(page))
  1322. copied = 0;
  1323. page_zero_new_buffers(page, from + copied, to);
  1324. to = from + copied;
  1325. }
  1326. ret = walk_page_buffers(handle, page_buffers(page), from,
  1327. to, &partial, write_end_fn);
  1328. if (!partial)
  1329. SetPageUptodate(page);
  1330. if (pos + copied > inode->i_size)
  1331. i_size_write(inode, pos + copied);
  1332. /*
  1333. * There may be allocated blocks outside of i_size because
  1334. * we failed to copy some data. Prepare for truncate.
  1335. */
  1336. if (pos + len > inode->i_size && ext3_can_truncate(inode))
  1337. ext3_orphan_add(handle, inode);
  1338. ext3_set_inode_state(inode, EXT3_STATE_JDATA);
  1339. atomic_set(&ei->i_datasync_tid, handle->h_transaction->t_tid);
  1340. if (inode->i_size > ei->i_disksize) {
  1341. ei->i_disksize = inode->i_size;
  1342. ret2 = ext3_mark_inode_dirty(handle, inode);
  1343. if (!ret)
  1344. ret = ret2;
  1345. }
  1346. ret2 = ext3_journal_stop(handle);
  1347. if (!ret)
  1348. ret = ret2;
  1349. unlock_page(page);
  1350. page_cache_release(page);
  1351. if (pos + len > inode->i_size)
  1352. ext3_truncate_failed_write(inode);
  1353. return ret ? ret : copied;
  1354. }
  1355. /*
  1356. * bmap() is special. It gets used by applications such as lilo and by
  1357. * the swapper to find the on-disk block of a specific piece of data.
  1358. *
  1359. * Naturally, this is dangerous if the block concerned is still in the
  1360. * journal. If somebody makes a swapfile on an ext3 data-journaling
  1361. * filesystem and enables swap, then they may get a nasty shock when the
  1362. * data getting swapped to that swapfile suddenly gets overwritten by
  1363. * the original zero's written out previously to the journal and
  1364. * awaiting writeback in the kernel's buffer cache.
  1365. *
  1366. * So, if we see any bmap calls here on a modified, data-journaled file,
  1367. * take extra steps to flush any blocks which might be in the cache.
  1368. */
  1369. static sector_t ext3_bmap(struct address_space *mapping, sector_t block)
  1370. {
  1371. struct inode *inode = mapping->host;
  1372. journal_t *journal;
  1373. int err;
  1374. if (ext3_test_inode_state(inode, EXT3_STATE_JDATA)) {
  1375. /*
  1376. * This is a REALLY heavyweight approach, but the use of
  1377. * bmap on dirty files is expected to be extremely rare:
  1378. * only if we run lilo or swapon on a freshly made file
  1379. * do we expect this to happen.
  1380. *
  1381. * (bmap requires CAP_SYS_RAWIO so this does not
  1382. * represent an unprivileged user DOS attack --- we'd be
  1383. * in trouble if mortal users could trigger this path at
  1384. * will.)
  1385. *
  1386. * NB. EXT3_STATE_JDATA is not set on files other than
  1387. * regular files. If somebody wants to bmap a directory
  1388. * or symlink and gets confused because the buffer
  1389. * hasn't yet been flushed to disk, they deserve
  1390. * everything they get.
  1391. */
  1392. ext3_clear_inode_state(inode, EXT3_STATE_JDATA);
  1393. journal = EXT3_JOURNAL(inode);
  1394. journal_lock_updates(journal);
  1395. err = journal_flush(journal);
  1396. journal_unlock_updates(journal);
  1397. if (err)
  1398. return 0;
  1399. }
  1400. return generic_block_bmap(mapping,block,ext3_get_block);
  1401. }
  1402. static int bget_one(handle_t *handle, struct buffer_head *bh)
  1403. {
  1404. get_bh(bh);
  1405. return 0;
  1406. }
  1407. static int bput_one(handle_t *handle, struct buffer_head *bh)
  1408. {
  1409. put_bh(bh);
  1410. return 0;
  1411. }
  1412. static int buffer_unmapped(handle_t *handle, struct buffer_head *bh)
  1413. {
  1414. return !buffer_mapped(bh);
  1415. }
  1416. /*
  1417. * Note that we always start a transaction even if we're not journalling
  1418. * data. This is to preserve ordering: any hole instantiation within
  1419. * __block_write_full_page -> ext3_get_block() should be journalled
  1420. * along with the data so we don't crash and then get metadata which
  1421. * refers to old data.
  1422. *
  1423. * In all journalling modes block_write_full_page() will start the I/O.
  1424. *
  1425. * Problem:
  1426. *
  1427. * ext3_writepage() -> kmalloc() -> __alloc_pages() -> page_launder() ->
  1428. * ext3_writepage()
  1429. *
  1430. * Similar for:
  1431. *
  1432. * ext3_file_write() -> generic_file_write() -> __alloc_pages() -> ...
  1433. *
  1434. * Same applies to ext3_get_block(). We will deadlock on various things like
  1435. * lock_journal and i_truncate_mutex.
  1436. *
  1437. * Setting PF_MEMALLOC here doesn't work - too many internal memory
  1438. * allocations fail.
  1439. *
  1440. * 16May01: If we're reentered then journal_current_handle() will be
  1441. * non-zero. We simply *return*.
  1442. *
  1443. * 1 July 2001: @@@ FIXME:
  1444. * In journalled data mode, a data buffer may be metadata against the
  1445. * current transaction. But the same file is part of a shared mapping
  1446. * and someone does a writepage() on it.
  1447. *
  1448. * We will move the buffer onto the async_data list, but *after* it has
  1449. * been dirtied. So there's a small window where we have dirty data on
  1450. * BJ_Metadata.
  1451. *
  1452. * Note that this only applies to the last partial page in the file. The
  1453. * bit which block_write_full_page() uses prepare/commit for. (That's
  1454. * broken code anyway: it's wrong for msync()).
  1455. *
  1456. * It's a rare case: affects the final partial page, for journalled data
  1457. * where the file is subject to bith write() and writepage() in the same
  1458. * transction. To fix it we'll need a custom block_write_full_page().
  1459. * We'll probably need that anyway for journalling writepage() output.
  1460. *
  1461. * We don't honour synchronous mounts for writepage(). That would be
  1462. * disastrous. Any write() or metadata operation will sync the fs for
  1463. * us.
  1464. *
  1465. * AKPM2: if all the page's buffers are mapped to disk and !data=journal,
  1466. * we don't need to open a transaction here.
  1467. */
  1468. static int ext3_ordered_writepage(struct page *page,
  1469. struct writeback_control *wbc)
  1470. {
  1471. struct inode *inode = page->mapping->host;
  1472. struct buffer_head *page_bufs;
  1473. handle_t *handle = NULL;
  1474. int ret = 0;
  1475. int err;
  1476. J_ASSERT(PageLocked(page));
  1477. /*
  1478. * We don't want to warn for emergency remount. The condition is
  1479. * ordered to avoid dereferencing inode->i_sb in non-error case to
  1480. * avoid slow-downs.
  1481. */
  1482. WARN_ON_ONCE(IS_RDONLY(inode) &&
  1483. !(EXT3_SB(inode->i_sb)->s_mount_state & EXT3_ERROR_FS));
  1484. /*
  1485. * We give up here if we're reentered, because it might be for a
  1486. * different filesystem.
  1487. */
  1488. if (ext3_journal_current_handle())
  1489. goto out_fail;
  1490. trace_ext3_ordered_writepage(page);
  1491. if (!page_has_buffers(page)) {
  1492. create_empty_buffers(page, inode->i_sb->s_blocksize,
  1493. (1 << BH_Dirty)|(1 << BH_Uptodate));
  1494. page_bufs = page_buffers(page);
  1495. } else {
  1496. page_bufs = page_buffers(page);
  1497. if (!walk_page_buffers(NULL, page_bufs, 0, PAGE_CACHE_SIZE,
  1498. NULL, buffer_unmapped)) {
  1499. /* Provide NULL get_block() to catch bugs if buffers
  1500. * weren't really mapped */
  1501. return block_write_full_page(page, NULL, wbc);
  1502. }
  1503. }
  1504. handle = ext3_journal_start(inode, ext3_writepage_trans_blocks(inode));
  1505. if (IS_ERR(handle)) {
  1506. ret = PTR_ERR(handle);
  1507. goto out_fail;
  1508. }
  1509. walk_page_buffers(handle, page_bufs, 0,
  1510. PAGE_CACHE_SIZE, NULL, bget_one);
  1511. ret = block_write_full_page(page, ext3_get_block, wbc);
  1512. /*
  1513. * The page can become unlocked at any point now, and
  1514. * truncate can then come in and change things. So we
  1515. * can't touch *page from now on. But *page_bufs is
  1516. * safe due to elevated refcount.
  1517. */
  1518. /*
  1519. * And attach them to the current transaction. But only if
  1520. * block_write_full_page() succeeded. Otherwise they are unmapped,
  1521. * and generally junk.
  1522. */
  1523. if (ret == 0) {
  1524. err = walk_page_buffers(handle, page_bufs, 0, PAGE_CACHE_SIZE,
  1525. NULL, journal_dirty_data_fn);
  1526. if (!ret)
  1527. ret = err;
  1528. }
  1529. walk_page_buffers(handle, page_bufs, 0,
  1530. PAGE_CACHE_SIZE, NULL, bput_one);
  1531. err = ext3_journal_stop(handle);
  1532. if (!ret)
  1533. ret = err;
  1534. return ret;
  1535. out_fail:
  1536. redirty_page_for_writepage(wbc, page);
  1537. unlock_page(page);
  1538. return ret;
  1539. }
  1540. static int ext3_writeback_writepage(struct page *page,
  1541. struct writeback_control *wbc)
  1542. {
  1543. struct inode *inode = page->mapping->host;
  1544. handle_t *handle = NULL;
  1545. int ret = 0;
  1546. int err;
  1547. J_ASSERT(PageLocked(page));
  1548. /*
  1549. * We don't want to warn for emergency remount. The condition is
  1550. * ordered to avoid dereferencing inode->i_sb in non-error case to
  1551. * avoid slow-downs.
  1552. */
  1553. WARN_ON_ONCE(IS_RDONLY(inode) &&
  1554. !(EXT3_SB(inode->i_sb)->s_mount_state & EXT3_ERROR_FS));
  1555. if (ext3_journal_current_handle())
  1556. goto out_fail;
  1557. trace_ext3_writeback_writepage(page);
  1558. if (page_has_buffers(page)) {
  1559. if (!walk_page_buffers(NULL, page_buffers(page), 0,
  1560. PAGE_CACHE_SIZE, NULL, buffer_unmapped)) {
  1561. /* Provide NULL get_block() to catch bugs if buffers
  1562. * weren't really mapped */
  1563. return block_write_full_page(page, NULL, wbc);
  1564. }
  1565. }
  1566. handle = ext3_journal_start(inode, ext3_writepage_trans_blocks(inode));
  1567. if (IS_ERR(handle)) {
  1568. ret = PTR_ERR(handle);
  1569. goto out_fail;
  1570. }
  1571. ret = block_write_full_page(page, ext3_get_block, wbc);
  1572. err = ext3_journal_stop(handle);
  1573. if (!ret)
  1574. ret = err;
  1575. return ret;
  1576. out_fail:
  1577. redirty_page_for_writepage(wbc, page);
  1578. unlock_page(page);
  1579. return ret;
  1580. }
  1581. static int ext3_journalled_writepage(struct page *page,
  1582. struct writeback_control *wbc)
  1583. {
  1584. struct inode *inode = page->mapping->host;
  1585. handle_t *handle = NULL;
  1586. int ret = 0;
  1587. int err;
  1588. J_ASSERT(PageLocked(page));
  1589. /*
  1590. * We don't want to warn for emergency remount. The condition is
  1591. * ordered to avoid dereferencing inode->i_sb in non-error case to
  1592. * avoid slow-downs.
  1593. */
  1594. WARN_ON_ONCE(IS_RDONLY(inode) &&
  1595. !(EXT3_SB(inode->i_sb)->s_mount_state & EXT3_ERROR_FS));
  1596. if (ext3_journal_current_handle())
  1597. goto no_write;
  1598. trace_ext3_journalled_writepage(page);
  1599. handle = ext3_journal_start(inode, ext3_writepage_trans_blocks(inode));
  1600. if (IS_ERR(handle)) {
  1601. ret = PTR_ERR(handle);
  1602. goto no_write;
  1603. }
  1604. if (!page_has_buffers(page) || PageChecked(page)) {
  1605. /*
  1606. * It's mmapped pagecache. Add buffers and journal it. There
  1607. * doesn't seem much point in redirtying the page here.
  1608. */
  1609. ClearPageChecked(page);
  1610. ret = __block_write_begin(page, 0, PAGE_CACHE_SIZE,
  1611. ext3_get_block);
  1612. if (ret != 0) {
  1613. ext3_journal_stop(handle);
  1614. goto out_unlock;
  1615. }
  1616. ret = walk_page_buffers(handle, page_buffers(page), 0,
  1617. PAGE_CACHE_SIZE, NULL, do_journal_get_write_access);
  1618. err = walk_page_buffers(handle, page_buffers(page), 0,
  1619. PAGE_CACHE_SIZE, NULL, write_end_fn);
  1620. if (ret == 0)
  1621. ret = err;
  1622. ext3_set_inode_state(inode, EXT3_STATE_JDATA);
  1623. atomic_set(&EXT3_I(inode)->i_datasync_tid,
  1624. handle->h_transaction->t_tid);
  1625. unlock_page(page);
  1626. } else {
  1627. /*
  1628. * It may be a page full of checkpoint-mode buffers. We don't
  1629. * really know unless we go poke around in the buffer_heads.
  1630. * But block_write_full_page will do the right thing.
  1631. */
  1632. ret = block_write_full_page(page, ext3_get_block, wbc);
  1633. }
  1634. err = ext3_journal_stop(handle);
  1635. if (!ret)
  1636. ret = err;
  1637. out:
  1638. return ret;
  1639. no_write:
  1640. redirty_page_for_writepage(wbc, page);
  1641. out_unlock:
  1642. unlock_page(page);
  1643. goto out;
  1644. }
  1645. static int ext3_readpage(struct file *file, struct page *page)
  1646. {
  1647. trace_ext3_readpage(page);
  1648. return mpage_readpage(page, ext3_get_block);
  1649. }
  1650. static int
  1651. ext3_readpages(struct file *file, struct address_space *mapping,
  1652. struct list_head *pages, unsigned nr_pages)
  1653. {
  1654. return mpage_readpages(mapping, pages, nr_pages, ext3_get_block);
  1655. }
  1656. static void ext3_invalidatepage(struct page *page, unsigned long offset)
  1657. {
  1658. journal_t *journal = EXT3_JOURNAL(page->mapping->host);
  1659. trace_ext3_invalidatepage(page, offset);
  1660. /*
  1661. * If it's a full truncate we just forget about the pending dirtying
  1662. */
  1663. if (offset == 0)
  1664. ClearPageChecked(page);
  1665. journal_invalidatepage(journal, page, offset);
  1666. }
  1667. static int ext3_releasepage(struct page *page, gfp_t wait)
  1668. {
  1669. journal_t *journal = EXT3_JOURNAL(page->mapping->host);
  1670. trace_ext3_releasepage(page);
  1671. WARN_ON(PageChecked(page));
  1672. if (!page_has_buffers(page))
  1673. return 0;
  1674. return journal_try_to_free_buffers(journal, page, wait);
  1675. }
  1676. /*
  1677. * If the O_DIRECT write will extend the file then add this inode to the
  1678. * orphan list. So recovery will truncate it back to the original size
  1679. * if the machine crashes during the write.
  1680. *
  1681. * If the O_DIRECT write is intantiating holes inside i_size and the machine
  1682. * crashes then stale disk data _may_ be exposed inside the file. But current
  1683. * VFS code falls back into buffered path in that case so we are safe.
  1684. */
  1685. static ssize_t ext3_direct_IO(int rw, struct kiocb *iocb,
  1686. const struct iovec *iov, loff_t offset,
  1687. unsigned long nr_segs)
  1688. {
  1689. struct file *file = iocb->ki_filp;
  1690. struct inode *inode = file->f_mapping->host;
  1691. struct ext3_inode_info *ei = EXT3_I(inode);
  1692. handle_t *handle;
  1693. ssize_t ret;
  1694. int orphan = 0;
  1695. size_t count = iov_length(iov, nr_segs);
  1696. int retries = 0;
  1697. trace_ext3_direct_IO_enter(inode, offset, iov_length(iov, nr_segs), rw);
  1698. if (rw == WRITE) {
  1699. loff_t final_size = offset + count;
  1700. if (final_size > inode->i_size) {
  1701. /* Credits for sb + inode write */
  1702. handle = ext3_journal_start(inode, 2);
  1703. if (IS_ERR(handle)) {
  1704. ret = PTR_ERR(handle);
  1705. goto out;
  1706. }
  1707. ret = ext3_orphan_add(handle, inode);
  1708. if (ret) {
  1709. ext3_journal_stop(handle);
  1710. goto out;
  1711. }
  1712. orphan = 1;
  1713. ei->i_disksize = inode->i_size;
  1714. ext3_journal_stop(handle);
  1715. }
  1716. }
  1717. retry:
  1718. ret = blockdev_direct_IO(rw, iocb, inode, iov, offset, nr_segs,
  1719. ext3_get_block);
  1720. /*
  1721. * In case of error extending write may have instantiated a few
  1722. * blocks outside i_size. Trim these off again.
  1723. */
  1724. if (unlikely((rw & WRITE) && ret < 0)) {
  1725. loff_t isize = i_size_read(inode);
  1726. loff_t end = offset + iov_length(iov, nr_segs);
  1727. if (end > isize)
  1728. ext3_truncate_failed_direct_write(inode);
  1729. }
  1730. if (ret == -ENOSPC && ext3_should_retry_alloc(inode->i_sb, &retries))
  1731. goto retry;
  1732. if (orphan) {
  1733. int err;
  1734. /* Credits for sb + inode write */
  1735. handle = ext3_journal_start(inode, 2);
  1736. if (IS_ERR(handle)) {
  1737. /* This is really bad luck. We've written the data
  1738. * but cannot extend i_size. Truncate allocated blocks
  1739. * and pretend the write failed... */
  1740. ext3_truncate_failed_direct_write(inode);
  1741. ret = PTR_ERR(handle);
  1742. goto out;
  1743. }
  1744. if (inode->i_nlink)
  1745. ext3_orphan_del(handle, inode);
  1746. if (ret > 0) {
  1747. loff_t end = offset + ret;
  1748. if (end > inode->i_size) {
  1749. ei->i_disksize = end;
  1750. i_size_write(inode, end);
  1751. /*
  1752. * We're going to return a positive `ret'
  1753. * here due to non-zero-length I/O, so there's
  1754. * no way of reporting error returns from
  1755. * ext3_mark_inode_dirty() to userspace. So
  1756. * ignore it.
  1757. */
  1758. ext3_mark_inode_dirty(handle, inode);
  1759. }
  1760. }
  1761. err = ext3_journal_stop(handle);
  1762. if (ret == 0)
  1763. ret = err;
  1764. }
  1765. out:
  1766. trace_ext3_direct_IO_exit(inode, offset,
  1767. iov_length(iov, nr_segs), rw, ret);
  1768. return ret;
  1769. }
  1770. /*
  1771. * Pages can be marked dirty completely asynchronously from ext3's journalling
  1772. * activity. By filemap_sync_pte(), try_to_unmap_one(), etc. We cannot do
  1773. * much here because ->set_page_dirty is called under VFS locks. The page is
  1774. * not necessarily locked.
  1775. *
  1776. * We cannot just dirty the page and leave attached buffers clean, because the
  1777. * buffers' dirty state is "definitive". We cannot just set the buffers dirty
  1778. * or jbddirty because all the journalling code will explode.
  1779. *
  1780. * So what we do is to mark the page "pending dirty" and next time writepage
  1781. * is called, propagate that into the buffers appropriately.
  1782. */
  1783. static int ext3_journalled_set_page_dirty(struct page *page)
  1784. {
  1785. SetPageChecked(page);
  1786. return __set_page_dirty_nobuffers(page);
  1787. }
  1788. static const struct address_space_operations ext3_ordered_aops = {
  1789. .readpage = ext3_readpage,
  1790. .readpages = ext3_readpages,
  1791. .writepage = ext3_ordered_writepage,
  1792. .write_begin = ext3_write_begin,
  1793. .write_end = ext3_ordered_write_end,
  1794. .bmap = ext3_bmap,
  1795. .invalidatepage = ext3_invalidatepage,
  1796. .releasepage = ext3_releasepage,
  1797. .direct_IO = ext3_direct_IO,
  1798. .migratepage = buffer_migrate_page,
  1799. .is_partially_uptodate = block_is_partially_uptodate,
  1800. .error_remove_page = generic_error_remove_page,
  1801. };
  1802. static const struct address_space_operations ext3_writeback_aops = {
  1803. .readpage = ext3_readpage,
  1804. .readpages = ext3_readpages,
  1805. .writepage = ext3_writeback_writepage,
  1806. .write_begin = ext3_write_begin,
  1807. .write_end = ext3_writeback_write_end,
  1808. .bmap = ext3_bmap,
  1809. .invalidatepage = ext3_invalidatepage,
  1810. .releasepage = ext3_releasepage,
  1811. .direct_IO = ext3_direct_IO,
  1812. .migratepage = buffer_migrate_page,
  1813. .is_partially_uptodate = block_is_partially_uptodate,
  1814. .error_remove_page = generic_error_remove_page,
  1815. };
  1816. static const struct address_space_operations ext3_journalled_aops = {
  1817. .readpage = ext3_readpage,
  1818. .readpages = ext3_readpages,
  1819. .writepage = ext3_journalled_writepage,
  1820. .write_begin = ext3_write_begin,
  1821. .write_end = ext3_journalled_write_end,
  1822. .set_page_dirty = ext3_journalled_set_page_dirty,
  1823. .bmap = ext3_bmap,
  1824. .invalidatepage = ext3_invalidatepage,
  1825. .releasepage = ext3_releasepage,
  1826. .is_partially_uptodate = block_is_partially_uptodate,
  1827. .error_remove_page = generic_error_remove_page,
  1828. };
  1829. void ext3_set_aops(struct inode *inode)
  1830. {
  1831. if (ext3_should_order_data(inode))
  1832. inode->i_mapping->a_ops = &ext3_ordered_aops;
  1833. else if (ext3_should_writeback_data(inode))
  1834. inode->i_mapping->a_ops = &ext3_writeback_aops;
  1835. else
  1836. inode->i_mapping->a_ops = &ext3_journalled_aops;
  1837. }
  1838. /*
  1839. * ext3_block_truncate_page() zeroes out a mapping from file offset `from'
  1840. * up to the end of the block which corresponds to `from'.
  1841. * This required during truncate. We need to physically zero the tail end
  1842. * of that block so it doesn't yield old data if the file is later grown.
  1843. */
  1844. static int ext3_block_truncate_page(struct inode *inode, loff_t from)
  1845. {
  1846. ext3_fsblk_t index = from >> PAGE_CACHE_SHIFT;
  1847. unsigned offset = from & (PAGE_CACHE_SIZE - 1);
  1848. unsigned blocksize, iblock, length, pos;
  1849. struct page *page;
  1850. handle_t *handle = NULL;
  1851. struct buffer_head *bh;
  1852. int err = 0;
  1853. /* Truncated on block boundary - nothing to do */
  1854. blocksize = inode->i_sb->s_blocksize;
  1855. if ((from & (blocksize - 1)) == 0)
  1856. return 0;
  1857. page = grab_cache_page(inode->i_mapping, index);
  1858. if (!page)
  1859. return -ENOMEM;
  1860. length = blocksize - (offset & (blocksize - 1));
  1861. iblock = index << (PAGE_CACHE_SHIFT - inode->i_sb->s_blocksize_bits);
  1862. if (!page_has_buffers(page))
  1863. create_empty_buffers(page, blocksize, 0);
  1864. /* Find the buffer that contains "offset" */
  1865. bh = page_buffers(page);
  1866. pos = blocksize;
  1867. while (offset >= pos) {
  1868. bh = bh->b_this_page;
  1869. iblock++;
  1870. pos += blocksize;
  1871. }
  1872. err = 0;
  1873. if (buffer_freed(bh)) {
  1874. BUFFER_TRACE(bh, "freed: skip");
  1875. goto unlock;
  1876. }
  1877. if (!buffer_mapped(bh)) {
  1878. BUFFER_TRACE(bh, "unmapped");
  1879. ext3_get_block(inode, iblock, bh, 0);
  1880. /* unmapped? It's a hole - nothing to do */
  1881. if (!buffer_mapped(bh)) {
  1882. BUFFER_TRACE(bh, "still unmapped");
  1883. goto unlock;
  1884. }
  1885. }
  1886. /* Ok, it's mapped. Make sure it's up-to-date */
  1887. if (PageUptodate(page))
  1888. set_buffer_uptodate(bh);
  1889. if (!bh_uptodate_or_lock(bh)) {
  1890. err = bh_submit_read(bh);
  1891. /* Uhhuh. Read error. Complain and punt. */
  1892. if (err)
  1893. goto unlock;
  1894. }
  1895. /* data=writeback mode doesn't need transaction to zero-out data */
  1896. if (!ext3_should_writeback_data(inode)) {
  1897. /* We journal at most one block */
  1898. handle = ext3_journal_start(inode, 1);
  1899. if (IS_ERR(handle)) {
  1900. clear_highpage(page);
  1901. flush_dcache_page(page);
  1902. err = PTR_ERR(handle);
  1903. goto unlock;
  1904. }
  1905. }
  1906. if (ext3_should_journal_data(inode)) {
  1907. BUFFER_TRACE(bh, "get write access");
  1908. err = ext3_journal_get_write_access(handle, bh);
  1909. if (err)
  1910. goto stop;
  1911. }
  1912. zero_user(page, offset, length);
  1913. BUFFER_TRACE(bh, "zeroed end of block");
  1914. err = 0;
  1915. if (ext3_should_journal_data(inode)) {
  1916. err = ext3_journal_dirty_metadata(handle, bh);
  1917. } else {
  1918. if (ext3_should_order_data(inode))
  1919. err = ext3_journal_dirty_data(handle, bh);
  1920. mark_buffer_dirty(bh);
  1921. }
  1922. stop:
  1923. if (handle)
  1924. ext3_journal_stop(handle);
  1925. unlock:
  1926. unlock_page(page);
  1927. page_cache_release(page);
  1928. return err;
  1929. }
  1930. /*
  1931. * Probably it should be a library function... search for first non-zero word
  1932. * or memcmp with zero_page, whatever is better for particular architecture.
  1933. * Linus?
  1934. */
  1935. static inline int all_zeroes(__le32 *p, __le32 *q)
  1936. {
  1937. while (p < q)
  1938. if (*p++)
  1939. return 0;
  1940. return 1;
  1941. }
  1942. /**
  1943. * ext3_find_shared - find the indirect blocks for partial truncation.
  1944. * @inode: inode in question
  1945. * @depth: depth of the affected branch
  1946. * @offsets: offsets of pointers in that branch (see ext3_block_to_path)
  1947. * @chain: place to store the pointers to partial indirect blocks
  1948. * @top: place to the (detached) top of branch
  1949. *
  1950. * This is a helper function used by ext3_truncate().
  1951. *
  1952. * When we do truncate() we may have to clean the ends of several
  1953. * indirect blocks but leave the blocks themselves alive. Block is
  1954. * partially truncated if some data below the new i_size is referred
  1955. * from it (and it is on the path to the first completely truncated
  1956. * data block, indeed). We have to free the top of that path along
  1957. * with everything to the right of the path. Since no allocation
  1958. * past the truncation point is possible until ext3_truncate()
  1959. * finishes, we may safely do the latter, but top of branch may
  1960. * require special attention - pageout below the truncation point
  1961. * might try to populate it.
  1962. *
  1963. * We atomically detach the top of branch from the tree, store the
  1964. * block number of its root in *@top, pointers to buffer_heads of
  1965. * partially truncated blocks - in @chain[].bh and pointers to
  1966. * their last elements that should not be removed - in
  1967. * @chain[].p. Return value is the pointer to last filled element
  1968. * of @chain.
  1969. *
  1970. * The work left to caller to do the actual freeing of subtrees:
  1971. * a) free the subtree starting from *@top
  1972. * b) free the subtrees whose roots are stored in
  1973. * (@chain[i].p+1 .. end of @chain[i].bh->b_data)
  1974. * c) free the subtrees growing from the inode past the @chain[0].
  1975. * (no partially truncated stuff there). */
  1976. static Indirect *ext3_find_shared(struct inode *inode, int depth,
  1977. int offsets[4], Indirect chain[4], __le32 *top)
  1978. {
  1979. Indirect *partial, *p;
  1980. int k, err;
  1981. *top = 0;
  1982. /* Make k index the deepest non-null offset + 1 */
  1983. for (k = depth; k > 1 && !offsets[k-1]; k--)
  1984. ;
  1985. partial = ext3_get_branch(inode, k, offsets, chain, &err);
  1986. /* Writer: pointers */
  1987. if (!partial)
  1988. partial = chain + k-1;
  1989. /*
  1990. * If the branch acquired continuation since we've looked at it -
  1991. * fine, it should all survive and (new) top doesn't belong to us.
  1992. */
  1993. if (!partial->key && *partial->p)
  1994. /* Writer: end */
  1995. goto no_top;
  1996. for (p=partial; p>chain && all_zeroes((__le32*)p->bh->b_data,p->p); p--)
  1997. ;
  1998. /*
  1999. * OK, we've found the last block that must survive. The rest of our
  2000. * branch should be detached before unlocking. However, if that rest
  2001. * of branch is all ours and does not grow immediately from the inode
  2002. * it's easier to cheat and just decrement partial->p.
  2003. */
  2004. if (p == chain + k - 1 && p > chain) {
  2005. p->p--;
  2006. } else {
  2007. *top = *p->p;
  2008. /* Nope, don't do this in ext3. Must leave the tree intact */
  2009. #if 0
  2010. *p->p = 0;
  2011. #endif
  2012. }
  2013. /* Writer: end */
  2014. while(partial > p) {
  2015. brelse(partial->bh);
  2016. partial--;
  2017. }
  2018. no_top:
  2019. return partial;
  2020. }
  2021. /*
  2022. * Zero a number of block pointers in either an inode or an indirect block.
  2023. * If we restart the transaction we must again get write access to the
  2024. * indirect block for further modification.
  2025. *
  2026. * We release `count' blocks on disk, but (last - first) may be greater
  2027. * than `count' because there can be holes in there.
  2028. */
  2029. static void ext3_clear_blocks(handle_t *handle, struct inode *inode,
  2030. struct buffer_head *bh, ext3_fsblk_t block_to_free,
  2031. unsigned long count, __le32 *first, __le32 *last)
  2032. {
  2033. __le32 *p;
  2034. if (try_to_extend_transaction(handle, inode)) {
  2035. if (bh) {
  2036. BUFFER_TRACE(bh, "call ext3_journal_dirty_metadata");
  2037. if (ext3_journal_dirty_metadata(handle, bh))
  2038. return;
  2039. }
  2040. ext3_mark_inode_dirty(handle, inode);
  2041. truncate_restart_transaction(handle, inode);
  2042. if (bh) {
  2043. BUFFER_TRACE(bh, "retaking write access");
  2044. if (ext3_journal_get_write_access(handle, bh))
  2045. return;
  2046. }
  2047. }
  2048. /*
  2049. * Any buffers which are on the journal will be in memory. We find
  2050. * them on the hash table so journal_revoke() will run journal_forget()
  2051. * on them. We've already detached each block from the file, so
  2052. * bforget() in journal_forget() should be safe.
  2053. *
  2054. * AKPM: turn on bforget in journal_forget()!!!
  2055. */
  2056. for (p = first; p < last; p++) {
  2057. u32 nr = le32_to_cpu(*p);
  2058. if (nr) {
  2059. struct buffer_head *bh;
  2060. *p = 0;
  2061. bh = sb_find_get_block(inode->i_sb, nr);
  2062. ext3_forget(handle, 0, inode, bh, nr);
  2063. }
  2064. }
  2065. ext3_free_blocks(handle, inode, block_to_free, count);
  2066. }
  2067. /**
  2068. * ext3_free_data - free a list of data blocks
  2069. * @handle: handle for this transaction
  2070. * @inode: inode we are dealing with
  2071. * @this_bh: indirect buffer_head which contains *@first and *@last
  2072. * @first: array of block numbers
  2073. * @last: points immediately past the end of array
  2074. *
  2075. * We are freeing all blocks referred from that array (numbers are stored as
  2076. * little-endian 32-bit) and updating @inode->i_blocks appropriately.
  2077. *
  2078. * We accumulate contiguous runs of blocks to free. Conveniently, if these
  2079. * blocks are contiguous then releasing them at one time will only affect one
  2080. * or two bitmap blocks (+ group descriptor(s) and superblock) and we won't
  2081. * actually use a lot of journal space.
  2082. *
  2083. * @this_bh will be %NULL if @first and @last point into the inode's direct
  2084. * block pointers.
  2085. */
  2086. static void ext3_free_data(handle_t *handle, struct inode *inode,
  2087. struct buffer_head *this_bh,
  2088. __le32 *first, __le32 *last)
  2089. {
  2090. ext3_fsblk_t block_to_free = 0; /* Starting block # of a run */
  2091. unsigned long count = 0; /* Number of blocks in the run */
  2092. __le32 *block_to_free_p = NULL; /* Pointer into inode/ind
  2093. corresponding to
  2094. block_to_free */
  2095. ext3_fsblk_t nr; /* Current block # */
  2096. __le32 *p; /* Pointer into inode/ind
  2097. for current block */
  2098. int err;
  2099. if (this_bh) { /* For indirect block */
  2100. BUFFER_TRACE(this_bh, "get_write_access");
  2101. err = ext3_journal_get_write_access(handle, this_bh);
  2102. /* Important: if we can't update the indirect pointers
  2103. * to the blocks, we can't free them. */
  2104. if (err)
  2105. return;
  2106. }
  2107. for (p = first; p < last; p++) {
  2108. nr = le32_to_cpu(*p);
  2109. if (nr) {
  2110. /* accumulate blocks to free if they're contiguous */
  2111. if (count == 0) {
  2112. block_to_free = nr;
  2113. block_to_free_p = p;
  2114. count = 1;
  2115. } else if (nr == block_to_free + count) {
  2116. count++;
  2117. } else {
  2118. ext3_clear_blocks(handle, inode, this_bh,
  2119. block_to_free,
  2120. count, block_to_free_p, p);
  2121. block_to_free = nr;
  2122. block_to_free_p = p;
  2123. count = 1;
  2124. }
  2125. }
  2126. }
  2127. if (count > 0)
  2128. ext3_clear_blocks(handle, inode, this_bh, block_to_free,
  2129. count, block_to_free_p, p);
  2130. if (this_bh) {
  2131. BUFFER_TRACE(this_bh, "call ext3_journal_dirty_metadata");
  2132. /*
  2133. * The buffer head should have an attached journal head at this
  2134. * point. However, if the data is corrupted and an indirect
  2135. * block pointed to itself, it would have been detached when
  2136. * the block was cleared. Check for this instead of OOPSing.
  2137. */
  2138. if (bh2jh(this_bh))
  2139. ext3_journal_dirty_metadata(handle, this_bh);
  2140. else
  2141. ext3_error(inode->i_sb, "ext3_free_data",
  2142. "circular indirect block detected, "
  2143. "inode=%lu, block=%llu",
  2144. inode->i_ino,
  2145. (unsigned long long)this_bh->b_blocknr);
  2146. }
  2147. }
  2148. /**
  2149. * ext3_free_branches - free an array of branches
  2150. * @handle: JBD handle for this transaction
  2151. * @inode: inode we are dealing with
  2152. * @parent_bh: the buffer_head which contains *@first and *@last
  2153. * @first: array of block numbers
  2154. * @last: pointer immediately past the end of array
  2155. * @depth: depth of the branches to free
  2156. *
  2157. * We are freeing all blocks referred from these branches (numbers are
  2158. * stored as little-endian 32-bit) and updating @inode->i_blocks
  2159. * appropriately.
  2160. */
  2161. static void ext3_free_branches(handle_t *handle, struct inode *inode,
  2162. struct buffer_head *parent_bh,
  2163. __le32 *first, __le32 *last, int depth)
  2164. {
  2165. ext3_fsblk_t nr;
  2166. __le32 *p;
  2167. if (is_handle_aborted(handle))
  2168. return;
  2169. if (depth--) {
  2170. struct buffer_head *bh;
  2171. int addr_per_block = EXT3_ADDR_PER_BLOCK(inode->i_sb);
  2172. p = last;
  2173. while (--p >= first) {
  2174. nr = le32_to_cpu(*p);
  2175. if (!nr)
  2176. continue; /* A hole */
  2177. /* Go read the buffer for the next level down */
  2178. bh = sb_bread(inode->i_sb, nr);
  2179. /*
  2180. * A read failure? Report error and clear slot
  2181. * (should be rare).
  2182. */
  2183. if (!bh) {
  2184. ext3_error(inode->i_sb, "ext3_free_branches",
  2185. "Read failure, inode=%lu, block="E3FSBLK,
  2186. inode->i_ino, nr);
  2187. continue;
  2188. }
  2189. /* This zaps the entire block. Bottom up. */
  2190. BUFFER_TRACE(bh, "free child branches");
  2191. ext3_free_branches(handle, inode, bh,
  2192. (__le32*)bh->b_data,
  2193. (__le32*)bh->b_data + addr_per_block,
  2194. depth);
  2195. /*
  2196. * Everything below this this pointer has been
  2197. * released. Now let this top-of-subtree go.
  2198. *
  2199. * We want the freeing of this indirect block to be
  2200. * atomic in the journal with the updating of the
  2201. * bitmap block which owns it. So make some room in
  2202. * the journal.
  2203. *
  2204. * We zero the parent pointer *after* freeing its
  2205. * pointee in the bitmaps, so if extend_transaction()
  2206. * for some reason fails to put the bitmap changes and
  2207. * the release into the same transaction, recovery
  2208. * will merely complain about releasing a free block,
  2209. * rather than leaking blocks.
  2210. */
  2211. if (is_handle_aborted(handle))
  2212. return;
  2213. if (try_to_extend_transaction(handle, inode)) {
  2214. ext3_mark_inode_dirty(handle, inode);
  2215. truncate_restart_transaction(handle, inode);
  2216. }
  2217. /*
  2218. * We've probably journalled the indirect block several
  2219. * times during the truncate. But it's no longer
  2220. * needed and we now drop it from the transaction via
  2221. * journal_revoke().
  2222. *
  2223. * That's easy if it's exclusively part of this
  2224. * transaction. But if it's part of the committing
  2225. * transaction then journal_forget() will simply
  2226. * brelse() it. That means that if the underlying
  2227. * block is reallocated in ext3_get_block(),
  2228. * unmap_underlying_metadata() will find this block
  2229. * and will try to get rid of it. damn, damn. Thus
  2230. * we don't allow a block to be reallocated until
  2231. * a transaction freeing it has fully committed.
  2232. *
  2233. * We also have to make sure journal replay after a
  2234. * crash does not overwrite non-journaled data blocks
  2235. * with old metadata when the block got reallocated for
  2236. * data. Thus we have to store a revoke record for a
  2237. * block in the same transaction in which we free the
  2238. * block.
  2239. */
  2240. ext3_forget(handle, 1, inode, bh, bh->b_blocknr);
  2241. ext3_free_blocks(handle, inode, nr, 1);
  2242. if (parent_bh) {
  2243. /*
  2244. * The block which we have just freed is
  2245. * pointed to by an indirect block: journal it
  2246. */
  2247. BUFFER_TRACE(parent_bh, "get_write_access");
  2248. if (!ext3_journal_get_write_access(handle,
  2249. parent_bh)){
  2250. *p = 0;
  2251. BUFFER_TRACE(parent_bh,
  2252. "call ext3_journal_dirty_metadata");
  2253. ext3_journal_dirty_metadata(handle,
  2254. parent_bh);
  2255. }
  2256. }
  2257. }
  2258. } else {
  2259. /* We have reached the bottom of the tree. */
  2260. BUFFER_TRACE(parent_bh, "free data blocks");
  2261. ext3_free_data(handle, inode, parent_bh, first, last);
  2262. }
  2263. }
  2264. int ext3_can_truncate(struct inode *inode)
  2265. {
  2266. if (S_ISREG(inode->i_mode))
  2267. return 1;
  2268. if (S_ISDIR(inode->i_mode))
  2269. return 1;
  2270. if (S_ISLNK(inode->i_mode))
  2271. return !ext3_inode_is_fast_symlink(inode);
  2272. return 0;
  2273. }
  2274. /*
  2275. * ext3_truncate()
  2276. *
  2277. * We block out ext3_get_block() block instantiations across the entire
  2278. * transaction, and VFS/VM ensures that ext3_truncate() cannot run
  2279. * simultaneously on behalf of the same inode.
  2280. *
  2281. * As we work through the truncate and commit bits of it to the journal there
  2282. * is one core, guiding principle: the file's tree must always be consistent on
  2283. * disk. We must be able to restart the truncate after a crash.
  2284. *
  2285. * The file's tree may be transiently inconsistent in memory (although it
  2286. * probably isn't), but whenever we close off and commit a journal transaction,
  2287. * the contents of (the filesystem + the journal) must be consistent and
  2288. * restartable. It's pretty simple, really: bottom up, right to left (although
  2289. * left-to-right works OK too).
  2290. *
  2291. * Note that at recovery time, journal replay occurs *before* the restart of
  2292. * truncate against the orphan inode list.
  2293. *
  2294. * The committed inode has the new, desired i_size (which is the same as
  2295. * i_disksize in this case). After a crash, ext3_orphan_cleanup() will see
  2296. * that this inode's truncate did not complete and it will again call
  2297. * ext3_truncate() to have another go. So there will be instantiated blocks
  2298. * to the right of the truncation point in a crashed ext3 filesystem. But
  2299. * that's fine - as long as they are linked from the inode, the post-crash
  2300. * ext3_truncate() run will find them and release them.
  2301. */
  2302. void ext3_truncate(struct inode *inode)
  2303. {
  2304. handle_t *handle;
  2305. struct ext3_inode_info *ei = EXT3_I(inode);
  2306. __le32 *i_data = ei->i_data;
  2307. int addr_per_block = EXT3_ADDR_PER_BLOCK(inode->i_sb);
  2308. int offsets[4];
  2309. Indirect chain[4];
  2310. Indirect *partial;
  2311. __le32 nr = 0;
  2312. int n;
  2313. long last_block;
  2314. unsigned blocksize = inode->i_sb->s_blocksize;
  2315. trace_ext3_truncate_enter(inode);
  2316. if (!ext3_can_truncate(inode))
  2317. goto out_notrans;
  2318. if (inode->i_size == 0 && ext3_should_writeback_data(inode))
  2319. ext3_set_inode_state(inode, EXT3_STATE_FLUSH_ON_CLOSE);
  2320. handle = start_transaction(inode);
  2321. if (IS_ERR(handle))
  2322. goto out_notrans;
  2323. last_block = (inode->i_size + blocksize-1)
  2324. >> EXT3_BLOCK_SIZE_BITS(inode->i_sb);
  2325. n = ext3_block_to_path(inode, last_block, offsets, NULL);
  2326. if (n == 0)
  2327. goto out_stop; /* error */
  2328. /*
  2329. * OK. This truncate is going to happen. We add the inode to the
  2330. * orphan list, so that if this truncate spans multiple transactions,
  2331. * and we crash, we will resume the truncate when the filesystem
  2332. * recovers. It also marks the inode dirty, to catch the new size.
  2333. *
  2334. * Implication: the file must always be in a sane, consistent
  2335. * truncatable state while each transaction commits.
  2336. */
  2337. if (ext3_orphan_add(handle, inode))
  2338. goto out_stop;
  2339. /*
  2340. * The orphan list entry will now protect us from any crash which
  2341. * occurs before the truncate completes, so it is now safe to propagate
  2342. * the new, shorter inode size (held for now in i_size) into the
  2343. * on-disk inode. We do this via i_disksize, which is the value which
  2344. * ext3 *really* writes onto the disk inode.
  2345. */
  2346. ei->i_disksize = inode->i_size;
  2347. /*
  2348. * From here we block out all ext3_get_block() callers who want to
  2349. * modify the block allocation tree.
  2350. */
  2351. mutex_lock(&ei->truncate_mutex);
  2352. if (n == 1) { /* direct blocks */
  2353. ext3_free_data(handle, inode, NULL, i_data+offsets[0],
  2354. i_data + EXT3_NDIR_BLOCKS);
  2355. goto do_indirects;
  2356. }
  2357. partial = ext3_find_shared(inode, n, offsets, chain, &nr);
  2358. /* Kill the top of shared branch (not detached) */
  2359. if (nr) {
  2360. if (partial == chain) {
  2361. /* Shared branch grows from the inode */
  2362. ext3_free_branches(handle, inode, NULL,
  2363. &nr, &nr+1, (chain+n-1) - partial);
  2364. *partial->p = 0;
  2365. /*
  2366. * We mark the inode dirty prior to restart,
  2367. * and prior to stop. No need for it here.
  2368. */
  2369. } else {
  2370. /* Shared branch grows from an indirect block */
  2371. ext3_free_branches(handle, inode, partial->bh,
  2372. partial->p,
  2373. partial->p+1, (chain+n-1) - partial);
  2374. }
  2375. }
  2376. /* Clear the ends of indirect blocks on the shared branch */
  2377. while (partial > chain) {
  2378. ext3_free_branches(handle, inode, partial->bh, partial->p + 1,
  2379. (__le32*)partial->bh->b_data+addr_per_block,
  2380. (chain+n-1) - partial);
  2381. BUFFER_TRACE(partial->bh, "call brelse");
  2382. brelse (partial->bh);
  2383. partial--;
  2384. }
  2385. do_indirects:
  2386. /* Kill the remaining (whole) subtrees */
  2387. switch (offsets[0]) {
  2388. default:
  2389. nr = i_data[EXT3_IND_BLOCK];
  2390. if (nr) {
  2391. ext3_free_branches(handle, inode, NULL, &nr, &nr+1, 1);
  2392. i_data[EXT3_IND_BLOCK] = 0;
  2393. }
  2394. case EXT3_IND_BLOCK:
  2395. nr = i_data[EXT3_DIND_BLOCK];
  2396. if (nr) {
  2397. ext3_free_branches(handle, inode, NULL, &nr, &nr+1, 2);
  2398. i_data[EXT3_DIND_BLOCK] = 0;
  2399. }
  2400. case EXT3_DIND_BLOCK:
  2401. nr = i_data[EXT3_TIND_BLOCK];
  2402. if (nr) {
  2403. ext3_free_branches(handle, inode, NULL, &nr, &nr+1, 3);
  2404. i_data[EXT3_TIND_BLOCK] = 0;
  2405. }
  2406. case EXT3_TIND_BLOCK:
  2407. ;
  2408. }
  2409. ext3_discard_reservation(inode);
  2410. mutex_unlock(&ei->truncate_mutex);
  2411. inode->i_mtime = inode->i_ctime = CURRENT_TIME_SEC;
  2412. ext3_mark_inode_dirty(handle, inode);
  2413. /*
  2414. * In a multi-transaction truncate, we only make the final transaction
  2415. * synchronous
  2416. */
  2417. if (IS_SYNC(inode))
  2418. handle->h_sync = 1;
  2419. out_stop:
  2420. /*
  2421. * If this was a simple ftruncate(), and the file will remain alive
  2422. * then we need to clear up the orphan record which we created above.
  2423. * However, if this was a real unlink then we were called by
  2424. * ext3_evict_inode(), and we allow that function to clean up the
  2425. * orphan info for us.
  2426. */
  2427. if (inode->i_nlink)
  2428. ext3_orphan_del(handle, inode);
  2429. ext3_journal_stop(handle);
  2430. trace_ext3_truncate_exit(inode);
  2431. return;
  2432. out_notrans:
  2433. /*
  2434. * Delete the inode from orphan list so that it doesn't stay there
  2435. * forever and trigger assertion on umount.
  2436. */
  2437. if (inode->i_nlink)
  2438. ext3_orphan_del(NULL, inode);
  2439. trace_ext3_truncate_exit(inode);
  2440. }
  2441. static ext3_fsblk_t ext3_get_inode_block(struct super_block *sb,
  2442. unsigned long ino, struct ext3_iloc *iloc)
  2443. {
  2444. unsigned long block_group;
  2445. unsigned long offset;
  2446. ext3_fsblk_t block;
  2447. struct ext3_group_desc *gdp;
  2448. if (!ext3_valid_inum(sb, ino)) {
  2449. /*
  2450. * This error is already checked for in namei.c unless we are
  2451. * looking at an NFS filehandle, in which case no error
  2452. * report is needed
  2453. */
  2454. return 0;
  2455. }
  2456. block_group = (ino - 1) / EXT3_INODES_PER_GROUP(sb);
  2457. gdp = ext3_get_group_desc(sb, block_group, NULL);
  2458. if (!gdp)
  2459. return 0;
  2460. /*
  2461. * Figure out the offset within the block group inode table
  2462. */
  2463. offset = ((ino - 1) % EXT3_INODES_PER_GROUP(sb)) *
  2464. EXT3_INODE_SIZE(sb);
  2465. block = le32_to_cpu(gdp->bg_inode_table) +
  2466. (offset >> EXT3_BLOCK_SIZE_BITS(sb));
  2467. iloc->block_group = block_group;
  2468. iloc->offset = offset & (EXT3_BLOCK_SIZE(sb) - 1);
  2469. return block;
  2470. }
  2471. /*
  2472. * ext3_get_inode_loc returns with an extra refcount against the inode's
  2473. * underlying buffer_head on success. If 'in_mem' is true, we have all
  2474. * data in memory that is needed to recreate the on-disk version of this
  2475. * inode.
  2476. */
  2477. static int __ext3_get_inode_loc(struct inode *inode,
  2478. struct ext3_iloc *iloc, int in_mem)
  2479. {
  2480. ext3_fsblk_t block;
  2481. struct buffer_head *bh;
  2482. block = ext3_get_inode_block(inode->i_sb, inode->i_ino, iloc);
  2483. if (!block)
  2484. return -EIO;
  2485. bh = sb_getblk(inode->i_sb, block);
  2486. if (unlikely(!bh)) {
  2487. ext3_error (inode->i_sb, "ext3_get_inode_loc",
  2488. "unable to read inode block - "
  2489. "inode=%lu, block="E3FSBLK,
  2490. inode->i_ino, block);
  2491. return -ENOMEM;
  2492. }
  2493. if (!buffer_uptodate(bh)) {
  2494. lock_buffer(bh);
  2495. /*
  2496. * If the buffer has the write error flag, we have failed
  2497. * to write out another inode in the same block. In this
  2498. * case, we don't have to read the block because we may
  2499. * read the old inode data successfully.
  2500. */
  2501. if (buffer_write_io_error(bh) && !buffer_uptodate(bh))
  2502. set_buffer_uptodate(bh);
  2503. if (buffer_uptodate(bh)) {
  2504. /* someone brought it uptodate while we waited */
  2505. unlock_buffer(bh);
  2506. goto has_buffer;
  2507. }
  2508. /*
  2509. * If we have all information of the inode in memory and this
  2510. * is the only valid inode in the block, we need not read the
  2511. * block.
  2512. */
  2513. if (in_mem) {
  2514. struct buffer_head *bitmap_bh;
  2515. struct ext3_group_desc *desc;
  2516. int inodes_per_buffer;
  2517. int inode_offset, i;
  2518. int block_group;
  2519. int start;
  2520. block_group = (inode->i_ino - 1) /
  2521. EXT3_INODES_PER_GROUP(inode->i_sb);
  2522. inodes_per_buffer = bh->b_size /
  2523. EXT3_INODE_SIZE(inode->i_sb);
  2524. inode_offset = ((inode->i_ino - 1) %
  2525. EXT3_INODES_PER_GROUP(inode->i_sb));
  2526. start = inode_offset & ~(inodes_per_buffer - 1);
  2527. /* Is the inode bitmap in cache? */
  2528. desc = ext3_get_group_desc(inode->i_sb,
  2529. block_group, NULL);
  2530. if (!desc)
  2531. goto make_io;
  2532. bitmap_bh = sb_getblk(inode->i_sb,
  2533. le32_to_cpu(desc->bg_inode_bitmap));
  2534. if (unlikely(!bitmap_bh))
  2535. goto make_io;
  2536. /*
  2537. * If the inode bitmap isn't in cache then the
  2538. * optimisation may end up performing two reads instead
  2539. * of one, so skip it.
  2540. */
  2541. if (!buffer_uptodate(bitmap_bh)) {
  2542. brelse(bitmap_bh);
  2543. goto make_io;
  2544. }
  2545. for (i = start; i < start + inodes_per_buffer; i++) {
  2546. if (i == inode_offset)
  2547. continue;
  2548. if (ext3_test_bit(i, bitmap_bh->b_data))
  2549. break;
  2550. }
  2551. brelse(bitmap_bh);
  2552. if (i == start + inodes_per_buffer) {
  2553. /* all other inodes are free, so skip I/O */
  2554. memset(bh->b_data, 0, bh->b_size);
  2555. set_buffer_uptodate(bh);
  2556. unlock_buffer(bh);
  2557. goto has_buffer;
  2558. }
  2559. }
  2560. make_io:
  2561. /*
  2562. * There are other valid inodes in the buffer, this inode
  2563. * has in-inode xattrs, or we don't have this inode in memory.
  2564. * Read the block from disk.
  2565. */
  2566. trace_ext3_load_inode(inode);
  2567. get_bh(bh);
  2568. bh->b_end_io = end_buffer_read_sync;
  2569. submit_bh(READ | REQ_META | REQ_PRIO, bh);
  2570. wait_on_buffer(bh);
  2571. if (!buffer_uptodate(bh)) {
  2572. ext3_error(inode->i_sb, "ext3_get_inode_loc",
  2573. "unable to read inode block - "
  2574. "inode=%lu, block="E3FSBLK,
  2575. inode->i_ino, block);
  2576. brelse(bh);
  2577. return -EIO;
  2578. }
  2579. }
  2580. has_buffer:
  2581. iloc->bh = bh;
  2582. return 0;
  2583. }
  2584. int ext3_get_inode_loc(struct inode *inode, struct ext3_iloc *iloc)
  2585. {
  2586. /* We have all inode data except xattrs in memory here. */
  2587. return __ext3_get_inode_loc(inode, iloc,
  2588. !ext3_test_inode_state(inode, EXT3_STATE_XATTR));
  2589. }
  2590. void ext3_set_inode_flags(struct inode *inode)
  2591. {
  2592. unsigned int flags = EXT3_I(inode)->i_flags;
  2593. inode->i_flags &= ~(S_SYNC|S_APPEND|S_IMMUTABLE|S_NOATIME|S_DIRSYNC);
  2594. if (flags & EXT3_SYNC_FL)
  2595. inode->i_flags |= S_SYNC;
  2596. if (flags & EXT3_APPEND_FL)
  2597. inode->i_flags |= S_APPEND;
  2598. if (flags & EXT3_IMMUTABLE_FL)
  2599. inode->i_flags |= S_IMMUTABLE;
  2600. if (flags & EXT3_NOATIME_FL)
  2601. inode->i_flags |= S_NOATIME;
  2602. if (flags & EXT3_DIRSYNC_FL)
  2603. inode->i_flags |= S_DIRSYNC;
  2604. }
  2605. /* Propagate flags from i_flags to EXT3_I(inode)->i_flags */
  2606. void ext3_get_inode_flags(struct ext3_inode_info *ei)
  2607. {
  2608. unsigned int flags = ei->vfs_inode.i_flags;
  2609. ei->i_flags &= ~(EXT3_SYNC_FL|EXT3_APPEND_FL|
  2610. EXT3_IMMUTABLE_FL|EXT3_NOATIME_FL|EXT3_DIRSYNC_FL);
  2611. if (flags & S_SYNC)
  2612. ei->i_flags |= EXT3_SYNC_FL;
  2613. if (flags & S_APPEND)
  2614. ei->i_flags |= EXT3_APPEND_FL;
  2615. if (flags & S_IMMUTABLE)
  2616. ei->i_flags |= EXT3_IMMUTABLE_FL;
  2617. if (flags & S_NOATIME)
  2618. ei->i_flags |= EXT3_NOATIME_FL;
  2619. if (flags & S_DIRSYNC)
  2620. ei->i_flags |= EXT3_DIRSYNC_FL;
  2621. }
  2622. struct inode *ext3_iget(struct super_block *sb, unsigned long ino)
  2623. {
  2624. struct ext3_iloc iloc;
  2625. struct ext3_inode *raw_inode;
  2626. struct ext3_inode_info *ei;
  2627. struct buffer_head *bh;
  2628. struct inode *inode;
  2629. journal_t *journal = EXT3_SB(sb)->s_journal;
  2630. transaction_t *transaction;
  2631. long ret;
  2632. int block;
  2633. uid_t i_uid;
  2634. gid_t i_gid;
  2635. inode = iget_locked(sb, ino);
  2636. if (!inode)
  2637. return ERR_PTR(-ENOMEM);
  2638. if (!(inode->i_state & I_NEW))
  2639. return inode;
  2640. ei = EXT3_I(inode);
  2641. ei->i_block_alloc_info = NULL;
  2642. ret = __ext3_get_inode_loc(inode, &iloc, 0);
  2643. if (ret < 0)
  2644. goto bad_inode;
  2645. bh = iloc.bh;
  2646. raw_inode = ext3_raw_inode(&iloc);
  2647. inode->i_mode = le16_to_cpu(raw_inode->i_mode);
  2648. i_uid = (uid_t)le16_to_cpu(raw_inode->i_uid_low);
  2649. i_gid = (gid_t)le16_to_cpu(raw_inode->i_gid_low);
  2650. if(!(test_opt (inode->i_sb, NO_UID32))) {
  2651. i_uid |= le16_to_cpu(raw_inode->i_uid_high) << 16;
  2652. i_gid |= le16_to_cpu(raw_inode->i_gid_high) << 16;
  2653. }
  2654. i_uid_write(inode, i_uid);
  2655. i_gid_write(inode, i_gid);
  2656. set_nlink(inode, le16_to_cpu(raw_inode->i_links_count));
  2657. inode->i_size = le32_to_cpu(raw_inode->i_size);
  2658. inode->i_atime.tv_sec = (signed)le32_to_cpu(raw_inode->i_atime);
  2659. inode->i_ctime.tv_sec = (signed)le32_to_cpu(raw_inode->i_ctime);
  2660. inode->i_mtime.tv_sec = (signed)le32_to_cpu(raw_inode->i_mtime);
  2661. inode->i_atime.tv_nsec = inode->i_ctime.tv_nsec = inode->i_mtime.tv_nsec = 0;
  2662. ei->i_state_flags = 0;
  2663. ei->i_dir_start_lookup = 0;
  2664. ei->i_dtime = le32_to_cpu(raw_inode->i_dtime);
  2665. /* We now have enough fields to check if the inode was active or not.
  2666. * This is needed because nfsd might try to access dead inodes
  2667. * the test is that same one that e2fsck uses
  2668. * NeilBrown 1999oct15
  2669. */
  2670. if (inode->i_nlink == 0) {
  2671. if (inode->i_mode == 0 ||
  2672. !(EXT3_SB(inode->i_sb)->s_mount_state & EXT3_ORPHAN_FS)) {
  2673. /* this inode is deleted */
  2674. brelse (bh);
  2675. ret = -ESTALE;
  2676. goto bad_inode;
  2677. }
  2678. /* The only unlinked inodes we let through here have
  2679. * valid i_mode and are being read by the orphan
  2680. * recovery code: that's fine, we're about to complete
  2681. * the process of deleting those. */
  2682. }
  2683. inode->i_blocks = le32_to_cpu(raw_inode->i_blocks);
  2684. ei->i_flags = le32_to_cpu(raw_inode->i_flags);
  2685. #ifdef EXT3_FRAGMENTS
  2686. ei->i_faddr = le32_to_cpu(raw_inode->i_faddr);
  2687. ei->i_frag_no = raw_inode->i_frag;
  2688. ei->i_frag_size = raw_inode->i_fsize;
  2689. #endif
  2690. ei->i_file_acl = le32_to_cpu(raw_inode->i_file_acl);
  2691. if (!S_ISREG(inode->i_mode)) {
  2692. ei->i_dir_acl = le32_to_cpu(raw_inode->i_dir_acl);
  2693. } else {
  2694. inode->i_size |=
  2695. ((__u64)le32_to_cpu(raw_inode->i_size_high)) << 32;
  2696. }
  2697. ei->i_disksize = inode->i_size;
  2698. inode->i_generation = le32_to_cpu(raw_inode->i_generation);
  2699. ei->i_block_group = iloc.block_group;
  2700. /*
  2701. * NOTE! The in-memory inode i_data array is in little-endian order
  2702. * even on big-endian machines: we do NOT byteswap the block numbers!
  2703. */
  2704. for (block = 0; block < EXT3_N_BLOCKS; block++)
  2705. ei->i_data[block] = raw_inode->i_block[block];
  2706. INIT_LIST_HEAD(&ei->i_orphan);
  2707. /*
  2708. * Set transaction id's of transactions that have to be committed
  2709. * to finish f[data]sync. We set them to currently running transaction
  2710. * as we cannot be sure that the inode or some of its metadata isn't
  2711. * part of the transaction - the inode could have been reclaimed and
  2712. * now it is reread from disk.
  2713. */
  2714. if (journal) {
  2715. tid_t tid;
  2716. spin_lock(&journal->j_state_lock);
  2717. if (journal->j_running_transaction)
  2718. transaction = journal->j_running_transaction;
  2719. else
  2720. transaction = journal->j_committing_transaction;
  2721. if (transaction)
  2722. tid = transaction->t_tid;
  2723. else
  2724. tid = journal->j_commit_sequence;
  2725. spin_unlock(&journal->j_state_lock);
  2726. atomic_set(&ei->i_sync_tid, tid);
  2727. atomic_set(&ei->i_datasync_tid, tid);
  2728. }
  2729. if (inode->i_ino >= EXT3_FIRST_INO(inode->i_sb) + 1 &&
  2730. EXT3_INODE_SIZE(inode->i_sb) > EXT3_GOOD_OLD_INODE_SIZE) {
  2731. /*
  2732. * When mke2fs creates big inodes it does not zero out
  2733. * the unused bytes above EXT3_GOOD_OLD_INODE_SIZE,
  2734. * so ignore those first few inodes.
  2735. */
  2736. ei->i_extra_isize = le16_to_cpu(raw_inode->i_extra_isize);
  2737. if (EXT3_GOOD_OLD_INODE_SIZE + ei->i_extra_isize >
  2738. EXT3_INODE_SIZE(inode->i_sb)) {
  2739. brelse (bh);
  2740. ret = -EIO;
  2741. goto bad_inode;
  2742. }
  2743. if (ei->i_extra_isize == 0) {
  2744. /* The extra space is currently unused. Use it. */
  2745. ei->i_extra_isize = sizeof(struct ext3_inode) -
  2746. EXT3_GOOD_OLD_INODE_SIZE;
  2747. } else {
  2748. __le32 *magic = (void *)raw_inode +
  2749. EXT3_GOOD_OLD_INODE_SIZE +
  2750. ei->i_extra_isize;
  2751. if (*magic == cpu_to_le32(EXT3_XATTR_MAGIC))
  2752. ext3_set_inode_state(inode, EXT3_STATE_XATTR);
  2753. }
  2754. } else
  2755. ei->i_extra_isize = 0;
  2756. if (S_ISREG(inode->i_mode)) {
  2757. inode->i_op = &ext3_file_inode_operations;
  2758. inode->i_fop = &ext3_file_operations;
  2759. ext3_set_aops(inode);
  2760. } else if (S_ISDIR(inode->i_mode)) {
  2761. inode->i_op = &ext3_dir_inode_operations;
  2762. inode->i_fop = &ext3_dir_operations;
  2763. } else if (S_ISLNK(inode->i_mode)) {
  2764. if (ext3_inode_is_fast_symlink(inode)) {
  2765. inode->i_op = &ext3_fast_symlink_inode_operations;
  2766. nd_terminate_link(ei->i_data, inode->i_size,
  2767. sizeof(ei->i_data) - 1);
  2768. } else {
  2769. inode->i_op = &ext3_symlink_inode_operations;
  2770. ext3_set_aops(inode);
  2771. }
  2772. } else {
  2773. inode->i_op = &ext3_special_inode_operations;
  2774. if (raw_inode->i_block[0])
  2775. init_special_inode(inode, inode->i_mode,
  2776. old_decode_dev(le32_to_cpu(raw_inode->i_block[0])));
  2777. else
  2778. init_special_inode(inode, inode->i_mode,
  2779. new_decode_dev(le32_to_cpu(raw_inode->i_block[1])));
  2780. }
  2781. brelse (iloc.bh);
  2782. ext3_set_inode_flags(inode);
  2783. unlock_new_inode(inode);
  2784. return inode;
  2785. bad_inode:
  2786. iget_failed(inode);
  2787. return ERR_PTR(ret);
  2788. }
  2789. /*
  2790. * Post the struct inode info into an on-disk inode location in the
  2791. * buffer-cache. This gobbles the caller's reference to the
  2792. * buffer_head in the inode location struct.
  2793. *
  2794. * The caller must have write access to iloc->bh.
  2795. */
  2796. static int ext3_do_update_inode(handle_t *handle,
  2797. struct inode *inode,
  2798. struct ext3_iloc *iloc)
  2799. {
  2800. struct ext3_inode *raw_inode = ext3_raw_inode(iloc);
  2801. struct ext3_inode_info *ei = EXT3_I(inode);
  2802. struct buffer_head *bh = iloc->bh;
  2803. int err = 0, rc, block;
  2804. int need_datasync = 0;
  2805. __le32 disksize;
  2806. uid_t i_uid;
  2807. gid_t i_gid;
  2808. again:
  2809. /* we can't allow multiple procs in here at once, its a bit racey */
  2810. lock_buffer(bh);
  2811. /* For fields not not tracking in the in-memory inode,
  2812. * initialise them to zero for new inodes. */
  2813. if (ext3_test_inode_state(inode, EXT3_STATE_NEW))
  2814. memset(raw_inode, 0, EXT3_SB(inode->i_sb)->s_inode_size);
  2815. ext3_get_inode_flags(ei);
  2816. raw_inode->i_mode = cpu_to_le16(inode->i_mode);
  2817. i_uid = i_uid_read(inode);
  2818. i_gid = i_gid_read(inode);
  2819. if(!(test_opt(inode->i_sb, NO_UID32))) {
  2820. raw_inode->i_uid_low = cpu_to_le16(low_16_bits(i_uid));
  2821. raw_inode->i_gid_low = cpu_to_le16(low_16_bits(i_gid));
  2822. /*
  2823. * Fix up interoperability with old kernels. Otherwise, old inodes get
  2824. * re-used with the upper 16 bits of the uid/gid intact
  2825. */
  2826. if(!ei->i_dtime) {
  2827. raw_inode->i_uid_high =
  2828. cpu_to_le16(high_16_bits(i_uid));
  2829. raw_inode->i_gid_high =
  2830. cpu_to_le16(high_16_bits(i_gid));
  2831. } else {
  2832. raw_inode->i_uid_high = 0;
  2833. raw_inode->i_gid_high = 0;
  2834. }
  2835. } else {
  2836. raw_inode->i_uid_low =
  2837. cpu_to_le16(fs_high2lowuid(i_uid));
  2838. raw_inode->i_gid_low =
  2839. cpu_to_le16(fs_high2lowgid(i_gid));
  2840. raw_inode->i_uid_high = 0;
  2841. raw_inode->i_gid_high = 0;
  2842. }
  2843. raw_inode->i_links_count = cpu_to_le16(inode->i_nlink);
  2844. disksize = cpu_to_le32(ei->i_disksize);
  2845. if (disksize != raw_inode->i_size) {
  2846. need_datasync = 1;
  2847. raw_inode->i_size = disksize;
  2848. }
  2849. raw_inode->i_atime = cpu_to_le32(inode->i_atime.tv_sec);
  2850. raw_inode->i_ctime = cpu_to_le32(inode->i_ctime.tv_sec);
  2851. raw_inode->i_mtime = cpu_to_le32(inode->i_mtime.tv_sec);
  2852. raw_inode->i_blocks = cpu_to_le32(inode->i_blocks);
  2853. raw_inode->i_dtime = cpu_to_le32(ei->i_dtime);
  2854. raw_inode->i_flags = cpu_to_le32(ei->i_flags);
  2855. #ifdef EXT3_FRAGMENTS
  2856. raw_inode->i_faddr = cpu_to_le32(ei->i_faddr);
  2857. raw_inode->i_frag = ei->i_frag_no;
  2858. raw_inode->i_fsize = ei->i_frag_size;
  2859. #endif
  2860. raw_inode->i_file_acl = cpu_to_le32(ei->i_file_acl);
  2861. if (!S_ISREG(inode->i_mode)) {
  2862. raw_inode->i_dir_acl = cpu_to_le32(ei->i_dir_acl);
  2863. } else {
  2864. disksize = cpu_to_le32(ei->i_disksize >> 32);
  2865. if (disksize != raw_inode->i_size_high) {
  2866. raw_inode->i_size_high = disksize;
  2867. need_datasync = 1;
  2868. }
  2869. if (ei->i_disksize > 0x7fffffffULL) {
  2870. struct super_block *sb = inode->i_sb;
  2871. if (!EXT3_HAS_RO_COMPAT_FEATURE(sb,
  2872. EXT3_FEATURE_RO_COMPAT_LARGE_FILE) ||
  2873. EXT3_SB(sb)->s_es->s_rev_level ==
  2874. cpu_to_le32(EXT3_GOOD_OLD_REV)) {
  2875. /* If this is the first large file
  2876. * created, add a flag to the superblock.
  2877. */
  2878. unlock_buffer(bh);
  2879. err = ext3_journal_get_write_access(handle,
  2880. EXT3_SB(sb)->s_sbh);
  2881. if (err)
  2882. goto out_brelse;
  2883. ext3_update_dynamic_rev(sb);
  2884. EXT3_SET_RO_COMPAT_FEATURE(sb,
  2885. EXT3_FEATURE_RO_COMPAT_LARGE_FILE);
  2886. handle->h_sync = 1;
  2887. err = ext3_journal_dirty_metadata(handle,
  2888. EXT3_SB(sb)->s_sbh);
  2889. /* get our lock and start over */
  2890. goto again;
  2891. }
  2892. }
  2893. }
  2894. raw_inode->i_generation = cpu_to_le32(inode->i_generation);
  2895. if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) {
  2896. if (old_valid_dev(inode->i_rdev)) {
  2897. raw_inode->i_block[0] =
  2898. cpu_to_le32(old_encode_dev(inode->i_rdev));
  2899. raw_inode->i_block[1] = 0;
  2900. } else {
  2901. raw_inode->i_block[0] = 0;
  2902. raw_inode->i_block[1] =
  2903. cpu_to_le32(new_encode_dev(inode->i_rdev));
  2904. raw_inode->i_block[2] = 0;
  2905. }
  2906. } else for (block = 0; block < EXT3_N_BLOCKS; block++)
  2907. raw_inode->i_block[block] = ei->i_data[block];
  2908. if (ei->i_extra_isize)
  2909. raw_inode->i_extra_isize = cpu_to_le16(ei->i_extra_isize);
  2910. BUFFER_TRACE(bh, "call ext3_journal_dirty_metadata");
  2911. unlock_buffer(bh);
  2912. rc = ext3_journal_dirty_metadata(handle, bh);
  2913. if (!err)
  2914. err = rc;
  2915. ext3_clear_inode_state(inode, EXT3_STATE_NEW);
  2916. atomic_set(&ei->i_sync_tid, handle->h_transaction->t_tid);
  2917. if (need_datasync)
  2918. atomic_set(&ei->i_datasync_tid, handle->h_transaction->t_tid);
  2919. out_brelse:
  2920. brelse (bh);
  2921. ext3_std_error(inode->i_sb, err);
  2922. return err;
  2923. }
  2924. /*
  2925. * ext3_write_inode()
  2926. *
  2927. * We are called from a few places:
  2928. *
  2929. * - Within generic_file_write() for O_SYNC files.
  2930. * Here, there will be no transaction running. We wait for any running
  2931. * transaction to commit.
  2932. *
  2933. * - Within sys_sync(), kupdate and such.
  2934. * We wait on commit, if tol to.
  2935. *
  2936. * - Within prune_icache() (PF_MEMALLOC == true)
  2937. * Here we simply return. We can't afford to block kswapd on the
  2938. * journal commit.
  2939. *
  2940. * In all cases it is actually safe for us to return without doing anything,
  2941. * because the inode has been copied into a raw inode buffer in
  2942. * ext3_mark_inode_dirty(). This is a correctness thing for O_SYNC and for
  2943. * knfsd.
  2944. *
  2945. * Note that we are absolutely dependent upon all inode dirtiers doing the
  2946. * right thing: they *must* call mark_inode_dirty() after dirtying info in
  2947. * which we are interested.
  2948. *
  2949. * It would be a bug for them to not do this. The code:
  2950. *
  2951. * mark_inode_dirty(inode)
  2952. * stuff();
  2953. * inode->i_size = expr;
  2954. *
  2955. * is in error because a kswapd-driven write_inode() could occur while
  2956. * `stuff()' is running, and the new i_size will be lost. Plus the inode
  2957. * will no longer be on the superblock's dirty inode list.
  2958. */
  2959. int ext3_write_inode(struct inode *inode, struct writeback_control *wbc)
  2960. {
  2961. if (current->flags & PF_MEMALLOC)
  2962. return 0;
  2963. if (ext3_journal_current_handle()) {
  2964. jbd_debug(1, "called recursively, non-PF_MEMALLOC!\n");
  2965. dump_stack();
  2966. return -EIO;
  2967. }
  2968. if (wbc->sync_mode != WB_SYNC_ALL)
  2969. return 0;
  2970. return ext3_force_commit(inode->i_sb);
  2971. }
  2972. /*
  2973. * ext3_setattr()
  2974. *
  2975. * Called from notify_change.
  2976. *
  2977. * We want to trap VFS attempts to truncate the file as soon as
  2978. * possible. In particular, we want to make sure that when the VFS
  2979. * shrinks i_size, we put the inode on the orphan list and modify
  2980. * i_disksize immediately, so that during the subsequent flushing of
  2981. * dirty pages and freeing of disk blocks, we can guarantee that any
  2982. * commit will leave the blocks being flushed in an unused state on
  2983. * disk. (On recovery, the inode will get truncated and the blocks will
  2984. * be freed, so we have a strong guarantee that no future commit will
  2985. * leave these blocks visible to the user.)
  2986. *
  2987. * Called with inode->sem down.
  2988. */
  2989. int ext3_setattr(struct dentry *dentry, struct iattr *attr)
  2990. {
  2991. struct inode *inode = dentry->d_inode;
  2992. int error, rc = 0;
  2993. const unsigned int ia_valid = attr->ia_valid;
  2994. error = inode_change_ok(inode, attr);
  2995. if (error)
  2996. return error;
  2997. if (is_quota_modification(inode, attr))
  2998. dquot_initialize(inode);
  2999. if ((ia_valid & ATTR_UID && !uid_eq(attr->ia_uid, inode->i_uid)) ||
  3000. (ia_valid & ATTR_GID && !gid_eq(attr->ia_gid, inode->i_gid))) {
  3001. handle_t *handle;
  3002. /* (user+group)*(old+new) structure, inode write (sb,
  3003. * inode block, ? - but truncate inode update has it) */
  3004. handle = ext3_journal_start(inode, EXT3_MAXQUOTAS_INIT_BLOCKS(inode->i_sb)+
  3005. EXT3_MAXQUOTAS_DEL_BLOCKS(inode->i_sb)+3);
  3006. if (IS_ERR(handle)) {
  3007. error = PTR_ERR(handle);
  3008. goto err_out;
  3009. }
  3010. error = dquot_transfer(inode, attr);
  3011. if (error) {
  3012. ext3_journal_stop(handle);
  3013. return error;
  3014. }
  3015. /* Update corresponding info in inode so that everything is in
  3016. * one transaction */
  3017. if (attr->ia_valid & ATTR_UID)
  3018. inode->i_uid = attr->ia_uid;
  3019. if (attr->ia_valid & ATTR_GID)
  3020. inode->i_gid = attr->ia_gid;
  3021. error = ext3_mark_inode_dirty(handle, inode);
  3022. ext3_journal_stop(handle);
  3023. }
  3024. if (attr->ia_valid & ATTR_SIZE)
  3025. inode_dio_wait(inode);
  3026. if (S_ISREG(inode->i_mode) &&
  3027. attr->ia_valid & ATTR_SIZE && attr->ia_size < inode->i_size) {
  3028. handle_t *handle;
  3029. handle = ext3_journal_start(inode, 3);
  3030. if (IS_ERR(handle)) {
  3031. error = PTR_ERR(handle);
  3032. goto err_out;
  3033. }
  3034. error = ext3_orphan_add(handle, inode);
  3035. if (error) {
  3036. ext3_journal_stop(handle);
  3037. goto err_out;
  3038. }
  3039. EXT3_I(inode)->i_disksize = attr->ia_size;
  3040. error = ext3_mark_inode_dirty(handle, inode);
  3041. ext3_journal_stop(handle);
  3042. if (error) {
  3043. /* Some hard fs error must have happened. Bail out. */
  3044. ext3_orphan_del(NULL, inode);
  3045. goto err_out;
  3046. }
  3047. rc = ext3_block_truncate_page(inode, attr->ia_size);
  3048. if (rc) {
  3049. /* Cleanup orphan list and exit */
  3050. handle = ext3_journal_start(inode, 3);
  3051. if (IS_ERR(handle)) {
  3052. ext3_orphan_del(NULL, inode);
  3053. goto err_out;
  3054. }
  3055. ext3_orphan_del(handle, inode);
  3056. ext3_journal_stop(handle);
  3057. goto err_out;
  3058. }
  3059. }
  3060. if ((attr->ia_valid & ATTR_SIZE) &&
  3061. attr->ia_size != i_size_read(inode)) {
  3062. truncate_setsize(inode, attr->ia_size);
  3063. ext3_truncate(inode);
  3064. }
  3065. setattr_copy(inode, attr);
  3066. mark_inode_dirty(inode);
  3067. if (ia_valid & ATTR_MODE)
  3068. rc = ext3_acl_chmod(inode);
  3069. err_out:
  3070. ext3_std_error(inode->i_sb, error);
  3071. if (!error)
  3072. error = rc;
  3073. return error;
  3074. }
  3075. /*
  3076. * How many blocks doth make a writepage()?
  3077. *
  3078. * With N blocks per page, it may be:
  3079. * N data blocks
  3080. * 2 indirect block
  3081. * 2 dindirect
  3082. * 1 tindirect
  3083. * N+5 bitmap blocks (from the above)
  3084. * N+5 group descriptor summary blocks
  3085. * 1 inode block
  3086. * 1 superblock.
  3087. * 2 * EXT3_SINGLEDATA_TRANS_BLOCKS for the quote files
  3088. *
  3089. * 3 * (N + 5) + 2 + 2 * EXT3_SINGLEDATA_TRANS_BLOCKS
  3090. *
  3091. * With ordered or writeback data it's the same, less the N data blocks.
  3092. *
  3093. * If the inode's direct blocks can hold an integral number of pages then a
  3094. * page cannot straddle two indirect blocks, and we can only touch one indirect
  3095. * and dindirect block, and the "5" above becomes "3".
  3096. *
  3097. * This still overestimates under most circumstances. If we were to pass the
  3098. * start and end offsets in here as well we could do block_to_path() on each
  3099. * block and work out the exact number of indirects which are touched. Pah.
  3100. */
  3101. static int ext3_writepage_trans_blocks(struct inode *inode)
  3102. {
  3103. int bpp = ext3_journal_blocks_per_page(inode);
  3104. int indirects = (EXT3_NDIR_BLOCKS % bpp) ? 5 : 3;
  3105. int ret;
  3106. if (ext3_should_journal_data(inode))
  3107. ret = 3 * (bpp + indirects) + 2;
  3108. else
  3109. ret = 2 * (bpp + indirects) + indirects + 2;
  3110. #ifdef CONFIG_QUOTA
  3111. /* We know that structure was already allocated during dquot_initialize so
  3112. * we will be updating only the data blocks + inodes */
  3113. ret += EXT3_MAXQUOTAS_TRANS_BLOCKS(inode->i_sb);
  3114. #endif
  3115. return ret;
  3116. }
  3117. /*
  3118. * The caller must have previously called ext3_reserve_inode_write().
  3119. * Give this, we know that the caller already has write access to iloc->bh.
  3120. */
  3121. int ext3_mark_iloc_dirty(handle_t *handle,
  3122. struct inode *inode, struct ext3_iloc *iloc)
  3123. {
  3124. int err = 0;
  3125. /* the do_update_inode consumes one bh->b_count */
  3126. get_bh(iloc->bh);
  3127. /* ext3_do_update_inode() does journal_dirty_metadata */
  3128. err = ext3_do_update_inode(handle, inode, iloc);
  3129. put_bh(iloc->bh);
  3130. return err;
  3131. }
  3132. /*
  3133. * On success, We end up with an outstanding reference count against
  3134. * iloc->bh. This _must_ be cleaned up later.
  3135. */
  3136. int
  3137. ext3_reserve_inode_write(handle_t *handle, struct inode *inode,
  3138. struct ext3_iloc *iloc)
  3139. {
  3140. int err = 0;
  3141. if (handle) {
  3142. err = ext3_get_inode_loc(inode, iloc);
  3143. if (!err) {
  3144. BUFFER_TRACE(iloc->bh, "get_write_access");
  3145. err = ext3_journal_get_write_access(handle, iloc->bh);
  3146. if (err) {
  3147. brelse(iloc->bh);
  3148. iloc->bh = NULL;
  3149. }
  3150. }
  3151. }
  3152. ext3_std_error(inode->i_sb, err);
  3153. return err;
  3154. }
  3155. /*
  3156. * What we do here is to mark the in-core inode as clean with respect to inode
  3157. * dirtiness (it may still be data-dirty).
  3158. * This means that the in-core inode may be reaped by prune_icache
  3159. * without having to perform any I/O. This is a very good thing,
  3160. * because *any* task may call prune_icache - even ones which
  3161. * have a transaction open against a different journal.
  3162. *
  3163. * Is this cheating? Not really. Sure, we haven't written the
  3164. * inode out, but prune_icache isn't a user-visible syncing function.
  3165. * Whenever the user wants stuff synced (sys_sync, sys_msync, sys_fsync)
  3166. * we start and wait on commits.
  3167. */
  3168. int ext3_mark_inode_dirty(handle_t *handle, struct inode *inode)
  3169. {
  3170. struct ext3_iloc iloc;
  3171. int err;
  3172. might_sleep();
  3173. trace_ext3_mark_inode_dirty(inode, _RET_IP_);
  3174. err = ext3_reserve_inode_write(handle, inode, &iloc);
  3175. if (!err)
  3176. err = ext3_mark_iloc_dirty(handle, inode, &iloc);
  3177. return err;
  3178. }
  3179. /*
  3180. * ext3_dirty_inode() is called from __mark_inode_dirty()
  3181. *
  3182. * We're really interested in the case where a file is being extended.
  3183. * i_size has been changed by generic_commit_write() and we thus need
  3184. * to include the updated inode in the current transaction.
  3185. *
  3186. * Also, dquot_alloc_space() will always dirty the inode when blocks
  3187. * are allocated to the file.
  3188. *
  3189. * If the inode is marked synchronous, we don't honour that here - doing
  3190. * so would cause a commit on atime updates, which we don't bother doing.
  3191. * We handle synchronous inodes at the highest possible level.
  3192. */
  3193. void ext3_dirty_inode(struct inode *inode, int flags)
  3194. {
  3195. handle_t *current_handle = ext3_journal_current_handle();
  3196. handle_t *handle;
  3197. handle = ext3_journal_start(inode, 2);
  3198. if (IS_ERR(handle))
  3199. goto out;
  3200. if (current_handle &&
  3201. current_handle->h_transaction != handle->h_transaction) {
  3202. /* This task has a transaction open against a different fs */
  3203. printk(KERN_EMERG "%s: transactions do not match!\n",
  3204. __func__);
  3205. } else {
  3206. jbd_debug(5, "marking dirty. outer handle=%p\n",
  3207. current_handle);
  3208. ext3_mark_inode_dirty(handle, inode);
  3209. }
  3210. ext3_journal_stop(handle);
  3211. out:
  3212. return;
  3213. }
  3214. #if 0
  3215. /*
  3216. * Bind an inode's backing buffer_head into this transaction, to prevent
  3217. * it from being flushed to disk early. Unlike
  3218. * ext3_reserve_inode_write, this leaves behind no bh reference and
  3219. * returns no iloc structure, so the caller needs to repeat the iloc
  3220. * lookup to mark the inode dirty later.
  3221. */
  3222. static int ext3_pin_inode(handle_t *handle, struct inode *inode)
  3223. {
  3224. struct ext3_iloc iloc;
  3225. int err = 0;
  3226. if (handle) {
  3227. err = ext3_get_inode_loc(inode, &iloc);
  3228. if (!err) {
  3229. BUFFER_TRACE(iloc.bh, "get_write_access");
  3230. err = journal_get_write_access(handle, iloc.bh);
  3231. if (!err)
  3232. err = ext3_journal_dirty_metadata(handle,
  3233. iloc.bh);
  3234. brelse(iloc.bh);
  3235. }
  3236. }
  3237. ext3_std_error(inode->i_sb, err);
  3238. return err;
  3239. }
  3240. #endif
  3241. int ext3_change_inode_journal_flag(struct inode *inode, int val)
  3242. {
  3243. journal_t *journal;
  3244. handle_t *handle;
  3245. int err;
  3246. /*
  3247. * We have to be very careful here: changing a data block's
  3248. * journaling status dynamically is dangerous. If we write a
  3249. * data block to the journal, change the status and then delete
  3250. * that block, we risk forgetting to revoke the old log record
  3251. * from the journal and so a subsequent replay can corrupt data.
  3252. * So, first we make sure that the journal is empty and that
  3253. * nobody is changing anything.
  3254. */
  3255. journal = EXT3_JOURNAL(inode);
  3256. if (is_journal_aborted(journal))
  3257. return -EROFS;
  3258. journal_lock_updates(journal);
  3259. journal_flush(journal);
  3260. /*
  3261. * OK, there are no updates running now, and all cached data is
  3262. * synced to disk. We are now in a completely consistent state
  3263. * which doesn't have anything in the journal, and we know that
  3264. * no filesystem updates are running, so it is safe to modify
  3265. * the inode's in-core data-journaling state flag now.
  3266. */
  3267. if (val)
  3268. EXT3_I(inode)->i_flags |= EXT3_JOURNAL_DATA_FL;
  3269. else
  3270. EXT3_I(inode)->i_flags &= ~EXT3_JOURNAL_DATA_FL;
  3271. ext3_set_aops(inode);
  3272. journal_unlock_updates(journal);
  3273. /* Finally we can mark the inode as dirty. */
  3274. handle = ext3_journal_start(inode, 1);
  3275. if (IS_ERR(handle))
  3276. return PTR_ERR(handle);
  3277. err = ext3_mark_inode_dirty(handle, inode);
  3278. handle->h_sync = 1;
  3279. ext3_journal_stop(handle);
  3280. ext3_std_error(inode->i_sb, err);
  3281. return err;
  3282. }