file.c 61 KB

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