fs.h 109 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef _LINUX_FS_H
  3. #define _LINUX_FS_H
  4. #include <linux/linkage.h>
  5. #include <linux/wait_bit.h>
  6. #include <linux/kdev_t.h>
  7. #include <linux/dcache.h>
  8. #include <linux/path.h>
  9. #include <linux/stat.h>
  10. #include <linux/cache.h>
  11. #include <linux/list.h>
  12. #include <linux/list_lru.h>
  13. #include <linux/llist.h>
  14. #include <linux/radix-tree.h>
  15. #include <linux/xarray.h>
  16. #include <linux/rbtree.h>
  17. #include <linux/init.h>
  18. #include <linux/pid.h>
  19. #include <linux/bug.h>
  20. #include <linux/mutex.h>
  21. #include <linux/rwsem.h>
  22. #include <linux/mm_types.h>
  23. #include <linux/capability.h>
  24. #include <linux/semaphore.h>
  25. #include <linux/fcntl.h>
  26. #include <linux/fiemap.h>
  27. #include <linux/rculist_bl.h>
  28. #include <linux/atomic.h>
  29. #include <linux/shrinker.h>
  30. #include <linux/migrate_mode.h>
  31. #include <linux/uidgid.h>
  32. #include <linux/lockdep.h>
  33. #include <linux/percpu-rwsem.h>
  34. #include <linux/workqueue.h>
  35. #include <linux/delayed_call.h>
  36. #include <linux/uuid.h>
  37. #include <linux/errseq.h>
  38. #include <asm/byteorder.h>
  39. #include <uapi/linux/fs.h>
  40. struct backing_dev_info;
  41. struct bdi_writeback;
  42. struct bio;
  43. struct export_operations;
  44. struct hd_geometry;
  45. struct iovec;
  46. struct kiocb;
  47. struct kobject;
  48. struct pipe_inode_info;
  49. struct poll_table_struct;
  50. struct kstatfs;
  51. struct vm_area_struct;
  52. struct vfsmount;
  53. struct cred;
  54. struct swap_info_struct;
  55. struct seq_file;
  56. struct workqueue_struct;
  57. struct iov_iter;
  58. struct fscrypt_info;
  59. struct fscrypt_operations;
  60. extern void __init inode_init(void);
  61. extern void __init inode_init_early(void);
  62. extern void __init files_init(void);
  63. extern void __init files_maxfiles_init(void);
  64. extern struct files_stat_struct files_stat;
  65. extern unsigned long get_max_files(void);
  66. extern unsigned int sysctl_nr_open;
  67. extern struct inodes_stat_t inodes_stat;
  68. extern int leases_enable, lease_break_time;
  69. extern int sysctl_protected_symlinks;
  70. extern int sysctl_protected_hardlinks;
  71. typedef __kernel_rwf_t rwf_t;
  72. struct buffer_head;
  73. typedef int (get_block_t)(struct inode *inode, sector_t iblock,
  74. struct buffer_head *bh_result, int create);
  75. typedef int (dio_iodone_t)(struct kiocb *iocb, loff_t offset,
  76. ssize_t bytes, void *private);
  77. #define MAY_EXEC 0x00000001
  78. #define MAY_WRITE 0x00000002
  79. #define MAY_READ 0x00000004
  80. #define MAY_APPEND 0x00000008
  81. #define MAY_ACCESS 0x00000010
  82. #define MAY_OPEN 0x00000020
  83. #define MAY_CHDIR 0x00000040
  84. /* called from RCU mode, don't block */
  85. #define MAY_NOT_BLOCK 0x00000080
  86. /*
  87. * flags in file.f_mode. Note that FMODE_READ and FMODE_WRITE must correspond
  88. * to O_WRONLY and O_RDWR via the strange trick in __dentry_open()
  89. */
  90. /* file is open for reading */
  91. #define FMODE_READ ((__force fmode_t)0x1)
  92. /* file is open for writing */
  93. #define FMODE_WRITE ((__force fmode_t)0x2)
  94. /* file is seekable */
  95. #define FMODE_LSEEK ((__force fmode_t)0x4)
  96. /* file can be accessed using pread */
  97. #define FMODE_PREAD ((__force fmode_t)0x8)
  98. /* file can be accessed using pwrite */
  99. #define FMODE_PWRITE ((__force fmode_t)0x10)
  100. /* File is opened for execution with sys_execve / sys_uselib */
  101. #define FMODE_EXEC ((__force fmode_t)0x20)
  102. /* File is opened with O_NDELAY (only set for block devices) */
  103. #define FMODE_NDELAY ((__force fmode_t)0x40)
  104. /* File is opened with O_EXCL (only set for block devices) */
  105. #define FMODE_EXCL ((__force fmode_t)0x80)
  106. /* File is opened using open(.., 3, ..) and is writeable only for ioctls
  107. (specialy hack for floppy.c) */
  108. #define FMODE_WRITE_IOCTL ((__force fmode_t)0x100)
  109. /* 32bit hashes as llseek() offset (for directories) */
  110. #define FMODE_32BITHASH ((__force fmode_t)0x200)
  111. /* 64bit hashes as llseek() offset (for directories) */
  112. #define FMODE_64BITHASH ((__force fmode_t)0x400)
  113. /*
  114. * Don't update ctime and mtime.
  115. *
  116. * Currently a special hack for the XFS open_by_handle ioctl, but we'll
  117. * hopefully graduate it to a proper O_CMTIME flag supported by open(2) soon.
  118. */
  119. #define FMODE_NOCMTIME ((__force fmode_t)0x800)
  120. /* Expect random access pattern */
  121. #define FMODE_RANDOM ((__force fmode_t)0x1000)
  122. /* File is huge (eg. /dev/kmem): treat loff_t as unsigned */
  123. #define FMODE_UNSIGNED_OFFSET ((__force fmode_t)0x2000)
  124. /* File is opened with O_PATH; almost nothing can be done with it */
  125. #define FMODE_PATH ((__force fmode_t)0x4000)
  126. /* File needs atomic accesses to f_pos */
  127. #define FMODE_ATOMIC_POS ((__force fmode_t)0x8000)
  128. /* Write access to underlying fs */
  129. #define FMODE_WRITER ((__force fmode_t)0x10000)
  130. /* Has read method(s) */
  131. #define FMODE_CAN_READ ((__force fmode_t)0x20000)
  132. /* Has write method(s) */
  133. #define FMODE_CAN_WRITE ((__force fmode_t)0x40000)
  134. /* File was opened by fanotify and shouldn't generate fanotify events */
  135. #define FMODE_NONOTIFY ((__force fmode_t)0x4000000)
  136. /* File is capable of returning -EAGAIN if I/O will block */
  137. #define FMODE_NOWAIT ((__force fmode_t)0x8000000)
  138. /*
  139. * Flag for rw_copy_check_uvector and compat_rw_copy_check_uvector
  140. * that indicates that they should check the contents of the iovec are
  141. * valid, but not check the memory that the iovec elements
  142. * points too.
  143. */
  144. #define CHECK_IOVEC_ONLY -1
  145. /*
  146. * Attribute flags. These should be or-ed together to figure out what
  147. * has been changed!
  148. */
  149. #define ATTR_MODE (1 << 0)
  150. #define ATTR_UID (1 << 1)
  151. #define ATTR_GID (1 << 2)
  152. #define ATTR_SIZE (1 << 3)
  153. #define ATTR_ATIME (1 << 4)
  154. #define ATTR_MTIME (1 << 5)
  155. #define ATTR_CTIME (1 << 6)
  156. #define ATTR_ATIME_SET (1 << 7)
  157. #define ATTR_MTIME_SET (1 << 8)
  158. #define ATTR_FORCE (1 << 9) /* Not a change, but a change it */
  159. #define ATTR_ATTR_FLAG (1 << 10)
  160. #define ATTR_KILL_SUID (1 << 11)
  161. #define ATTR_KILL_SGID (1 << 12)
  162. #define ATTR_FILE (1 << 13)
  163. #define ATTR_KILL_PRIV (1 << 14)
  164. #define ATTR_OPEN (1 << 15) /* Truncating from open(O_TRUNC) */
  165. #define ATTR_TIMES_SET (1 << 16)
  166. #define ATTR_TOUCH (1 << 17)
  167. /*
  168. * Whiteout is represented by a char device. The following constants define the
  169. * mode and device number to use.
  170. */
  171. #define WHITEOUT_MODE 0
  172. #define WHITEOUT_DEV 0
  173. /*
  174. * This is the Inode Attributes structure, used for notify_change(). It
  175. * uses the above definitions as flags, to know which values have changed.
  176. * Also, in this manner, a Filesystem can look at only the values it cares
  177. * about. Basically, these are the attributes that the VFS layer can
  178. * request to change from the FS layer.
  179. *
  180. * Derek Atkins <warlord@MIT.EDU> 94-10-20
  181. */
  182. struct iattr {
  183. unsigned int ia_valid;
  184. umode_t ia_mode;
  185. kuid_t ia_uid;
  186. kgid_t ia_gid;
  187. loff_t ia_size;
  188. struct timespec ia_atime;
  189. struct timespec ia_mtime;
  190. struct timespec ia_ctime;
  191. /*
  192. * Not an attribute, but an auxiliary info for filesystems wanting to
  193. * implement an ftruncate() like method. NOTE: filesystem should
  194. * check for (ia_valid & ATTR_FILE), and not for (ia_file != NULL).
  195. */
  196. struct file *ia_file;
  197. };
  198. /*
  199. * Includes for diskquotas.
  200. */
  201. #include <linux/quota.h>
  202. /*
  203. * Maximum number of layers of fs stack. Needs to be limited to
  204. * prevent kernel stack overflow
  205. */
  206. #define FILESYSTEM_MAX_STACK_DEPTH 2
  207. /**
  208. * enum positive_aop_returns - aop return codes with specific semantics
  209. *
  210. * @AOP_WRITEPAGE_ACTIVATE: Informs the caller that page writeback has
  211. * completed, that the page is still locked, and
  212. * should be considered active. The VM uses this hint
  213. * to return the page to the active list -- it won't
  214. * be a candidate for writeback again in the near
  215. * future. Other callers must be careful to unlock
  216. * the page if they get this return. Returned by
  217. * writepage();
  218. *
  219. * @AOP_TRUNCATED_PAGE: The AOP method that was handed a locked page has
  220. * unlocked it and the page might have been truncated.
  221. * The caller should back up to acquiring a new page and
  222. * trying again. The aop will be taking reasonable
  223. * precautions not to livelock. If the caller held a page
  224. * reference, it should drop it before retrying. Returned
  225. * by readpage().
  226. *
  227. * address_space_operation functions return these large constants to indicate
  228. * special semantics to the caller. These are much larger than the bytes in a
  229. * page to allow for functions that return the number of bytes operated on in a
  230. * given page.
  231. */
  232. enum positive_aop_returns {
  233. AOP_WRITEPAGE_ACTIVATE = 0x80000,
  234. AOP_TRUNCATED_PAGE = 0x80001,
  235. };
  236. #define AOP_FLAG_CONT_EXPAND 0x0001 /* called from cont_expand */
  237. #define AOP_FLAG_NOFS 0x0002 /* used by filesystem to direct
  238. * helper code (eg buffer layer)
  239. * to clear GFP_FS from alloc */
  240. /*
  241. * oh the beauties of C type declarations.
  242. */
  243. struct page;
  244. struct address_space;
  245. struct writeback_control;
  246. /*
  247. * Write life time hint values.
  248. */
  249. enum rw_hint {
  250. WRITE_LIFE_NOT_SET = 0,
  251. WRITE_LIFE_NONE = RWH_WRITE_LIFE_NONE,
  252. WRITE_LIFE_SHORT = RWH_WRITE_LIFE_SHORT,
  253. WRITE_LIFE_MEDIUM = RWH_WRITE_LIFE_MEDIUM,
  254. WRITE_LIFE_LONG = RWH_WRITE_LIFE_LONG,
  255. WRITE_LIFE_EXTREME = RWH_WRITE_LIFE_EXTREME,
  256. };
  257. #define IOCB_EVENTFD (1 << 0)
  258. #define IOCB_APPEND (1 << 1)
  259. #define IOCB_DIRECT (1 << 2)
  260. #define IOCB_HIPRI (1 << 3)
  261. #define IOCB_DSYNC (1 << 4)
  262. #define IOCB_SYNC (1 << 5)
  263. #define IOCB_WRITE (1 << 6)
  264. #define IOCB_NOWAIT (1 << 7)
  265. struct kiocb {
  266. struct file *ki_filp;
  267. loff_t ki_pos;
  268. void (*ki_complete)(struct kiocb *iocb, long ret, long ret2);
  269. void *private;
  270. int ki_flags;
  271. enum rw_hint ki_hint;
  272. } __randomize_layout;
  273. static inline bool is_sync_kiocb(struct kiocb *kiocb)
  274. {
  275. return kiocb->ki_complete == NULL;
  276. }
  277. /*
  278. * "descriptor" for what we're up to with a read.
  279. * This allows us to use the same read code yet
  280. * have multiple different users of the data that
  281. * we read from a file.
  282. *
  283. * The simplest case just copies the data to user
  284. * mode.
  285. */
  286. typedef struct {
  287. size_t written;
  288. size_t count;
  289. union {
  290. char __user *buf;
  291. void *data;
  292. } arg;
  293. int error;
  294. } read_descriptor_t;
  295. typedef int (*read_actor_t)(read_descriptor_t *, struct page *,
  296. unsigned long, unsigned long);
  297. struct address_space_operations {
  298. int (*writepage)(struct page *page, struct writeback_control *wbc);
  299. int (*readpage)(struct file *, struct page *);
  300. /* Write back some dirty pages from this mapping. */
  301. int (*writepages)(struct address_space *, struct writeback_control *);
  302. /* Set a page dirty. Return true if this dirtied it */
  303. int (*set_page_dirty)(struct page *page);
  304. int (*readpages)(struct file *filp, struct address_space *mapping,
  305. struct list_head *pages, unsigned nr_pages);
  306. int (*write_begin)(struct file *, struct address_space *mapping,
  307. loff_t pos, unsigned len, unsigned flags,
  308. struct page **pagep, void **fsdata);
  309. int (*write_end)(struct file *, struct address_space *mapping,
  310. loff_t pos, unsigned len, unsigned copied,
  311. struct page *page, void *fsdata);
  312. /* Unfortunately this kludge is needed for FIBMAP. Don't use it */
  313. sector_t (*bmap)(struct address_space *, sector_t);
  314. void (*invalidatepage) (struct page *, unsigned int, unsigned int);
  315. int (*releasepage) (struct page *, gfp_t);
  316. void (*freepage)(struct page *);
  317. ssize_t (*direct_IO)(struct kiocb *, struct iov_iter *iter);
  318. /*
  319. * migrate the contents of a page to the specified target. If
  320. * migrate_mode is MIGRATE_ASYNC, it must not block.
  321. */
  322. int (*migratepage) (struct address_space *,
  323. struct page *, struct page *, enum migrate_mode);
  324. bool (*isolate_page)(struct page *, isolate_mode_t);
  325. void (*putback_page)(struct page *);
  326. int (*launder_page) (struct page *);
  327. int (*is_partially_uptodate) (struct page *, unsigned long,
  328. unsigned long);
  329. void (*is_dirty_writeback) (struct page *, bool *, bool *);
  330. int (*error_remove_page)(struct address_space *, struct page *);
  331. /* swapfile support */
  332. int (*swap_activate)(struct swap_info_struct *sis, struct file *file,
  333. sector_t *span);
  334. void (*swap_deactivate)(struct file *file);
  335. };
  336. extern const struct address_space_operations empty_aops;
  337. /*
  338. * pagecache_write_begin/pagecache_write_end must be used by general code
  339. * to write into the pagecache.
  340. */
  341. int pagecache_write_begin(struct file *, struct address_space *mapping,
  342. loff_t pos, unsigned len, unsigned flags,
  343. struct page **pagep, void **fsdata);
  344. int pagecache_write_end(struct file *, struct address_space *mapping,
  345. loff_t pos, unsigned len, unsigned copied,
  346. struct page *page, void *fsdata);
  347. struct address_space {
  348. struct inode *host; /* owner: inode, block_device */
  349. struct radix_tree_root i_pages; /* cached pages */
  350. atomic_t i_mmap_writable;/* count VM_SHARED mappings */
  351. struct rb_root_cached i_mmap; /* tree of private and shared mappings */
  352. struct rw_semaphore i_mmap_rwsem; /* protect tree, count, list */
  353. /* Protected by the i_pages lock */
  354. unsigned long nrpages; /* number of total pages */
  355. /* number of shadow or DAX exceptional entries */
  356. unsigned long nrexceptional;
  357. pgoff_t writeback_index;/* writeback starts here */
  358. const struct address_space_operations *a_ops; /* methods */
  359. unsigned long flags; /* error bits */
  360. spinlock_t private_lock; /* for use by the address_space */
  361. gfp_t gfp_mask; /* implicit gfp mask for allocations */
  362. struct list_head private_list; /* for use by the address_space */
  363. void *private_data; /* ditto */
  364. errseq_t wb_err;
  365. } __attribute__((aligned(sizeof(long)))) __randomize_layout;
  366. /*
  367. * On most architectures that alignment is already the case; but
  368. * must be enforced here for CRIS, to let the least significant bit
  369. * of struct page's "mapping" pointer be used for PAGE_MAPPING_ANON.
  370. */
  371. struct request_queue;
  372. struct block_device {
  373. dev_t bd_dev; /* not a kdev_t - it's a search key */
  374. int bd_openers;
  375. struct inode * bd_inode; /* will die */
  376. struct super_block * bd_super;
  377. struct mutex bd_mutex; /* open/close mutex */
  378. void * bd_claiming;
  379. void * bd_holder;
  380. int bd_holders;
  381. bool bd_write_holder;
  382. #ifdef CONFIG_SYSFS
  383. struct list_head bd_holder_disks;
  384. #endif
  385. struct block_device * bd_contains;
  386. unsigned bd_block_size;
  387. u8 bd_partno;
  388. struct hd_struct * bd_part;
  389. /* number of times partitions within this device have been opened. */
  390. unsigned bd_part_count;
  391. int bd_invalidated;
  392. struct gendisk * bd_disk;
  393. struct request_queue * bd_queue;
  394. struct backing_dev_info *bd_bdi;
  395. struct list_head bd_list;
  396. /*
  397. * Private data. You must have bd_claim'ed the block_device
  398. * to use this. NOTE: bd_claim allows an owner to claim
  399. * the same device multiple times, the owner must take special
  400. * care to not mess up bd_private for that case.
  401. */
  402. unsigned long bd_private;
  403. /* The counter of freeze processes */
  404. int bd_fsfreeze_count;
  405. /* Mutex for freeze */
  406. struct mutex bd_fsfreeze_mutex;
  407. } __randomize_layout;
  408. /*
  409. * Radix-tree tags, for tagging dirty and writeback pages within the pagecache
  410. * radix trees
  411. */
  412. #define PAGECACHE_TAG_DIRTY 0
  413. #define PAGECACHE_TAG_WRITEBACK 1
  414. #define PAGECACHE_TAG_TOWRITE 2
  415. int mapping_tagged(struct address_space *mapping, int tag);
  416. static inline void i_mmap_lock_write(struct address_space *mapping)
  417. {
  418. down_write(&mapping->i_mmap_rwsem);
  419. }
  420. static inline void i_mmap_unlock_write(struct address_space *mapping)
  421. {
  422. up_write(&mapping->i_mmap_rwsem);
  423. }
  424. static inline void i_mmap_lock_read(struct address_space *mapping)
  425. {
  426. down_read(&mapping->i_mmap_rwsem);
  427. }
  428. static inline void i_mmap_unlock_read(struct address_space *mapping)
  429. {
  430. up_read(&mapping->i_mmap_rwsem);
  431. }
  432. /*
  433. * Might pages of this file be mapped into userspace?
  434. */
  435. static inline int mapping_mapped(struct address_space *mapping)
  436. {
  437. return !RB_EMPTY_ROOT(&mapping->i_mmap.rb_root);
  438. }
  439. /*
  440. * Might pages of this file have been modified in userspace?
  441. * Note that i_mmap_writable counts all VM_SHARED vmas: do_mmap_pgoff
  442. * marks vma as VM_SHARED if it is shared, and the file was opened for
  443. * writing i.e. vma may be mprotected writable even if now readonly.
  444. *
  445. * If i_mmap_writable is negative, no new writable mappings are allowed. You
  446. * can only deny writable mappings, if none exists right now.
  447. */
  448. static inline int mapping_writably_mapped(struct address_space *mapping)
  449. {
  450. return atomic_read(&mapping->i_mmap_writable) > 0;
  451. }
  452. static inline int mapping_map_writable(struct address_space *mapping)
  453. {
  454. return atomic_inc_unless_negative(&mapping->i_mmap_writable) ?
  455. 0 : -EPERM;
  456. }
  457. static inline void mapping_unmap_writable(struct address_space *mapping)
  458. {
  459. atomic_dec(&mapping->i_mmap_writable);
  460. }
  461. static inline int mapping_deny_writable(struct address_space *mapping)
  462. {
  463. return atomic_dec_unless_positive(&mapping->i_mmap_writable) ?
  464. 0 : -EBUSY;
  465. }
  466. static inline void mapping_allow_writable(struct address_space *mapping)
  467. {
  468. atomic_inc(&mapping->i_mmap_writable);
  469. }
  470. /*
  471. * Use sequence counter to get consistent i_size on 32-bit processors.
  472. */
  473. #if BITS_PER_LONG==32 && defined(CONFIG_SMP)
  474. #include <linux/seqlock.h>
  475. #define __NEED_I_SIZE_ORDERED
  476. #define i_size_ordered_init(inode) seqcount_init(&inode->i_size_seqcount)
  477. #else
  478. #define i_size_ordered_init(inode) do { } while (0)
  479. #endif
  480. struct posix_acl;
  481. #define ACL_NOT_CACHED ((void *)(-1))
  482. #define ACL_DONT_CACHE ((void *)(-3))
  483. static inline struct posix_acl *
  484. uncached_acl_sentinel(struct task_struct *task)
  485. {
  486. return (void *)task + 1;
  487. }
  488. static inline bool
  489. is_uncached_acl(struct posix_acl *acl)
  490. {
  491. return (long)acl & 1;
  492. }
  493. #define IOP_FASTPERM 0x0001
  494. #define IOP_LOOKUP 0x0002
  495. #define IOP_NOFOLLOW 0x0004
  496. #define IOP_XATTR 0x0008
  497. #define IOP_DEFAULT_READLINK 0x0010
  498. struct fsnotify_mark_connector;
  499. /*
  500. * Keep mostly read-only and often accessed (especially for
  501. * the RCU path lookup and 'stat' data) fields at the beginning
  502. * of the 'struct inode'
  503. */
  504. struct inode {
  505. umode_t i_mode;
  506. unsigned short i_opflags;
  507. kuid_t i_uid;
  508. kgid_t i_gid;
  509. unsigned int i_flags;
  510. #ifdef CONFIG_FS_POSIX_ACL
  511. struct posix_acl *i_acl;
  512. struct posix_acl *i_default_acl;
  513. #endif
  514. const struct inode_operations *i_op;
  515. struct super_block *i_sb;
  516. struct address_space *i_mapping;
  517. #ifdef CONFIG_SECURITY
  518. void *i_security;
  519. #endif
  520. /* Stat data, not accessed from path walking */
  521. unsigned long i_ino;
  522. /*
  523. * Filesystems may only read i_nlink directly. They shall use the
  524. * following functions for modification:
  525. *
  526. * (set|clear|inc|drop)_nlink
  527. * inode_(inc|dec)_link_count
  528. */
  529. union {
  530. const unsigned int i_nlink;
  531. unsigned int __i_nlink;
  532. };
  533. dev_t i_rdev;
  534. loff_t i_size;
  535. struct timespec i_atime;
  536. struct timespec i_mtime;
  537. struct timespec i_ctime;
  538. spinlock_t i_lock; /* i_blocks, i_bytes, maybe i_size */
  539. unsigned short i_bytes;
  540. unsigned int i_blkbits;
  541. enum rw_hint i_write_hint;
  542. blkcnt_t i_blocks;
  543. #ifdef __NEED_I_SIZE_ORDERED
  544. seqcount_t i_size_seqcount;
  545. #endif
  546. /* Misc */
  547. unsigned long i_state;
  548. struct rw_semaphore i_rwsem;
  549. unsigned long dirtied_when; /* jiffies of first dirtying */
  550. unsigned long dirtied_time_when;
  551. struct hlist_node i_hash;
  552. struct list_head i_io_list; /* backing dev IO list */
  553. #ifdef CONFIG_CGROUP_WRITEBACK
  554. struct bdi_writeback *i_wb; /* the associated cgroup wb */
  555. /* foreign inode detection, see wbc_detach_inode() */
  556. int i_wb_frn_winner;
  557. u16 i_wb_frn_avg_time;
  558. u16 i_wb_frn_history;
  559. #endif
  560. struct list_head i_lru; /* inode LRU list */
  561. struct list_head i_sb_list;
  562. struct list_head i_wb_list; /* backing dev writeback list */
  563. union {
  564. struct hlist_head i_dentry;
  565. struct rcu_head i_rcu;
  566. };
  567. atomic64_t i_version;
  568. atomic_t i_count;
  569. atomic_t i_dio_count;
  570. atomic_t i_writecount;
  571. #ifdef CONFIG_IMA
  572. atomic_t i_readcount; /* struct files open RO */
  573. #endif
  574. const struct file_operations *i_fop; /* former ->i_op->default_file_ops */
  575. struct file_lock_context *i_flctx;
  576. struct address_space i_data;
  577. struct list_head i_devices;
  578. union {
  579. struct pipe_inode_info *i_pipe;
  580. struct block_device *i_bdev;
  581. struct cdev *i_cdev;
  582. char *i_link;
  583. unsigned i_dir_seq;
  584. };
  585. __u32 i_generation;
  586. #ifdef CONFIG_FSNOTIFY
  587. __u32 i_fsnotify_mask; /* all events this inode cares about */
  588. struct fsnotify_mark_connector __rcu *i_fsnotify_marks;
  589. #endif
  590. #if IS_ENABLED(CONFIG_FS_ENCRYPTION)
  591. struct fscrypt_info *i_crypt_info;
  592. #endif
  593. void *i_private; /* fs or device private pointer */
  594. } __randomize_layout;
  595. static inline unsigned int i_blocksize(const struct inode *node)
  596. {
  597. return (1 << node->i_blkbits);
  598. }
  599. static inline int inode_unhashed(struct inode *inode)
  600. {
  601. return hlist_unhashed(&inode->i_hash);
  602. }
  603. /*
  604. * inode->i_mutex nesting subclasses for the lock validator:
  605. *
  606. * 0: the object of the current VFS operation
  607. * 1: parent
  608. * 2: child/target
  609. * 3: xattr
  610. * 4: second non-directory
  611. * 5: second parent (when locking independent directories in rename)
  612. *
  613. * I_MUTEX_NONDIR2 is for certain operations (such as rename) which lock two
  614. * non-directories at once.
  615. *
  616. * The locking order between these classes is
  617. * parent[2] -> child -> grandchild -> normal -> xattr -> second non-directory
  618. */
  619. enum inode_i_mutex_lock_class
  620. {
  621. I_MUTEX_NORMAL,
  622. I_MUTEX_PARENT,
  623. I_MUTEX_CHILD,
  624. I_MUTEX_XATTR,
  625. I_MUTEX_NONDIR2,
  626. I_MUTEX_PARENT2,
  627. };
  628. static inline void inode_lock(struct inode *inode)
  629. {
  630. down_write(&inode->i_rwsem);
  631. }
  632. static inline void inode_unlock(struct inode *inode)
  633. {
  634. up_write(&inode->i_rwsem);
  635. }
  636. static inline void inode_lock_shared(struct inode *inode)
  637. {
  638. down_read(&inode->i_rwsem);
  639. }
  640. static inline void inode_unlock_shared(struct inode *inode)
  641. {
  642. up_read(&inode->i_rwsem);
  643. }
  644. static inline int inode_trylock(struct inode *inode)
  645. {
  646. return down_write_trylock(&inode->i_rwsem);
  647. }
  648. static inline int inode_trylock_shared(struct inode *inode)
  649. {
  650. return down_read_trylock(&inode->i_rwsem);
  651. }
  652. static inline int inode_is_locked(struct inode *inode)
  653. {
  654. return rwsem_is_locked(&inode->i_rwsem);
  655. }
  656. static inline void inode_lock_nested(struct inode *inode, unsigned subclass)
  657. {
  658. down_write_nested(&inode->i_rwsem, subclass);
  659. }
  660. static inline void inode_lock_shared_nested(struct inode *inode, unsigned subclass)
  661. {
  662. down_read_nested(&inode->i_rwsem, subclass);
  663. }
  664. void lock_two_nondirectories(struct inode *, struct inode*);
  665. void unlock_two_nondirectories(struct inode *, struct inode*);
  666. /*
  667. * NOTE: in a 32bit arch with a preemptable kernel and
  668. * an UP compile the i_size_read/write must be atomic
  669. * with respect to the local cpu (unlike with preempt disabled),
  670. * but they don't need to be atomic with respect to other cpus like in
  671. * true SMP (so they need either to either locally disable irq around
  672. * the read or for example on x86 they can be still implemented as a
  673. * cmpxchg8b without the need of the lock prefix). For SMP compiles
  674. * and 64bit archs it makes no difference if preempt is enabled or not.
  675. */
  676. static inline loff_t i_size_read(const struct inode *inode)
  677. {
  678. #if BITS_PER_LONG==32 && defined(CONFIG_SMP)
  679. loff_t i_size;
  680. unsigned int seq;
  681. do {
  682. seq = read_seqcount_begin(&inode->i_size_seqcount);
  683. i_size = inode->i_size;
  684. } while (read_seqcount_retry(&inode->i_size_seqcount, seq));
  685. return i_size;
  686. #elif BITS_PER_LONG==32 && defined(CONFIG_PREEMPT)
  687. loff_t i_size;
  688. preempt_disable();
  689. i_size = inode->i_size;
  690. preempt_enable();
  691. return i_size;
  692. #else
  693. return inode->i_size;
  694. #endif
  695. }
  696. /*
  697. * NOTE: unlike i_size_read(), i_size_write() does need locking around it
  698. * (normally i_mutex), otherwise on 32bit/SMP an update of i_size_seqcount
  699. * can be lost, resulting in subsequent i_size_read() calls spinning forever.
  700. */
  701. static inline void i_size_write(struct inode *inode, loff_t i_size)
  702. {
  703. #if BITS_PER_LONG==32 && defined(CONFIG_SMP)
  704. preempt_disable();
  705. write_seqcount_begin(&inode->i_size_seqcount);
  706. inode->i_size = i_size;
  707. write_seqcount_end(&inode->i_size_seqcount);
  708. preempt_enable();
  709. #elif BITS_PER_LONG==32 && defined(CONFIG_PREEMPT)
  710. preempt_disable();
  711. inode->i_size = i_size;
  712. preempt_enable();
  713. #else
  714. inode->i_size = i_size;
  715. #endif
  716. }
  717. static inline unsigned iminor(const struct inode *inode)
  718. {
  719. return MINOR(inode->i_rdev);
  720. }
  721. static inline unsigned imajor(const struct inode *inode)
  722. {
  723. return MAJOR(inode->i_rdev);
  724. }
  725. extern struct block_device *I_BDEV(struct inode *inode);
  726. struct fown_struct {
  727. rwlock_t lock; /* protects pid, uid, euid fields */
  728. struct pid *pid; /* pid or -pgrp where SIGIO should be sent */
  729. enum pid_type pid_type; /* Kind of process group SIGIO should be sent to */
  730. kuid_t uid, euid; /* uid/euid of process setting the owner */
  731. int signum; /* posix.1b rt signal to be delivered on IO */
  732. };
  733. /*
  734. * Track a single file's readahead state
  735. */
  736. struct file_ra_state {
  737. pgoff_t start; /* where readahead started */
  738. unsigned int size; /* # of readahead pages */
  739. unsigned int async_size; /* do asynchronous readahead when
  740. there are only # of pages ahead */
  741. unsigned int ra_pages; /* Maximum readahead window */
  742. unsigned int mmap_miss; /* Cache miss stat for mmap accesses */
  743. loff_t prev_pos; /* Cache last read() position */
  744. };
  745. /*
  746. * Check if @index falls in the readahead windows.
  747. */
  748. static inline int ra_has_index(struct file_ra_state *ra, pgoff_t index)
  749. {
  750. return (index >= ra->start &&
  751. index < ra->start + ra->size);
  752. }
  753. struct file {
  754. union {
  755. struct llist_node fu_llist;
  756. struct rcu_head fu_rcuhead;
  757. } f_u;
  758. struct path f_path;
  759. struct inode *f_inode; /* cached value */
  760. const struct file_operations *f_op;
  761. /*
  762. * Protects f_ep_links, f_flags.
  763. * Must not be taken from IRQ context.
  764. */
  765. spinlock_t f_lock;
  766. enum rw_hint f_write_hint;
  767. atomic_long_t f_count;
  768. unsigned int f_flags;
  769. fmode_t f_mode;
  770. struct mutex f_pos_lock;
  771. loff_t f_pos;
  772. struct fown_struct f_owner;
  773. const struct cred *f_cred;
  774. struct file_ra_state f_ra;
  775. u64 f_version;
  776. #ifdef CONFIG_SECURITY
  777. void *f_security;
  778. #endif
  779. /* needed for tty driver, and maybe others */
  780. void *private_data;
  781. #ifdef CONFIG_EPOLL
  782. /* Used by fs/eventpoll.c to link all the hooks to this file */
  783. struct list_head f_ep_links;
  784. struct list_head f_tfile_llink;
  785. #endif /* #ifdef CONFIG_EPOLL */
  786. struct address_space *f_mapping;
  787. errseq_t f_wb_err;
  788. } __randomize_layout
  789. __attribute__((aligned(4))); /* lest something weird decides that 2 is OK */
  790. struct file_handle {
  791. __u32 handle_bytes;
  792. int handle_type;
  793. /* file identifier */
  794. unsigned char f_handle[0];
  795. };
  796. static inline struct file *get_file(struct file *f)
  797. {
  798. atomic_long_inc(&f->f_count);
  799. return f;
  800. }
  801. #define get_file_rcu(x) atomic_long_inc_not_zero(&(x)->f_count)
  802. #define fput_atomic(x) atomic_long_add_unless(&(x)->f_count, -1, 1)
  803. #define file_count(x) atomic_long_read(&(x)->f_count)
  804. #define MAX_NON_LFS ((1UL<<31) - 1)
  805. /* Page cache limit. The filesystems should put that into their s_maxbytes
  806. limits, otherwise bad things can happen in VM. */
  807. #if BITS_PER_LONG==32
  808. #define MAX_LFS_FILESIZE ((loff_t)ULONG_MAX << PAGE_SHIFT)
  809. #elif BITS_PER_LONG==64
  810. #define MAX_LFS_FILESIZE ((loff_t)LLONG_MAX)
  811. #endif
  812. #define FL_POSIX 1
  813. #define FL_FLOCK 2
  814. #define FL_DELEG 4 /* NFSv4 delegation */
  815. #define FL_ACCESS 8 /* not trying to lock, just looking */
  816. #define FL_EXISTS 16 /* when unlocking, test for existence */
  817. #define FL_LEASE 32 /* lease held on this file */
  818. #define FL_CLOSE 64 /* unlock on close */
  819. #define FL_SLEEP 128 /* A blocking lock */
  820. #define FL_DOWNGRADE_PENDING 256 /* Lease is being downgraded */
  821. #define FL_UNLOCK_PENDING 512 /* Lease is being broken */
  822. #define FL_OFDLCK 1024 /* lock is "owned" by struct file */
  823. #define FL_LAYOUT 2048 /* outstanding pNFS layout */
  824. #define FL_CLOSE_POSIX (FL_POSIX | FL_CLOSE)
  825. /*
  826. * Special return value from posix_lock_file() and vfs_lock_file() for
  827. * asynchronous locking.
  828. */
  829. #define FILE_LOCK_DEFERRED 1
  830. /* legacy typedef, should eventually be removed */
  831. typedef void *fl_owner_t;
  832. struct file_lock;
  833. struct file_lock_operations {
  834. void (*fl_copy_lock)(struct file_lock *, struct file_lock *);
  835. void (*fl_release_private)(struct file_lock *);
  836. };
  837. struct lock_manager_operations {
  838. int (*lm_compare_owner)(struct file_lock *, struct file_lock *);
  839. unsigned long (*lm_owner_key)(struct file_lock *);
  840. fl_owner_t (*lm_get_owner)(fl_owner_t);
  841. void (*lm_put_owner)(fl_owner_t);
  842. void (*lm_notify)(struct file_lock *); /* unblock callback */
  843. int (*lm_grant)(struct file_lock *, int);
  844. bool (*lm_break)(struct file_lock *);
  845. int (*lm_change)(struct file_lock *, int, struct list_head *);
  846. void (*lm_setup)(struct file_lock *, void **);
  847. };
  848. struct lock_manager {
  849. struct list_head list;
  850. /*
  851. * NFSv4 and up also want opens blocked during the grace period;
  852. * NLM doesn't care:
  853. */
  854. bool block_opens;
  855. };
  856. struct net;
  857. void locks_start_grace(struct net *, struct lock_manager *);
  858. void locks_end_grace(struct lock_manager *);
  859. bool locks_in_grace(struct net *);
  860. bool opens_in_grace(struct net *);
  861. /* that will die - we need it for nfs_lock_info */
  862. #include <linux/nfs_fs_i.h>
  863. /*
  864. * struct file_lock represents a generic "file lock". It's used to represent
  865. * POSIX byte range locks, BSD (flock) locks, and leases. It's important to
  866. * note that the same struct is used to represent both a request for a lock and
  867. * the lock itself, but the same object is never used for both.
  868. *
  869. * FIXME: should we create a separate "struct lock_request" to help distinguish
  870. * these two uses?
  871. *
  872. * The varous i_flctx lists are ordered by:
  873. *
  874. * 1) lock owner
  875. * 2) lock range start
  876. * 3) lock range end
  877. *
  878. * Obviously, the last two criteria only matter for POSIX locks.
  879. */
  880. struct file_lock {
  881. struct file_lock *fl_next; /* singly linked list for this inode */
  882. struct list_head fl_list; /* link into file_lock_context */
  883. struct hlist_node fl_link; /* node in global lists */
  884. struct list_head fl_block; /* circular list of blocked processes */
  885. fl_owner_t fl_owner;
  886. unsigned int fl_flags;
  887. unsigned char fl_type;
  888. unsigned int fl_pid;
  889. int fl_link_cpu; /* what cpu's list is this on? */
  890. wait_queue_head_t fl_wait;
  891. struct file *fl_file;
  892. loff_t fl_start;
  893. loff_t fl_end;
  894. struct fasync_struct * fl_fasync; /* for lease break notifications */
  895. /* for lease breaks: */
  896. unsigned long fl_break_time;
  897. unsigned long fl_downgrade_time;
  898. const struct file_lock_operations *fl_ops; /* Callbacks for filesystems */
  899. const struct lock_manager_operations *fl_lmops; /* Callbacks for lockmanagers */
  900. union {
  901. struct nfs_lock_info nfs_fl;
  902. struct nfs4_lock_info nfs4_fl;
  903. struct {
  904. struct list_head link; /* link in AFS vnode's pending_locks list */
  905. int state; /* state of grant or error if -ve */
  906. } afs;
  907. } fl_u;
  908. } __randomize_layout;
  909. struct file_lock_context {
  910. spinlock_t flc_lock;
  911. struct list_head flc_flock;
  912. struct list_head flc_posix;
  913. struct list_head flc_lease;
  914. };
  915. /* The following constant reflects the upper bound of the file/locking space */
  916. #ifndef OFFSET_MAX
  917. #define INT_LIMIT(x) (~((x)1 << (sizeof(x)*8 - 1)))
  918. #define OFFSET_MAX INT_LIMIT(loff_t)
  919. #define OFFT_OFFSET_MAX INT_LIMIT(off_t)
  920. #endif
  921. extern void send_sigio(struct fown_struct *fown, int fd, int band);
  922. /*
  923. * Return the inode to use for locking
  924. *
  925. * For overlayfs this should be the overlay inode, not the real inode returned
  926. * by file_inode(). For any other fs file_inode(filp) and locks_inode(filp) are
  927. * equal.
  928. */
  929. static inline struct inode *locks_inode(const struct file *f)
  930. {
  931. return f->f_path.dentry->d_inode;
  932. }
  933. #ifdef CONFIG_FILE_LOCKING
  934. extern int fcntl_getlk(struct file *, unsigned int, struct flock *);
  935. extern int fcntl_setlk(unsigned int, struct file *, unsigned int,
  936. struct flock *);
  937. #if BITS_PER_LONG == 32
  938. extern int fcntl_getlk64(struct file *, unsigned int, struct flock64 *);
  939. extern int fcntl_setlk64(unsigned int, struct file *, unsigned int,
  940. struct flock64 *);
  941. #endif
  942. extern int fcntl_setlease(unsigned int fd, struct file *filp, long arg);
  943. extern int fcntl_getlease(struct file *filp);
  944. /* fs/locks.c */
  945. void locks_free_lock_context(struct inode *inode);
  946. void locks_free_lock(struct file_lock *fl);
  947. extern void locks_init_lock(struct file_lock *);
  948. extern struct file_lock * locks_alloc_lock(void);
  949. extern void locks_copy_lock(struct file_lock *, struct file_lock *);
  950. extern void locks_copy_conflock(struct file_lock *, struct file_lock *);
  951. extern void locks_remove_posix(struct file *, fl_owner_t);
  952. extern void locks_remove_file(struct file *);
  953. extern void locks_release_private(struct file_lock *);
  954. extern void posix_test_lock(struct file *, struct file_lock *);
  955. extern int posix_lock_file(struct file *, struct file_lock *, struct file_lock *);
  956. extern int posix_unblock_lock(struct file_lock *);
  957. extern int vfs_test_lock(struct file *, struct file_lock *);
  958. extern int vfs_lock_file(struct file *, unsigned int, struct file_lock *, struct file_lock *);
  959. extern int vfs_cancel_lock(struct file *filp, struct file_lock *fl);
  960. extern int locks_lock_inode_wait(struct inode *inode, struct file_lock *fl);
  961. extern int __break_lease(struct inode *inode, unsigned int flags, unsigned int type);
  962. extern void lease_get_mtime(struct inode *, struct timespec *time);
  963. extern int generic_setlease(struct file *, long, struct file_lock **, void **priv);
  964. extern int vfs_setlease(struct file *, long, struct file_lock **, void **);
  965. extern int lease_modify(struct file_lock *, int, struct list_head *);
  966. struct files_struct;
  967. extern void show_fd_locks(struct seq_file *f,
  968. struct file *filp, struct files_struct *files);
  969. #else /* !CONFIG_FILE_LOCKING */
  970. static inline int fcntl_getlk(struct file *file, unsigned int cmd,
  971. struct flock __user *user)
  972. {
  973. return -EINVAL;
  974. }
  975. static inline int fcntl_setlk(unsigned int fd, struct file *file,
  976. unsigned int cmd, struct flock __user *user)
  977. {
  978. return -EACCES;
  979. }
  980. #if BITS_PER_LONG == 32
  981. static inline int fcntl_getlk64(struct file *file, unsigned int cmd,
  982. struct flock64 __user *user)
  983. {
  984. return -EINVAL;
  985. }
  986. static inline int fcntl_setlk64(unsigned int fd, struct file *file,
  987. unsigned int cmd, struct flock64 __user *user)
  988. {
  989. return -EACCES;
  990. }
  991. #endif
  992. static inline int fcntl_setlease(unsigned int fd, struct file *filp, long arg)
  993. {
  994. return -EINVAL;
  995. }
  996. static inline int fcntl_getlease(struct file *filp)
  997. {
  998. return F_UNLCK;
  999. }
  1000. static inline void
  1001. locks_free_lock_context(struct inode *inode)
  1002. {
  1003. }
  1004. static inline void locks_init_lock(struct file_lock *fl)
  1005. {
  1006. return;
  1007. }
  1008. static inline void locks_copy_conflock(struct file_lock *new, struct file_lock *fl)
  1009. {
  1010. return;
  1011. }
  1012. static inline void locks_copy_lock(struct file_lock *new, struct file_lock *fl)
  1013. {
  1014. return;
  1015. }
  1016. static inline void locks_remove_posix(struct file *filp, fl_owner_t owner)
  1017. {
  1018. return;
  1019. }
  1020. static inline void locks_remove_file(struct file *filp)
  1021. {
  1022. return;
  1023. }
  1024. static inline void posix_test_lock(struct file *filp, struct file_lock *fl)
  1025. {
  1026. return;
  1027. }
  1028. static inline int posix_lock_file(struct file *filp, struct file_lock *fl,
  1029. struct file_lock *conflock)
  1030. {
  1031. return -ENOLCK;
  1032. }
  1033. static inline int posix_unblock_lock(struct file_lock *waiter)
  1034. {
  1035. return -ENOENT;
  1036. }
  1037. static inline int vfs_test_lock(struct file *filp, struct file_lock *fl)
  1038. {
  1039. return 0;
  1040. }
  1041. static inline int vfs_lock_file(struct file *filp, unsigned int cmd,
  1042. struct file_lock *fl, struct file_lock *conf)
  1043. {
  1044. return -ENOLCK;
  1045. }
  1046. static inline int vfs_cancel_lock(struct file *filp, struct file_lock *fl)
  1047. {
  1048. return 0;
  1049. }
  1050. static inline int locks_lock_inode_wait(struct inode *inode, struct file_lock *fl)
  1051. {
  1052. return -ENOLCK;
  1053. }
  1054. static inline int __break_lease(struct inode *inode, unsigned int mode, unsigned int type)
  1055. {
  1056. return 0;
  1057. }
  1058. static inline void lease_get_mtime(struct inode *inode, struct timespec *time)
  1059. {
  1060. return;
  1061. }
  1062. static inline int generic_setlease(struct file *filp, long arg,
  1063. struct file_lock **flp, void **priv)
  1064. {
  1065. return -EINVAL;
  1066. }
  1067. static inline int vfs_setlease(struct file *filp, long arg,
  1068. struct file_lock **lease, void **priv)
  1069. {
  1070. return -EINVAL;
  1071. }
  1072. static inline int lease_modify(struct file_lock *fl, int arg,
  1073. struct list_head *dispose)
  1074. {
  1075. return -EINVAL;
  1076. }
  1077. struct files_struct;
  1078. static inline void show_fd_locks(struct seq_file *f,
  1079. struct file *filp, struct files_struct *files) {}
  1080. #endif /* !CONFIG_FILE_LOCKING */
  1081. static inline struct inode *file_inode(const struct file *f)
  1082. {
  1083. return f->f_inode;
  1084. }
  1085. static inline struct dentry *file_dentry(const struct file *file)
  1086. {
  1087. return d_real(file->f_path.dentry, file_inode(file), 0, 0);
  1088. }
  1089. static inline int locks_lock_file_wait(struct file *filp, struct file_lock *fl)
  1090. {
  1091. return locks_lock_inode_wait(locks_inode(filp), fl);
  1092. }
  1093. struct fasync_struct {
  1094. spinlock_t fa_lock;
  1095. int magic;
  1096. int fa_fd;
  1097. struct fasync_struct *fa_next; /* singly linked list */
  1098. struct file *fa_file;
  1099. struct rcu_head fa_rcu;
  1100. };
  1101. #define FASYNC_MAGIC 0x4601
  1102. /* SMP safe fasync helpers: */
  1103. extern int fasync_helper(int, struct file *, int, struct fasync_struct **);
  1104. extern struct fasync_struct *fasync_insert_entry(int, struct file *, struct fasync_struct **, struct fasync_struct *);
  1105. extern int fasync_remove_entry(struct file *, struct fasync_struct **);
  1106. extern struct fasync_struct *fasync_alloc(void);
  1107. extern void fasync_free(struct fasync_struct *);
  1108. /* can be called from interrupts */
  1109. extern void kill_fasync(struct fasync_struct **, int, int);
  1110. extern void __f_setown(struct file *filp, struct pid *, enum pid_type, int force);
  1111. extern int f_setown(struct file *filp, unsigned long arg, int force);
  1112. extern void f_delown(struct file *filp);
  1113. extern pid_t f_getown(struct file *filp);
  1114. extern int send_sigurg(struct fown_struct *fown);
  1115. /*
  1116. * sb->s_flags. Note that these mirror the equivalent MS_* flags where
  1117. * represented in both.
  1118. */
  1119. #define SB_RDONLY 1 /* Mount read-only */
  1120. #define SB_NOSUID 2 /* Ignore suid and sgid bits */
  1121. #define SB_NODEV 4 /* Disallow access to device special files */
  1122. #define SB_NOEXEC 8 /* Disallow program execution */
  1123. #define SB_SYNCHRONOUS 16 /* Writes are synced at once */
  1124. #define SB_MANDLOCK 64 /* Allow mandatory locks on an FS */
  1125. #define SB_DIRSYNC 128 /* Directory modifications are synchronous */
  1126. #define SB_NOATIME 1024 /* Do not update access times. */
  1127. #define SB_NODIRATIME 2048 /* Do not update directory access times */
  1128. #define SB_SILENT 32768
  1129. #define SB_POSIXACL (1<<16) /* VFS does not apply the umask */
  1130. #define SB_KERNMOUNT (1<<22) /* this is a kern_mount call */
  1131. #define SB_I_VERSION (1<<23) /* Update inode I_version field */
  1132. #define SB_LAZYTIME (1<<25) /* Update the on-disk [acm]times lazily */
  1133. /* These sb flags are internal to the kernel */
  1134. #define SB_SUBMOUNT (1<<26)
  1135. #define SB_NOREMOTELOCK (1<<27)
  1136. #define SB_NOSEC (1<<28)
  1137. #define SB_BORN (1<<29)
  1138. #define SB_ACTIVE (1<<30)
  1139. #define SB_NOUSER (1<<31)
  1140. /*
  1141. * Umount options
  1142. */
  1143. #define MNT_FORCE 0x00000001 /* Attempt to forcibily umount */
  1144. #define MNT_DETACH 0x00000002 /* Just detach from the tree */
  1145. #define MNT_EXPIRE 0x00000004 /* Mark for expiry */
  1146. #define UMOUNT_NOFOLLOW 0x00000008 /* Don't follow symlink on umount */
  1147. #define UMOUNT_UNUSED 0x80000000 /* Flag guaranteed to be unused */
  1148. /* sb->s_iflags */
  1149. #define SB_I_CGROUPWB 0x00000001 /* cgroup-aware writeback enabled */
  1150. #define SB_I_NOEXEC 0x00000002 /* Ignore executables on this fs */
  1151. #define SB_I_NODEV 0x00000004 /* Ignore devices on this fs */
  1152. #define SB_I_MULTIROOT 0x00000008 /* Multiple roots to the dentry tree */
  1153. /* sb->s_iflags to limit user namespace mounts */
  1154. #define SB_I_USERNS_VISIBLE 0x00000010 /* fstype already mounted */
  1155. #define SB_I_IMA_UNVERIFIABLE_SIGNATURE 0x00000020
  1156. #define SB_I_UNTRUSTED_MOUNTER 0x00000040
  1157. /* Possible states of 'frozen' field */
  1158. enum {
  1159. SB_UNFROZEN = 0, /* FS is unfrozen */
  1160. SB_FREEZE_WRITE = 1, /* Writes, dir ops, ioctls frozen */
  1161. SB_FREEZE_PAGEFAULT = 2, /* Page faults stopped as well */
  1162. SB_FREEZE_FS = 3, /* For internal FS use (e.g. to stop
  1163. * internal threads if needed) */
  1164. SB_FREEZE_COMPLETE = 4, /* ->freeze_fs finished successfully */
  1165. };
  1166. #define SB_FREEZE_LEVELS (SB_FREEZE_COMPLETE - 1)
  1167. struct sb_writers {
  1168. int frozen; /* Is sb frozen? */
  1169. wait_queue_head_t wait_unfrozen; /* for get_super_thawed() */
  1170. struct percpu_rw_semaphore rw_sem[SB_FREEZE_LEVELS];
  1171. };
  1172. struct super_block {
  1173. struct list_head s_list; /* Keep this first */
  1174. dev_t s_dev; /* search index; _not_ kdev_t */
  1175. unsigned char s_blocksize_bits;
  1176. unsigned long s_blocksize;
  1177. loff_t s_maxbytes; /* Max file size */
  1178. struct file_system_type *s_type;
  1179. const struct super_operations *s_op;
  1180. const struct dquot_operations *dq_op;
  1181. const struct quotactl_ops *s_qcop;
  1182. const struct export_operations *s_export_op;
  1183. unsigned long s_flags;
  1184. unsigned long s_iflags; /* internal SB_I_* flags */
  1185. unsigned long s_magic;
  1186. struct dentry *s_root;
  1187. struct rw_semaphore s_umount;
  1188. int s_count;
  1189. atomic_t s_active;
  1190. #ifdef CONFIG_SECURITY
  1191. void *s_security;
  1192. #endif
  1193. const struct xattr_handler **s_xattr;
  1194. const struct fscrypt_operations *s_cop;
  1195. struct hlist_bl_head s_roots; /* alternate root dentries for NFS */
  1196. struct list_head s_mounts; /* list of mounts; _not_ for fs use */
  1197. struct block_device *s_bdev;
  1198. struct backing_dev_info *s_bdi;
  1199. struct mtd_info *s_mtd;
  1200. struct hlist_node s_instances;
  1201. unsigned int s_quota_types; /* Bitmask of supported quota types */
  1202. struct quota_info s_dquot; /* Diskquota specific options */
  1203. struct sb_writers s_writers;
  1204. char s_id[32]; /* Informational name */
  1205. uuid_t s_uuid; /* UUID */
  1206. void *s_fs_info; /* Filesystem private info */
  1207. unsigned int s_max_links;
  1208. fmode_t s_mode;
  1209. /* Granularity of c/m/atime in ns.
  1210. Cannot be worse than a second */
  1211. u32 s_time_gran;
  1212. /*
  1213. * The next field is for VFS *only*. No filesystems have any business
  1214. * even looking at it. You had been warned.
  1215. */
  1216. struct mutex s_vfs_rename_mutex; /* Kludge */
  1217. /*
  1218. * Filesystem subtype. If non-empty the filesystem type field
  1219. * in /proc/mounts will be "type.subtype"
  1220. */
  1221. char *s_subtype;
  1222. const struct dentry_operations *s_d_op; /* default d_op for dentries */
  1223. /*
  1224. * Saved pool identifier for cleancache (-1 means none)
  1225. */
  1226. int cleancache_poolid;
  1227. struct shrinker s_shrink; /* per-sb shrinker handle */
  1228. /* Number of inodes with nlink == 0 but still referenced */
  1229. atomic_long_t s_remove_count;
  1230. /* Being remounted read-only */
  1231. int s_readonly_remount;
  1232. /* AIO completions deferred from interrupt context */
  1233. struct workqueue_struct *s_dio_done_wq;
  1234. struct hlist_head s_pins;
  1235. /*
  1236. * Owning user namespace and default context in which to
  1237. * interpret filesystem uids, gids, quotas, device nodes,
  1238. * xattrs and security labels.
  1239. */
  1240. struct user_namespace *s_user_ns;
  1241. /*
  1242. * Keep the lru lists last in the structure so they always sit on their
  1243. * own individual cachelines.
  1244. */
  1245. struct list_lru s_dentry_lru ____cacheline_aligned_in_smp;
  1246. struct list_lru s_inode_lru ____cacheline_aligned_in_smp;
  1247. struct rcu_head rcu;
  1248. struct work_struct destroy_work;
  1249. struct mutex s_sync_lock; /* sync serialisation lock */
  1250. /*
  1251. * Indicates how deep in a filesystem stack this SB is
  1252. */
  1253. int s_stack_depth;
  1254. /* s_inode_list_lock protects s_inodes */
  1255. spinlock_t s_inode_list_lock ____cacheline_aligned_in_smp;
  1256. struct list_head s_inodes; /* all inodes */
  1257. spinlock_t s_inode_wblist_lock;
  1258. struct list_head s_inodes_wb; /* writeback inodes */
  1259. } __randomize_layout;
  1260. /* Helper functions so that in most cases filesystems will
  1261. * not need to deal directly with kuid_t and kgid_t and can
  1262. * instead deal with the raw numeric values that are stored
  1263. * in the filesystem.
  1264. */
  1265. static inline uid_t i_uid_read(const struct inode *inode)
  1266. {
  1267. return from_kuid(inode->i_sb->s_user_ns, inode->i_uid);
  1268. }
  1269. static inline gid_t i_gid_read(const struct inode *inode)
  1270. {
  1271. return from_kgid(inode->i_sb->s_user_ns, inode->i_gid);
  1272. }
  1273. static inline void i_uid_write(struct inode *inode, uid_t uid)
  1274. {
  1275. inode->i_uid = make_kuid(inode->i_sb->s_user_ns, uid);
  1276. }
  1277. static inline void i_gid_write(struct inode *inode, gid_t gid)
  1278. {
  1279. inode->i_gid = make_kgid(inode->i_sb->s_user_ns, gid);
  1280. }
  1281. extern struct timespec current_time(struct inode *inode);
  1282. /*
  1283. * Snapshotting support.
  1284. */
  1285. void __sb_end_write(struct super_block *sb, int level);
  1286. int __sb_start_write(struct super_block *sb, int level, bool wait);
  1287. #define __sb_writers_acquired(sb, lev) \
  1288. percpu_rwsem_acquire(&(sb)->s_writers.rw_sem[(lev)-1], 1, _THIS_IP_)
  1289. #define __sb_writers_release(sb, lev) \
  1290. percpu_rwsem_release(&(sb)->s_writers.rw_sem[(lev)-1], 1, _THIS_IP_)
  1291. /**
  1292. * sb_end_write - drop write access to a superblock
  1293. * @sb: the super we wrote to
  1294. *
  1295. * Decrement number of writers to the filesystem. Wake up possible waiters
  1296. * wanting to freeze the filesystem.
  1297. */
  1298. static inline void sb_end_write(struct super_block *sb)
  1299. {
  1300. __sb_end_write(sb, SB_FREEZE_WRITE);
  1301. }
  1302. /**
  1303. * sb_end_pagefault - drop write access to a superblock from a page fault
  1304. * @sb: the super we wrote to
  1305. *
  1306. * Decrement number of processes handling write page fault to the filesystem.
  1307. * Wake up possible waiters wanting to freeze the filesystem.
  1308. */
  1309. static inline void sb_end_pagefault(struct super_block *sb)
  1310. {
  1311. __sb_end_write(sb, SB_FREEZE_PAGEFAULT);
  1312. }
  1313. /**
  1314. * sb_end_intwrite - drop write access to a superblock for internal fs purposes
  1315. * @sb: the super we wrote to
  1316. *
  1317. * Decrement fs-internal number of writers to the filesystem. Wake up possible
  1318. * waiters wanting to freeze the filesystem.
  1319. */
  1320. static inline void sb_end_intwrite(struct super_block *sb)
  1321. {
  1322. __sb_end_write(sb, SB_FREEZE_FS);
  1323. }
  1324. /**
  1325. * sb_start_write - get write access to a superblock
  1326. * @sb: the super we write to
  1327. *
  1328. * When a process wants to write data or metadata to a file system (i.e. dirty
  1329. * a page or an inode), it should embed the operation in a sb_start_write() -
  1330. * sb_end_write() pair to get exclusion against file system freezing. This
  1331. * function increments number of writers preventing freezing. If the file
  1332. * system is already frozen, the function waits until the file system is
  1333. * thawed.
  1334. *
  1335. * Since freeze protection behaves as a lock, users have to preserve
  1336. * ordering of freeze protection and other filesystem locks. Generally,
  1337. * freeze protection should be the outermost lock. In particular, we have:
  1338. *
  1339. * sb_start_write
  1340. * -> i_mutex (write path, truncate, directory ops, ...)
  1341. * -> s_umount (freeze_super, thaw_super)
  1342. */
  1343. static inline void sb_start_write(struct super_block *sb)
  1344. {
  1345. __sb_start_write(sb, SB_FREEZE_WRITE, true);
  1346. }
  1347. static inline int sb_start_write_trylock(struct super_block *sb)
  1348. {
  1349. return __sb_start_write(sb, SB_FREEZE_WRITE, false);
  1350. }
  1351. /**
  1352. * sb_start_pagefault - get write access to a superblock from a page fault
  1353. * @sb: the super we write to
  1354. *
  1355. * When a process starts handling write page fault, it should embed the
  1356. * operation into sb_start_pagefault() - sb_end_pagefault() pair to get
  1357. * exclusion against file system freezing. This is needed since the page fault
  1358. * is going to dirty a page. This function increments number of running page
  1359. * faults preventing freezing. If the file system is already frozen, the
  1360. * function waits until the file system is thawed.
  1361. *
  1362. * Since page fault freeze protection behaves as a lock, users have to preserve
  1363. * ordering of freeze protection and other filesystem locks. It is advised to
  1364. * put sb_start_pagefault() close to mmap_sem in lock ordering. Page fault
  1365. * handling code implies lock dependency:
  1366. *
  1367. * mmap_sem
  1368. * -> sb_start_pagefault
  1369. */
  1370. static inline void sb_start_pagefault(struct super_block *sb)
  1371. {
  1372. __sb_start_write(sb, SB_FREEZE_PAGEFAULT, true);
  1373. }
  1374. /*
  1375. * sb_start_intwrite - get write access to a superblock for internal fs purposes
  1376. * @sb: the super we write to
  1377. *
  1378. * This is the third level of protection against filesystem freezing. It is
  1379. * free for use by a filesystem. The only requirement is that it must rank
  1380. * below sb_start_pagefault.
  1381. *
  1382. * For example filesystem can call sb_start_intwrite() when starting a
  1383. * transaction which somewhat eases handling of freezing for internal sources
  1384. * of filesystem changes (internal fs threads, discarding preallocation on file
  1385. * close, etc.).
  1386. */
  1387. static inline void sb_start_intwrite(struct super_block *sb)
  1388. {
  1389. __sb_start_write(sb, SB_FREEZE_FS, true);
  1390. }
  1391. extern bool inode_owner_or_capable(const struct inode *inode);
  1392. /*
  1393. * VFS helper functions..
  1394. */
  1395. extern int vfs_create(struct inode *, struct dentry *, umode_t, bool);
  1396. extern int vfs_mkdir(struct inode *, struct dentry *, umode_t);
  1397. extern int vfs_mknod(struct inode *, struct dentry *, umode_t, dev_t);
  1398. extern int vfs_symlink(struct inode *, struct dentry *, const char *);
  1399. extern int vfs_link(struct dentry *, struct inode *, struct dentry *, struct inode **);
  1400. extern int vfs_rmdir(struct inode *, struct dentry *);
  1401. extern int vfs_unlink(struct inode *, struct dentry *, struct inode **);
  1402. extern int vfs_rename(struct inode *, struct dentry *, struct inode *, struct dentry *, struct inode **, unsigned int);
  1403. extern int vfs_whiteout(struct inode *, struct dentry *);
  1404. extern struct dentry *vfs_tmpfile(struct dentry *dentry, umode_t mode,
  1405. int open_flag);
  1406. int vfs_mkobj(struct dentry *, umode_t,
  1407. int (*f)(struct dentry *, umode_t, void *),
  1408. void *);
  1409. /*
  1410. * VFS file helper functions.
  1411. */
  1412. extern void inode_init_owner(struct inode *inode, const struct inode *dir,
  1413. umode_t mode);
  1414. extern bool may_open_dev(const struct path *path);
  1415. /*
  1416. * VFS FS_IOC_FIEMAP helper definitions.
  1417. */
  1418. struct fiemap_extent_info {
  1419. unsigned int fi_flags; /* Flags as passed from user */
  1420. unsigned int fi_extents_mapped; /* Number of mapped extents */
  1421. unsigned int fi_extents_max; /* Size of fiemap_extent array */
  1422. struct fiemap_extent __user *fi_extents_start; /* Start of
  1423. fiemap_extent array */
  1424. };
  1425. int fiemap_fill_next_extent(struct fiemap_extent_info *info, u64 logical,
  1426. u64 phys, u64 len, u32 flags);
  1427. int fiemap_check_flags(struct fiemap_extent_info *fieinfo, u32 fs_flags);
  1428. /*
  1429. * File types
  1430. *
  1431. * NOTE! These match bits 12..15 of stat.st_mode
  1432. * (ie "(i_mode >> 12) & 15").
  1433. */
  1434. #define DT_UNKNOWN 0
  1435. #define DT_FIFO 1
  1436. #define DT_CHR 2
  1437. #define DT_DIR 4
  1438. #define DT_BLK 6
  1439. #define DT_REG 8
  1440. #define DT_LNK 10
  1441. #define DT_SOCK 12
  1442. #define DT_WHT 14
  1443. /*
  1444. * This is the "filldir" function type, used by readdir() to let
  1445. * the kernel specify what kind of dirent layout it wants to have.
  1446. * This allows the kernel to read directories into kernel space or
  1447. * to have different dirent layouts depending on the binary type.
  1448. */
  1449. struct dir_context;
  1450. typedef int (*filldir_t)(struct dir_context *, const char *, int, loff_t, u64,
  1451. unsigned);
  1452. struct dir_context {
  1453. const filldir_t actor;
  1454. loff_t pos;
  1455. };
  1456. struct block_device_operations;
  1457. /* These macros are for out of kernel modules to test that
  1458. * the kernel supports the unlocked_ioctl and compat_ioctl
  1459. * fields in struct file_operations. */
  1460. #define HAVE_COMPAT_IOCTL 1
  1461. #define HAVE_UNLOCKED_IOCTL 1
  1462. /*
  1463. * These flags let !MMU mmap() govern direct device mapping vs immediate
  1464. * copying more easily for MAP_PRIVATE, especially for ROM filesystems.
  1465. *
  1466. * NOMMU_MAP_COPY: Copy can be mapped (MAP_PRIVATE)
  1467. * NOMMU_MAP_DIRECT: Can be mapped directly (MAP_SHARED)
  1468. * NOMMU_MAP_READ: Can be mapped for reading
  1469. * NOMMU_MAP_WRITE: Can be mapped for writing
  1470. * NOMMU_MAP_EXEC: Can be mapped for execution
  1471. */
  1472. #define NOMMU_MAP_COPY 0x00000001
  1473. #define NOMMU_MAP_DIRECT 0x00000008
  1474. #define NOMMU_MAP_READ VM_MAYREAD
  1475. #define NOMMU_MAP_WRITE VM_MAYWRITE
  1476. #define NOMMU_MAP_EXEC VM_MAYEXEC
  1477. #define NOMMU_VMFLAGS \
  1478. (NOMMU_MAP_READ | NOMMU_MAP_WRITE | NOMMU_MAP_EXEC)
  1479. struct iov_iter;
  1480. struct file_operations {
  1481. struct module *owner;
  1482. loff_t (*llseek) (struct file *, loff_t, int);
  1483. ssize_t (*read) (struct file *, char __user *, size_t, loff_t *);
  1484. ssize_t (*write) (struct file *, const char __user *, size_t, loff_t *);
  1485. ssize_t (*read_iter) (struct kiocb *, struct iov_iter *);
  1486. ssize_t (*write_iter) (struct kiocb *, struct iov_iter *);
  1487. int (*iterate) (struct file *, struct dir_context *);
  1488. int (*iterate_shared) (struct file *, struct dir_context *);
  1489. __poll_t (*poll) (struct file *, struct poll_table_struct *);
  1490. long (*unlocked_ioctl) (struct file *, unsigned int, unsigned long);
  1491. long (*compat_ioctl) (struct file *, unsigned int, unsigned long);
  1492. int (*mmap) (struct file *, struct vm_area_struct *);
  1493. unsigned long mmap_supported_flags;
  1494. int (*open) (struct inode *, struct file *);
  1495. int (*flush) (struct file *, fl_owner_t id);
  1496. int (*release) (struct inode *, struct file *);
  1497. int (*fsync) (struct file *, loff_t, loff_t, int datasync);
  1498. int (*fasync) (int, struct file *, int);
  1499. int (*lock) (struct file *, int, struct file_lock *);
  1500. ssize_t (*sendpage) (struct file *, struct page *, int, size_t, loff_t *, int);
  1501. unsigned long (*get_unmapped_area)(struct file *, unsigned long, unsigned long, unsigned long, unsigned long);
  1502. int (*check_flags)(int);
  1503. int (*flock) (struct file *, int, struct file_lock *);
  1504. ssize_t (*splice_write)(struct pipe_inode_info *, struct file *, loff_t *, size_t, unsigned int);
  1505. ssize_t (*splice_read)(struct file *, loff_t *, struct pipe_inode_info *, size_t, unsigned int);
  1506. int (*setlease)(struct file *, long, struct file_lock **, void **);
  1507. long (*fallocate)(struct file *file, int mode, loff_t offset,
  1508. loff_t len);
  1509. void (*show_fdinfo)(struct seq_file *m, struct file *f);
  1510. #ifndef CONFIG_MMU
  1511. unsigned (*mmap_capabilities)(struct file *);
  1512. #endif
  1513. ssize_t (*copy_file_range)(struct file *, loff_t, struct file *,
  1514. loff_t, size_t, unsigned int);
  1515. int (*clone_file_range)(struct file *, loff_t, struct file *, loff_t,
  1516. u64);
  1517. ssize_t (*dedupe_file_range)(struct file *, u64, u64, struct file *,
  1518. u64);
  1519. } __randomize_layout;
  1520. struct inode_operations {
  1521. struct dentry * (*lookup) (struct inode *,struct dentry *, unsigned int);
  1522. const char * (*get_link) (struct dentry *, struct inode *, struct delayed_call *);
  1523. int (*permission) (struct inode *, int);
  1524. struct posix_acl * (*get_acl)(struct inode *, int);
  1525. int (*readlink) (struct dentry *, char __user *,int);
  1526. int (*create) (struct inode *,struct dentry *, umode_t, bool);
  1527. int (*link) (struct dentry *,struct inode *,struct dentry *);
  1528. int (*unlink) (struct inode *,struct dentry *);
  1529. int (*symlink) (struct inode *,struct dentry *,const char *);
  1530. int (*mkdir) (struct inode *,struct dentry *,umode_t);
  1531. int (*rmdir) (struct inode *,struct dentry *);
  1532. int (*mknod) (struct inode *,struct dentry *,umode_t,dev_t);
  1533. int (*rename) (struct inode *, struct dentry *,
  1534. struct inode *, struct dentry *, unsigned int);
  1535. int (*setattr) (struct dentry *, struct iattr *);
  1536. int (*getattr) (const struct path *, struct kstat *, u32, unsigned int);
  1537. ssize_t (*listxattr) (struct dentry *, char *, size_t);
  1538. int (*fiemap)(struct inode *, struct fiemap_extent_info *, u64 start,
  1539. u64 len);
  1540. int (*update_time)(struct inode *, struct timespec *, int);
  1541. int (*atomic_open)(struct inode *, struct dentry *,
  1542. struct file *, unsigned open_flag,
  1543. umode_t create_mode, int *opened);
  1544. int (*tmpfile) (struct inode *, struct dentry *, umode_t);
  1545. int (*set_acl)(struct inode *, struct posix_acl *, int);
  1546. } ____cacheline_aligned;
  1547. static inline ssize_t call_read_iter(struct file *file, struct kiocb *kio,
  1548. struct iov_iter *iter)
  1549. {
  1550. return file->f_op->read_iter(kio, iter);
  1551. }
  1552. static inline ssize_t call_write_iter(struct file *file, struct kiocb *kio,
  1553. struct iov_iter *iter)
  1554. {
  1555. return file->f_op->write_iter(kio, iter);
  1556. }
  1557. static inline int call_mmap(struct file *file, struct vm_area_struct *vma)
  1558. {
  1559. return file->f_op->mmap(file, vma);
  1560. }
  1561. ssize_t rw_copy_check_uvector(int type, const struct iovec __user * uvector,
  1562. unsigned long nr_segs, unsigned long fast_segs,
  1563. struct iovec *fast_pointer,
  1564. struct iovec **ret_pointer);
  1565. extern ssize_t __vfs_read(struct file *, char __user *, size_t, loff_t *);
  1566. extern ssize_t vfs_read(struct file *, char __user *, size_t, loff_t *);
  1567. extern ssize_t vfs_write(struct file *, const char __user *, size_t, loff_t *);
  1568. extern ssize_t vfs_readv(struct file *, const struct iovec __user *,
  1569. unsigned long, loff_t *, rwf_t);
  1570. extern ssize_t vfs_copy_file_range(struct file *, loff_t , struct file *,
  1571. loff_t, size_t, unsigned int);
  1572. extern int vfs_clone_file_prep_inodes(struct inode *inode_in, loff_t pos_in,
  1573. struct inode *inode_out, loff_t pos_out,
  1574. u64 *len, bool is_dedupe);
  1575. extern int vfs_clone_file_range(struct file *file_in, loff_t pos_in,
  1576. struct file *file_out, loff_t pos_out, u64 len);
  1577. extern int vfs_dedupe_file_range_compare(struct inode *src, loff_t srcoff,
  1578. struct inode *dest, loff_t destoff,
  1579. loff_t len, bool *is_same);
  1580. extern int vfs_dedupe_file_range(struct file *file,
  1581. struct file_dedupe_range *same);
  1582. struct super_operations {
  1583. struct inode *(*alloc_inode)(struct super_block *sb);
  1584. void (*destroy_inode)(struct inode *);
  1585. void (*dirty_inode) (struct inode *, int flags);
  1586. int (*write_inode) (struct inode *, struct writeback_control *wbc);
  1587. int (*drop_inode) (struct inode *);
  1588. void (*evict_inode) (struct inode *);
  1589. void (*put_super) (struct super_block *);
  1590. int (*sync_fs)(struct super_block *sb, int wait);
  1591. int (*freeze_super) (struct super_block *);
  1592. int (*freeze_fs) (struct super_block *);
  1593. int (*thaw_super) (struct super_block *);
  1594. int (*unfreeze_fs) (struct super_block *);
  1595. int (*statfs) (struct dentry *, struct kstatfs *);
  1596. int (*remount_fs) (struct super_block *, int *, char *);
  1597. void (*umount_begin) (struct super_block *);
  1598. int (*show_options)(struct seq_file *, struct dentry *);
  1599. int (*show_devname)(struct seq_file *, struct dentry *);
  1600. int (*show_path)(struct seq_file *, struct dentry *);
  1601. int (*show_stats)(struct seq_file *, struct dentry *);
  1602. #ifdef CONFIG_QUOTA
  1603. ssize_t (*quota_read)(struct super_block *, int, char *, size_t, loff_t);
  1604. ssize_t (*quota_write)(struct super_block *, int, const char *, size_t, loff_t);
  1605. struct dquot **(*get_dquots)(struct inode *);
  1606. #endif
  1607. int (*bdev_try_to_free_page)(struct super_block*, struct page*, gfp_t);
  1608. long (*nr_cached_objects)(struct super_block *,
  1609. struct shrink_control *);
  1610. long (*free_cached_objects)(struct super_block *,
  1611. struct shrink_control *);
  1612. };
  1613. /*
  1614. * Inode flags - they have no relation to superblock flags now
  1615. */
  1616. #define S_SYNC 1 /* Writes are synced at once */
  1617. #define S_NOATIME 2 /* Do not update access times */
  1618. #define S_APPEND 4 /* Append-only file */
  1619. #define S_IMMUTABLE 8 /* Immutable file */
  1620. #define S_DEAD 16 /* removed, but still open directory */
  1621. #define S_NOQUOTA 32 /* Inode is not counted to quota */
  1622. #define S_DIRSYNC 64 /* Directory modifications are synchronous */
  1623. #define S_NOCMTIME 128 /* Do not update file c/mtime */
  1624. #define S_SWAPFILE 256 /* Do not truncate: swapon got its bmaps */
  1625. #define S_PRIVATE 512 /* Inode is fs-internal */
  1626. #define S_IMA 1024 /* Inode has an associated IMA struct */
  1627. #define S_AUTOMOUNT 2048 /* Automount/referral quasi-directory */
  1628. #define S_NOSEC 4096 /* no suid or xattr security attributes */
  1629. #ifdef CONFIG_FS_DAX
  1630. #define S_DAX 8192 /* Direct Access, avoiding the page cache */
  1631. #else
  1632. #define S_DAX 0 /* Make all the DAX code disappear */
  1633. #endif
  1634. #define S_ENCRYPTED 16384 /* Encrypted file (using fs/crypto/) */
  1635. /*
  1636. * Note that nosuid etc flags are inode-specific: setting some file-system
  1637. * flags just means all the inodes inherit those flags by default. It might be
  1638. * possible to override it selectively if you really wanted to with some
  1639. * ioctl() that is not currently implemented.
  1640. *
  1641. * Exception: SB_RDONLY is always applied to the entire file system.
  1642. *
  1643. * Unfortunately, it is possible to change a filesystems flags with it mounted
  1644. * with files in use. This means that all of the inodes will not have their
  1645. * i_flags updated. Hence, i_flags no longer inherit the superblock mount
  1646. * flags, so these have to be checked separately. -- rmk@arm.uk.linux.org
  1647. */
  1648. #define __IS_FLG(inode, flg) ((inode)->i_sb->s_flags & (flg))
  1649. static inline bool sb_rdonly(const struct super_block *sb) { return sb->s_flags & SB_RDONLY; }
  1650. #define IS_RDONLY(inode) sb_rdonly((inode)->i_sb)
  1651. #define IS_SYNC(inode) (__IS_FLG(inode, SB_SYNCHRONOUS) || \
  1652. ((inode)->i_flags & S_SYNC))
  1653. #define IS_DIRSYNC(inode) (__IS_FLG(inode, SB_SYNCHRONOUS|SB_DIRSYNC) || \
  1654. ((inode)->i_flags & (S_SYNC|S_DIRSYNC)))
  1655. #define IS_MANDLOCK(inode) __IS_FLG(inode, SB_MANDLOCK)
  1656. #define IS_NOATIME(inode) __IS_FLG(inode, SB_RDONLY|SB_NOATIME)
  1657. #define IS_I_VERSION(inode) __IS_FLG(inode, SB_I_VERSION)
  1658. #define IS_NOQUOTA(inode) ((inode)->i_flags & S_NOQUOTA)
  1659. #define IS_APPEND(inode) ((inode)->i_flags & S_APPEND)
  1660. #define IS_IMMUTABLE(inode) ((inode)->i_flags & S_IMMUTABLE)
  1661. #define IS_POSIXACL(inode) __IS_FLG(inode, SB_POSIXACL)
  1662. #define IS_DEADDIR(inode) ((inode)->i_flags & S_DEAD)
  1663. #define IS_NOCMTIME(inode) ((inode)->i_flags & S_NOCMTIME)
  1664. #define IS_SWAPFILE(inode) ((inode)->i_flags & S_SWAPFILE)
  1665. #define IS_PRIVATE(inode) ((inode)->i_flags & S_PRIVATE)
  1666. #define IS_IMA(inode) ((inode)->i_flags & S_IMA)
  1667. #define IS_AUTOMOUNT(inode) ((inode)->i_flags & S_AUTOMOUNT)
  1668. #define IS_NOSEC(inode) ((inode)->i_flags & S_NOSEC)
  1669. #define IS_DAX(inode) ((inode)->i_flags & S_DAX)
  1670. #define IS_ENCRYPTED(inode) ((inode)->i_flags & S_ENCRYPTED)
  1671. #define IS_WHITEOUT(inode) (S_ISCHR(inode->i_mode) && \
  1672. (inode)->i_rdev == WHITEOUT_DEV)
  1673. static inline bool HAS_UNMAPPED_ID(struct inode *inode)
  1674. {
  1675. return !uid_valid(inode->i_uid) || !gid_valid(inode->i_gid);
  1676. }
  1677. static inline enum rw_hint file_write_hint(struct file *file)
  1678. {
  1679. if (file->f_write_hint != WRITE_LIFE_NOT_SET)
  1680. return file->f_write_hint;
  1681. return file_inode(file)->i_write_hint;
  1682. }
  1683. static inline int iocb_flags(struct file *file);
  1684. static inline void init_sync_kiocb(struct kiocb *kiocb, struct file *filp)
  1685. {
  1686. *kiocb = (struct kiocb) {
  1687. .ki_filp = filp,
  1688. .ki_flags = iocb_flags(filp),
  1689. .ki_hint = file_write_hint(filp),
  1690. };
  1691. }
  1692. /*
  1693. * Inode state bits. Protected by inode->i_lock
  1694. *
  1695. * Three bits determine the dirty state of the inode, I_DIRTY_SYNC,
  1696. * I_DIRTY_DATASYNC and I_DIRTY_PAGES.
  1697. *
  1698. * Four bits define the lifetime of an inode. Initially, inodes are I_NEW,
  1699. * until that flag is cleared. I_WILL_FREE, I_FREEING and I_CLEAR are set at
  1700. * various stages of removing an inode.
  1701. *
  1702. * Two bits are used for locking and completion notification, I_NEW and I_SYNC.
  1703. *
  1704. * I_DIRTY_SYNC Inode is dirty, but doesn't have to be written on
  1705. * fdatasync(). i_atime is the usual cause.
  1706. * I_DIRTY_DATASYNC Data-related inode changes pending. We keep track of
  1707. * these changes separately from I_DIRTY_SYNC so that we
  1708. * don't have to write inode on fdatasync() when only
  1709. * mtime has changed in it.
  1710. * I_DIRTY_PAGES Inode has dirty pages. Inode itself may be clean.
  1711. * I_NEW Serves as both a mutex and completion notification.
  1712. * New inodes set I_NEW. If two processes both create
  1713. * the same inode, one of them will release its inode and
  1714. * wait for I_NEW to be released before returning.
  1715. * Inodes in I_WILL_FREE, I_FREEING or I_CLEAR state can
  1716. * also cause waiting on I_NEW, without I_NEW actually
  1717. * being set. find_inode() uses this to prevent returning
  1718. * nearly-dead inodes.
  1719. * I_WILL_FREE Must be set when calling write_inode_now() if i_count
  1720. * is zero. I_FREEING must be set when I_WILL_FREE is
  1721. * cleared.
  1722. * I_FREEING Set when inode is about to be freed but still has dirty
  1723. * pages or buffers attached or the inode itself is still
  1724. * dirty.
  1725. * I_CLEAR Added by clear_inode(). In this state the inode is
  1726. * clean and can be destroyed. Inode keeps I_FREEING.
  1727. *
  1728. * Inodes that are I_WILL_FREE, I_FREEING or I_CLEAR are
  1729. * prohibited for many purposes. iget() must wait for
  1730. * the inode to be completely released, then create it
  1731. * anew. Other functions will just ignore such inodes,
  1732. * if appropriate. I_NEW is used for waiting.
  1733. *
  1734. * I_SYNC Writeback of inode is running. The bit is set during
  1735. * data writeback, and cleared with a wakeup on the bit
  1736. * address once it is done. The bit is also used to pin
  1737. * the inode in memory for flusher thread.
  1738. *
  1739. * I_REFERENCED Marks the inode as recently references on the LRU list.
  1740. *
  1741. * I_DIO_WAKEUP Never set. Only used as a key for wait_on_bit().
  1742. *
  1743. * I_WB_SWITCH Cgroup bdi_writeback switching in progress. Used to
  1744. * synchronize competing switching instances and to tell
  1745. * wb stat updates to grab the i_pages lock. See
  1746. * inode_switch_wb_work_fn() for details.
  1747. *
  1748. * I_OVL_INUSE Used by overlayfs to get exclusive ownership on upper
  1749. * and work dirs among overlayfs mounts.
  1750. *
  1751. * Q: What is the difference between I_WILL_FREE and I_FREEING?
  1752. */
  1753. #define I_DIRTY_SYNC (1 << 0)
  1754. #define I_DIRTY_DATASYNC (1 << 1)
  1755. #define I_DIRTY_PAGES (1 << 2)
  1756. #define __I_NEW 3
  1757. #define I_NEW (1 << __I_NEW)
  1758. #define I_WILL_FREE (1 << 4)
  1759. #define I_FREEING (1 << 5)
  1760. #define I_CLEAR (1 << 6)
  1761. #define __I_SYNC 7
  1762. #define I_SYNC (1 << __I_SYNC)
  1763. #define I_REFERENCED (1 << 8)
  1764. #define __I_DIO_WAKEUP 9
  1765. #define I_DIO_WAKEUP (1 << __I_DIO_WAKEUP)
  1766. #define I_LINKABLE (1 << 10)
  1767. #define I_DIRTY_TIME (1 << 11)
  1768. #define __I_DIRTY_TIME_EXPIRED 12
  1769. #define I_DIRTY_TIME_EXPIRED (1 << __I_DIRTY_TIME_EXPIRED)
  1770. #define I_WB_SWITCH (1 << 13)
  1771. #define I_OVL_INUSE (1 << 14)
  1772. #define I_DIRTY_INODE (I_DIRTY_SYNC | I_DIRTY_DATASYNC)
  1773. #define I_DIRTY (I_DIRTY_INODE | I_DIRTY_PAGES)
  1774. #define I_DIRTY_ALL (I_DIRTY | I_DIRTY_TIME)
  1775. extern void __mark_inode_dirty(struct inode *, int);
  1776. static inline void mark_inode_dirty(struct inode *inode)
  1777. {
  1778. __mark_inode_dirty(inode, I_DIRTY);
  1779. }
  1780. static inline void mark_inode_dirty_sync(struct inode *inode)
  1781. {
  1782. __mark_inode_dirty(inode, I_DIRTY_SYNC);
  1783. }
  1784. extern void inc_nlink(struct inode *inode);
  1785. extern void drop_nlink(struct inode *inode);
  1786. extern void clear_nlink(struct inode *inode);
  1787. extern void set_nlink(struct inode *inode, unsigned int nlink);
  1788. static inline void inode_inc_link_count(struct inode *inode)
  1789. {
  1790. inc_nlink(inode);
  1791. mark_inode_dirty(inode);
  1792. }
  1793. static inline void inode_dec_link_count(struct inode *inode)
  1794. {
  1795. drop_nlink(inode);
  1796. mark_inode_dirty(inode);
  1797. }
  1798. enum file_time_flags {
  1799. S_ATIME = 1,
  1800. S_MTIME = 2,
  1801. S_CTIME = 4,
  1802. S_VERSION = 8,
  1803. };
  1804. extern void touch_atime(const struct path *);
  1805. static inline void file_accessed(struct file *file)
  1806. {
  1807. if (!(file->f_flags & O_NOATIME))
  1808. touch_atime(&file->f_path);
  1809. }
  1810. int sync_inode(struct inode *inode, struct writeback_control *wbc);
  1811. int sync_inode_metadata(struct inode *inode, int wait);
  1812. struct file_system_type {
  1813. const char *name;
  1814. int fs_flags;
  1815. #define FS_REQUIRES_DEV 1
  1816. #define FS_BINARY_MOUNTDATA 2
  1817. #define FS_HAS_SUBTYPE 4
  1818. #define FS_USERNS_MOUNT 8 /* Can be mounted by userns root */
  1819. #define FS_RENAME_DOES_D_MOVE 32768 /* FS will handle d_move() during rename() internally. */
  1820. struct dentry *(*mount) (struct file_system_type *, int,
  1821. const char *, void *);
  1822. void (*kill_sb) (struct super_block *);
  1823. struct module *owner;
  1824. struct file_system_type * next;
  1825. struct hlist_head fs_supers;
  1826. struct lock_class_key s_lock_key;
  1827. struct lock_class_key s_umount_key;
  1828. struct lock_class_key s_vfs_rename_key;
  1829. struct lock_class_key s_writers_key[SB_FREEZE_LEVELS];
  1830. struct lock_class_key i_lock_key;
  1831. struct lock_class_key i_mutex_key;
  1832. struct lock_class_key i_mutex_dir_key;
  1833. };
  1834. #define MODULE_ALIAS_FS(NAME) MODULE_ALIAS("fs-" NAME)
  1835. extern struct dentry *mount_ns(struct file_system_type *fs_type,
  1836. int flags, void *data, void *ns, struct user_namespace *user_ns,
  1837. int (*fill_super)(struct super_block *, void *, int));
  1838. #ifdef CONFIG_BLOCK
  1839. extern struct dentry *mount_bdev(struct file_system_type *fs_type,
  1840. int flags, const char *dev_name, void *data,
  1841. int (*fill_super)(struct super_block *, void *, int));
  1842. #else
  1843. static inline struct dentry *mount_bdev(struct file_system_type *fs_type,
  1844. int flags, const char *dev_name, void *data,
  1845. int (*fill_super)(struct super_block *, void *, int))
  1846. {
  1847. return ERR_PTR(-ENODEV);
  1848. }
  1849. #endif
  1850. extern struct dentry *mount_single(struct file_system_type *fs_type,
  1851. int flags, void *data,
  1852. int (*fill_super)(struct super_block *, void *, int));
  1853. extern struct dentry *mount_nodev(struct file_system_type *fs_type,
  1854. int flags, void *data,
  1855. int (*fill_super)(struct super_block *, void *, int));
  1856. extern struct dentry *mount_subtree(struct vfsmount *mnt, const char *path);
  1857. void generic_shutdown_super(struct super_block *sb);
  1858. #ifdef CONFIG_BLOCK
  1859. void kill_block_super(struct super_block *sb);
  1860. #else
  1861. static inline void kill_block_super(struct super_block *sb)
  1862. {
  1863. BUG();
  1864. }
  1865. #endif
  1866. void kill_anon_super(struct super_block *sb);
  1867. void kill_litter_super(struct super_block *sb);
  1868. void deactivate_super(struct super_block *sb);
  1869. void deactivate_locked_super(struct super_block *sb);
  1870. int set_anon_super(struct super_block *s, void *data);
  1871. int get_anon_bdev(dev_t *);
  1872. void free_anon_bdev(dev_t);
  1873. struct super_block *sget_userns(struct file_system_type *type,
  1874. int (*test)(struct super_block *,void *),
  1875. int (*set)(struct super_block *,void *),
  1876. int flags, struct user_namespace *user_ns,
  1877. void *data);
  1878. struct super_block *sget(struct file_system_type *type,
  1879. int (*test)(struct super_block *,void *),
  1880. int (*set)(struct super_block *,void *),
  1881. int flags, void *data);
  1882. extern struct dentry *mount_pseudo_xattr(struct file_system_type *, char *,
  1883. const struct super_operations *ops,
  1884. const struct xattr_handler **xattr,
  1885. const struct dentry_operations *dops,
  1886. unsigned long);
  1887. static inline struct dentry *
  1888. mount_pseudo(struct file_system_type *fs_type, char *name,
  1889. const struct super_operations *ops,
  1890. const struct dentry_operations *dops, unsigned long magic)
  1891. {
  1892. return mount_pseudo_xattr(fs_type, name, ops, NULL, dops, magic);
  1893. }
  1894. /* Alas, no aliases. Too much hassle with bringing module.h everywhere */
  1895. #define fops_get(fops) \
  1896. (((fops) && try_module_get((fops)->owner) ? (fops) : NULL))
  1897. #define fops_put(fops) \
  1898. do { if (fops) module_put((fops)->owner); } while(0)
  1899. /*
  1900. * This one is to be used *ONLY* from ->open() instances.
  1901. * fops must be non-NULL, pinned down *and* module dependencies
  1902. * should be sufficient to pin the caller down as well.
  1903. */
  1904. #define replace_fops(f, fops) \
  1905. do { \
  1906. struct file *__file = (f); \
  1907. fops_put(__file->f_op); \
  1908. BUG_ON(!(__file->f_op = (fops))); \
  1909. } while(0)
  1910. extern int register_filesystem(struct file_system_type *);
  1911. extern int unregister_filesystem(struct file_system_type *);
  1912. extern struct vfsmount *kern_mount_data(struct file_system_type *, void *data);
  1913. #define kern_mount(type) kern_mount_data(type, NULL)
  1914. extern void kern_unmount(struct vfsmount *mnt);
  1915. extern int may_umount_tree(struct vfsmount *);
  1916. extern int may_umount(struct vfsmount *);
  1917. extern long do_mount(const char *, const char __user *,
  1918. const char *, unsigned long, void *);
  1919. extern struct vfsmount *collect_mounts(const struct path *);
  1920. extern void drop_collected_mounts(struct vfsmount *);
  1921. extern int iterate_mounts(int (*)(struct vfsmount *, void *), void *,
  1922. struct vfsmount *);
  1923. extern int vfs_statfs(const struct path *, struct kstatfs *);
  1924. extern int user_statfs(const char __user *, struct kstatfs *);
  1925. extern int fd_statfs(int, struct kstatfs *);
  1926. extern int freeze_super(struct super_block *super);
  1927. extern int thaw_super(struct super_block *super);
  1928. extern bool our_mnt(struct vfsmount *mnt);
  1929. extern __printf(2, 3)
  1930. int super_setup_bdi_name(struct super_block *sb, char *fmt, ...);
  1931. extern int super_setup_bdi(struct super_block *sb);
  1932. extern int current_umask(void);
  1933. extern void ihold(struct inode * inode);
  1934. extern void iput(struct inode *);
  1935. extern int generic_update_time(struct inode *, struct timespec *, int);
  1936. /* /sys/fs */
  1937. extern struct kobject *fs_kobj;
  1938. #define MAX_RW_COUNT (INT_MAX & PAGE_MASK)
  1939. #ifdef CONFIG_MANDATORY_FILE_LOCKING
  1940. extern int locks_mandatory_locked(struct file *);
  1941. extern int locks_mandatory_area(struct inode *, struct file *, loff_t, loff_t, unsigned char);
  1942. /*
  1943. * Candidates for mandatory locking have the setgid bit set
  1944. * but no group execute bit - an otherwise meaningless combination.
  1945. */
  1946. static inline int __mandatory_lock(struct inode *ino)
  1947. {
  1948. return (ino->i_mode & (S_ISGID | S_IXGRP)) == S_ISGID;
  1949. }
  1950. /*
  1951. * ... and these candidates should be on SB_MANDLOCK mounted fs,
  1952. * otherwise these will be advisory locks
  1953. */
  1954. static inline int mandatory_lock(struct inode *ino)
  1955. {
  1956. return IS_MANDLOCK(ino) && __mandatory_lock(ino);
  1957. }
  1958. static inline int locks_verify_locked(struct file *file)
  1959. {
  1960. if (mandatory_lock(locks_inode(file)))
  1961. return locks_mandatory_locked(file);
  1962. return 0;
  1963. }
  1964. static inline int locks_verify_truncate(struct inode *inode,
  1965. struct file *f,
  1966. loff_t size)
  1967. {
  1968. if (!inode->i_flctx || !mandatory_lock(inode))
  1969. return 0;
  1970. if (size < inode->i_size) {
  1971. return locks_mandatory_area(inode, f, size, inode->i_size - 1,
  1972. F_WRLCK);
  1973. } else {
  1974. return locks_mandatory_area(inode, f, inode->i_size, size - 1,
  1975. F_WRLCK);
  1976. }
  1977. }
  1978. #else /* !CONFIG_MANDATORY_FILE_LOCKING */
  1979. static inline int locks_mandatory_locked(struct file *file)
  1980. {
  1981. return 0;
  1982. }
  1983. static inline int locks_mandatory_area(struct inode *inode, struct file *filp,
  1984. loff_t start, loff_t end, unsigned char type)
  1985. {
  1986. return 0;
  1987. }
  1988. static inline int __mandatory_lock(struct inode *inode)
  1989. {
  1990. return 0;
  1991. }
  1992. static inline int mandatory_lock(struct inode *inode)
  1993. {
  1994. return 0;
  1995. }
  1996. static inline int locks_verify_locked(struct file *file)
  1997. {
  1998. return 0;
  1999. }
  2000. static inline int locks_verify_truncate(struct inode *inode, struct file *filp,
  2001. size_t size)
  2002. {
  2003. return 0;
  2004. }
  2005. #endif /* CONFIG_MANDATORY_FILE_LOCKING */
  2006. #ifdef CONFIG_FILE_LOCKING
  2007. static inline int break_lease(struct inode *inode, unsigned int mode)
  2008. {
  2009. /*
  2010. * Since this check is lockless, we must ensure that any refcounts
  2011. * taken are done before checking i_flctx->flc_lease. Otherwise, we
  2012. * could end up racing with tasks trying to set a new lease on this
  2013. * file.
  2014. */
  2015. smp_mb();
  2016. if (inode->i_flctx && !list_empty_careful(&inode->i_flctx->flc_lease))
  2017. return __break_lease(inode, mode, FL_LEASE);
  2018. return 0;
  2019. }
  2020. static inline int break_deleg(struct inode *inode, unsigned int mode)
  2021. {
  2022. /*
  2023. * Since this check is lockless, we must ensure that any refcounts
  2024. * taken are done before checking i_flctx->flc_lease. Otherwise, we
  2025. * could end up racing with tasks trying to set a new lease on this
  2026. * file.
  2027. */
  2028. smp_mb();
  2029. if (inode->i_flctx && !list_empty_careful(&inode->i_flctx->flc_lease))
  2030. return __break_lease(inode, mode, FL_DELEG);
  2031. return 0;
  2032. }
  2033. static inline int try_break_deleg(struct inode *inode, struct inode **delegated_inode)
  2034. {
  2035. int ret;
  2036. ret = break_deleg(inode, O_WRONLY|O_NONBLOCK);
  2037. if (ret == -EWOULDBLOCK && delegated_inode) {
  2038. *delegated_inode = inode;
  2039. ihold(inode);
  2040. }
  2041. return ret;
  2042. }
  2043. static inline int break_deleg_wait(struct inode **delegated_inode)
  2044. {
  2045. int ret;
  2046. ret = break_deleg(*delegated_inode, O_WRONLY);
  2047. iput(*delegated_inode);
  2048. *delegated_inode = NULL;
  2049. return ret;
  2050. }
  2051. static inline int break_layout(struct inode *inode, bool wait)
  2052. {
  2053. smp_mb();
  2054. if (inode->i_flctx && !list_empty_careful(&inode->i_flctx->flc_lease))
  2055. return __break_lease(inode,
  2056. wait ? O_WRONLY : O_WRONLY | O_NONBLOCK,
  2057. FL_LAYOUT);
  2058. return 0;
  2059. }
  2060. #else /* !CONFIG_FILE_LOCKING */
  2061. static inline int break_lease(struct inode *inode, unsigned int mode)
  2062. {
  2063. return 0;
  2064. }
  2065. static inline int break_deleg(struct inode *inode, unsigned int mode)
  2066. {
  2067. return 0;
  2068. }
  2069. static inline int try_break_deleg(struct inode *inode, struct inode **delegated_inode)
  2070. {
  2071. return 0;
  2072. }
  2073. static inline int break_deleg_wait(struct inode **delegated_inode)
  2074. {
  2075. BUG();
  2076. return 0;
  2077. }
  2078. static inline int break_layout(struct inode *inode, bool wait)
  2079. {
  2080. return 0;
  2081. }
  2082. #endif /* CONFIG_FILE_LOCKING */
  2083. /* fs/open.c */
  2084. struct audit_names;
  2085. struct filename {
  2086. const char *name; /* pointer to actual string */
  2087. const __user char *uptr; /* original userland pointer */
  2088. int refcnt;
  2089. struct audit_names *aname;
  2090. const char iname[];
  2091. };
  2092. extern long vfs_truncate(const struct path *, loff_t);
  2093. extern int do_truncate(struct dentry *, loff_t start, unsigned int time_attrs,
  2094. struct file *filp);
  2095. extern int vfs_fallocate(struct file *file, int mode, loff_t offset,
  2096. loff_t len);
  2097. extern long do_sys_open(int dfd, const char __user *filename, int flags,
  2098. umode_t mode);
  2099. extern struct file *file_open_name(struct filename *, int, umode_t);
  2100. extern struct file *filp_open(const char *, int, umode_t);
  2101. extern struct file *file_open_root(struct dentry *, struct vfsmount *,
  2102. const char *, int, umode_t);
  2103. extern struct file * dentry_open(const struct path *, int, const struct cred *);
  2104. extern int filp_close(struct file *, fl_owner_t id);
  2105. extern struct filename *getname_flags(const char __user *, int, int *);
  2106. extern struct filename *getname(const char __user *);
  2107. extern struct filename *getname_kernel(const char *);
  2108. extern void putname(struct filename *name);
  2109. enum {
  2110. FILE_CREATED = 1,
  2111. FILE_OPENED = 2
  2112. };
  2113. extern int finish_open(struct file *file, struct dentry *dentry,
  2114. int (*open)(struct inode *, struct file *),
  2115. int *opened);
  2116. extern int finish_no_open(struct file *file, struct dentry *dentry);
  2117. /* fs/ioctl.c */
  2118. extern int ioctl_preallocate(struct file *filp, void __user *argp);
  2119. /* fs/dcache.c */
  2120. extern void __init vfs_caches_init_early(void);
  2121. extern void __init vfs_caches_init(void);
  2122. extern struct kmem_cache *names_cachep;
  2123. #define __getname() kmem_cache_alloc(names_cachep, GFP_KERNEL)
  2124. #define __putname(name) kmem_cache_free(names_cachep, (void *)(name))
  2125. #ifdef CONFIG_BLOCK
  2126. extern int register_blkdev(unsigned int, const char *);
  2127. extern void unregister_blkdev(unsigned int, const char *);
  2128. extern void bdev_unhash_inode(dev_t dev);
  2129. extern struct block_device *bdget(dev_t);
  2130. extern struct block_device *bdgrab(struct block_device *bdev);
  2131. extern void bd_set_size(struct block_device *, loff_t size);
  2132. extern void bd_forget(struct inode *inode);
  2133. extern void bdput(struct block_device *);
  2134. extern void invalidate_bdev(struct block_device *);
  2135. extern void iterate_bdevs(void (*)(struct block_device *, void *), void *);
  2136. extern int sync_blockdev(struct block_device *bdev);
  2137. extern void kill_bdev(struct block_device *);
  2138. extern struct super_block *freeze_bdev(struct block_device *);
  2139. extern void emergency_thaw_all(void);
  2140. extern int thaw_bdev(struct block_device *bdev, struct super_block *sb);
  2141. extern int fsync_bdev(struct block_device *);
  2142. extern struct super_block *blockdev_superblock;
  2143. static inline bool sb_is_blkdev_sb(struct super_block *sb)
  2144. {
  2145. return sb == blockdev_superblock;
  2146. }
  2147. #else
  2148. static inline void bd_forget(struct inode *inode) {}
  2149. static inline int sync_blockdev(struct block_device *bdev) { return 0; }
  2150. static inline void kill_bdev(struct block_device *bdev) {}
  2151. static inline void invalidate_bdev(struct block_device *bdev) {}
  2152. static inline struct super_block *freeze_bdev(struct block_device *sb)
  2153. {
  2154. return NULL;
  2155. }
  2156. static inline int thaw_bdev(struct block_device *bdev, struct super_block *sb)
  2157. {
  2158. return 0;
  2159. }
  2160. static inline void iterate_bdevs(void (*f)(struct block_device *, void *), void *arg)
  2161. {
  2162. }
  2163. static inline bool sb_is_blkdev_sb(struct super_block *sb)
  2164. {
  2165. return false;
  2166. }
  2167. #endif
  2168. extern int sync_filesystem(struct super_block *);
  2169. extern const struct file_operations def_blk_fops;
  2170. extern const struct file_operations def_chr_fops;
  2171. #ifdef CONFIG_BLOCK
  2172. extern int ioctl_by_bdev(struct block_device *, unsigned, unsigned long);
  2173. extern int blkdev_ioctl(struct block_device *, fmode_t, unsigned, unsigned long);
  2174. extern long compat_blkdev_ioctl(struct file *, unsigned, unsigned long);
  2175. extern int blkdev_get(struct block_device *bdev, fmode_t mode, void *holder);
  2176. extern struct block_device *blkdev_get_by_path(const char *path, fmode_t mode,
  2177. void *holder);
  2178. extern struct block_device *blkdev_get_by_dev(dev_t dev, fmode_t mode,
  2179. void *holder);
  2180. extern void blkdev_put(struct block_device *bdev, fmode_t mode);
  2181. extern int __blkdev_reread_part(struct block_device *bdev);
  2182. extern int blkdev_reread_part(struct block_device *bdev);
  2183. #ifdef CONFIG_SYSFS
  2184. extern int bd_link_disk_holder(struct block_device *bdev, struct gendisk *disk);
  2185. extern void bd_unlink_disk_holder(struct block_device *bdev,
  2186. struct gendisk *disk);
  2187. #else
  2188. static inline int bd_link_disk_holder(struct block_device *bdev,
  2189. struct gendisk *disk)
  2190. {
  2191. return 0;
  2192. }
  2193. static inline void bd_unlink_disk_holder(struct block_device *bdev,
  2194. struct gendisk *disk)
  2195. {
  2196. }
  2197. #endif
  2198. #endif
  2199. /* fs/char_dev.c */
  2200. #define CHRDEV_MAJOR_MAX 512
  2201. /* Marks the bottom of the first segment of free char majors */
  2202. #define CHRDEV_MAJOR_DYN_END 234
  2203. /* Marks the top and bottom of the second segment of free char majors */
  2204. #define CHRDEV_MAJOR_DYN_EXT_START 511
  2205. #define CHRDEV_MAJOR_DYN_EXT_END 384
  2206. extern int alloc_chrdev_region(dev_t *, unsigned, unsigned, const char *);
  2207. extern int register_chrdev_region(dev_t, unsigned, const char *);
  2208. extern int __register_chrdev(unsigned int major, unsigned int baseminor,
  2209. unsigned int count, const char *name,
  2210. const struct file_operations *fops);
  2211. extern void __unregister_chrdev(unsigned int major, unsigned int baseminor,
  2212. unsigned int count, const char *name);
  2213. extern void unregister_chrdev_region(dev_t, unsigned);
  2214. extern void chrdev_show(struct seq_file *,off_t);
  2215. static inline int register_chrdev(unsigned int major, const char *name,
  2216. const struct file_operations *fops)
  2217. {
  2218. return __register_chrdev(major, 0, 256, name, fops);
  2219. }
  2220. static inline void unregister_chrdev(unsigned int major, const char *name)
  2221. {
  2222. __unregister_chrdev(major, 0, 256, name);
  2223. }
  2224. /* fs/block_dev.c */
  2225. #define BDEVNAME_SIZE 32 /* Largest string for a blockdev identifier */
  2226. #define BDEVT_SIZE 10 /* Largest string for MAJ:MIN for blkdev */
  2227. #ifdef CONFIG_BLOCK
  2228. #define BLKDEV_MAJOR_MAX 512
  2229. extern const char *__bdevname(dev_t, char *buffer);
  2230. extern const char *bdevname(struct block_device *bdev, char *buffer);
  2231. extern struct block_device *lookup_bdev(const char *);
  2232. extern void blkdev_show(struct seq_file *,off_t);
  2233. #else
  2234. #define BLKDEV_MAJOR_MAX 0
  2235. #endif
  2236. extern void init_special_inode(struct inode *, umode_t, dev_t);
  2237. /* Invalid inode operations -- fs/bad_inode.c */
  2238. extern void make_bad_inode(struct inode *);
  2239. extern bool is_bad_inode(struct inode *);
  2240. #ifdef CONFIG_BLOCK
  2241. extern void check_disk_size_change(struct gendisk *disk,
  2242. struct block_device *bdev);
  2243. extern int revalidate_disk(struct gendisk *);
  2244. extern int check_disk_change(struct block_device *);
  2245. extern int __invalidate_device(struct block_device *, bool);
  2246. extern int invalidate_partition(struct gendisk *, int);
  2247. #endif
  2248. unsigned long invalidate_mapping_pages(struct address_space *mapping,
  2249. pgoff_t start, pgoff_t end);
  2250. static inline void invalidate_remote_inode(struct inode *inode)
  2251. {
  2252. if (S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
  2253. S_ISLNK(inode->i_mode))
  2254. invalidate_mapping_pages(inode->i_mapping, 0, -1);
  2255. }
  2256. extern int invalidate_inode_pages2(struct address_space *mapping);
  2257. extern int invalidate_inode_pages2_range(struct address_space *mapping,
  2258. pgoff_t start, pgoff_t end);
  2259. extern int write_inode_now(struct inode *, int);
  2260. extern int filemap_fdatawrite(struct address_space *);
  2261. extern int filemap_flush(struct address_space *);
  2262. extern int filemap_fdatawait_keep_errors(struct address_space *mapping);
  2263. extern int filemap_fdatawait_range(struct address_space *, loff_t lstart,
  2264. loff_t lend);
  2265. static inline int filemap_fdatawait(struct address_space *mapping)
  2266. {
  2267. return filemap_fdatawait_range(mapping, 0, LLONG_MAX);
  2268. }
  2269. extern bool filemap_range_has_page(struct address_space *, loff_t lstart,
  2270. loff_t lend);
  2271. extern int __must_check file_fdatawait_range(struct file *file, loff_t lstart,
  2272. loff_t lend);
  2273. extern int filemap_write_and_wait(struct address_space *mapping);
  2274. extern int filemap_write_and_wait_range(struct address_space *mapping,
  2275. loff_t lstart, loff_t lend);
  2276. extern int __filemap_fdatawrite_range(struct address_space *mapping,
  2277. loff_t start, loff_t end, int sync_mode);
  2278. extern int filemap_fdatawrite_range(struct address_space *mapping,
  2279. loff_t start, loff_t end);
  2280. extern int filemap_check_errors(struct address_space *mapping);
  2281. extern void __filemap_set_wb_err(struct address_space *mapping, int err);
  2282. extern int __must_check file_fdatawait_range(struct file *file, loff_t lstart,
  2283. loff_t lend);
  2284. extern int __must_check file_check_and_advance_wb_err(struct file *file);
  2285. extern int __must_check file_write_and_wait_range(struct file *file,
  2286. loff_t start, loff_t end);
  2287. static inline int file_write_and_wait(struct file *file)
  2288. {
  2289. return file_write_and_wait_range(file, 0, LLONG_MAX);
  2290. }
  2291. /**
  2292. * filemap_set_wb_err - set a writeback error on an address_space
  2293. * @mapping: mapping in which to set writeback error
  2294. * @err: error to be set in mapping
  2295. *
  2296. * When writeback fails in some way, we must record that error so that
  2297. * userspace can be informed when fsync and the like are called. We endeavor
  2298. * to report errors on any file that was open at the time of the error. Some
  2299. * internal callers also need to know when writeback errors have occurred.
  2300. *
  2301. * When a writeback error occurs, most filesystems will want to call
  2302. * filemap_set_wb_err to record the error in the mapping so that it will be
  2303. * automatically reported whenever fsync is called on the file.
  2304. */
  2305. static inline void filemap_set_wb_err(struct address_space *mapping, int err)
  2306. {
  2307. /* Fastpath for common case of no error */
  2308. if (unlikely(err))
  2309. __filemap_set_wb_err(mapping, err);
  2310. }
  2311. /**
  2312. * filemap_check_wb_error - has an error occurred since the mark was sampled?
  2313. * @mapping: mapping to check for writeback errors
  2314. * @since: previously-sampled errseq_t
  2315. *
  2316. * Grab the errseq_t value from the mapping, and see if it has changed "since"
  2317. * the given value was sampled.
  2318. *
  2319. * If it has then report the latest error set, otherwise return 0.
  2320. */
  2321. static inline int filemap_check_wb_err(struct address_space *mapping,
  2322. errseq_t since)
  2323. {
  2324. return errseq_check(&mapping->wb_err, since);
  2325. }
  2326. /**
  2327. * filemap_sample_wb_err - sample the current errseq_t to test for later errors
  2328. * @mapping: mapping to be sampled
  2329. *
  2330. * Writeback errors are always reported relative to a particular sample point
  2331. * in the past. This function provides those sample points.
  2332. */
  2333. static inline errseq_t filemap_sample_wb_err(struct address_space *mapping)
  2334. {
  2335. return errseq_sample(&mapping->wb_err);
  2336. }
  2337. extern int vfs_fsync_range(struct file *file, loff_t start, loff_t end,
  2338. int datasync);
  2339. extern int vfs_fsync(struct file *file, int datasync);
  2340. /*
  2341. * Sync the bytes written if this was a synchronous write. Expect ki_pos
  2342. * to already be updated for the write, and will return either the amount
  2343. * of bytes passed in, or an error if syncing the file failed.
  2344. */
  2345. static inline ssize_t generic_write_sync(struct kiocb *iocb, ssize_t count)
  2346. {
  2347. if (iocb->ki_flags & IOCB_DSYNC) {
  2348. int ret = vfs_fsync_range(iocb->ki_filp,
  2349. iocb->ki_pos - count, iocb->ki_pos - 1,
  2350. (iocb->ki_flags & IOCB_SYNC) ? 0 : 1);
  2351. if (ret)
  2352. return ret;
  2353. }
  2354. return count;
  2355. }
  2356. extern void emergency_sync(void);
  2357. extern void emergency_remount(void);
  2358. #ifdef CONFIG_BLOCK
  2359. extern sector_t bmap(struct inode *, sector_t);
  2360. #endif
  2361. extern int notify_change(struct dentry *, struct iattr *, struct inode **);
  2362. extern int inode_permission(struct inode *, int);
  2363. extern int generic_permission(struct inode *, int);
  2364. extern int __check_sticky(struct inode *dir, struct inode *inode);
  2365. static inline bool execute_ok(struct inode *inode)
  2366. {
  2367. return (inode->i_mode & S_IXUGO) || S_ISDIR(inode->i_mode);
  2368. }
  2369. static inline void file_start_write(struct file *file)
  2370. {
  2371. if (!S_ISREG(file_inode(file)->i_mode))
  2372. return;
  2373. __sb_start_write(file_inode(file)->i_sb, SB_FREEZE_WRITE, true);
  2374. }
  2375. static inline bool file_start_write_trylock(struct file *file)
  2376. {
  2377. if (!S_ISREG(file_inode(file)->i_mode))
  2378. return true;
  2379. return __sb_start_write(file_inode(file)->i_sb, SB_FREEZE_WRITE, false);
  2380. }
  2381. static inline void file_end_write(struct file *file)
  2382. {
  2383. if (!S_ISREG(file_inode(file)->i_mode))
  2384. return;
  2385. __sb_end_write(file_inode(file)->i_sb, SB_FREEZE_WRITE);
  2386. }
  2387. static inline int do_clone_file_range(struct file *file_in, loff_t pos_in,
  2388. struct file *file_out, loff_t pos_out,
  2389. u64 len)
  2390. {
  2391. int ret;
  2392. file_start_write(file_out);
  2393. ret = vfs_clone_file_range(file_in, pos_in, file_out, pos_out, len);
  2394. file_end_write(file_out);
  2395. return ret;
  2396. }
  2397. /*
  2398. * get_write_access() gets write permission for a file.
  2399. * put_write_access() releases this write permission.
  2400. * This is used for regular files.
  2401. * We cannot support write (and maybe mmap read-write shared) accesses and
  2402. * MAP_DENYWRITE mmappings simultaneously. The i_writecount field of an inode
  2403. * can have the following values:
  2404. * 0: no writers, no VM_DENYWRITE mappings
  2405. * < 0: (-i_writecount) vm_area_structs with VM_DENYWRITE set exist
  2406. * > 0: (i_writecount) users are writing to the file.
  2407. *
  2408. * Normally we operate on that counter with atomic_{inc,dec} and it's safe
  2409. * except for the cases where we don't hold i_writecount yet. Then we need to
  2410. * use {get,deny}_write_access() - these functions check the sign and refuse
  2411. * to do the change if sign is wrong.
  2412. */
  2413. static inline int get_write_access(struct inode *inode)
  2414. {
  2415. return atomic_inc_unless_negative(&inode->i_writecount) ? 0 : -ETXTBSY;
  2416. }
  2417. static inline int deny_write_access(struct file *file)
  2418. {
  2419. struct inode *inode = file_inode(file);
  2420. return atomic_dec_unless_positive(&inode->i_writecount) ? 0 : -ETXTBSY;
  2421. }
  2422. static inline void put_write_access(struct inode * inode)
  2423. {
  2424. atomic_dec(&inode->i_writecount);
  2425. }
  2426. static inline void allow_write_access(struct file *file)
  2427. {
  2428. if (file)
  2429. atomic_inc(&file_inode(file)->i_writecount);
  2430. }
  2431. static inline bool inode_is_open_for_write(const struct inode *inode)
  2432. {
  2433. return atomic_read(&inode->i_writecount) > 0;
  2434. }
  2435. #ifdef CONFIG_IMA
  2436. static inline void i_readcount_dec(struct inode *inode)
  2437. {
  2438. BUG_ON(!atomic_read(&inode->i_readcount));
  2439. atomic_dec(&inode->i_readcount);
  2440. }
  2441. static inline void i_readcount_inc(struct inode *inode)
  2442. {
  2443. atomic_inc(&inode->i_readcount);
  2444. }
  2445. #else
  2446. static inline void i_readcount_dec(struct inode *inode)
  2447. {
  2448. return;
  2449. }
  2450. static inline void i_readcount_inc(struct inode *inode)
  2451. {
  2452. return;
  2453. }
  2454. #endif
  2455. extern int do_pipe_flags(int *, int);
  2456. #define __kernel_read_file_id(id) \
  2457. id(UNKNOWN, unknown) \
  2458. id(FIRMWARE, firmware) \
  2459. id(FIRMWARE_PREALLOC_BUFFER, firmware) \
  2460. id(MODULE, kernel-module) \
  2461. id(KEXEC_IMAGE, kexec-image) \
  2462. id(KEXEC_INITRAMFS, kexec-initramfs) \
  2463. id(POLICY, security-policy) \
  2464. id(X509_CERTIFICATE, x509-certificate) \
  2465. id(MAX_ID, )
  2466. #define __fid_enumify(ENUM, dummy) READING_ ## ENUM,
  2467. #define __fid_stringify(dummy, str) #str,
  2468. enum kernel_read_file_id {
  2469. __kernel_read_file_id(__fid_enumify)
  2470. };
  2471. static const char * const kernel_read_file_str[] = {
  2472. __kernel_read_file_id(__fid_stringify)
  2473. };
  2474. static inline const char *kernel_read_file_id_str(enum kernel_read_file_id id)
  2475. {
  2476. if ((unsigned)id >= READING_MAX_ID)
  2477. return kernel_read_file_str[READING_UNKNOWN];
  2478. return kernel_read_file_str[id];
  2479. }
  2480. extern int kernel_read_file(struct file *, void **, loff_t *, loff_t,
  2481. enum kernel_read_file_id);
  2482. extern int kernel_read_file_from_path(const char *, void **, loff_t *, loff_t,
  2483. enum kernel_read_file_id);
  2484. extern int kernel_read_file_from_fd(int, void **, loff_t *, loff_t,
  2485. enum kernel_read_file_id);
  2486. extern ssize_t kernel_read(struct file *, void *, size_t, loff_t *);
  2487. extern ssize_t kernel_write(struct file *, const void *, size_t, loff_t *);
  2488. extern ssize_t __kernel_write(struct file *, const void *, size_t, loff_t *);
  2489. extern struct file * open_exec(const char *);
  2490. /* fs/dcache.c -- generic fs support functions */
  2491. extern bool is_subdir(struct dentry *, struct dentry *);
  2492. extern bool path_is_under(const struct path *, const struct path *);
  2493. extern char *file_path(struct file *, char *, int);
  2494. #include <linux/err.h>
  2495. /* needed for stackable file system support */
  2496. extern loff_t default_llseek(struct file *file, loff_t offset, int whence);
  2497. extern loff_t vfs_llseek(struct file *file, loff_t offset, int whence);
  2498. extern int inode_init_always(struct super_block *, struct inode *);
  2499. extern void inode_init_once(struct inode *);
  2500. extern void address_space_init_once(struct address_space *mapping);
  2501. extern struct inode * igrab(struct inode *);
  2502. extern ino_t iunique(struct super_block *, ino_t);
  2503. extern int inode_needs_sync(struct inode *inode);
  2504. extern int generic_delete_inode(struct inode *inode);
  2505. static inline int generic_drop_inode(struct inode *inode)
  2506. {
  2507. return !inode->i_nlink || inode_unhashed(inode);
  2508. }
  2509. extern struct inode *ilookup5_nowait(struct super_block *sb,
  2510. unsigned long hashval, int (*test)(struct inode *, void *),
  2511. void *data);
  2512. extern struct inode *ilookup5(struct super_block *sb, unsigned long hashval,
  2513. int (*test)(struct inode *, void *), void *data);
  2514. extern struct inode *ilookup(struct super_block *sb, unsigned long ino);
  2515. extern struct inode * iget5_locked(struct super_block *, unsigned long, int (*test)(struct inode *, void *), int (*set)(struct inode *, void *), void *);
  2516. extern struct inode * iget_locked(struct super_block *, unsigned long);
  2517. extern struct inode *find_inode_nowait(struct super_block *,
  2518. unsigned long,
  2519. int (*match)(struct inode *,
  2520. unsigned long, void *),
  2521. void *data);
  2522. extern int insert_inode_locked4(struct inode *, unsigned long, int (*test)(struct inode *, void *), void *);
  2523. extern int insert_inode_locked(struct inode *);
  2524. #ifdef CONFIG_DEBUG_LOCK_ALLOC
  2525. extern void lockdep_annotate_inode_mutex_key(struct inode *inode);
  2526. #else
  2527. static inline void lockdep_annotate_inode_mutex_key(struct inode *inode) { };
  2528. #endif
  2529. extern void unlock_new_inode(struct inode *);
  2530. extern unsigned int get_next_ino(void);
  2531. extern void evict_inodes(struct super_block *sb);
  2532. extern void __iget(struct inode * inode);
  2533. extern void iget_failed(struct inode *);
  2534. extern void clear_inode(struct inode *);
  2535. extern void __destroy_inode(struct inode *);
  2536. extern struct inode *new_inode_pseudo(struct super_block *sb);
  2537. extern struct inode *new_inode(struct super_block *sb);
  2538. extern void free_inode_nonrcu(struct inode *inode);
  2539. extern int should_remove_suid(struct dentry *);
  2540. extern int file_remove_privs(struct file *);
  2541. extern void __insert_inode_hash(struct inode *, unsigned long hashval);
  2542. static inline void insert_inode_hash(struct inode *inode)
  2543. {
  2544. __insert_inode_hash(inode, inode->i_ino);
  2545. }
  2546. extern void __remove_inode_hash(struct inode *);
  2547. static inline void remove_inode_hash(struct inode *inode)
  2548. {
  2549. if (!inode_unhashed(inode) && !hlist_fake(&inode->i_hash))
  2550. __remove_inode_hash(inode);
  2551. }
  2552. extern void inode_sb_list_add(struct inode *inode);
  2553. #ifdef CONFIG_BLOCK
  2554. extern int bdev_read_only(struct block_device *);
  2555. #endif
  2556. extern int set_blocksize(struct block_device *, int);
  2557. extern int sb_set_blocksize(struct super_block *, int);
  2558. extern int sb_min_blocksize(struct super_block *, int);
  2559. extern int generic_file_mmap(struct file *, struct vm_area_struct *);
  2560. extern int generic_file_readonly_mmap(struct file *, struct vm_area_struct *);
  2561. extern ssize_t generic_write_checks(struct kiocb *, struct iov_iter *);
  2562. extern ssize_t generic_file_read_iter(struct kiocb *, struct iov_iter *);
  2563. extern ssize_t __generic_file_write_iter(struct kiocb *, struct iov_iter *);
  2564. extern ssize_t generic_file_write_iter(struct kiocb *, struct iov_iter *);
  2565. extern ssize_t generic_file_direct_write(struct kiocb *, struct iov_iter *);
  2566. extern ssize_t generic_perform_write(struct file *, struct iov_iter *, loff_t);
  2567. ssize_t vfs_iter_read(struct file *file, struct iov_iter *iter, loff_t *ppos,
  2568. rwf_t flags);
  2569. ssize_t vfs_iter_write(struct file *file, struct iov_iter *iter, loff_t *ppos,
  2570. rwf_t flags);
  2571. /* fs/block_dev.c */
  2572. extern ssize_t blkdev_read_iter(struct kiocb *iocb, struct iov_iter *to);
  2573. extern ssize_t blkdev_write_iter(struct kiocb *iocb, struct iov_iter *from);
  2574. extern int blkdev_fsync(struct file *filp, loff_t start, loff_t end,
  2575. int datasync);
  2576. extern void block_sync_page(struct page *page);
  2577. /* fs/splice.c */
  2578. extern ssize_t generic_file_splice_read(struct file *, loff_t *,
  2579. struct pipe_inode_info *, size_t, unsigned int);
  2580. extern ssize_t iter_file_splice_write(struct pipe_inode_info *,
  2581. struct file *, loff_t *, size_t, unsigned int);
  2582. extern ssize_t generic_splice_sendpage(struct pipe_inode_info *pipe,
  2583. struct file *out, loff_t *, size_t len, unsigned int flags);
  2584. extern long do_splice_direct(struct file *in, loff_t *ppos, struct file *out,
  2585. loff_t *opos, size_t len, unsigned int flags);
  2586. extern void
  2587. file_ra_state_init(struct file_ra_state *ra, struct address_space *mapping);
  2588. extern loff_t noop_llseek(struct file *file, loff_t offset, int whence);
  2589. extern loff_t no_llseek(struct file *file, loff_t offset, int whence);
  2590. extern loff_t vfs_setpos(struct file *file, loff_t offset, loff_t maxsize);
  2591. extern loff_t generic_file_llseek(struct file *file, loff_t offset, int whence);
  2592. extern loff_t generic_file_llseek_size(struct file *file, loff_t offset,
  2593. int whence, loff_t maxsize, loff_t eof);
  2594. extern loff_t fixed_size_llseek(struct file *file, loff_t offset,
  2595. int whence, loff_t size);
  2596. extern loff_t no_seek_end_llseek_size(struct file *, loff_t, int, loff_t);
  2597. extern loff_t no_seek_end_llseek(struct file *, loff_t, int);
  2598. extern int generic_file_open(struct inode * inode, struct file * filp);
  2599. extern int nonseekable_open(struct inode * inode, struct file * filp);
  2600. #ifdef CONFIG_BLOCK
  2601. typedef void (dio_submit_t)(struct bio *bio, struct inode *inode,
  2602. loff_t file_offset);
  2603. enum {
  2604. /* need locking between buffered and direct access */
  2605. DIO_LOCKING = 0x01,
  2606. /* filesystem does not support filling holes */
  2607. DIO_SKIP_HOLES = 0x02,
  2608. };
  2609. void dio_end_io(struct bio *bio);
  2610. void dio_warn_stale_pagecache(struct file *filp);
  2611. ssize_t __blockdev_direct_IO(struct kiocb *iocb, struct inode *inode,
  2612. struct block_device *bdev, struct iov_iter *iter,
  2613. get_block_t get_block,
  2614. dio_iodone_t end_io, dio_submit_t submit_io,
  2615. int flags);
  2616. static inline ssize_t blockdev_direct_IO(struct kiocb *iocb,
  2617. struct inode *inode,
  2618. struct iov_iter *iter,
  2619. get_block_t get_block)
  2620. {
  2621. return __blockdev_direct_IO(iocb, inode, inode->i_sb->s_bdev, iter,
  2622. get_block, NULL, NULL, DIO_LOCKING | DIO_SKIP_HOLES);
  2623. }
  2624. #endif
  2625. void inode_dio_wait(struct inode *inode);
  2626. /*
  2627. * inode_dio_begin - signal start of a direct I/O requests
  2628. * @inode: inode the direct I/O happens on
  2629. *
  2630. * This is called once we've finished processing a direct I/O request,
  2631. * and is used to wake up callers waiting for direct I/O to be quiesced.
  2632. */
  2633. static inline void inode_dio_begin(struct inode *inode)
  2634. {
  2635. atomic_inc(&inode->i_dio_count);
  2636. }
  2637. /*
  2638. * inode_dio_end - signal finish of a direct I/O requests
  2639. * @inode: inode the direct I/O happens on
  2640. *
  2641. * This is called once we've finished processing a direct I/O request,
  2642. * and is used to wake up callers waiting for direct I/O to be quiesced.
  2643. */
  2644. static inline void inode_dio_end(struct inode *inode)
  2645. {
  2646. if (atomic_dec_and_test(&inode->i_dio_count))
  2647. wake_up_bit(&inode->i_state, __I_DIO_WAKEUP);
  2648. }
  2649. extern void inode_set_flags(struct inode *inode, unsigned int flags,
  2650. unsigned int mask);
  2651. extern const struct file_operations generic_ro_fops;
  2652. #define special_file(m) (S_ISCHR(m)||S_ISBLK(m)||S_ISFIFO(m)||S_ISSOCK(m))
  2653. extern int readlink_copy(char __user *, int, const char *);
  2654. extern int page_readlink(struct dentry *, char __user *, int);
  2655. extern const char *page_get_link(struct dentry *, struct inode *,
  2656. struct delayed_call *);
  2657. extern void page_put_link(void *);
  2658. extern int __page_symlink(struct inode *inode, const char *symname, int len,
  2659. int nofs);
  2660. extern int page_symlink(struct inode *inode, const char *symname, int len);
  2661. extern const struct inode_operations page_symlink_inode_operations;
  2662. extern void kfree_link(void *);
  2663. extern void generic_fillattr(struct inode *, struct kstat *);
  2664. extern int vfs_getattr_nosec(const struct path *, struct kstat *, u32, unsigned int);
  2665. extern int vfs_getattr(const struct path *, struct kstat *, u32, unsigned int);
  2666. void __inode_add_bytes(struct inode *inode, loff_t bytes);
  2667. void inode_add_bytes(struct inode *inode, loff_t bytes);
  2668. void __inode_sub_bytes(struct inode *inode, loff_t bytes);
  2669. void inode_sub_bytes(struct inode *inode, loff_t bytes);
  2670. static inline loff_t __inode_get_bytes(struct inode *inode)
  2671. {
  2672. return (((loff_t)inode->i_blocks) << 9) + inode->i_bytes;
  2673. }
  2674. loff_t inode_get_bytes(struct inode *inode);
  2675. void inode_set_bytes(struct inode *inode, loff_t bytes);
  2676. const char *simple_get_link(struct dentry *, struct inode *,
  2677. struct delayed_call *);
  2678. extern const struct inode_operations simple_symlink_inode_operations;
  2679. extern int iterate_dir(struct file *, struct dir_context *);
  2680. extern int vfs_statx(int, const char __user *, int, struct kstat *, u32);
  2681. extern int vfs_statx_fd(unsigned int, struct kstat *, u32, unsigned int);
  2682. static inline int vfs_stat(const char __user *filename, struct kstat *stat)
  2683. {
  2684. return vfs_statx(AT_FDCWD, filename, AT_NO_AUTOMOUNT,
  2685. stat, STATX_BASIC_STATS);
  2686. }
  2687. static inline int vfs_lstat(const char __user *name, struct kstat *stat)
  2688. {
  2689. return vfs_statx(AT_FDCWD, name, AT_SYMLINK_NOFOLLOW | AT_NO_AUTOMOUNT,
  2690. stat, STATX_BASIC_STATS);
  2691. }
  2692. static inline int vfs_fstatat(int dfd, const char __user *filename,
  2693. struct kstat *stat, int flags)
  2694. {
  2695. return vfs_statx(dfd, filename, flags | AT_NO_AUTOMOUNT,
  2696. stat, STATX_BASIC_STATS);
  2697. }
  2698. static inline int vfs_fstat(int fd, struct kstat *stat)
  2699. {
  2700. return vfs_statx_fd(fd, stat, STATX_BASIC_STATS, 0);
  2701. }
  2702. extern const char *vfs_get_link(struct dentry *, struct delayed_call *);
  2703. extern int vfs_readlink(struct dentry *, char __user *, int);
  2704. extern int __generic_block_fiemap(struct inode *inode,
  2705. struct fiemap_extent_info *fieinfo,
  2706. loff_t start, loff_t len,
  2707. get_block_t *get_block);
  2708. extern int generic_block_fiemap(struct inode *inode,
  2709. struct fiemap_extent_info *fieinfo, u64 start,
  2710. u64 len, get_block_t *get_block);
  2711. extern struct file_system_type *get_filesystem(struct file_system_type *fs);
  2712. extern void put_filesystem(struct file_system_type *fs);
  2713. extern struct file_system_type *get_fs_type(const char *name);
  2714. extern struct super_block *get_super(struct block_device *);
  2715. extern struct super_block *get_super_thawed(struct block_device *);
  2716. extern struct super_block *get_super_exclusive_thawed(struct block_device *bdev);
  2717. extern struct super_block *get_active_super(struct block_device *bdev);
  2718. extern void drop_super(struct super_block *sb);
  2719. extern void drop_super_exclusive(struct super_block *sb);
  2720. extern void iterate_supers(void (*)(struct super_block *, void *), void *);
  2721. extern void iterate_supers_type(struct file_system_type *,
  2722. void (*)(struct super_block *, void *), void *);
  2723. extern int dcache_dir_open(struct inode *, struct file *);
  2724. extern int dcache_dir_close(struct inode *, struct file *);
  2725. extern loff_t dcache_dir_lseek(struct file *, loff_t, int);
  2726. extern int dcache_readdir(struct file *, struct dir_context *);
  2727. extern int simple_setattr(struct dentry *, struct iattr *);
  2728. extern int simple_getattr(const struct path *, struct kstat *, u32, unsigned int);
  2729. extern int simple_statfs(struct dentry *, struct kstatfs *);
  2730. extern int simple_open(struct inode *inode, struct file *file);
  2731. extern int simple_link(struct dentry *, struct inode *, struct dentry *);
  2732. extern int simple_unlink(struct inode *, struct dentry *);
  2733. extern int simple_rmdir(struct inode *, struct dentry *);
  2734. extern int simple_rename(struct inode *, struct dentry *,
  2735. struct inode *, struct dentry *, unsigned int);
  2736. extern int noop_fsync(struct file *, loff_t, loff_t, int);
  2737. extern int noop_set_page_dirty(struct page *page);
  2738. extern void noop_invalidatepage(struct page *page, unsigned int offset,
  2739. unsigned int length);
  2740. extern ssize_t noop_direct_IO(struct kiocb *iocb, struct iov_iter *iter);
  2741. extern int simple_empty(struct dentry *);
  2742. extern int simple_readpage(struct file *file, struct page *page);
  2743. extern int simple_write_begin(struct file *file, struct address_space *mapping,
  2744. loff_t pos, unsigned len, unsigned flags,
  2745. struct page **pagep, void **fsdata);
  2746. extern int simple_write_end(struct file *file, struct address_space *mapping,
  2747. loff_t pos, unsigned len, unsigned copied,
  2748. struct page *page, void *fsdata);
  2749. extern int always_delete_dentry(const struct dentry *);
  2750. extern struct inode *alloc_anon_inode(struct super_block *);
  2751. extern int simple_nosetlease(struct file *, long, struct file_lock **, void **);
  2752. extern const struct dentry_operations simple_dentry_operations;
  2753. extern struct dentry *simple_lookup(struct inode *, struct dentry *, unsigned int flags);
  2754. extern ssize_t generic_read_dir(struct file *, char __user *, size_t, loff_t *);
  2755. extern const struct file_operations simple_dir_operations;
  2756. extern const struct inode_operations simple_dir_inode_operations;
  2757. extern void make_empty_dir_inode(struct inode *inode);
  2758. extern bool is_empty_dir_inode(struct inode *inode);
  2759. struct tree_descr { const char *name; const struct file_operations *ops; int mode; };
  2760. struct dentry *d_alloc_name(struct dentry *, const char *);
  2761. extern int simple_fill_super(struct super_block *, unsigned long,
  2762. const struct tree_descr *);
  2763. extern int simple_pin_fs(struct file_system_type *, struct vfsmount **mount, int *count);
  2764. extern void simple_release_fs(struct vfsmount **mount, int *count);
  2765. extern ssize_t simple_read_from_buffer(void __user *to, size_t count,
  2766. loff_t *ppos, const void *from, size_t available);
  2767. extern ssize_t simple_write_to_buffer(void *to, size_t available, loff_t *ppos,
  2768. const void __user *from, size_t count);
  2769. extern int __generic_file_fsync(struct file *, loff_t, loff_t, int);
  2770. extern int generic_file_fsync(struct file *, loff_t, loff_t, int);
  2771. extern int generic_check_addressable(unsigned, u64);
  2772. #ifdef CONFIG_MIGRATION
  2773. extern int buffer_migrate_page(struct address_space *,
  2774. struct page *, struct page *,
  2775. enum migrate_mode);
  2776. #else
  2777. #define buffer_migrate_page NULL
  2778. #endif
  2779. extern int setattr_prepare(struct dentry *, struct iattr *);
  2780. extern int inode_newsize_ok(const struct inode *, loff_t offset);
  2781. extern void setattr_copy(struct inode *inode, const struct iattr *attr);
  2782. extern int file_update_time(struct file *file);
  2783. static inline bool io_is_direct(struct file *filp)
  2784. {
  2785. return (filp->f_flags & O_DIRECT) || IS_DAX(filp->f_mapping->host);
  2786. }
  2787. static inline bool vma_is_dax(struct vm_area_struct *vma)
  2788. {
  2789. return vma->vm_file && IS_DAX(vma->vm_file->f_mapping->host);
  2790. }
  2791. static inline bool vma_is_fsdax(struct vm_area_struct *vma)
  2792. {
  2793. struct inode *inode;
  2794. if (!vma->vm_file)
  2795. return false;
  2796. if (!vma_is_dax(vma))
  2797. return false;
  2798. inode = file_inode(vma->vm_file);
  2799. if (S_ISCHR(inode->i_mode))
  2800. return false; /* device-dax */
  2801. return true;
  2802. }
  2803. static inline int iocb_flags(struct file *file)
  2804. {
  2805. int res = 0;
  2806. if (file->f_flags & O_APPEND)
  2807. res |= IOCB_APPEND;
  2808. if (io_is_direct(file))
  2809. res |= IOCB_DIRECT;
  2810. if ((file->f_flags & O_DSYNC) || IS_SYNC(file->f_mapping->host))
  2811. res |= IOCB_DSYNC;
  2812. if (file->f_flags & __O_SYNC)
  2813. res |= IOCB_SYNC;
  2814. return res;
  2815. }
  2816. static inline int kiocb_set_rw_flags(struct kiocb *ki, rwf_t flags)
  2817. {
  2818. if (unlikely(flags & ~RWF_SUPPORTED))
  2819. return -EOPNOTSUPP;
  2820. if (flags & RWF_NOWAIT) {
  2821. if (!(ki->ki_filp->f_mode & FMODE_NOWAIT))
  2822. return -EOPNOTSUPP;
  2823. ki->ki_flags |= IOCB_NOWAIT;
  2824. }
  2825. if (flags & RWF_HIPRI)
  2826. ki->ki_flags |= IOCB_HIPRI;
  2827. if (flags & RWF_DSYNC)
  2828. ki->ki_flags |= IOCB_DSYNC;
  2829. if (flags & RWF_SYNC)
  2830. ki->ki_flags |= (IOCB_DSYNC | IOCB_SYNC);
  2831. if (flags & RWF_APPEND)
  2832. ki->ki_flags |= IOCB_APPEND;
  2833. return 0;
  2834. }
  2835. static inline ino_t parent_ino(struct dentry *dentry)
  2836. {
  2837. ino_t res;
  2838. /*
  2839. * Don't strictly need d_lock here? If the parent ino could change
  2840. * then surely we'd have a deeper race in the caller?
  2841. */
  2842. spin_lock(&dentry->d_lock);
  2843. res = dentry->d_parent->d_inode->i_ino;
  2844. spin_unlock(&dentry->d_lock);
  2845. return res;
  2846. }
  2847. /* Transaction based IO helpers */
  2848. /*
  2849. * An argresp is stored in an allocated page and holds the
  2850. * size of the argument or response, along with its content
  2851. */
  2852. struct simple_transaction_argresp {
  2853. ssize_t size;
  2854. char data[0];
  2855. };
  2856. #define SIMPLE_TRANSACTION_LIMIT (PAGE_SIZE - sizeof(struct simple_transaction_argresp))
  2857. char *simple_transaction_get(struct file *file, const char __user *buf,
  2858. size_t size);
  2859. ssize_t simple_transaction_read(struct file *file, char __user *buf,
  2860. size_t size, loff_t *pos);
  2861. int simple_transaction_release(struct inode *inode, struct file *file);
  2862. void simple_transaction_set(struct file *file, size_t n);
  2863. /*
  2864. * simple attribute files
  2865. *
  2866. * These attributes behave similar to those in sysfs:
  2867. *
  2868. * Writing to an attribute immediately sets a value, an open file can be
  2869. * written to multiple times.
  2870. *
  2871. * Reading from an attribute creates a buffer from the value that might get
  2872. * read with multiple read calls. When the attribute has been read
  2873. * completely, no further read calls are possible until the file is opened
  2874. * again.
  2875. *
  2876. * All attributes contain a text representation of a numeric value
  2877. * that are accessed with the get() and set() functions.
  2878. */
  2879. #define DEFINE_SIMPLE_ATTRIBUTE(__fops, __get, __set, __fmt) \
  2880. static int __fops ## _open(struct inode *inode, struct file *file) \
  2881. { \
  2882. __simple_attr_check_format(__fmt, 0ull); \
  2883. return simple_attr_open(inode, file, __get, __set, __fmt); \
  2884. } \
  2885. static const struct file_operations __fops = { \
  2886. .owner = THIS_MODULE, \
  2887. .open = __fops ## _open, \
  2888. .release = simple_attr_release, \
  2889. .read = simple_attr_read, \
  2890. .write = simple_attr_write, \
  2891. .llseek = generic_file_llseek, \
  2892. }
  2893. static inline __printf(1, 2)
  2894. void __simple_attr_check_format(const char *fmt, ...)
  2895. {
  2896. /* don't do anything, just let the compiler check the arguments; */
  2897. }
  2898. int simple_attr_open(struct inode *inode, struct file *file,
  2899. int (*get)(void *, u64 *), int (*set)(void *, u64),
  2900. const char *fmt);
  2901. int simple_attr_release(struct inode *inode, struct file *file);
  2902. ssize_t simple_attr_read(struct file *file, char __user *buf,
  2903. size_t len, loff_t *ppos);
  2904. ssize_t simple_attr_write(struct file *file, const char __user *buf,
  2905. size_t len, loff_t *ppos);
  2906. struct ctl_table;
  2907. int proc_nr_files(struct ctl_table *table, int write,
  2908. void __user *buffer, size_t *lenp, loff_t *ppos);
  2909. int proc_nr_dentry(struct ctl_table *table, int write,
  2910. void __user *buffer, size_t *lenp, loff_t *ppos);
  2911. int proc_nr_inodes(struct ctl_table *table, int write,
  2912. void __user *buffer, size_t *lenp, loff_t *ppos);
  2913. int __init get_filesystem_list(char *buf);
  2914. #define __FMODE_EXEC ((__force int) FMODE_EXEC)
  2915. #define __FMODE_NONOTIFY ((__force int) FMODE_NONOTIFY)
  2916. #define ACC_MODE(x) ("\004\002\006\006"[(x)&O_ACCMODE])
  2917. #define OPEN_FMODE(flag) ((__force fmode_t)(((flag + 1) & O_ACCMODE) | \
  2918. (flag & __FMODE_NONOTIFY)))
  2919. static inline bool is_sxid(umode_t mode)
  2920. {
  2921. return (mode & S_ISUID) || ((mode & S_ISGID) && (mode & S_IXGRP));
  2922. }
  2923. static inline int check_sticky(struct inode *dir, struct inode *inode)
  2924. {
  2925. if (!(dir->i_mode & S_ISVTX))
  2926. return 0;
  2927. return __check_sticky(dir, inode);
  2928. }
  2929. static inline void inode_has_no_xattr(struct inode *inode)
  2930. {
  2931. if (!is_sxid(inode->i_mode) && (inode->i_sb->s_flags & SB_NOSEC))
  2932. inode->i_flags |= S_NOSEC;
  2933. }
  2934. static inline bool is_root_inode(struct inode *inode)
  2935. {
  2936. return inode == inode->i_sb->s_root->d_inode;
  2937. }
  2938. static inline bool dir_emit(struct dir_context *ctx,
  2939. const char *name, int namelen,
  2940. u64 ino, unsigned type)
  2941. {
  2942. return ctx->actor(ctx, name, namelen, ctx->pos, ino, type) == 0;
  2943. }
  2944. static inline bool dir_emit_dot(struct file *file, struct dir_context *ctx)
  2945. {
  2946. return ctx->actor(ctx, ".", 1, ctx->pos,
  2947. file->f_path.dentry->d_inode->i_ino, DT_DIR) == 0;
  2948. }
  2949. static inline bool dir_emit_dotdot(struct file *file, struct dir_context *ctx)
  2950. {
  2951. return ctx->actor(ctx, "..", 2, ctx->pos,
  2952. parent_ino(file->f_path.dentry), DT_DIR) == 0;
  2953. }
  2954. static inline bool dir_emit_dots(struct file *file, struct dir_context *ctx)
  2955. {
  2956. if (ctx->pos == 0) {
  2957. if (!dir_emit_dot(file, ctx))
  2958. return false;
  2959. ctx->pos = 1;
  2960. }
  2961. if (ctx->pos == 1) {
  2962. if (!dir_emit_dotdot(file, ctx))
  2963. return false;
  2964. ctx->pos = 2;
  2965. }
  2966. return true;
  2967. }
  2968. static inline bool dir_relax(struct inode *inode)
  2969. {
  2970. inode_unlock(inode);
  2971. inode_lock(inode);
  2972. return !IS_DEADDIR(inode);
  2973. }
  2974. static inline bool dir_relax_shared(struct inode *inode)
  2975. {
  2976. inode_unlock_shared(inode);
  2977. inode_lock_shared(inode);
  2978. return !IS_DEADDIR(inode);
  2979. }
  2980. extern bool path_noexec(const struct path *path);
  2981. extern void inode_nohighmem(struct inode *inode);
  2982. #endif /* _LINUX_FS_H */