fs.h 91 KB

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