file.c 64 KB

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