file.c 59 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484
  1. /* -*- mode: c; c-basic-offset: 8; -*-
  2. * vim: noexpandtab sw=8 ts=8 sts=0:
  3. *
  4. * file.c
  5. *
  6. * File open, close, extend, truncate
  7. *
  8. * Copyright (C) 2002, 2004 Oracle. All rights reserved.
  9. *
  10. * This program is free software; you can redistribute it and/or
  11. * modify it under the terms of the GNU General Public
  12. * License as published by the Free Software Foundation; either
  13. * version 2 of the License, or (at your option) any later version.
  14. *
  15. * This program is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  18. * General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU General Public
  21. * License along with this program; if not, write to the
  22. * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  23. * Boston, MA 021110-1307, USA.
  24. */
  25. #include <linux/capability.h>
  26. #include <linux/fs.h>
  27. #include <linux/types.h>
  28. #include <linux/slab.h>
  29. #include <linux/highmem.h>
  30. #include <linux/pagemap.h>
  31. #include <linux/uio.h>
  32. #include <linux/sched.h>
  33. #include <linux/splice.h>
  34. #include <linux/mount.h>
  35. #include <linux/writeback.h>
  36. #include <linux/falloc.h>
  37. #include <linux/quotaops.h>
  38. #define MLOG_MASK_PREFIX ML_INODE
  39. #include <cluster/masklog.h>
  40. #include "ocfs2.h"
  41. #include "alloc.h"
  42. #include "aops.h"
  43. #include "dir.h"
  44. #include "dlmglue.h"
  45. #include "extent_map.h"
  46. #include "file.h"
  47. #include "sysfile.h"
  48. #include "inode.h"
  49. #include "ioctl.h"
  50. #include "journal.h"
  51. #include "locks.h"
  52. #include "mmap.h"
  53. #include "suballoc.h"
  54. #include "super.h"
  55. #include "xattr.h"
  56. #include "acl.h"
  57. #include "quota.h"
  58. #include "refcounttree.h"
  59. #include "buffer_head_io.h"
  60. static int ocfs2_sync_inode(struct inode *inode)
  61. {
  62. filemap_fdatawrite(inode->i_mapping);
  63. return sync_mapping_buffers(inode->i_mapping);
  64. }
  65. static int ocfs2_init_file_private(struct inode *inode, struct file *file)
  66. {
  67. struct ocfs2_file_private *fp;
  68. fp = kzalloc(sizeof(struct ocfs2_file_private), GFP_KERNEL);
  69. if (!fp)
  70. return -ENOMEM;
  71. fp->fp_file = file;
  72. mutex_init(&fp->fp_mutex);
  73. ocfs2_file_lock_res_init(&fp->fp_flock, fp);
  74. file->private_data = fp;
  75. return 0;
  76. }
  77. static void ocfs2_free_file_private(struct inode *inode, struct file *file)
  78. {
  79. struct ocfs2_file_private *fp = file->private_data;
  80. struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
  81. if (fp) {
  82. ocfs2_simple_drop_lockres(osb, &fp->fp_flock);
  83. ocfs2_lock_res_free(&fp->fp_flock);
  84. kfree(fp);
  85. file->private_data = NULL;
  86. }
  87. }
  88. static int ocfs2_file_open(struct inode *inode, struct file *file)
  89. {
  90. int status;
  91. int mode = file->f_flags;
  92. struct ocfs2_inode_info *oi = OCFS2_I(inode);
  93. mlog_entry("(0x%p, 0x%p, '%.*s')\n", inode, file,
  94. file->f_path.dentry->d_name.len, file->f_path.dentry->d_name.name);
  95. if (file->f_mode & FMODE_WRITE)
  96. dquot_initialize(inode);
  97. spin_lock(&oi->ip_lock);
  98. /* Check that the inode hasn't been wiped from disk by another
  99. * node. If it hasn't then we're safe as long as we hold the
  100. * spin lock until our increment of open count. */
  101. if (OCFS2_I(inode)->ip_flags & OCFS2_INODE_DELETED) {
  102. spin_unlock(&oi->ip_lock);
  103. status = -ENOENT;
  104. goto leave;
  105. }
  106. if (mode & O_DIRECT)
  107. oi->ip_flags |= OCFS2_INODE_OPEN_DIRECT;
  108. oi->ip_open_count++;
  109. spin_unlock(&oi->ip_lock);
  110. status = ocfs2_init_file_private(inode, file);
  111. if (status) {
  112. /*
  113. * We want to set open count back if we're failing the
  114. * open.
  115. */
  116. spin_lock(&oi->ip_lock);
  117. oi->ip_open_count--;
  118. spin_unlock(&oi->ip_lock);
  119. }
  120. leave:
  121. mlog_exit(status);
  122. return status;
  123. }
  124. static int ocfs2_file_release(struct inode *inode, struct file *file)
  125. {
  126. struct ocfs2_inode_info *oi = OCFS2_I(inode);
  127. mlog_entry("(0x%p, 0x%p, '%.*s')\n", inode, file,
  128. file->f_path.dentry->d_name.len,
  129. file->f_path.dentry->d_name.name);
  130. spin_lock(&oi->ip_lock);
  131. if (!--oi->ip_open_count)
  132. oi->ip_flags &= ~OCFS2_INODE_OPEN_DIRECT;
  133. spin_unlock(&oi->ip_lock);
  134. ocfs2_free_file_private(inode, file);
  135. mlog_exit(0);
  136. return 0;
  137. }
  138. static int ocfs2_dir_open(struct inode *inode, struct file *file)
  139. {
  140. return ocfs2_init_file_private(inode, file);
  141. }
  142. static int ocfs2_dir_release(struct inode *inode, struct file *file)
  143. {
  144. ocfs2_free_file_private(inode, file);
  145. return 0;
  146. }
  147. static int ocfs2_sync_file(struct file *file, int datasync)
  148. {
  149. int err = 0;
  150. journal_t *journal;
  151. struct dentry *dentry = file->f_path.dentry;
  152. struct inode *inode = file->f_mapping->host;
  153. struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
  154. mlog_entry("(0x%p, 0x%p, %d, '%.*s')\n", file, dentry, datasync,
  155. dentry->d_name.len, dentry->d_name.name);
  156. err = ocfs2_sync_inode(dentry->d_inode);
  157. if (err)
  158. goto bail;
  159. if (datasync && !(inode->i_state & I_DIRTY_DATASYNC))
  160. goto bail;
  161. journal = osb->journal->j_journal;
  162. err = jbd2_journal_force_commit(journal);
  163. bail:
  164. mlog_exit(err);
  165. return (err < 0) ? -EIO : 0;
  166. }
  167. int ocfs2_should_update_atime(struct inode *inode,
  168. struct vfsmount *vfsmnt)
  169. {
  170. struct timespec now;
  171. struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
  172. if (ocfs2_is_hard_readonly(osb) || ocfs2_is_soft_readonly(osb))
  173. return 0;
  174. if ((inode->i_flags & S_NOATIME) ||
  175. ((inode->i_sb->s_flags & MS_NODIRATIME) && S_ISDIR(inode->i_mode)))
  176. return 0;
  177. /*
  178. * We can be called with no vfsmnt structure - NFSD will
  179. * sometimes do this.
  180. *
  181. * Note that our action here is different than touch_atime() -
  182. * if we can't tell whether this is a noatime mount, then we
  183. * don't know whether to trust the value of s_atime_quantum.
  184. */
  185. if (vfsmnt == NULL)
  186. return 0;
  187. if ((vfsmnt->mnt_flags & MNT_NOATIME) ||
  188. ((vfsmnt->mnt_flags & MNT_NODIRATIME) && S_ISDIR(inode->i_mode)))
  189. return 0;
  190. if (vfsmnt->mnt_flags & MNT_RELATIME) {
  191. if ((timespec_compare(&inode->i_atime, &inode->i_mtime) <= 0) ||
  192. (timespec_compare(&inode->i_atime, &inode->i_ctime) <= 0))
  193. return 1;
  194. return 0;
  195. }
  196. now = CURRENT_TIME;
  197. if ((now.tv_sec - inode->i_atime.tv_sec <= osb->s_atime_quantum))
  198. return 0;
  199. else
  200. return 1;
  201. }
  202. int ocfs2_update_inode_atime(struct inode *inode,
  203. struct buffer_head *bh)
  204. {
  205. int ret;
  206. struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
  207. handle_t *handle;
  208. struct ocfs2_dinode *di = (struct ocfs2_dinode *) bh->b_data;
  209. mlog_entry_void();
  210. handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS);
  211. if (IS_ERR(handle)) {
  212. ret = PTR_ERR(handle);
  213. mlog_errno(ret);
  214. goto out;
  215. }
  216. ret = ocfs2_journal_access_di(handle, INODE_CACHE(inode), bh,
  217. OCFS2_JOURNAL_ACCESS_WRITE);
  218. if (ret) {
  219. mlog_errno(ret);
  220. goto out_commit;
  221. }
  222. /*
  223. * Don't use ocfs2_mark_inode_dirty() here as we don't always
  224. * have i_mutex to guard against concurrent changes to other
  225. * inode fields.
  226. */
  227. inode->i_atime = CURRENT_TIME;
  228. di->i_atime = cpu_to_le64(inode->i_atime.tv_sec);
  229. di->i_atime_nsec = cpu_to_le32(inode->i_atime.tv_nsec);
  230. ocfs2_journal_dirty(handle, bh);
  231. out_commit:
  232. ocfs2_commit_trans(OCFS2_SB(inode->i_sb), handle);
  233. out:
  234. mlog_exit(ret);
  235. return ret;
  236. }
  237. static int ocfs2_set_inode_size(handle_t *handle,
  238. struct inode *inode,
  239. struct buffer_head *fe_bh,
  240. u64 new_i_size)
  241. {
  242. int status;
  243. mlog_entry_void();
  244. i_size_write(inode, new_i_size);
  245. inode->i_blocks = ocfs2_inode_sector_count(inode);
  246. inode->i_ctime = inode->i_mtime = CURRENT_TIME;
  247. status = ocfs2_mark_inode_dirty(handle, inode, fe_bh);
  248. if (status < 0) {
  249. mlog_errno(status);
  250. goto bail;
  251. }
  252. bail:
  253. mlog_exit(status);
  254. return status;
  255. }
  256. int ocfs2_simple_size_update(struct inode *inode,
  257. struct buffer_head *di_bh,
  258. u64 new_i_size)
  259. {
  260. int ret;
  261. struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
  262. handle_t *handle = NULL;
  263. handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS);
  264. if (IS_ERR(handle)) {
  265. ret = PTR_ERR(handle);
  266. mlog_errno(ret);
  267. goto out;
  268. }
  269. ret = ocfs2_set_inode_size(handle, inode, di_bh,
  270. new_i_size);
  271. if (ret < 0)
  272. mlog_errno(ret);
  273. ocfs2_commit_trans(osb, handle);
  274. out:
  275. return ret;
  276. }
  277. static int ocfs2_cow_file_pos(struct inode *inode,
  278. struct buffer_head *fe_bh,
  279. u64 offset)
  280. {
  281. int status;
  282. u32 phys, cpos = offset >> OCFS2_SB(inode->i_sb)->s_clustersize_bits;
  283. unsigned int num_clusters = 0;
  284. unsigned int ext_flags = 0;
  285. /*
  286. * If the new offset is aligned to the range of the cluster, there is
  287. * no space for ocfs2_zero_range_for_truncate to fill, so no need to
  288. * CoW either.
  289. */
  290. if ((offset & (OCFS2_SB(inode->i_sb)->s_clustersize - 1)) == 0)
  291. return 0;
  292. status = ocfs2_get_clusters(inode, cpos, &phys,
  293. &num_clusters, &ext_flags);
  294. if (status) {
  295. mlog_errno(status);
  296. goto out;
  297. }
  298. if (!(ext_flags & OCFS2_EXT_REFCOUNTED))
  299. goto out;
  300. return ocfs2_refcount_cow(inode, fe_bh, cpos, 1, cpos+1);
  301. out:
  302. return status;
  303. }
  304. static int ocfs2_orphan_for_truncate(struct ocfs2_super *osb,
  305. struct inode *inode,
  306. struct buffer_head *fe_bh,
  307. u64 new_i_size)
  308. {
  309. int status;
  310. handle_t *handle;
  311. struct ocfs2_dinode *di;
  312. u64 cluster_bytes;
  313. mlog_entry_void();
  314. /*
  315. * We need to CoW the cluster contains the offset if it is reflinked
  316. * since we will call ocfs2_zero_range_for_truncate later which will
  317. * write "0" from offset to the end of the cluster.
  318. */
  319. status = ocfs2_cow_file_pos(inode, fe_bh, new_i_size);
  320. if (status) {
  321. mlog_errno(status);
  322. return status;
  323. }
  324. /* TODO: This needs to actually orphan the inode in this
  325. * transaction. */
  326. handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS);
  327. if (IS_ERR(handle)) {
  328. status = PTR_ERR(handle);
  329. mlog_errno(status);
  330. goto out;
  331. }
  332. status = ocfs2_journal_access_di(handle, INODE_CACHE(inode), fe_bh,
  333. OCFS2_JOURNAL_ACCESS_WRITE);
  334. if (status < 0) {
  335. mlog_errno(status);
  336. goto out_commit;
  337. }
  338. /*
  339. * Do this before setting i_size.
  340. */
  341. cluster_bytes = ocfs2_align_bytes_to_clusters(inode->i_sb, new_i_size);
  342. status = ocfs2_zero_range_for_truncate(inode, handle, new_i_size,
  343. cluster_bytes);
  344. if (status) {
  345. mlog_errno(status);
  346. goto out_commit;
  347. }
  348. i_size_write(inode, new_i_size);
  349. inode->i_ctime = inode->i_mtime = CURRENT_TIME;
  350. di = (struct ocfs2_dinode *) fe_bh->b_data;
  351. di->i_size = cpu_to_le64(new_i_size);
  352. di->i_ctime = di->i_mtime = cpu_to_le64(inode->i_ctime.tv_sec);
  353. di->i_ctime_nsec = di->i_mtime_nsec = cpu_to_le32(inode->i_ctime.tv_nsec);
  354. ocfs2_journal_dirty(handle, fe_bh);
  355. out_commit:
  356. ocfs2_commit_trans(osb, handle);
  357. out:
  358. mlog_exit(status);
  359. return status;
  360. }
  361. static int ocfs2_truncate_file(struct inode *inode,
  362. struct buffer_head *di_bh,
  363. u64 new_i_size)
  364. {
  365. int status = 0;
  366. struct ocfs2_dinode *fe = NULL;
  367. struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
  368. mlog_entry("(inode = %llu, new_i_size = %llu\n",
  369. (unsigned long long)OCFS2_I(inode)->ip_blkno,
  370. (unsigned long long)new_i_size);
  371. /* We trust di_bh because it comes from ocfs2_inode_lock(), which
  372. * already validated it */
  373. fe = (struct ocfs2_dinode *) di_bh->b_data;
  374. mlog_bug_on_msg(le64_to_cpu(fe->i_size) != i_size_read(inode),
  375. "Inode %llu, inode i_size = %lld != di "
  376. "i_size = %llu, i_flags = 0x%x\n",
  377. (unsigned long long)OCFS2_I(inode)->ip_blkno,
  378. i_size_read(inode),
  379. (unsigned long long)le64_to_cpu(fe->i_size),
  380. le32_to_cpu(fe->i_flags));
  381. if (new_i_size > le64_to_cpu(fe->i_size)) {
  382. mlog(0, "asked to truncate file with size (%llu) to size (%llu)!\n",
  383. (unsigned long long)le64_to_cpu(fe->i_size),
  384. (unsigned long long)new_i_size);
  385. status = -EINVAL;
  386. mlog_errno(status);
  387. goto bail;
  388. }
  389. mlog(0, "inode %llu, i_size = %llu, new_i_size = %llu\n",
  390. (unsigned long long)le64_to_cpu(fe->i_blkno),
  391. (unsigned long long)le64_to_cpu(fe->i_size),
  392. (unsigned long long)new_i_size);
  393. /* lets handle the simple truncate cases before doing any more
  394. * cluster locking. */
  395. if (new_i_size == le64_to_cpu(fe->i_size))
  396. goto bail;
  397. down_write(&OCFS2_I(inode)->ip_alloc_sem);
  398. ocfs2_resv_discard(&osb->osb_la_resmap,
  399. &OCFS2_I(inode)->ip_la_data_resv);
  400. /*
  401. * The inode lock forced other nodes to sync and drop their
  402. * pages, which (correctly) happens even if we have a truncate
  403. * without allocation change - ocfs2 cluster sizes can be much
  404. * greater than page size, so we have to truncate them
  405. * anyway.
  406. */
  407. unmap_mapping_range(inode->i_mapping, new_i_size + PAGE_SIZE - 1, 0, 1);
  408. truncate_inode_pages(inode->i_mapping, new_i_size);
  409. if (OCFS2_I(inode)->ip_dyn_features & OCFS2_INLINE_DATA_FL) {
  410. status = ocfs2_truncate_inline(inode, di_bh, new_i_size,
  411. i_size_read(inode), 1);
  412. if (status)
  413. mlog_errno(status);
  414. goto bail_unlock_sem;
  415. }
  416. /* alright, we're going to need to do a full blown alloc size
  417. * change. Orphan the inode so that recovery can complete the
  418. * truncate if necessary. This does the task of marking
  419. * i_size. */
  420. status = ocfs2_orphan_for_truncate(osb, inode, di_bh, new_i_size);
  421. if (status < 0) {
  422. mlog_errno(status);
  423. goto bail_unlock_sem;
  424. }
  425. status = ocfs2_commit_truncate(osb, inode, di_bh);
  426. if (status < 0) {
  427. mlog_errno(status);
  428. goto bail_unlock_sem;
  429. }
  430. /* TODO: orphan dir cleanup here. */
  431. bail_unlock_sem:
  432. up_write(&OCFS2_I(inode)->ip_alloc_sem);
  433. bail:
  434. if (!status && OCFS2_I(inode)->ip_clusters == 0)
  435. status = ocfs2_try_remove_refcount_tree(inode, di_bh);
  436. mlog_exit(status);
  437. return status;
  438. }
  439. /*
  440. * extend file allocation only here.
  441. * we'll update all the disk stuff, and oip->alloc_size
  442. *
  443. * expect stuff to be locked, a transaction started and enough data /
  444. * metadata reservations in the contexts.
  445. *
  446. * Will return -EAGAIN, and a reason if a restart is needed.
  447. * If passed in, *reason will always be set, even in error.
  448. */
  449. int ocfs2_add_inode_data(struct ocfs2_super *osb,
  450. struct inode *inode,
  451. u32 *logical_offset,
  452. u32 clusters_to_add,
  453. int mark_unwritten,
  454. struct buffer_head *fe_bh,
  455. handle_t *handle,
  456. struct ocfs2_alloc_context *data_ac,
  457. struct ocfs2_alloc_context *meta_ac,
  458. enum ocfs2_alloc_restarted *reason_ret)
  459. {
  460. int ret;
  461. struct ocfs2_extent_tree et;
  462. ocfs2_init_dinode_extent_tree(&et, INODE_CACHE(inode), fe_bh);
  463. ret = ocfs2_add_clusters_in_btree(handle, &et, logical_offset,
  464. clusters_to_add, mark_unwritten,
  465. data_ac, meta_ac, reason_ret);
  466. return ret;
  467. }
  468. static int __ocfs2_extend_allocation(struct inode *inode, u32 logical_start,
  469. u32 clusters_to_add, int mark_unwritten)
  470. {
  471. int status = 0;
  472. int restart_func = 0;
  473. int credits;
  474. u32 prev_clusters;
  475. struct buffer_head *bh = NULL;
  476. struct ocfs2_dinode *fe = NULL;
  477. handle_t *handle = NULL;
  478. struct ocfs2_alloc_context *data_ac = NULL;
  479. struct ocfs2_alloc_context *meta_ac = NULL;
  480. enum ocfs2_alloc_restarted why;
  481. struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
  482. struct ocfs2_extent_tree et;
  483. int did_quota = 0;
  484. mlog_entry("(clusters_to_add = %u)\n", clusters_to_add);
  485. /*
  486. * This function only exists for file systems which don't
  487. * support holes.
  488. */
  489. BUG_ON(mark_unwritten && !ocfs2_sparse_alloc(osb));
  490. status = ocfs2_read_inode_block(inode, &bh);
  491. if (status < 0) {
  492. mlog_errno(status);
  493. goto leave;
  494. }
  495. fe = (struct ocfs2_dinode *) bh->b_data;
  496. restart_all:
  497. BUG_ON(le32_to_cpu(fe->i_clusters) != OCFS2_I(inode)->ip_clusters);
  498. mlog(0, "extend inode %llu, i_size = %lld, di->i_clusters = %u, "
  499. "clusters_to_add = %u\n",
  500. (unsigned long long)OCFS2_I(inode)->ip_blkno,
  501. (long long)i_size_read(inode), le32_to_cpu(fe->i_clusters),
  502. clusters_to_add);
  503. ocfs2_init_dinode_extent_tree(&et, INODE_CACHE(inode), bh);
  504. status = ocfs2_lock_allocators(inode, &et, clusters_to_add, 0,
  505. &data_ac, &meta_ac);
  506. if (status) {
  507. mlog_errno(status);
  508. goto leave;
  509. }
  510. credits = ocfs2_calc_extend_credits(osb->sb, &fe->id2.i_list,
  511. clusters_to_add);
  512. handle = ocfs2_start_trans(osb, credits);
  513. if (IS_ERR(handle)) {
  514. status = PTR_ERR(handle);
  515. handle = NULL;
  516. mlog_errno(status);
  517. goto leave;
  518. }
  519. restarted_transaction:
  520. status = dquot_alloc_space_nodirty(inode,
  521. ocfs2_clusters_to_bytes(osb->sb, clusters_to_add));
  522. if (status)
  523. goto leave;
  524. did_quota = 1;
  525. /* reserve a write to the file entry early on - that we if we
  526. * run out of credits in the allocation path, we can still
  527. * update i_size. */
  528. status = ocfs2_journal_access_di(handle, INODE_CACHE(inode), bh,
  529. OCFS2_JOURNAL_ACCESS_WRITE);
  530. if (status < 0) {
  531. mlog_errno(status);
  532. goto leave;
  533. }
  534. prev_clusters = OCFS2_I(inode)->ip_clusters;
  535. status = ocfs2_add_inode_data(osb,
  536. inode,
  537. &logical_start,
  538. clusters_to_add,
  539. mark_unwritten,
  540. bh,
  541. handle,
  542. data_ac,
  543. meta_ac,
  544. &why);
  545. if ((status < 0) && (status != -EAGAIN)) {
  546. if (status != -ENOSPC)
  547. mlog_errno(status);
  548. goto leave;
  549. }
  550. ocfs2_journal_dirty(handle, bh);
  551. spin_lock(&OCFS2_I(inode)->ip_lock);
  552. clusters_to_add -= (OCFS2_I(inode)->ip_clusters - prev_clusters);
  553. spin_unlock(&OCFS2_I(inode)->ip_lock);
  554. /* Release unused quota reservation */
  555. dquot_free_space(inode,
  556. ocfs2_clusters_to_bytes(osb->sb, clusters_to_add));
  557. did_quota = 0;
  558. if (why != RESTART_NONE && clusters_to_add) {
  559. if (why == RESTART_META) {
  560. mlog(0, "restarting function.\n");
  561. restart_func = 1;
  562. status = 0;
  563. } else {
  564. BUG_ON(why != RESTART_TRANS);
  565. mlog(0, "restarting transaction.\n");
  566. /* TODO: This can be more intelligent. */
  567. credits = ocfs2_calc_extend_credits(osb->sb,
  568. &fe->id2.i_list,
  569. clusters_to_add);
  570. status = ocfs2_extend_trans(handle, credits);
  571. if (status < 0) {
  572. /* handle still has to be committed at
  573. * this point. */
  574. status = -ENOMEM;
  575. mlog_errno(status);
  576. goto leave;
  577. }
  578. goto restarted_transaction;
  579. }
  580. }
  581. mlog(0, "fe: i_clusters = %u, i_size=%llu\n",
  582. le32_to_cpu(fe->i_clusters),
  583. (unsigned long long)le64_to_cpu(fe->i_size));
  584. mlog(0, "inode: ip_clusters=%u, i_size=%lld\n",
  585. OCFS2_I(inode)->ip_clusters, (long long)i_size_read(inode));
  586. leave:
  587. if (status < 0 && did_quota)
  588. dquot_free_space(inode,
  589. ocfs2_clusters_to_bytes(osb->sb, clusters_to_add));
  590. if (handle) {
  591. ocfs2_commit_trans(osb, handle);
  592. handle = NULL;
  593. }
  594. if (data_ac) {
  595. ocfs2_free_alloc_context(data_ac);
  596. data_ac = NULL;
  597. }
  598. if (meta_ac) {
  599. ocfs2_free_alloc_context(meta_ac);
  600. meta_ac = NULL;
  601. }
  602. if ((!status) && restart_func) {
  603. restart_func = 0;
  604. goto restart_all;
  605. }
  606. brelse(bh);
  607. bh = NULL;
  608. mlog_exit(status);
  609. return status;
  610. }
  611. /* Some parts of this taken from generic_cont_expand, which turned out
  612. * to be too fragile to do exactly what we need without us having to
  613. * worry about recursive locking in ->write_begin() and ->write_end(). */
  614. static int ocfs2_write_zero_page(struct inode *inode,
  615. u64 size)
  616. {
  617. struct address_space *mapping = inode->i_mapping;
  618. struct page *page;
  619. unsigned long index;
  620. unsigned int offset;
  621. handle_t *handle = NULL;
  622. int ret;
  623. offset = (size & (PAGE_CACHE_SIZE-1)); /* Within page */
  624. /* ugh. in prepare/commit_write, if from==to==start of block, we
  625. ** skip the prepare. make sure we never send an offset for the start
  626. ** of a block
  627. */
  628. if ((offset & (inode->i_sb->s_blocksize - 1)) == 0) {
  629. offset++;
  630. }
  631. index = size >> PAGE_CACHE_SHIFT;
  632. page = grab_cache_page(mapping, index);
  633. if (!page) {
  634. ret = -ENOMEM;
  635. mlog_errno(ret);
  636. goto out;
  637. }
  638. ret = ocfs2_prepare_write_nolock(inode, page, offset, offset);
  639. if (ret < 0) {
  640. mlog_errno(ret);
  641. goto out_unlock;
  642. }
  643. if (ocfs2_should_order_data(inode)) {
  644. handle = ocfs2_start_walk_page_trans(inode, page, offset,
  645. offset);
  646. if (IS_ERR(handle)) {
  647. ret = PTR_ERR(handle);
  648. handle = NULL;
  649. goto out_unlock;
  650. }
  651. }
  652. /* must not update i_size! */
  653. ret = block_commit_write(page, offset, offset);
  654. if (ret < 0)
  655. mlog_errno(ret);
  656. else
  657. ret = 0;
  658. if (handle)
  659. ocfs2_commit_trans(OCFS2_SB(inode->i_sb), handle);
  660. out_unlock:
  661. unlock_page(page);
  662. page_cache_release(page);
  663. out:
  664. return ret;
  665. }
  666. static int ocfs2_zero_extend(struct inode *inode,
  667. u64 zero_to_size)
  668. {
  669. int ret = 0;
  670. u64 start_off;
  671. struct super_block *sb = inode->i_sb;
  672. start_off = ocfs2_align_bytes_to_blocks(sb, i_size_read(inode));
  673. while (start_off < zero_to_size) {
  674. ret = ocfs2_write_zero_page(inode, start_off);
  675. if (ret < 0) {
  676. mlog_errno(ret);
  677. goto out;
  678. }
  679. start_off += sb->s_blocksize;
  680. /*
  681. * Very large extends have the potential to lock up
  682. * the cpu for extended periods of time.
  683. */
  684. cond_resched();
  685. }
  686. out:
  687. return ret;
  688. }
  689. int ocfs2_extend_no_holes(struct inode *inode, u64 new_i_size, u64 zero_to)
  690. {
  691. int ret;
  692. u32 clusters_to_add;
  693. struct ocfs2_inode_info *oi = OCFS2_I(inode);
  694. clusters_to_add = ocfs2_clusters_for_bytes(inode->i_sb, new_i_size);
  695. if (clusters_to_add < oi->ip_clusters)
  696. clusters_to_add = 0;
  697. else
  698. clusters_to_add -= oi->ip_clusters;
  699. if (clusters_to_add) {
  700. ret = __ocfs2_extend_allocation(inode, oi->ip_clusters,
  701. clusters_to_add, 0);
  702. if (ret) {
  703. mlog_errno(ret);
  704. goto out;
  705. }
  706. }
  707. /*
  708. * Call this even if we don't add any clusters to the tree. We
  709. * still need to zero the area between the old i_size and the
  710. * new i_size.
  711. */
  712. ret = ocfs2_zero_extend(inode, zero_to);
  713. if (ret < 0)
  714. mlog_errno(ret);
  715. out:
  716. return ret;
  717. }
  718. static int ocfs2_extend_file(struct inode *inode,
  719. struct buffer_head *di_bh,
  720. u64 new_i_size)
  721. {
  722. int ret = 0;
  723. struct ocfs2_inode_info *oi = OCFS2_I(inode);
  724. BUG_ON(!di_bh);
  725. /* setattr sometimes calls us like this. */
  726. if (new_i_size == 0)
  727. goto out;
  728. if (i_size_read(inode) == new_i_size)
  729. goto out;
  730. BUG_ON(new_i_size < i_size_read(inode));
  731. /*
  732. * Fall through for converting inline data, even if the fs
  733. * supports sparse files.
  734. *
  735. * The check for inline data here is legal - nobody can add
  736. * the feature since we have i_mutex. We must check it again
  737. * after acquiring ip_alloc_sem though, as paths like mmap
  738. * might have raced us to converting the inode to extents.
  739. */
  740. if (!(oi->ip_dyn_features & OCFS2_INLINE_DATA_FL)
  741. && ocfs2_sparse_alloc(OCFS2_SB(inode->i_sb)))
  742. goto out_update_size;
  743. /*
  744. * The alloc sem blocks people in read/write from reading our
  745. * allocation until we're done changing it. We depend on
  746. * i_mutex to block other extend/truncate calls while we're
  747. * here.
  748. */
  749. down_write(&oi->ip_alloc_sem);
  750. if (oi->ip_dyn_features & OCFS2_INLINE_DATA_FL) {
  751. /*
  752. * We can optimize small extends by keeping the inodes
  753. * inline data.
  754. */
  755. if (ocfs2_size_fits_inline_data(di_bh, new_i_size)) {
  756. up_write(&oi->ip_alloc_sem);
  757. goto out_update_size;
  758. }
  759. ret = ocfs2_convert_inline_data_to_extents(inode, di_bh);
  760. if (ret) {
  761. up_write(&oi->ip_alloc_sem);
  762. mlog_errno(ret);
  763. goto out;
  764. }
  765. }
  766. if (!ocfs2_sparse_alloc(OCFS2_SB(inode->i_sb)))
  767. ret = ocfs2_extend_no_holes(inode, new_i_size, new_i_size);
  768. up_write(&oi->ip_alloc_sem);
  769. if (ret < 0) {
  770. mlog_errno(ret);
  771. goto out;
  772. }
  773. out_update_size:
  774. ret = ocfs2_simple_size_update(inode, di_bh, new_i_size);
  775. if (ret < 0)
  776. mlog_errno(ret);
  777. out:
  778. return ret;
  779. }
  780. int ocfs2_setattr(struct dentry *dentry, struct iattr *attr)
  781. {
  782. int status = 0, size_change;
  783. struct inode *inode = dentry->d_inode;
  784. struct super_block *sb = inode->i_sb;
  785. struct ocfs2_super *osb = OCFS2_SB(sb);
  786. struct buffer_head *bh = NULL;
  787. handle_t *handle = NULL;
  788. struct dquot *transfer_to[MAXQUOTAS] = { };
  789. int qtype;
  790. mlog_entry("(0x%p, '%.*s')\n", dentry,
  791. dentry->d_name.len, dentry->d_name.name);
  792. /* ensuring we don't even attempt to truncate a symlink */
  793. if (S_ISLNK(inode->i_mode))
  794. attr->ia_valid &= ~ATTR_SIZE;
  795. if (attr->ia_valid & ATTR_MODE)
  796. mlog(0, "mode change: %d\n", attr->ia_mode);
  797. if (attr->ia_valid & ATTR_UID)
  798. mlog(0, "uid change: %d\n", attr->ia_uid);
  799. if (attr->ia_valid & ATTR_GID)
  800. mlog(0, "gid change: %d\n", attr->ia_gid);
  801. if (attr->ia_valid & ATTR_SIZE)
  802. mlog(0, "size change...\n");
  803. if (attr->ia_valid & (ATTR_ATIME | ATTR_MTIME | ATTR_CTIME))
  804. mlog(0, "time change...\n");
  805. #define OCFS2_VALID_ATTRS (ATTR_ATIME | ATTR_MTIME | ATTR_CTIME | ATTR_SIZE \
  806. | ATTR_GID | ATTR_UID | ATTR_MODE)
  807. if (!(attr->ia_valid & OCFS2_VALID_ATTRS)) {
  808. mlog(0, "can't handle attrs: 0x%x\n", attr->ia_valid);
  809. return 0;
  810. }
  811. status = inode_change_ok(inode, attr);
  812. if (status)
  813. return status;
  814. if (is_quota_modification(inode, attr))
  815. dquot_initialize(inode);
  816. size_change = S_ISREG(inode->i_mode) && attr->ia_valid & ATTR_SIZE;
  817. if (size_change) {
  818. status = ocfs2_rw_lock(inode, 1);
  819. if (status < 0) {
  820. mlog_errno(status);
  821. goto bail;
  822. }
  823. }
  824. status = ocfs2_inode_lock(inode, &bh, 1);
  825. if (status < 0) {
  826. if (status != -ENOENT)
  827. mlog_errno(status);
  828. goto bail_unlock_rw;
  829. }
  830. if (size_change && attr->ia_size != i_size_read(inode)) {
  831. status = inode_newsize_ok(inode, attr->ia_size);
  832. if (status)
  833. goto bail_unlock;
  834. if (i_size_read(inode) > attr->ia_size) {
  835. if (ocfs2_should_order_data(inode)) {
  836. status = ocfs2_begin_ordered_truncate(inode,
  837. attr->ia_size);
  838. if (status)
  839. goto bail_unlock;
  840. }
  841. status = ocfs2_truncate_file(inode, bh, attr->ia_size);
  842. } else
  843. status = ocfs2_extend_file(inode, bh, attr->ia_size);
  844. if (status < 0) {
  845. if (status != -ENOSPC)
  846. mlog_errno(status);
  847. status = -ENOSPC;
  848. goto bail_unlock;
  849. }
  850. }
  851. if ((attr->ia_valid & ATTR_UID && attr->ia_uid != inode->i_uid) ||
  852. (attr->ia_valid & ATTR_GID && attr->ia_gid != inode->i_gid)) {
  853. /*
  854. * Gather pointers to quota structures so that allocation /
  855. * freeing of quota structures happens here and not inside
  856. * dquot_transfer() where we have problems with lock ordering
  857. */
  858. if (attr->ia_valid & ATTR_UID && attr->ia_uid != inode->i_uid
  859. && OCFS2_HAS_RO_COMPAT_FEATURE(sb,
  860. OCFS2_FEATURE_RO_COMPAT_USRQUOTA)) {
  861. transfer_to[USRQUOTA] = dqget(sb, attr->ia_uid,
  862. USRQUOTA);
  863. if (!transfer_to[USRQUOTA]) {
  864. status = -ESRCH;
  865. goto bail_unlock;
  866. }
  867. }
  868. if (attr->ia_valid & ATTR_GID && attr->ia_gid != inode->i_gid
  869. && OCFS2_HAS_RO_COMPAT_FEATURE(sb,
  870. OCFS2_FEATURE_RO_COMPAT_GRPQUOTA)) {
  871. transfer_to[GRPQUOTA] = dqget(sb, attr->ia_gid,
  872. GRPQUOTA);
  873. if (!transfer_to[GRPQUOTA]) {
  874. status = -ESRCH;
  875. goto bail_unlock;
  876. }
  877. }
  878. handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS +
  879. 2 * ocfs2_quota_trans_credits(sb));
  880. if (IS_ERR(handle)) {
  881. status = PTR_ERR(handle);
  882. mlog_errno(status);
  883. goto bail_unlock;
  884. }
  885. status = __dquot_transfer(inode, transfer_to);
  886. if (status < 0)
  887. goto bail_commit;
  888. } else {
  889. handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS);
  890. if (IS_ERR(handle)) {
  891. status = PTR_ERR(handle);
  892. mlog_errno(status);
  893. goto bail_unlock;
  894. }
  895. }
  896. /*
  897. * This will intentionally not wind up calling simple_setsize(),
  898. * since all the work for a size change has been done above.
  899. * Otherwise, we could get into problems with truncate as
  900. * ip_alloc_sem is used there to protect against i_size
  901. * changes.
  902. */
  903. status = inode_setattr(inode, attr);
  904. if (status < 0) {
  905. mlog_errno(status);
  906. goto bail_commit;
  907. }
  908. status = ocfs2_mark_inode_dirty(handle, inode, bh);
  909. if (status < 0)
  910. mlog_errno(status);
  911. bail_commit:
  912. ocfs2_commit_trans(osb, handle);
  913. bail_unlock:
  914. ocfs2_inode_unlock(inode, 1);
  915. bail_unlock_rw:
  916. if (size_change)
  917. ocfs2_rw_unlock(inode, 1);
  918. bail:
  919. brelse(bh);
  920. /* Release quota pointers in case we acquired them */
  921. for (qtype = 0; qtype < MAXQUOTAS; qtype++)
  922. dqput(transfer_to[qtype]);
  923. if (!status && attr->ia_valid & ATTR_MODE) {
  924. status = ocfs2_acl_chmod(inode);
  925. if (status < 0)
  926. mlog_errno(status);
  927. }
  928. mlog_exit(status);
  929. return status;
  930. }
  931. int ocfs2_getattr(struct vfsmount *mnt,
  932. struct dentry *dentry,
  933. struct kstat *stat)
  934. {
  935. struct inode *inode = dentry->d_inode;
  936. struct super_block *sb = dentry->d_inode->i_sb;
  937. struct ocfs2_super *osb = sb->s_fs_info;
  938. int err;
  939. mlog_entry_void();
  940. err = ocfs2_inode_revalidate(dentry);
  941. if (err) {
  942. if (err != -ENOENT)
  943. mlog_errno(err);
  944. goto bail;
  945. }
  946. generic_fillattr(inode, stat);
  947. /* We set the blksize from the cluster size for performance */
  948. stat->blksize = osb->s_clustersize;
  949. bail:
  950. mlog_exit(err);
  951. return err;
  952. }
  953. int ocfs2_permission(struct inode *inode, int mask)
  954. {
  955. int ret;
  956. mlog_entry_void();
  957. ret = ocfs2_inode_lock(inode, NULL, 0);
  958. if (ret) {
  959. if (ret != -ENOENT)
  960. mlog_errno(ret);
  961. goto out;
  962. }
  963. ret = generic_permission(inode, mask, ocfs2_check_acl);
  964. ocfs2_inode_unlock(inode, 0);
  965. out:
  966. mlog_exit(ret);
  967. return ret;
  968. }
  969. static int __ocfs2_write_remove_suid(struct inode *inode,
  970. struct buffer_head *bh)
  971. {
  972. int ret;
  973. handle_t *handle;
  974. struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
  975. struct ocfs2_dinode *di;
  976. mlog_entry("(Inode %llu, mode 0%o)\n",
  977. (unsigned long long)OCFS2_I(inode)->ip_blkno, inode->i_mode);
  978. handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS);
  979. if (IS_ERR(handle)) {
  980. ret = PTR_ERR(handle);
  981. mlog_errno(ret);
  982. goto out;
  983. }
  984. ret = ocfs2_journal_access_di(handle, INODE_CACHE(inode), bh,
  985. OCFS2_JOURNAL_ACCESS_WRITE);
  986. if (ret < 0) {
  987. mlog_errno(ret);
  988. goto out_trans;
  989. }
  990. inode->i_mode &= ~S_ISUID;
  991. if ((inode->i_mode & S_ISGID) && (inode->i_mode & S_IXGRP))
  992. inode->i_mode &= ~S_ISGID;
  993. di = (struct ocfs2_dinode *) bh->b_data;
  994. di->i_mode = cpu_to_le16(inode->i_mode);
  995. ocfs2_journal_dirty(handle, bh);
  996. out_trans:
  997. ocfs2_commit_trans(osb, handle);
  998. out:
  999. mlog_exit(ret);
  1000. return ret;
  1001. }
  1002. /*
  1003. * Will look for holes and unwritten extents in the range starting at
  1004. * pos for count bytes (inclusive).
  1005. */
  1006. static int ocfs2_check_range_for_holes(struct inode *inode, loff_t pos,
  1007. size_t count)
  1008. {
  1009. int ret = 0;
  1010. unsigned int extent_flags;
  1011. u32 cpos, clusters, extent_len, phys_cpos;
  1012. struct super_block *sb = inode->i_sb;
  1013. cpos = pos >> OCFS2_SB(sb)->s_clustersize_bits;
  1014. clusters = ocfs2_clusters_for_bytes(sb, pos + count) - cpos;
  1015. while (clusters) {
  1016. ret = ocfs2_get_clusters(inode, cpos, &phys_cpos, &extent_len,
  1017. &extent_flags);
  1018. if (ret < 0) {
  1019. mlog_errno(ret);
  1020. goto out;
  1021. }
  1022. if (phys_cpos == 0 || (extent_flags & OCFS2_EXT_UNWRITTEN)) {
  1023. ret = 1;
  1024. break;
  1025. }
  1026. if (extent_len > clusters)
  1027. extent_len = clusters;
  1028. clusters -= extent_len;
  1029. cpos += extent_len;
  1030. }
  1031. out:
  1032. return ret;
  1033. }
  1034. static int ocfs2_write_remove_suid(struct inode *inode)
  1035. {
  1036. int ret;
  1037. struct buffer_head *bh = NULL;
  1038. ret = ocfs2_read_inode_block(inode, &bh);
  1039. if (ret < 0) {
  1040. mlog_errno(ret);
  1041. goto out;
  1042. }
  1043. ret = __ocfs2_write_remove_suid(inode, bh);
  1044. out:
  1045. brelse(bh);
  1046. return ret;
  1047. }
  1048. /*
  1049. * Allocate enough extents to cover the region starting at byte offset
  1050. * start for len bytes. Existing extents are skipped, any extents
  1051. * added are marked as "unwritten".
  1052. */
  1053. static int ocfs2_allocate_unwritten_extents(struct inode *inode,
  1054. u64 start, u64 len)
  1055. {
  1056. int ret;
  1057. u32 cpos, phys_cpos, clusters, alloc_size;
  1058. u64 end = start + len;
  1059. struct buffer_head *di_bh = NULL;
  1060. if (OCFS2_I(inode)->ip_dyn_features & OCFS2_INLINE_DATA_FL) {
  1061. ret = ocfs2_read_inode_block(inode, &di_bh);
  1062. if (ret) {
  1063. mlog_errno(ret);
  1064. goto out;
  1065. }
  1066. /*
  1067. * Nothing to do if the requested reservation range
  1068. * fits within the inode.
  1069. */
  1070. if (ocfs2_size_fits_inline_data(di_bh, end))
  1071. goto out;
  1072. ret = ocfs2_convert_inline_data_to_extents(inode, di_bh);
  1073. if (ret) {
  1074. mlog_errno(ret);
  1075. goto out;
  1076. }
  1077. }
  1078. /*
  1079. * We consider both start and len to be inclusive.
  1080. */
  1081. cpos = start >> OCFS2_SB(inode->i_sb)->s_clustersize_bits;
  1082. clusters = ocfs2_clusters_for_bytes(inode->i_sb, start + len);
  1083. clusters -= cpos;
  1084. while (clusters) {
  1085. ret = ocfs2_get_clusters(inode, cpos, &phys_cpos,
  1086. &alloc_size, NULL);
  1087. if (ret) {
  1088. mlog_errno(ret);
  1089. goto out;
  1090. }
  1091. /*
  1092. * Hole or existing extent len can be arbitrary, so
  1093. * cap it to our own allocation request.
  1094. */
  1095. if (alloc_size > clusters)
  1096. alloc_size = clusters;
  1097. if (phys_cpos) {
  1098. /*
  1099. * We already have an allocation at this
  1100. * region so we can safely skip it.
  1101. */
  1102. goto next;
  1103. }
  1104. ret = __ocfs2_extend_allocation(inode, cpos, alloc_size, 1);
  1105. if (ret) {
  1106. if (ret != -ENOSPC)
  1107. mlog_errno(ret);
  1108. goto out;
  1109. }
  1110. next:
  1111. cpos += alloc_size;
  1112. clusters -= alloc_size;
  1113. }
  1114. ret = 0;
  1115. out:
  1116. brelse(di_bh);
  1117. return ret;
  1118. }
  1119. /*
  1120. * Truncate a byte range, avoiding pages within partial clusters. This
  1121. * preserves those pages for the zeroing code to write to.
  1122. */
  1123. static void ocfs2_truncate_cluster_pages(struct inode *inode, u64 byte_start,
  1124. u64 byte_len)
  1125. {
  1126. struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
  1127. loff_t start, end;
  1128. struct address_space *mapping = inode->i_mapping;
  1129. start = (loff_t)ocfs2_align_bytes_to_clusters(inode->i_sb, byte_start);
  1130. end = byte_start + byte_len;
  1131. end = end & ~(osb->s_clustersize - 1);
  1132. if (start < end) {
  1133. unmap_mapping_range(mapping, start, end - start, 0);
  1134. truncate_inode_pages_range(mapping, start, end - 1);
  1135. }
  1136. }
  1137. static int ocfs2_zero_partial_clusters(struct inode *inode,
  1138. u64 start, u64 len)
  1139. {
  1140. int ret = 0;
  1141. u64 tmpend, end = start + len;
  1142. struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
  1143. unsigned int csize = osb->s_clustersize;
  1144. handle_t *handle;
  1145. /*
  1146. * The "start" and "end" values are NOT necessarily part of
  1147. * the range whose allocation is being deleted. Rather, this
  1148. * is what the user passed in with the request. We must zero
  1149. * partial clusters here. There's no need to worry about
  1150. * physical allocation - the zeroing code knows to skip holes.
  1151. */
  1152. mlog(0, "byte start: %llu, end: %llu\n",
  1153. (unsigned long long)start, (unsigned long long)end);
  1154. /*
  1155. * If both edges are on a cluster boundary then there's no
  1156. * zeroing required as the region is part of the allocation to
  1157. * be truncated.
  1158. */
  1159. if ((start & (csize - 1)) == 0 && (end & (csize - 1)) == 0)
  1160. goto out;
  1161. handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS);
  1162. if (IS_ERR(handle)) {
  1163. ret = PTR_ERR(handle);
  1164. mlog_errno(ret);
  1165. goto out;
  1166. }
  1167. /*
  1168. * We want to get the byte offset of the end of the 1st cluster.
  1169. */
  1170. tmpend = (u64)osb->s_clustersize + (start & ~(osb->s_clustersize - 1));
  1171. if (tmpend > end)
  1172. tmpend = end;
  1173. mlog(0, "1st range: start: %llu, tmpend: %llu\n",
  1174. (unsigned long long)start, (unsigned long long)tmpend);
  1175. ret = ocfs2_zero_range_for_truncate(inode, handle, start, tmpend);
  1176. if (ret)
  1177. mlog_errno(ret);
  1178. if (tmpend < end) {
  1179. /*
  1180. * This may make start and end equal, but the zeroing
  1181. * code will skip any work in that case so there's no
  1182. * need to catch it up here.
  1183. */
  1184. start = end & ~(osb->s_clustersize - 1);
  1185. mlog(0, "2nd range: start: %llu, end: %llu\n",
  1186. (unsigned long long)start, (unsigned long long)end);
  1187. ret = ocfs2_zero_range_for_truncate(inode, handle, start, end);
  1188. if (ret)
  1189. mlog_errno(ret);
  1190. }
  1191. ocfs2_commit_trans(osb, handle);
  1192. out:
  1193. return ret;
  1194. }
  1195. static int ocfs2_find_rec(struct ocfs2_extent_list *el, u32 pos)
  1196. {
  1197. int i;
  1198. struct ocfs2_extent_rec *rec = NULL;
  1199. for (i = le16_to_cpu(el->l_next_free_rec) - 1; i >= 0; i--) {
  1200. rec = &el->l_recs[i];
  1201. if (le32_to_cpu(rec->e_cpos) < pos)
  1202. break;
  1203. }
  1204. return i;
  1205. }
  1206. /*
  1207. * Helper to calculate the punching pos and length in one run, we handle the
  1208. * following three cases in order:
  1209. *
  1210. * - remove the entire record
  1211. * - remove a partial record
  1212. * - no record needs to be removed (hole-punching completed)
  1213. */
  1214. static void ocfs2_calc_trunc_pos(struct inode *inode,
  1215. struct ocfs2_extent_list *el,
  1216. struct ocfs2_extent_rec *rec,
  1217. u32 trunc_start, u32 *trunc_cpos,
  1218. u32 *trunc_len, u32 *trunc_end,
  1219. u64 *blkno, int *done)
  1220. {
  1221. int ret = 0;
  1222. u32 coff, range;
  1223. range = le32_to_cpu(rec->e_cpos) + ocfs2_rec_clusters(el, rec);
  1224. if (le32_to_cpu(rec->e_cpos) >= trunc_start) {
  1225. *trunc_cpos = le32_to_cpu(rec->e_cpos);
  1226. /*
  1227. * Skip holes if any.
  1228. */
  1229. if (range < *trunc_end)
  1230. *trunc_end = range;
  1231. *trunc_len = *trunc_end - le32_to_cpu(rec->e_cpos);
  1232. *blkno = le64_to_cpu(rec->e_blkno);
  1233. *trunc_end = le32_to_cpu(rec->e_cpos);
  1234. } else if (range > trunc_start) {
  1235. *trunc_cpos = trunc_start;
  1236. *trunc_len = *trunc_end - trunc_start;
  1237. coff = trunc_start - le32_to_cpu(rec->e_cpos);
  1238. *blkno = le64_to_cpu(rec->e_blkno) +
  1239. ocfs2_clusters_to_blocks(inode->i_sb, coff);
  1240. *trunc_end = trunc_start;
  1241. } else {
  1242. /*
  1243. * It may have two following possibilities:
  1244. *
  1245. * - last record has been removed
  1246. * - trunc_start was within a hole
  1247. *
  1248. * both two cases mean the completion of hole punching.
  1249. */
  1250. ret = 1;
  1251. }
  1252. *done = ret;
  1253. }
  1254. static int ocfs2_remove_inode_range(struct inode *inode,
  1255. struct buffer_head *di_bh, u64 byte_start,
  1256. u64 byte_len)
  1257. {
  1258. int ret = 0, flags = 0, done = 0, i;
  1259. u32 trunc_start, trunc_len, trunc_end, trunc_cpos, phys_cpos;
  1260. u32 cluster_in_el;
  1261. struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
  1262. struct ocfs2_cached_dealloc_ctxt dealloc;
  1263. struct address_space *mapping = inode->i_mapping;
  1264. struct ocfs2_extent_tree et;
  1265. struct ocfs2_path *path = NULL;
  1266. struct ocfs2_extent_list *el = NULL;
  1267. struct ocfs2_extent_rec *rec = NULL;
  1268. struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data;
  1269. u64 blkno, refcount_loc = le64_to_cpu(di->i_refcount_loc);
  1270. ocfs2_init_dinode_extent_tree(&et, INODE_CACHE(inode), di_bh);
  1271. ocfs2_init_dealloc_ctxt(&dealloc);
  1272. if (byte_len == 0)
  1273. return 0;
  1274. if (OCFS2_I(inode)->ip_dyn_features & OCFS2_INLINE_DATA_FL) {
  1275. ret = ocfs2_truncate_inline(inode, di_bh, byte_start,
  1276. byte_start + byte_len, 0);
  1277. if (ret) {
  1278. mlog_errno(ret);
  1279. goto out;
  1280. }
  1281. /*
  1282. * There's no need to get fancy with the page cache
  1283. * truncate of an inline-data inode. We're talking
  1284. * about less than a page here, which will be cached
  1285. * in the dinode buffer anyway.
  1286. */
  1287. unmap_mapping_range(mapping, 0, 0, 0);
  1288. truncate_inode_pages(mapping, 0);
  1289. goto out;
  1290. }
  1291. /*
  1292. * For reflinks, we may need to CoW 2 clusters which might be
  1293. * partially zero'd later, if hole's start and end offset were
  1294. * within one cluster(means is not exactly aligned to clustersize).
  1295. */
  1296. if (OCFS2_I(inode)->ip_dyn_features & OCFS2_HAS_REFCOUNT_FL) {
  1297. ret = ocfs2_cow_file_pos(inode, di_bh, byte_start);
  1298. if (ret) {
  1299. mlog_errno(ret);
  1300. goto out;
  1301. }
  1302. ret = ocfs2_cow_file_pos(inode, di_bh, byte_start + byte_len);
  1303. if (ret) {
  1304. mlog_errno(ret);
  1305. goto out;
  1306. }
  1307. }
  1308. trunc_start = ocfs2_clusters_for_bytes(osb->sb, byte_start);
  1309. trunc_end = (byte_start + byte_len) >> osb->s_clustersize_bits;
  1310. cluster_in_el = trunc_end;
  1311. mlog(0, "Inode: %llu, start: %llu, len: %llu, cstart: %u, cend: %u\n",
  1312. (unsigned long long)OCFS2_I(inode)->ip_blkno,
  1313. (unsigned long long)byte_start,
  1314. (unsigned long long)byte_len, trunc_start, trunc_end);
  1315. ret = ocfs2_zero_partial_clusters(inode, byte_start, byte_len);
  1316. if (ret) {
  1317. mlog_errno(ret);
  1318. goto out;
  1319. }
  1320. path = ocfs2_new_path_from_et(&et);
  1321. if (!path) {
  1322. ret = -ENOMEM;
  1323. mlog_errno(ret);
  1324. goto out;
  1325. }
  1326. while (trunc_end > trunc_start) {
  1327. ret = ocfs2_find_path(INODE_CACHE(inode), path,
  1328. cluster_in_el);
  1329. if (ret) {
  1330. mlog_errno(ret);
  1331. goto out;
  1332. }
  1333. el = path_leaf_el(path);
  1334. i = ocfs2_find_rec(el, trunc_end);
  1335. /*
  1336. * Need to go to previous extent block.
  1337. */
  1338. if (i < 0) {
  1339. if (path->p_tree_depth == 0)
  1340. break;
  1341. ret = ocfs2_find_cpos_for_left_leaf(inode->i_sb,
  1342. path,
  1343. &cluster_in_el);
  1344. if (ret) {
  1345. mlog_errno(ret);
  1346. goto out;
  1347. }
  1348. /*
  1349. * We've reached the leftmost extent block,
  1350. * it's safe to leave.
  1351. */
  1352. if (cluster_in_el == 0)
  1353. break;
  1354. /*
  1355. * The 'pos' searched for previous extent block is
  1356. * always one cluster less than actual trunc_end.
  1357. */
  1358. trunc_end = cluster_in_el + 1;
  1359. ocfs2_reinit_path(path, 1);
  1360. continue;
  1361. } else
  1362. rec = &el->l_recs[i];
  1363. ocfs2_calc_trunc_pos(inode, el, rec, trunc_start, &trunc_cpos,
  1364. &trunc_len, &trunc_end, &blkno, &done);
  1365. if (done)
  1366. break;
  1367. flags = rec->e_flags;
  1368. phys_cpos = ocfs2_blocks_to_clusters(inode->i_sb, blkno);
  1369. ret = ocfs2_remove_btree_range(inode, &et, trunc_cpos,
  1370. phys_cpos, trunc_len, flags,
  1371. &dealloc, refcount_loc);
  1372. if (ret < 0) {
  1373. mlog_errno(ret);
  1374. goto out;
  1375. }
  1376. cluster_in_el = trunc_end;
  1377. ocfs2_reinit_path(path, 1);
  1378. }
  1379. ocfs2_truncate_cluster_pages(inode, byte_start, byte_len);
  1380. out:
  1381. ocfs2_schedule_truncate_log_flush(osb, 1);
  1382. ocfs2_run_deallocs(osb, &dealloc);
  1383. return ret;
  1384. }
  1385. /*
  1386. * Parts of this function taken from xfs_change_file_space()
  1387. */
  1388. static int __ocfs2_change_file_space(struct file *file, struct inode *inode,
  1389. loff_t f_pos, unsigned int cmd,
  1390. struct ocfs2_space_resv *sr,
  1391. int change_size)
  1392. {
  1393. int ret;
  1394. s64 llen;
  1395. loff_t size;
  1396. struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
  1397. struct buffer_head *di_bh = NULL;
  1398. handle_t *handle;
  1399. unsigned long long max_off = inode->i_sb->s_maxbytes;
  1400. if (ocfs2_is_hard_readonly(osb) || ocfs2_is_soft_readonly(osb))
  1401. return -EROFS;
  1402. mutex_lock(&inode->i_mutex);
  1403. /*
  1404. * This prevents concurrent writes on other nodes
  1405. */
  1406. ret = ocfs2_rw_lock(inode, 1);
  1407. if (ret) {
  1408. mlog_errno(ret);
  1409. goto out;
  1410. }
  1411. ret = ocfs2_inode_lock(inode, &di_bh, 1);
  1412. if (ret) {
  1413. mlog_errno(ret);
  1414. goto out_rw_unlock;
  1415. }
  1416. if (inode->i_flags & (S_IMMUTABLE|S_APPEND)) {
  1417. ret = -EPERM;
  1418. goto out_inode_unlock;
  1419. }
  1420. switch (sr->l_whence) {
  1421. case 0: /*SEEK_SET*/
  1422. break;
  1423. case 1: /*SEEK_CUR*/
  1424. sr->l_start += f_pos;
  1425. break;
  1426. case 2: /*SEEK_END*/
  1427. sr->l_start += i_size_read(inode);
  1428. break;
  1429. default:
  1430. ret = -EINVAL;
  1431. goto out_inode_unlock;
  1432. }
  1433. sr->l_whence = 0;
  1434. llen = sr->l_len > 0 ? sr->l_len - 1 : sr->l_len;
  1435. if (sr->l_start < 0
  1436. || sr->l_start > max_off
  1437. || (sr->l_start + llen) < 0
  1438. || (sr->l_start + llen) > max_off) {
  1439. ret = -EINVAL;
  1440. goto out_inode_unlock;
  1441. }
  1442. size = sr->l_start + sr->l_len;
  1443. if (cmd == OCFS2_IOC_RESVSP || cmd == OCFS2_IOC_RESVSP64) {
  1444. if (sr->l_len <= 0) {
  1445. ret = -EINVAL;
  1446. goto out_inode_unlock;
  1447. }
  1448. }
  1449. if (file && should_remove_suid(file->f_path.dentry)) {
  1450. ret = __ocfs2_write_remove_suid(inode, di_bh);
  1451. if (ret) {
  1452. mlog_errno(ret);
  1453. goto out_inode_unlock;
  1454. }
  1455. }
  1456. down_write(&OCFS2_I(inode)->ip_alloc_sem);
  1457. switch (cmd) {
  1458. case OCFS2_IOC_RESVSP:
  1459. case OCFS2_IOC_RESVSP64:
  1460. /*
  1461. * This takes unsigned offsets, but the signed ones we
  1462. * pass have been checked against overflow above.
  1463. */
  1464. ret = ocfs2_allocate_unwritten_extents(inode, sr->l_start,
  1465. sr->l_len);
  1466. break;
  1467. case OCFS2_IOC_UNRESVSP:
  1468. case OCFS2_IOC_UNRESVSP64:
  1469. ret = ocfs2_remove_inode_range(inode, di_bh, sr->l_start,
  1470. sr->l_len);
  1471. break;
  1472. default:
  1473. ret = -EINVAL;
  1474. }
  1475. up_write(&OCFS2_I(inode)->ip_alloc_sem);
  1476. if (ret) {
  1477. mlog_errno(ret);
  1478. goto out_inode_unlock;
  1479. }
  1480. /*
  1481. * We update c/mtime for these changes
  1482. */
  1483. handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS);
  1484. if (IS_ERR(handle)) {
  1485. ret = PTR_ERR(handle);
  1486. mlog_errno(ret);
  1487. goto out_inode_unlock;
  1488. }
  1489. if (change_size && i_size_read(inode) < size)
  1490. i_size_write(inode, size);
  1491. inode->i_ctime = inode->i_mtime = CURRENT_TIME;
  1492. ret = ocfs2_mark_inode_dirty(handle, inode, di_bh);
  1493. if (ret < 0)
  1494. mlog_errno(ret);
  1495. ocfs2_commit_trans(osb, handle);
  1496. out_inode_unlock:
  1497. brelse(di_bh);
  1498. ocfs2_inode_unlock(inode, 1);
  1499. out_rw_unlock:
  1500. ocfs2_rw_unlock(inode, 1);
  1501. out:
  1502. mutex_unlock(&inode->i_mutex);
  1503. return ret;
  1504. }
  1505. int ocfs2_change_file_space(struct file *file, unsigned int cmd,
  1506. struct ocfs2_space_resv *sr)
  1507. {
  1508. struct inode *inode = file->f_path.dentry->d_inode;
  1509. struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
  1510. if ((cmd == OCFS2_IOC_RESVSP || cmd == OCFS2_IOC_RESVSP64) &&
  1511. !ocfs2_writes_unwritten_extents(osb))
  1512. return -ENOTTY;
  1513. else if ((cmd == OCFS2_IOC_UNRESVSP || cmd == OCFS2_IOC_UNRESVSP64) &&
  1514. !ocfs2_sparse_alloc(osb))
  1515. return -ENOTTY;
  1516. if (!S_ISREG(inode->i_mode))
  1517. return -EINVAL;
  1518. if (!(file->f_mode & FMODE_WRITE))
  1519. return -EBADF;
  1520. return __ocfs2_change_file_space(file, inode, file->f_pos, cmd, sr, 0);
  1521. }
  1522. static long ocfs2_fallocate(struct inode *inode, int mode, loff_t offset,
  1523. loff_t len)
  1524. {
  1525. struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
  1526. struct ocfs2_space_resv sr;
  1527. int change_size = 1;
  1528. if (!ocfs2_writes_unwritten_extents(osb))
  1529. return -EOPNOTSUPP;
  1530. if (S_ISDIR(inode->i_mode))
  1531. return -ENODEV;
  1532. if (mode & FALLOC_FL_KEEP_SIZE)
  1533. change_size = 0;
  1534. sr.l_whence = 0;
  1535. sr.l_start = (s64)offset;
  1536. sr.l_len = (s64)len;
  1537. return __ocfs2_change_file_space(NULL, inode, offset,
  1538. OCFS2_IOC_RESVSP64, &sr, change_size);
  1539. }
  1540. int ocfs2_check_range_for_refcount(struct inode *inode, loff_t pos,
  1541. size_t count)
  1542. {
  1543. int ret = 0;
  1544. unsigned int extent_flags;
  1545. u32 cpos, clusters, extent_len, phys_cpos;
  1546. struct super_block *sb = inode->i_sb;
  1547. if (!ocfs2_refcount_tree(OCFS2_SB(inode->i_sb)) ||
  1548. !(OCFS2_I(inode)->ip_dyn_features & OCFS2_HAS_REFCOUNT_FL) ||
  1549. OCFS2_I(inode)->ip_dyn_features & OCFS2_INLINE_DATA_FL)
  1550. return 0;
  1551. cpos = pos >> OCFS2_SB(sb)->s_clustersize_bits;
  1552. clusters = ocfs2_clusters_for_bytes(sb, pos + count) - cpos;
  1553. while (clusters) {
  1554. ret = ocfs2_get_clusters(inode, cpos, &phys_cpos, &extent_len,
  1555. &extent_flags);
  1556. if (ret < 0) {
  1557. mlog_errno(ret);
  1558. goto out;
  1559. }
  1560. if (phys_cpos && (extent_flags & OCFS2_EXT_REFCOUNTED)) {
  1561. ret = 1;
  1562. break;
  1563. }
  1564. if (extent_len > clusters)
  1565. extent_len = clusters;
  1566. clusters -= extent_len;
  1567. cpos += extent_len;
  1568. }
  1569. out:
  1570. return ret;
  1571. }
  1572. static int ocfs2_prepare_inode_for_refcount(struct inode *inode,
  1573. loff_t pos, size_t count,
  1574. int *meta_level)
  1575. {
  1576. int ret;
  1577. struct buffer_head *di_bh = NULL;
  1578. u32 cpos = pos >> OCFS2_SB(inode->i_sb)->s_clustersize_bits;
  1579. u32 clusters =
  1580. ocfs2_clusters_for_bytes(inode->i_sb, pos + count) - cpos;
  1581. ret = ocfs2_inode_lock(inode, &di_bh, 1);
  1582. if (ret) {
  1583. mlog_errno(ret);
  1584. goto out;
  1585. }
  1586. *meta_level = 1;
  1587. ret = ocfs2_refcount_cow(inode, di_bh, cpos, clusters, UINT_MAX);
  1588. if (ret)
  1589. mlog_errno(ret);
  1590. out:
  1591. brelse(di_bh);
  1592. return ret;
  1593. }
  1594. static int ocfs2_prepare_inode_for_write(struct dentry *dentry,
  1595. loff_t *ppos,
  1596. size_t count,
  1597. int appending,
  1598. int *direct_io,
  1599. int *has_refcount)
  1600. {
  1601. int ret = 0, meta_level = 0;
  1602. struct inode *inode = dentry->d_inode;
  1603. loff_t saved_pos, end;
  1604. /*
  1605. * We start with a read level meta lock and only jump to an ex
  1606. * if we need to make modifications here.
  1607. */
  1608. for(;;) {
  1609. ret = ocfs2_inode_lock(inode, NULL, meta_level);
  1610. if (ret < 0) {
  1611. meta_level = -1;
  1612. mlog_errno(ret);
  1613. goto out;
  1614. }
  1615. /* Clear suid / sgid if necessary. We do this here
  1616. * instead of later in the write path because
  1617. * remove_suid() calls ->setattr without any hint that
  1618. * we may have already done our cluster locking. Since
  1619. * ocfs2_setattr() *must* take cluster locks to
  1620. * proceeed, this will lead us to recursively lock the
  1621. * inode. There's also the dinode i_size state which
  1622. * can be lost via setattr during extending writes (we
  1623. * set inode->i_size at the end of a write. */
  1624. if (should_remove_suid(dentry)) {
  1625. if (meta_level == 0) {
  1626. ocfs2_inode_unlock(inode, meta_level);
  1627. meta_level = 1;
  1628. continue;
  1629. }
  1630. ret = ocfs2_write_remove_suid(inode);
  1631. if (ret < 0) {
  1632. mlog_errno(ret);
  1633. goto out_unlock;
  1634. }
  1635. }
  1636. /* work on a copy of ppos until we're sure that we won't have
  1637. * to recalculate it due to relocking. */
  1638. if (appending) {
  1639. saved_pos = i_size_read(inode);
  1640. mlog(0, "O_APPEND: inode->i_size=%llu\n", saved_pos);
  1641. } else {
  1642. saved_pos = *ppos;
  1643. }
  1644. end = saved_pos + count;
  1645. ret = ocfs2_check_range_for_refcount(inode, saved_pos, count);
  1646. if (ret == 1) {
  1647. ocfs2_inode_unlock(inode, meta_level);
  1648. meta_level = -1;
  1649. ret = ocfs2_prepare_inode_for_refcount(inode,
  1650. saved_pos,
  1651. count,
  1652. &meta_level);
  1653. if (has_refcount)
  1654. *has_refcount = 1;
  1655. if (direct_io)
  1656. *direct_io = 0;
  1657. }
  1658. if (ret < 0) {
  1659. mlog_errno(ret);
  1660. goto out_unlock;
  1661. }
  1662. /*
  1663. * Skip the O_DIRECT checks if we don't need
  1664. * them.
  1665. */
  1666. if (!direct_io || !(*direct_io))
  1667. break;
  1668. /*
  1669. * There's no sane way to do direct writes to an inode
  1670. * with inline data.
  1671. */
  1672. if (OCFS2_I(inode)->ip_dyn_features & OCFS2_INLINE_DATA_FL) {
  1673. *direct_io = 0;
  1674. break;
  1675. }
  1676. /*
  1677. * Allowing concurrent direct writes means
  1678. * i_size changes wouldn't be synchronized, so
  1679. * one node could wind up truncating another
  1680. * nodes writes.
  1681. */
  1682. if (end > i_size_read(inode)) {
  1683. *direct_io = 0;
  1684. break;
  1685. }
  1686. /*
  1687. * We don't fill holes during direct io, so
  1688. * check for them here. If any are found, the
  1689. * caller will have to retake some cluster
  1690. * locks and initiate the io as buffered.
  1691. */
  1692. ret = ocfs2_check_range_for_holes(inode, saved_pos, count);
  1693. if (ret == 1) {
  1694. *direct_io = 0;
  1695. ret = 0;
  1696. } else if (ret < 0)
  1697. mlog_errno(ret);
  1698. break;
  1699. }
  1700. if (appending)
  1701. *ppos = saved_pos;
  1702. out_unlock:
  1703. if (meta_level >= 0)
  1704. ocfs2_inode_unlock(inode, meta_level);
  1705. out:
  1706. return ret;
  1707. }
  1708. static ssize_t ocfs2_file_aio_write(struct kiocb *iocb,
  1709. const struct iovec *iov,
  1710. unsigned long nr_segs,
  1711. loff_t pos)
  1712. {
  1713. int ret, direct_io, appending, rw_level, have_alloc_sem = 0;
  1714. int can_do_direct, has_refcount = 0;
  1715. ssize_t written = 0;
  1716. size_t ocount; /* original count */
  1717. size_t count; /* after file limit checks */
  1718. loff_t old_size, *ppos = &iocb->ki_pos;
  1719. u32 old_clusters;
  1720. struct file *file = iocb->ki_filp;
  1721. struct inode *inode = file->f_path.dentry->d_inode;
  1722. struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
  1723. mlog_entry("(0x%p, %u, '%.*s')\n", file,
  1724. (unsigned int)nr_segs,
  1725. file->f_path.dentry->d_name.len,
  1726. file->f_path.dentry->d_name.name);
  1727. if (iocb->ki_left == 0)
  1728. return 0;
  1729. vfs_check_frozen(inode->i_sb, SB_FREEZE_WRITE);
  1730. appending = file->f_flags & O_APPEND ? 1 : 0;
  1731. direct_io = file->f_flags & O_DIRECT ? 1 : 0;
  1732. mutex_lock(&inode->i_mutex);
  1733. relock:
  1734. /* to match setattr's i_mutex -> i_alloc_sem -> rw_lock ordering */
  1735. if (direct_io) {
  1736. down_read(&inode->i_alloc_sem);
  1737. have_alloc_sem = 1;
  1738. }
  1739. /* concurrent O_DIRECT writes are allowed */
  1740. rw_level = !direct_io;
  1741. ret = ocfs2_rw_lock(inode, rw_level);
  1742. if (ret < 0) {
  1743. mlog_errno(ret);
  1744. goto out_sems;
  1745. }
  1746. can_do_direct = direct_io;
  1747. ret = ocfs2_prepare_inode_for_write(file->f_path.dentry, ppos,
  1748. iocb->ki_left, appending,
  1749. &can_do_direct, &has_refcount);
  1750. if (ret < 0) {
  1751. mlog_errno(ret);
  1752. goto out;
  1753. }
  1754. /*
  1755. * We can't complete the direct I/O as requested, fall back to
  1756. * buffered I/O.
  1757. */
  1758. if (direct_io && !can_do_direct) {
  1759. ocfs2_rw_unlock(inode, rw_level);
  1760. up_read(&inode->i_alloc_sem);
  1761. have_alloc_sem = 0;
  1762. rw_level = -1;
  1763. direct_io = 0;
  1764. goto relock;
  1765. }
  1766. /*
  1767. * To later detect whether a journal commit for sync writes is
  1768. * necessary, we sample i_size, and cluster count here.
  1769. */
  1770. old_size = i_size_read(inode);
  1771. old_clusters = OCFS2_I(inode)->ip_clusters;
  1772. /* communicate with ocfs2_dio_end_io */
  1773. ocfs2_iocb_set_rw_locked(iocb, rw_level);
  1774. ret = generic_segment_checks(iov, &nr_segs, &ocount,
  1775. VERIFY_READ);
  1776. if (ret)
  1777. goto out_dio;
  1778. count = ocount;
  1779. ret = generic_write_checks(file, ppos, &count,
  1780. S_ISBLK(inode->i_mode));
  1781. if (ret)
  1782. goto out_dio;
  1783. if (direct_io) {
  1784. written = generic_file_direct_write(iocb, iov, &nr_segs, *ppos,
  1785. ppos, count, ocount);
  1786. if (written < 0) {
  1787. /*
  1788. * direct write may have instantiated a few
  1789. * blocks outside i_size. Trim these off again.
  1790. * Don't need i_size_read because we hold i_mutex.
  1791. *
  1792. * XXX(hch): this looks buggy because ocfs2 did not
  1793. * actually implement ->truncate. Take a look at
  1794. * the new truncate sequence and update this accordingly
  1795. */
  1796. if (*ppos + count > inode->i_size)
  1797. simple_setsize(inode, inode->i_size);
  1798. ret = written;
  1799. goto out_dio;
  1800. }
  1801. } else {
  1802. current->backing_dev_info = file->f_mapping->backing_dev_info;
  1803. written = generic_file_buffered_write(iocb, iov, nr_segs, *ppos,
  1804. ppos, count, 0);
  1805. current->backing_dev_info = NULL;
  1806. }
  1807. out_dio:
  1808. /* buffered aio wouldn't have proper lock coverage today */
  1809. BUG_ON(ret == -EIOCBQUEUED && !(file->f_flags & O_DIRECT));
  1810. if (((file->f_flags & O_DSYNC) && !direct_io) || IS_SYNC(inode) ||
  1811. ((file->f_flags & O_DIRECT) && has_refcount)) {
  1812. ret = filemap_fdatawrite_range(file->f_mapping, pos,
  1813. pos + count - 1);
  1814. if (ret < 0)
  1815. written = ret;
  1816. if (!ret && ((old_size != i_size_read(inode)) ||
  1817. (old_clusters != OCFS2_I(inode)->ip_clusters) ||
  1818. has_refcount)) {
  1819. ret = jbd2_journal_force_commit(osb->journal->j_journal);
  1820. if (ret < 0)
  1821. written = ret;
  1822. }
  1823. if (!ret)
  1824. ret = filemap_fdatawait_range(file->f_mapping, pos,
  1825. pos + count - 1);
  1826. }
  1827. /*
  1828. * deep in g_f_a_w_n()->ocfs2_direct_IO we pass in a ocfs2_dio_end_io
  1829. * function pointer which is called when o_direct io completes so that
  1830. * it can unlock our rw lock. (it's the clustered equivalent of
  1831. * i_alloc_sem; protects truncate from racing with pending ios).
  1832. * Unfortunately there are error cases which call end_io and others
  1833. * that don't. so we don't have to unlock the rw_lock if either an
  1834. * async dio is going to do it in the future or an end_io after an
  1835. * error has already done it.
  1836. */
  1837. if ((ret == -EIOCBQUEUED) || (!ocfs2_iocb_is_rw_locked(iocb))) {
  1838. rw_level = -1;
  1839. have_alloc_sem = 0;
  1840. }
  1841. out:
  1842. if (rw_level != -1)
  1843. ocfs2_rw_unlock(inode, rw_level);
  1844. out_sems:
  1845. if (have_alloc_sem)
  1846. up_read(&inode->i_alloc_sem);
  1847. mutex_unlock(&inode->i_mutex);
  1848. if (written)
  1849. ret = written;
  1850. mlog_exit(ret);
  1851. return ret;
  1852. }
  1853. static int ocfs2_splice_to_file(struct pipe_inode_info *pipe,
  1854. struct file *out,
  1855. struct splice_desc *sd)
  1856. {
  1857. int ret;
  1858. ret = ocfs2_prepare_inode_for_write(out->f_path.dentry, &sd->pos,
  1859. sd->total_len, 0, NULL, NULL);
  1860. if (ret < 0) {
  1861. mlog_errno(ret);
  1862. return ret;
  1863. }
  1864. return splice_from_pipe_feed(pipe, sd, pipe_to_file);
  1865. }
  1866. static ssize_t ocfs2_file_splice_write(struct pipe_inode_info *pipe,
  1867. struct file *out,
  1868. loff_t *ppos,
  1869. size_t len,
  1870. unsigned int flags)
  1871. {
  1872. int ret;
  1873. struct address_space *mapping = out->f_mapping;
  1874. struct inode *inode = mapping->host;
  1875. struct splice_desc sd = {
  1876. .total_len = len,
  1877. .flags = flags,
  1878. .pos = *ppos,
  1879. .u.file = out,
  1880. };
  1881. mlog_entry("(0x%p, 0x%p, %u, '%.*s')\n", out, pipe,
  1882. (unsigned int)len,
  1883. out->f_path.dentry->d_name.len,
  1884. out->f_path.dentry->d_name.name);
  1885. if (pipe->inode)
  1886. mutex_lock_nested(&pipe->inode->i_mutex, I_MUTEX_PARENT);
  1887. splice_from_pipe_begin(&sd);
  1888. do {
  1889. ret = splice_from_pipe_next(pipe, &sd);
  1890. if (ret <= 0)
  1891. break;
  1892. mutex_lock_nested(&inode->i_mutex, I_MUTEX_CHILD);
  1893. ret = ocfs2_rw_lock(inode, 1);
  1894. if (ret < 0)
  1895. mlog_errno(ret);
  1896. else {
  1897. ret = ocfs2_splice_to_file(pipe, out, &sd);
  1898. ocfs2_rw_unlock(inode, 1);
  1899. }
  1900. mutex_unlock(&inode->i_mutex);
  1901. } while (ret > 0);
  1902. splice_from_pipe_end(pipe, &sd);
  1903. if (pipe->inode)
  1904. mutex_unlock(&pipe->inode->i_mutex);
  1905. if (sd.num_spliced)
  1906. ret = sd.num_spliced;
  1907. if (ret > 0) {
  1908. unsigned long nr_pages;
  1909. int err;
  1910. nr_pages = (ret + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
  1911. err = generic_write_sync(out, *ppos, ret);
  1912. if (err)
  1913. ret = err;
  1914. else
  1915. *ppos += ret;
  1916. balance_dirty_pages_ratelimited_nr(mapping, nr_pages);
  1917. }
  1918. mlog_exit(ret);
  1919. return ret;
  1920. }
  1921. static ssize_t ocfs2_file_splice_read(struct file *in,
  1922. loff_t *ppos,
  1923. struct pipe_inode_info *pipe,
  1924. size_t len,
  1925. unsigned int flags)
  1926. {
  1927. int ret = 0, lock_level = 0;
  1928. struct inode *inode = in->f_path.dentry->d_inode;
  1929. mlog_entry("(0x%p, 0x%p, %u, '%.*s')\n", in, pipe,
  1930. (unsigned int)len,
  1931. in->f_path.dentry->d_name.len,
  1932. in->f_path.dentry->d_name.name);
  1933. /*
  1934. * See the comment in ocfs2_file_aio_read()
  1935. */
  1936. ret = ocfs2_inode_lock_atime(inode, in->f_vfsmnt, &lock_level);
  1937. if (ret < 0) {
  1938. mlog_errno(ret);
  1939. goto bail;
  1940. }
  1941. ocfs2_inode_unlock(inode, lock_level);
  1942. ret = generic_file_splice_read(in, ppos, pipe, len, flags);
  1943. bail:
  1944. mlog_exit(ret);
  1945. return ret;
  1946. }
  1947. static ssize_t ocfs2_file_aio_read(struct kiocb *iocb,
  1948. const struct iovec *iov,
  1949. unsigned long nr_segs,
  1950. loff_t pos)
  1951. {
  1952. int ret = 0, rw_level = -1, have_alloc_sem = 0, lock_level = 0;
  1953. struct file *filp = iocb->ki_filp;
  1954. struct inode *inode = filp->f_path.dentry->d_inode;
  1955. mlog_entry("(0x%p, %u, '%.*s')\n", filp,
  1956. (unsigned int)nr_segs,
  1957. filp->f_path.dentry->d_name.len,
  1958. filp->f_path.dentry->d_name.name);
  1959. if (!inode) {
  1960. ret = -EINVAL;
  1961. mlog_errno(ret);
  1962. goto bail;
  1963. }
  1964. /*
  1965. * buffered reads protect themselves in ->readpage(). O_DIRECT reads
  1966. * need locks to protect pending reads from racing with truncate.
  1967. */
  1968. if (filp->f_flags & O_DIRECT) {
  1969. down_read(&inode->i_alloc_sem);
  1970. have_alloc_sem = 1;
  1971. ret = ocfs2_rw_lock(inode, 0);
  1972. if (ret < 0) {
  1973. mlog_errno(ret);
  1974. goto bail;
  1975. }
  1976. rw_level = 0;
  1977. /* communicate with ocfs2_dio_end_io */
  1978. ocfs2_iocb_set_rw_locked(iocb, rw_level);
  1979. }
  1980. /*
  1981. * We're fine letting folks race truncates and extending
  1982. * writes with read across the cluster, just like they can
  1983. * locally. Hence no rw_lock during read.
  1984. *
  1985. * Take and drop the meta data lock to update inode fields
  1986. * like i_size. This allows the checks down below
  1987. * generic_file_aio_read() a chance of actually working.
  1988. */
  1989. ret = ocfs2_inode_lock_atime(inode, filp->f_vfsmnt, &lock_level);
  1990. if (ret < 0) {
  1991. mlog_errno(ret);
  1992. goto bail;
  1993. }
  1994. ocfs2_inode_unlock(inode, lock_level);
  1995. ret = generic_file_aio_read(iocb, iov, nr_segs, iocb->ki_pos);
  1996. if (ret == -EINVAL)
  1997. mlog(0, "generic_file_aio_read returned -EINVAL\n");
  1998. /* buffered aio wouldn't have proper lock coverage today */
  1999. BUG_ON(ret == -EIOCBQUEUED && !(filp->f_flags & O_DIRECT));
  2000. /* see ocfs2_file_aio_write */
  2001. if (ret == -EIOCBQUEUED || !ocfs2_iocb_is_rw_locked(iocb)) {
  2002. rw_level = -1;
  2003. have_alloc_sem = 0;
  2004. }
  2005. bail:
  2006. if (have_alloc_sem)
  2007. up_read(&inode->i_alloc_sem);
  2008. if (rw_level != -1)
  2009. ocfs2_rw_unlock(inode, rw_level);
  2010. mlog_exit(ret);
  2011. return ret;
  2012. }
  2013. const struct inode_operations ocfs2_file_iops = {
  2014. .setattr = ocfs2_setattr,
  2015. .getattr = ocfs2_getattr,
  2016. .permission = ocfs2_permission,
  2017. .setxattr = generic_setxattr,
  2018. .getxattr = generic_getxattr,
  2019. .listxattr = ocfs2_listxattr,
  2020. .removexattr = generic_removexattr,
  2021. .fallocate = ocfs2_fallocate,
  2022. .fiemap = ocfs2_fiemap,
  2023. };
  2024. const struct inode_operations ocfs2_special_file_iops = {
  2025. .setattr = ocfs2_setattr,
  2026. .getattr = ocfs2_getattr,
  2027. .permission = ocfs2_permission,
  2028. };
  2029. /*
  2030. * Other than ->lock, keep ocfs2_fops and ocfs2_dops in sync with
  2031. * ocfs2_fops_no_plocks and ocfs2_dops_no_plocks!
  2032. */
  2033. const struct file_operations ocfs2_fops = {
  2034. .llseek = generic_file_llseek,
  2035. .read = do_sync_read,
  2036. .write = do_sync_write,
  2037. .mmap = ocfs2_mmap,
  2038. .fsync = ocfs2_sync_file,
  2039. .release = ocfs2_file_release,
  2040. .open = ocfs2_file_open,
  2041. .aio_read = ocfs2_file_aio_read,
  2042. .aio_write = ocfs2_file_aio_write,
  2043. .unlocked_ioctl = ocfs2_ioctl,
  2044. #ifdef CONFIG_COMPAT
  2045. .compat_ioctl = ocfs2_compat_ioctl,
  2046. #endif
  2047. .lock = ocfs2_lock,
  2048. .flock = ocfs2_flock,
  2049. .splice_read = ocfs2_file_splice_read,
  2050. .splice_write = ocfs2_file_splice_write,
  2051. };
  2052. const struct file_operations ocfs2_dops = {
  2053. .llseek = generic_file_llseek,
  2054. .read = generic_read_dir,
  2055. .readdir = ocfs2_readdir,
  2056. .fsync = ocfs2_sync_file,
  2057. .release = ocfs2_dir_release,
  2058. .open = ocfs2_dir_open,
  2059. .unlocked_ioctl = ocfs2_ioctl,
  2060. #ifdef CONFIG_COMPAT
  2061. .compat_ioctl = ocfs2_compat_ioctl,
  2062. #endif
  2063. .lock = ocfs2_lock,
  2064. .flock = ocfs2_flock,
  2065. };
  2066. /*
  2067. * POSIX-lockless variants of our file_operations.
  2068. *
  2069. * These will be used if the underlying cluster stack does not support
  2070. * posix file locking, if the user passes the "localflocks" mount
  2071. * option, or if we have a local-only fs.
  2072. *
  2073. * ocfs2_flock is in here because all stacks handle UNIX file locks,
  2074. * so we still want it in the case of no stack support for
  2075. * plocks. Internally, it will do the right thing when asked to ignore
  2076. * the cluster.
  2077. */
  2078. const struct file_operations ocfs2_fops_no_plocks = {
  2079. .llseek = generic_file_llseek,
  2080. .read = do_sync_read,
  2081. .write = do_sync_write,
  2082. .mmap = ocfs2_mmap,
  2083. .fsync = ocfs2_sync_file,
  2084. .release = ocfs2_file_release,
  2085. .open = ocfs2_file_open,
  2086. .aio_read = ocfs2_file_aio_read,
  2087. .aio_write = ocfs2_file_aio_write,
  2088. .unlocked_ioctl = ocfs2_ioctl,
  2089. #ifdef CONFIG_COMPAT
  2090. .compat_ioctl = ocfs2_compat_ioctl,
  2091. #endif
  2092. .flock = ocfs2_flock,
  2093. .splice_read = ocfs2_file_splice_read,
  2094. .splice_write = ocfs2_file_splice_write,
  2095. };
  2096. const struct file_operations ocfs2_dops_no_plocks = {
  2097. .llseek = generic_file_llseek,
  2098. .read = generic_read_dir,
  2099. .readdir = ocfs2_readdir,
  2100. .fsync = ocfs2_sync_file,
  2101. .release = ocfs2_dir_release,
  2102. .open = ocfs2_dir_open,
  2103. .unlocked_ioctl = ocfs2_ioctl,
  2104. #ifdef CONFIG_COMPAT
  2105. .compat_ioctl = ocfs2_compat_ioctl,
  2106. #endif
  2107. .flock = ocfs2_flock,
  2108. };