fs.h 103 KB

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