fs.h 105 KB

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