inode.c 55 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124
  1. /*
  2. * (C) 1997 Linus Torvalds
  3. * (C) 1999 Andrea Arcangeli <andrea@suse.de> (dynamic inode allocation)
  4. */
  5. #include <linux/export.h>
  6. #include <linux/fs.h>
  7. #include <linux/mm.h>
  8. #include <linux/backing-dev.h>
  9. #include <linux/hash.h>
  10. #include <linux/swap.h>
  11. #include <linux/security.h>
  12. #include <linux/cdev.h>
  13. #include <linux/bootmem.h>
  14. #include <linux/fsnotify.h>
  15. #include <linux/mount.h>
  16. #include <linux/posix_acl.h>
  17. #include <linux/prefetch.h>
  18. #include <linux/buffer_head.h> /* for inode_has_buffers */
  19. #include <linux/ratelimit.h>
  20. #include <linux/list_lru.h>
  21. #include <trace/events/writeback.h>
  22. #include "internal.h"
  23. /*
  24. * Inode locking rules:
  25. *
  26. * inode->i_lock protects:
  27. * inode->i_state, inode->i_hash, __iget()
  28. * Inode LRU list locks protect:
  29. * inode->i_sb->s_inode_lru, inode->i_lru
  30. * inode->i_sb->s_inode_list_lock protects:
  31. * inode->i_sb->s_inodes, inode->i_sb_list
  32. * bdi->wb.list_lock protects:
  33. * bdi->wb.b_{dirty,io,more_io,dirty_time}, inode->i_io_list
  34. * inode_hash_lock protects:
  35. * inode_hashtable, inode->i_hash
  36. *
  37. * Lock ordering:
  38. *
  39. * inode->i_sb->s_inode_list_lock
  40. * inode->i_lock
  41. * Inode LRU list locks
  42. *
  43. * bdi->wb.list_lock
  44. * inode->i_lock
  45. *
  46. * inode_hash_lock
  47. * inode->i_sb->s_inode_list_lock
  48. * inode->i_lock
  49. *
  50. * iunique_lock
  51. * inode_hash_lock
  52. */
  53. static unsigned int i_hash_mask __read_mostly;
  54. static unsigned int i_hash_shift __read_mostly;
  55. static struct hlist_head *inode_hashtable __read_mostly;
  56. static __cacheline_aligned_in_smp DEFINE_SPINLOCK(inode_hash_lock);
  57. /*
  58. * Empty aops. Can be used for the cases where the user does not
  59. * define any of the address_space operations.
  60. */
  61. const struct address_space_operations empty_aops = {
  62. };
  63. EXPORT_SYMBOL(empty_aops);
  64. /*
  65. * Statistics gathering..
  66. */
  67. struct inodes_stat_t inodes_stat;
  68. static DEFINE_PER_CPU(unsigned long, nr_inodes);
  69. static DEFINE_PER_CPU(unsigned long, nr_unused);
  70. static struct kmem_cache *inode_cachep __read_mostly;
  71. static long get_nr_inodes(void)
  72. {
  73. int i;
  74. long sum = 0;
  75. for_each_possible_cpu(i)
  76. sum += per_cpu(nr_inodes, i);
  77. return sum < 0 ? 0 : sum;
  78. }
  79. static inline long get_nr_inodes_unused(void)
  80. {
  81. int i;
  82. long sum = 0;
  83. for_each_possible_cpu(i)
  84. sum += per_cpu(nr_unused, i);
  85. return sum < 0 ? 0 : sum;
  86. }
  87. long get_nr_dirty_inodes(void)
  88. {
  89. /* not actually dirty inodes, but a wild approximation */
  90. long nr_dirty = get_nr_inodes() - get_nr_inodes_unused();
  91. return nr_dirty > 0 ? nr_dirty : 0;
  92. }
  93. /*
  94. * Handle nr_inode sysctl
  95. */
  96. #ifdef CONFIG_SYSCTL
  97. int proc_nr_inodes(struct ctl_table *table, int write,
  98. void __user *buffer, size_t *lenp, loff_t *ppos)
  99. {
  100. inodes_stat.nr_inodes = get_nr_inodes();
  101. inodes_stat.nr_unused = get_nr_inodes_unused();
  102. return proc_doulongvec_minmax(table, write, buffer, lenp, ppos);
  103. }
  104. #endif
  105. static int no_open(struct inode *inode, struct file *file)
  106. {
  107. return -ENXIO;
  108. }
  109. /**
  110. * inode_init_always - perform inode structure intialisation
  111. * @sb: superblock inode belongs to
  112. * @inode: inode to initialise
  113. *
  114. * These are initializations that need to be done on every inode
  115. * allocation as the fields are not initialised by slab allocation.
  116. */
  117. int inode_init_always(struct super_block *sb, struct inode *inode)
  118. {
  119. static const struct inode_operations empty_iops;
  120. static const struct file_operations no_open_fops = {.open = no_open};
  121. struct address_space *const mapping = &inode->i_data;
  122. inode->i_sb = sb;
  123. inode->i_blkbits = sb->s_blocksize_bits;
  124. inode->i_flags = 0;
  125. atomic_set(&inode->i_count, 1);
  126. inode->i_op = &empty_iops;
  127. inode->i_fop = &no_open_fops;
  128. inode->__i_nlink = 1;
  129. inode->i_opflags = 0;
  130. if (sb->s_xattr)
  131. inode->i_opflags |= IOP_XATTR;
  132. i_uid_write(inode, 0);
  133. i_gid_write(inode, 0);
  134. atomic_set(&inode->i_writecount, 0);
  135. inode->i_size = 0;
  136. inode->i_blocks = 0;
  137. inode->i_bytes = 0;
  138. inode->i_generation = 0;
  139. inode->i_pipe = NULL;
  140. inode->i_bdev = NULL;
  141. inode->i_cdev = NULL;
  142. inode->i_link = NULL;
  143. inode->i_dir_seq = 0;
  144. inode->i_rdev = 0;
  145. inode->dirtied_when = 0;
  146. #ifdef CONFIG_CGROUP_WRITEBACK
  147. inode->i_wb_frn_winner = 0;
  148. inode->i_wb_frn_avg_time = 0;
  149. inode->i_wb_frn_history = 0;
  150. #endif
  151. if (security_inode_alloc(inode))
  152. goto out;
  153. spin_lock_init(&inode->i_lock);
  154. lockdep_set_class(&inode->i_lock, &sb->s_type->i_lock_key);
  155. init_rwsem(&inode->i_rwsem);
  156. lockdep_set_class(&inode->i_rwsem, &sb->s_type->i_mutex_key);
  157. atomic_set(&inode->i_dio_count, 0);
  158. mapping->a_ops = &empty_aops;
  159. mapping->host = inode;
  160. mapping->flags = 0;
  161. atomic_set(&mapping->i_mmap_writable, 0);
  162. mapping_set_gfp_mask(mapping, GFP_HIGHUSER_MOVABLE);
  163. mapping->private_data = NULL;
  164. mapping->writeback_index = 0;
  165. inode->i_private = NULL;
  166. inode->i_mapping = mapping;
  167. INIT_HLIST_HEAD(&inode->i_dentry); /* buggered by rcu freeing */
  168. #ifdef CONFIG_FS_POSIX_ACL
  169. inode->i_acl = inode->i_default_acl = ACL_NOT_CACHED;
  170. #endif
  171. #ifdef CONFIG_FSNOTIFY
  172. inode->i_fsnotify_mask = 0;
  173. #endif
  174. inode->i_flctx = NULL;
  175. this_cpu_inc(nr_inodes);
  176. return 0;
  177. out:
  178. return -ENOMEM;
  179. }
  180. EXPORT_SYMBOL(inode_init_always);
  181. static struct inode *alloc_inode(struct super_block *sb)
  182. {
  183. struct inode *inode;
  184. if (sb->s_op->alloc_inode)
  185. inode = sb->s_op->alloc_inode(sb);
  186. else
  187. inode = kmem_cache_alloc(inode_cachep, GFP_KERNEL);
  188. if (!inode)
  189. return NULL;
  190. if (unlikely(inode_init_always(sb, inode))) {
  191. if (inode->i_sb->s_op->destroy_inode)
  192. inode->i_sb->s_op->destroy_inode(inode);
  193. else
  194. kmem_cache_free(inode_cachep, inode);
  195. return NULL;
  196. }
  197. return inode;
  198. }
  199. void free_inode_nonrcu(struct inode *inode)
  200. {
  201. kmem_cache_free(inode_cachep, inode);
  202. }
  203. EXPORT_SYMBOL(free_inode_nonrcu);
  204. void __destroy_inode(struct inode *inode)
  205. {
  206. BUG_ON(inode_has_buffers(inode));
  207. inode_detach_wb(inode);
  208. security_inode_free(inode);
  209. fsnotify_inode_delete(inode);
  210. locks_free_lock_context(inode);
  211. if (!inode->i_nlink) {
  212. WARN_ON(atomic_long_read(&inode->i_sb->s_remove_count) == 0);
  213. atomic_long_dec(&inode->i_sb->s_remove_count);
  214. }
  215. #ifdef CONFIG_FS_POSIX_ACL
  216. if (inode->i_acl && !is_uncached_acl(inode->i_acl))
  217. posix_acl_release(inode->i_acl);
  218. if (inode->i_default_acl && !is_uncached_acl(inode->i_default_acl))
  219. posix_acl_release(inode->i_default_acl);
  220. #endif
  221. this_cpu_dec(nr_inodes);
  222. }
  223. EXPORT_SYMBOL(__destroy_inode);
  224. static void i_callback(struct rcu_head *head)
  225. {
  226. struct inode *inode = container_of(head, struct inode, i_rcu);
  227. kmem_cache_free(inode_cachep, inode);
  228. }
  229. static void destroy_inode(struct inode *inode)
  230. {
  231. BUG_ON(!list_empty(&inode->i_lru));
  232. __destroy_inode(inode);
  233. if (inode->i_sb->s_op->destroy_inode)
  234. inode->i_sb->s_op->destroy_inode(inode);
  235. else
  236. call_rcu(&inode->i_rcu, i_callback);
  237. }
  238. /**
  239. * drop_nlink - directly drop an inode's link count
  240. * @inode: inode
  241. *
  242. * This is a low-level filesystem helper to replace any
  243. * direct filesystem manipulation of i_nlink. In cases
  244. * where we are attempting to track writes to the
  245. * filesystem, a decrement to zero means an imminent
  246. * write when the file is truncated and actually unlinked
  247. * on the filesystem.
  248. */
  249. void drop_nlink(struct inode *inode)
  250. {
  251. WARN_ON(inode->i_nlink == 0);
  252. inode->__i_nlink--;
  253. if (!inode->i_nlink)
  254. atomic_long_inc(&inode->i_sb->s_remove_count);
  255. }
  256. EXPORT_SYMBOL(drop_nlink);
  257. /**
  258. * clear_nlink - directly zero an inode's link count
  259. * @inode: inode
  260. *
  261. * This is a low-level filesystem helper to replace any
  262. * direct filesystem manipulation of i_nlink. See
  263. * drop_nlink() for why we care about i_nlink hitting zero.
  264. */
  265. void clear_nlink(struct inode *inode)
  266. {
  267. if (inode->i_nlink) {
  268. inode->__i_nlink = 0;
  269. atomic_long_inc(&inode->i_sb->s_remove_count);
  270. }
  271. }
  272. EXPORT_SYMBOL(clear_nlink);
  273. /**
  274. * set_nlink - directly set an inode's link count
  275. * @inode: inode
  276. * @nlink: new nlink (should be non-zero)
  277. *
  278. * This is a low-level filesystem helper to replace any
  279. * direct filesystem manipulation of i_nlink.
  280. */
  281. void set_nlink(struct inode *inode, unsigned int nlink)
  282. {
  283. if (!nlink) {
  284. clear_nlink(inode);
  285. } else {
  286. /* Yes, some filesystems do change nlink from zero to one */
  287. if (inode->i_nlink == 0)
  288. atomic_long_dec(&inode->i_sb->s_remove_count);
  289. inode->__i_nlink = nlink;
  290. }
  291. }
  292. EXPORT_SYMBOL(set_nlink);
  293. /**
  294. * inc_nlink - directly increment an inode's link count
  295. * @inode: inode
  296. *
  297. * This is a low-level filesystem helper to replace any
  298. * direct filesystem manipulation of i_nlink. Currently,
  299. * it is only here for parity with dec_nlink().
  300. */
  301. void inc_nlink(struct inode *inode)
  302. {
  303. if (unlikely(inode->i_nlink == 0)) {
  304. WARN_ON(!(inode->i_state & I_LINKABLE));
  305. atomic_long_dec(&inode->i_sb->s_remove_count);
  306. }
  307. inode->__i_nlink++;
  308. }
  309. EXPORT_SYMBOL(inc_nlink);
  310. void address_space_init_once(struct address_space *mapping)
  311. {
  312. memset(mapping, 0, sizeof(*mapping));
  313. INIT_RADIX_TREE(&mapping->page_tree, GFP_ATOMIC | __GFP_ACCOUNT);
  314. spin_lock_init(&mapping->tree_lock);
  315. init_rwsem(&mapping->i_mmap_rwsem);
  316. INIT_LIST_HEAD(&mapping->private_list);
  317. spin_lock_init(&mapping->private_lock);
  318. mapping->i_mmap = RB_ROOT;
  319. }
  320. EXPORT_SYMBOL(address_space_init_once);
  321. /*
  322. * These are initializations that only need to be done
  323. * once, because the fields are idempotent across use
  324. * of the inode, so let the slab aware of that.
  325. */
  326. void inode_init_once(struct inode *inode)
  327. {
  328. memset(inode, 0, sizeof(*inode));
  329. INIT_HLIST_NODE(&inode->i_hash);
  330. INIT_LIST_HEAD(&inode->i_devices);
  331. INIT_LIST_HEAD(&inode->i_io_list);
  332. INIT_LIST_HEAD(&inode->i_wb_list);
  333. INIT_LIST_HEAD(&inode->i_lru);
  334. address_space_init_once(&inode->i_data);
  335. i_size_ordered_init(inode);
  336. #ifdef CONFIG_FSNOTIFY
  337. INIT_HLIST_HEAD(&inode->i_fsnotify_marks);
  338. #endif
  339. }
  340. EXPORT_SYMBOL(inode_init_once);
  341. static void init_once(void *foo)
  342. {
  343. struct inode *inode = (struct inode *) foo;
  344. inode_init_once(inode);
  345. }
  346. /*
  347. * inode->i_lock must be held
  348. */
  349. void __iget(struct inode *inode)
  350. {
  351. atomic_inc(&inode->i_count);
  352. }
  353. /*
  354. * get additional reference to inode; caller must already hold one.
  355. */
  356. void ihold(struct inode *inode)
  357. {
  358. WARN_ON(atomic_inc_return(&inode->i_count) < 2);
  359. }
  360. EXPORT_SYMBOL(ihold);
  361. static void inode_lru_list_add(struct inode *inode)
  362. {
  363. if (list_lru_add(&inode->i_sb->s_inode_lru, &inode->i_lru))
  364. this_cpu_inc(nr_unused);
  365. }
  366. /*
  367. * Add inode to LRU if needed (inode is unused and clean).
  368. *
  369. * Needs inode->i_lock held.
  370. */
  371. void inode_add_lru(struct inode *inode)
  372. {
  373. if (!(inode->i_state & (I_DIRTY_ALL | I_SYNC |
  374. I_FREEING | I_WILL_FREE)) &&
  375. !atomic_read(&inode->i_count) && inode->i_sb->s_flags & MS_ACTIVE)
  376. inode_lru_list_add(inode);
  377. }
  378. static void inode_lru_list_del(struct inode *inode)
  379. {
  380. if (list_lru_del(&inode->i_sb->s_inode_lru, &inode->i_lru))
  381. this_cpu_dec(nr_unused);
  382. }
  383. /**
  384. * inode_sb_list_add - add inode to the superblock list of inodes
  385. * @inode: inode to add
  386. */
  387. void inode_sb_list_add(struct inode *inode)
  388. {
  389. spin_lock(&inode->i_sb->s_inode_list_lock);
  390. list_add(&inode->i_sb_list, &inode->i_sb->s_inodes);
  391. spin_unlock(&inode->i_sb->s_inode_list_lock);
  392. }
  393. EXPORT_SYMBOL_GPL(inode_sb_list_add);
  394. static inline void inode_sb_list_del(struct inode *inode)
  395. {
  396. if (!list_empty(&inode->i_sb_list)) {
  397. spin_lock(&inode->i_sb->s_inode_list_lock);
  398. list_del_init(&inode->i_sb_list);
  399. spin_unlock(&inode->i_sb->s_inode_list_lock);
  400. }
  401. }
  402. static unsigned long hash(struct super_block *sb, unsigned long hashval)
  403. {
  404. unsigned long tmp;
  405. tmp = (hashval * (unsigned long)sb) ^ (GOLDEN_RATIO_PRIME + hashval) /
  406. L1_CACHE_BYTES;
  407. tmp = tmp ^ ((tmp ^ GOLDEN_RATIO_PRIME) >> i_hash_shift);
  408. return tmp & i_hash_mask;
  409. }
  410. /**
  411. * __insert_inode_hash - hash an inode
  412. * @inode: unhashed inode
  413. * @hashval: unsigned long value used to locate this object in the
  414. * inode_hashtable.
  415. *
  416. * Add an inode to the inode hash for this superblock.
  417. */
  418. void __insert_inode_hash(struct inode *inode, unsigned long hashval)
  419. {
  420. struct hlist_head *b = inode_hashtable + hash(inode->i_sb, hashval);
  421. spin_lock(&inode_hash_lock);
  422. spin_lock(&inode->i_lock);
  423. hlist_add_head(&inode->i_hash, b);
  424. spin_unlock(&inode->i_lock);
  425. spin_unlock(&inode_hash_lock);
  426. }
  427. EXPORT_SYMBOL(__insert_inode_hash);
  428. /**
  429. * __remove_inode_hash - remove an inode from the hash
  430. * @inode: inode to unhash
  431. *
  432. * Remove an inode from the superblock.
  433. */
  434. void __remove_inode_hash(struct inode *inode)
  435. {
  436. spin_lock(&inode_hash_lock);
  437. spin_lock(&inode->i_lock);
  438. hlist_del_init(&inode->i_hash);
  439. spin_unlock(&inode->i_lock);
  440. spin_unlock(&inode_hash_lock);
  441. }
  442. EXPORT_SYMBOL(__remove_inode_hash);
  443. void clear_inode(struct inode *inode)
  444. {
  445. might_sleep();
  446. /*
  447. * We have to cycle tree_lock here because reclaim can be still in the
  448. * process of removing the last page (in __delete_from_page_cache())
  449. * and we must not free mapping under it.
  450. */
  451. spin_lock_irq(&inode->i_data.tree_lock);
  452. BUG_ON(inode->i_data.nrpages);
  453. BUG_ON(inode->i_data.nrexceptional);
  454. spin_unlock_irq(&inode->i_data.tree_lock);
  455. BUG_ON(!list_empty(&inode->i_data.private_list));
  456. BUG_ON(!(inode->i_state & I_FREEING));
  457. BUG_ON(inode->i_state & I_CLEAR);
  458. BUG_ON(!list_empty(&inode->i_wb_list));
  459. /* don't need i_lock here, no concurrent mods to i_state */
  460. inode->i_state = I_FREEING | I_CLEAR;
  461. }
  462. EXPORT_SYMBOL(clear_inode);
  463. /*
  464. * Free the inode passed in, removing it from the lists it is still connected
  465. * to. We remove any pages still attached to the inode and wait for any IO that
  466. * is still in progress before finally destroying the inode.
  467. *
  468. * An inode must already be marked I_FREEING so that we avoid the inode being
  469. * moved back onto lists if we race with other code that manipulates the lists
  470. * (e.g. writeback_single_inode). The caller is responsible for setting this.
  471. *
  472. * An inode must already be removed from the LRU list before being evicted from
  473. * the cache. This should occur atomically with setting the I_FREEING state
  474. * flag, so no inodes here should ever be on the LRU when being evicted.
  475. */
  476. static void evict(struct inode *inode)
  477. {
  478. const struct super_operations *op = inode->i_sb->s_op;
  479. BUG_ON(!(inode->i_state & I_FREEING));
  480. BUG_ON(!list_empty(&inode->i_lru));
  481. if (!list_empty(&inode->i_io_list))
  482. inode_io_list_del(inode);
  483. inode_sb_list_del(inode);
  484. /*
  485. * Wait for flusher thread to be done with the inode so that filesystem
  486. * does not start destroying it while writeback is still running. Since
  487. * the inode has I_FREEING set, flusher thread won't start new work on
  488. * the inode. We just have to wait for running writeback to finish.
  489. */
  490. inode_wait_for_writeback(inode);
  491. if (op->evict_inode) {
  492. op->evict_inode(inode);
  493. } else {
  494. truncate_inode_pages_final(&inode->i_data);
  495. clear_inode(inode);
  496. }
  497. if (S_ISBLK(inode->i_mode) && inode->i_bdev)
  498. bd_forget(inode);
  499. if (S_ISCHR(inode->i_mode) && inode->i_cdev)
  500. cd_forget(inode);
  501. remove_inode_hash(inode);
  502. spin_lock(&inode->i_lock);
  503. wake_up_bit(&inode->i_state, __I_NEW);
  504. BUG_ON(inode->i_state != (I_FREEING | I_CLEAR));
  505. spin_unlock(&inode->i_lock);
  506. destroy_inode(inode);
  507. }
  508. /*
  509. * dispose_list - dispose of the contents of a local list
  510. * @head: the head of the list to free
  511. *
  512. * Dispose-list gets a local list with local inodes in it, so it doesn't
  513. * need to worry about list corruption and SMP locks.
  514. */
  515. static void dispose_list(struct list_head *head)
  516. {
  517. while (!list_empty(head)) {
  518. struct inode *inode;
  519. inode = list_first_entry(head, struct inode, i_lru);
  520. list_del_init(&inode->i_lru);
  521. evict(inode);
  522. cond_resched();
  523. }
  524. }
  525. /**
  526. * evict_inodes - evict all evictable inodes for a superblock
  527. * @sb: superblock to operate on
  528. *
  529. * Make sure that no inodes with zero refcount are retained. This is
  530. * called by superblock shutdown after having MS_ACTIVE flag removed,
  531. * so any inode reaching zero refcount during or after that call will
  532. * be immediately evicted.
  533. */
  534. void evict_inodes(struct super_block *sb)
  535. {
  536. struct inode *inode, *next;
  537. LIST_HEAD(dispose);
  538. again:
  539. spin_lock(&sb->s_inode_list_lock);
  540. list_for_each_entry_safe(inode, next, &sb->s_inodes, i_sb_list) {
  541. if (atomic_read(&inode->i_count))
  542. continue;
  543. spin_lock(&inode->i_lock);
  544. if (inode->i_state & (I_NEW | I_FREEING | I_WILL_FREE)) {
  545. spin_unlock(&inode->i_lock);
  546. continue;
  547. }
  548. inode->i_state |= I_FREEING;
  549. inode_lru_list_del(inode);
  550. spin_unlock(&inode->i_lock);
  551. list_add(&inode->i_lru, &dispose);
  552. /*
  553. * We can have a ton of inodes to evict at unmount time given
  554. * enough memory, check to see if we need to go to sleep for a
  555. * bit so we don't livelock.
  556. */
  557. if (need_resched()) {
  558. spin_unlock(&sb->s_inode_list_lock);
  559. cond_resched();
  560. dispose_list(&dispose);
  561. goto again;
  562. }
  563. }
  564. spin_unlock(&sb->s_inode_list_lock);
  565. dispose_list(&dispose);
  566. }
  567. /**
  568. * invalidate_inodes - attempt to free all inodes on a superblock
  569. * @sb: superblock to operate on
  570. * @kill_dirty: flag to guide handling of dirty inodes
  571. *
  572. * Attempts to free all inodes for a given superblock. If there were any
  573. * busy inodes return a non-zero value, else zero.
  574. * If @kill_dirty is set, discard dirty inodes too, otherwise treat
  575. * them as busy.
  576. */
  577. int invalidate_inodes(struct super_block *sb, bool kill_dirty)
  578. {
  579. int busy = 0;
  580. struct inode *inode, *next;
  581. LIST_HEAD(dispose);
  582. spin_lock(&sb->s_inode_list_lock);
  583. list_for_each_entry_safe(inode, next, &sb->s_inodes, i_sb_list) {
  584. spin_lock(&inode->i_lock);
  585. if (inode->i_state & (I_NEW | I_FREEING | I_WILL_FREE)) {
  586. spin_unlock(&inode->i_lock);
  587. continue;
  588. }
  589. if (inode->i_state & I_DIRTY_ALL && !kill_dirty) {
  590. spin_unlock(&inode->i_lock);
  591. busy = 1;
  592. continue;
  593. }
  594. if (atomic_read(&inode->i_count)) {
  595. spin_unlock(&inode->i_lock);
  596. busy = 1;
  597. continue;
  598. }
  599. inode->i_state |= I_FREEING;
  600. inode_lru_list_del(inode);
  601. spin_unlock(&inode->i_lock);
  602. list_add(&inode->i_lru, &dispose);
  603. }
  604. spin_unlock(&sb->s_inode_list_lock);
  605. dispose_list(&dispose);
  606. return busy;
  607. }
  608. /*
  609. * Isolate the inode from the LRU in preparation for freeing it.
  610. *
  611. * Any inodes which are pinned purely because of attached pagecache have their
  612. * pagecache removed. If the inode has metadata buffers attached to
  613. * mapping->private_list then try to remove them.
  614. *
  615. * If the inode has the I_REFERENCED flag set, then it means that it has been
  616. * used recently - the flag is set in iput_final(). When we encounter such an
  617. * inode, clear the flag and move it to the back of the LRU so it gets another
  618. * pass through the LRU before it gets reclaimed. This is necessary because of
  619. * the fact we are doing lazy LRU updates to minimise lock contention so the
  620. * LRU does not have strict ordering. Hence we don't want to reclaim inodes
  621. * with this flag set because they are the inodes that are out of order.
  622. */
  623. static enum lru_status inode_lru_isolate(struct list_head *item,
  624. struct list_lru_one *lru, spinlock_t *lru_lock, void *arg)
  625. {
  626. struct list_head *freeable = arg;
  627. struct inode *inode = container_of(item, struct inode, i_lru);
  628. /*
  629. * we are inverting the lru lock/inode->i_lock here, so use a trylock.
  630. * If we fail to get the lock, just skip it.
  631. */
  632. if (!spin_trylock(&inode->i_lock))
  633. return LRU_SKIP;
  634. /*
  635. * Referenced or dirty inodes are still in use. Give them another pass
  636. * through the LRU as we canot reclaim them now.
  637. */
  638. if (atomic_read(&inode->i_count) ||
  639. (inode->i_state & ~I_REFERENCED)) {
  640. list_lru_isolate(lru, &inode->i_lru);
  641. spin_unlock(&inode->i_lock);
  642. this_cpu_dec(nr_unused);
  643. return LRU_REMOVED;
  644. }
  645. /* recently referenced inodes get one more pass */
  646. if (inode->i_state & I_REFERENCED) {
  647. inode->i_state &= ~I_REFERENCED;
  648. spin_unlock(&inode->i_lock);
  649. return LRU_ROTATE;
  650. }
  651. if (inode_has_buffers(inode) || inode->i_data.nrpages) {
  652. __iget(inode);
  653. spin_unlock(&inode->i_lock);
  654. spin_unlock(lru_lock);
  655. if (remove_inode_buffers(inode)) {
  656. unsigned long reap;
  657. reap = invalidate_mapping_pages(&inode->i_data, 0, -1);
  658. if (current_is_kswapd())
  659. __count_vm_events(KSWAPD_INODESTEAL, reap);
  660. else
  661. __count_vm_events(PGINODESTEAL, reap);
  662. if (current->reclaim_state)
  663. current->reclaim_state->reclaimed_slab += reap;
  664. }
  665. iput(inode);
  666. spin_lock(lru_lock);
  667. return LRU_RETRY;
  668. }
  669. WARN_ON(inode->i_state & I_NEW);
  670. inode->i_state |= I_FREEING;
  671. list_lru_isolate_move(lru, &inode->i_lru, freeable);
  672. spin_unlock(&inode->i_lock);
  673. this_cpu_dec(nr_unused);
  674. return LRU_REMOVED;
  675. }
  676. /*
  677. * Walk the superblock inode LRU for freeable inodes and attempt to free them.
  678. * This is called from the superblock shrinker function with a number of inodes
  679. * to trim from the LRU. Inodes to be freed are moved to a temporary list and
  680. * then are freed outside inode_lock by dispose_list().
  681. */
  682. long prune_icache_sb(struct super_block *sb, struct shrink_control *sc)
  683. {
  684. LIST_HEAD(freeable);
  685. long freed;
  686. freed = list_lru_shrink_walk(&sb->s_inode_lru, sc,
  687. inode_lru_isolate, &freeable);
  688. dispose_list(&freeable);
  689. return freed;
  690. }
  691. static void __wait_on_freeing_inode(struct inode *inode);
  692. /*
  693. * Called with the inode lock held.
  694. */
  695. static struct inode *find_inode(struct super_block *sb,
  696. struct hlist_head *head,
  697. int (*test)(struct inode *, void *),
  698. void *data)
  699. {
  700. struct inode *inode = NULL;
  701. repeat:
  702. hlist_for_each_entry(inode, head, i_hash) {
  703. if (inode->i_sb != sb)
  704. continue;
  705. if (!test(inode, data))
  706. continue;
  707. spin_lock(&inode->i_lock);
  708. if (inode->i_state & (I_FREEING|I_WILL_FREE)) {
  709. __wait_on_freeing_inode(inode);
  710. goto repeat;
  711. }
  712. __iget(inode);
  713. spin_unlock(&inode->i_lock);
  714. return inode;
  715. }
  716. return NULL;
  717. }
  718. /*
  719. * find_inode_fast is the fast path version of find_inode, see the comment at
  720. * iget_locked for details.
  721. */
  722. static struct inode *find_inode_fast(struct super_block *sb,
  723. struct hlist_head *head, unsigned long ino)
  724. {
  725. struct inode *inode = NULL;
  726. repeat:
  727. hlist_for_each_entry(inode, head, i_hash) {
  728. if (inode->i_ino != ino)
  729. continue;
  730. if (inode->i_sb != sb)
  731. continue;
  732. spin_lock(&inode->i_lock);
  733. if (inode->i_state & (I_FREEING|I_WILL_FREE)) {
  734. __wait_on_freeing_inode(inode);
  735. goto repeat;
  736. }
  737. __iget(inode);
  738. spin_unlock(&inode->i_lock);
  739. return inode;
  740. }
  741. return NULL;
  742. }
  743. /*
  744. * Each cpu owns a range of LAST_INO_BATCH numbers.
  745. * 'shared_last_ino' is dirtied only once out of LAST_INO_BATCH allocations,
  746. * to renew the exhausted range.
  747. *
  748. * This does not significantly increase overflow rate because every CPU can
  749. * consume at most LAST_INO_BATCH-1 unused inode numbers. So there is
  750. * NR_CPUS*(LAST_INO_BATCH-1) wastage. At 4096 and 1024, this is ~0.1% of the
  751. * 2^32 range, and is a worst-case. Even a 50% wastage would only increase
  752. * overflow rate by 2x, which does not seem too significant.
  753. *
  754. * On a 32bit, non LFS stat() call, glibc will generate an EOVERFLOW
  755. * error if st_ino won't fit in target struct field. Use 32bit counter
  756. * here to attempt to avoid that.
  757. */
  758. #define LAST_INO_BATCH 1024
  759. static DEFINE_PER_CPU(unsigned int, last_ino);
  760. unsigned int get_next_ino(void)
  761. {
  762. unsigned int *p = &get_cpu_var(last_ino);
  763. unsigned int res = *p;
  764. #ifdef CONFIG_SMP
  765. if (unlikely((res & (LAST_INO_BATCH-1)) == 0)) {
  766. static atomic_t shared_last_ino;
  767. int next = atomic_add_return(LAST_INO_BATCH, &shared_last_ino);
  768. res = next - LAST_INO_BATCH;
  769. }
  770. #endif
  771. res++;
  772. /* get_next_ino should not provide a 0 inode number */
  773. if (unlikely(!res))
  774. res++;
  775. *p = res;
  776. put_cpu_var(last_ino);
  777. return res;
  778. }
  779. EXPORT_SYMBOL(get_next_ino);
  780. /**
  781. * new_inode_pseudo - obtain an inode
  782. * @sb: superblock
  783. *
  784. * Allocates a new inode for given superblock.
  785. * Inode wont be chained in superblock s_inodes list
  786. * This means :
  787. * - fs can't be unmount
  788. * - quotas, fsnotify, writeback can't work
  789. */
  790. struct inode *new_inode_pseudo(struct super_block *sb)
  791. {
  792. struct inode *inode = alloc_inode(sb);
  793. if (inode) {
  794. spin_lock(&inode->i_lock);
  795. inode->i_state = 0;
  796. spin_unlock(&inode->i_lock);
  797. INIT_LIST_HEAD(&inode->i_sb_list);
  798. }
  799. return inode;
  800. }
  801. /**
  802. * new_inode - obtain an inode
  803. * @sb: superblock
  804. *
  805. * Allocates a new inode for given superblock. The default gfp_mask
  806. * for allocations related to inode->i_mapping is GFP_HIGHUSER_MOVABLE.
  807. * If HIGHMEM pages are unsuitable or it is known that pages allocated
  808. * for the page cache are not reclaimable or migratable,
  809. * mapping_set_gfp_mask() must be called with suitable flags on the
  810. * newly created inode's mapping
  811. *
  812. */
  813. struct inode *new_inode(struct super_block *sb)
  814. {
  815. struct inode *inode;
  816. spin_lock_prefetch(&sb->s_inode_list_lock);
  817. inode = new_inode_pseudo(sb);
  818. if (inode)
  819. inode_sb_list_add(inode);
  820. return inode;
  821. }
  822. EXPORT_SYMBOL(new_inode);
  823. #ifdef CONFIG_DEBUG_LOCK_ALLOC
  824. void lockdep_annotate_inode_mutex_key(struct inode *inode)
  825. {
  826. if (S_ISDIR(inode->i_mode)) {
  827. struct file_system_type *type = inode->i_sb->s_type;
  828. /* Set new key only if filesystem hasn't already changed it */
  829. if (lockdep_match_class(&inode->i_rwsem, &type->i_mutex_key)) {
  830. /*
  831. * ensure nobody is actually holding i_mutex
  832. */
  833. // mutex_destroy(&inode->i_mutex);
  834. init_rwsem(&inode->i_rwsem);
  835. lockdep_set_class(&inode->i_rwsem,
  836. &type->i_mutex_dir_key);
  837. }
  838. }
  839. }
  840. EXPORT_SYMBOL(lockdep_annotate_inode_mutex_key);
  841. #endif
  842. /**
  843. * unlock_new_inode - clear the I_NEW state and wake up any waiters
  844. * @inode: new inode to unlock
  845. *
  846. * Called when the inode is fully initialised to clear the new state of the
  847. * inode and wake up anyone waiting for the inode to finish initialisation.
  848. */
  849. void unlock_new_inode(struct inode *inode)
  850. {
  851. lockdep_annotate_inode_mutex_key(inode);
  852. spin_lock(&inode->i_lock);
  853. WARN_ON(!(inode->i_state & I_NEW));
  854. inode->i_state &= ~I_NEW;
  855. smp_mb();
  856. wake_up_bit(&inode->i_state, __I_NEW);
  857. spin_unlock(&inode->i_lock);
  858. }
  859. EXPORT_SYMBOL(unlock_new_inode);
  860. /**
  861. * lock_two_nondirectories - take two i_mutexes on non-directory objects
  862. *
  863. * Lock any non-NULL argument that is not a directory.
  864. * Zero, one or two objects may be locked by this function.
  865. *
  866. * @inode1: first inode to lock
  867. * @inode2: second inode to lock
  868. */
  869. void lock_two_nondirectories(struct inode *inode1, struct inode *inode2)
  870. {
  871. if (inode1 > inode2)
  872. swap(inode1, inode2);
  873. if (inode1 && !S_ISDIR(inode1->i_mode))
  874. inode_lock(inode1);
  875. if (inode2 && !S_ISDIR(inode2->i_mode) && inode2 != inode1)
  876. inode_lock_nested(inode2, I_MUTEX_NONDIR2);
  877. }
  878. EXPORT_SYMBOL(lock_two_nondirectories);
  879. /**
  880. * unlock_two_nondirectories - release locks from lock_two_nondirectories()
  881. * @inode1: first inode to unlock
  882. * @inode2: second inode to unlock
  883. */
  884. void unlock_two_nondirectories(struct inode *inode1, struct inode *inode2)
  885. {
  886. if (inode1 && !S_ISDIR(inode1->i_mode))
  887. inode_unlock(inode1);
  888. if (inode2 && !S_ISDIR(inode2->i_mode) && inode2 != inode1)
  889. inode_unlock(inode2);
  890. }
  891. EXPORT_SYMBOL(unlock_two_nondirectories);
  892. /**
  893. * iget5_locked - obtain an inode from a mounted file system
  894. * @sb: super block of file system
  895. * @hashval: hash value (usually inode number) to get
  896. * @test: callback used for comparisons between inodes
  897. * @set: callback used to initialize a new struct inode
  898. * @data: opaque data pointer to pass to @test and @set
  899. *
  900. * Search for the inode specified by @hashval and @data in the inode cache,
  901. * and if present it is return it with an increased reference count. This is
  902. * a generalized version of iget_locked() for file systems where the inode
  903. * number is not sufficient for unique identification of an inode.
  904. *
  905. * If the inode is not in cache, allocate a new inode and return it locked,
  906. * hashed, and with the I_NEW flag set. The file system gets to fill it in
  907. * before unlocking it via unlock_new_inode().
  908. *
  909. * Note both @test and @set are called with the inode_hash_lock held, so can't
  910. * sleep.
  911. */
  912. struct inode *iget5_locked(struct super_block *sb, unsigned long hashval,
  913. int (*test)(struct inode *, void *),
  914. int (*set)(struct inode *, void *), void *data)
  915. {
  916. struct hlist_head *head = inode_hashtable + hash(sb, hashval);
  917. struct inode *inode;
  918. again:
  919. spin_lock(&inode_hash_lock);
  920. inode = find_inode(sb, head, test, data);
  921. spin_unlock(&inode_hash_lock);
  922. if (inode) {
  923. wait_on_inode(inode);
  924. if (unlikely(inode_unhashed(inode))) {
  925. iput(inode);
  926. goto again;
  927. }
  928. return inode;
  929. }
  930. inode = alloc_inode(sb);
  931. if (inode) {
  932. struct inode *old;
  933. spin_lock(&inode_hash_lock);
  934. /* We released the lock, so.. */
  935. old = find_inode(sb, head, test, data);
  936. if (!old) {
  937. if (set(inode, data))
  938. goto set_failed;
  939. spin_lock(&inode->i_lock);
  940. inode->i_state = I_NEW;
  941. hlist_add_head(&inode->i_hash, head);
  942. spin_unlock(&inode->i_lock);
  943. inode_sb_list_add(inode);
  944. spin_unlock(&inode_hash_lock);
  945. /* Return the locked inode with I_NEW set, the
  946. * caller is responsible for filling in the contents
  947. */
  948. return inode;
  949. }
  950. /*
  951. * Uhhuh, somebody else created the same inode under
  952. * us. Use the old inode instead of the one we just
  953. * allocated.
  954. */
  955. spin_unlock(&inode_hash_lock);
  956. destroy_inode(inode);
  957. inode = old;
  958. wait_on_inode(inode);
  959. if (unlikely(inode_unhashed(inode))) {
  960. iput(inode);
  961. goto again;
  962. }
  963. }
  964. return inode;
  965. set_failed:
  966. spin_unlock(&inode_hash_lock);
  967. destroy_inode(inode);
  968. return NULL;
  969. }
  970. EXPORT_SYMBOL(iget5_locked);
  971. /**
  972. * iget_locked - obtain an inode from a mounted file system
  973. * @sb: super block of file system
  974. * @ino: inode number to get
  975. *
  976. * Search for the inode specified by @ino in the inode cache and if present
  977. * return it with an increased reference count. This is for file systems
  978. * where the inode number is sufficient for unique identification of an inode.
  979. *
  980. * If the inode is not in cache, allocate a new inode and return it locked,
  981. * hashed, and with the I_NEW flag set. The file system gets to fill it in
  982. * before unlocking it via unlock_new_inode().
  983. */
  984. struct inode *iget_locked(struct super_block *sb, unsigned long ino)
  985. {
  986. struct hlist_head *head = inode_hashtable + hash(sb, ino);
  987. struct inode *inode;
  988. again:
  989. spin_lock(&inode_hash_lock);
  990. inode = find_inode_fast(sb, head, ino);
  991. spin_unlock(&inode_hash_lock);
  992. if (inode) {
  993. wait_on_inode(inode);
  994. if (unlikely(inode_unhashed(inode))) {
  995. iput(inode);
  996. goto again;
  997. }
  998. return inode;
  999. }
  1000. inode = alloc_inode(sb);
  1001. if (inode) {
  1002. struct inode *old;
  1003. spin_lock(&inode_hash_lock);
  1004. /* We released the lock, so.. */
  1005. old = find_inode_fast(sb, head, ino);
  1006. if (!old) {
  1007. inode->i_ino = ino;
  1008. spin_lock(&inode->i_lock);
  1009. inode->i_state = I_NEW;
  1010. hlist_add_head(&inode->i_hash, head);
  1011. spin_unlock(&inode->i_lock);
  1012. inode_sb_list_add(inode);
  1013. spin_unlock(&inode_hash_lock);
  1014. /* Return the locked inode with I_NEW set, the
  1015. * caller is responsible for filling in the contents
  1016. */
  1017. return inode;
  1018. }
  1019. /*
  1020. * Uhhuh, somebody else created the same inode under
  1021. * us. Use the old inode instead of the one we just
  1022. * allocated.
  1023. */
  1024. spin_unlock(&inode_hash_lock);
  1025. destroy_inode(inode);
  1026. inode = old;
  1027. wait_on_inode(inode);
  1028. if (unlikely(inode_unhashed(inode))) {
  1029. iput(inode);
  1030. goto again;
  1031. }
  1032. }
  1033. return inode;
  1034. }
  1035. EXPORT_SYMBOL(iget_locked);
  1036. /*
  1037. * search the inode cache for a matching inode number.
  1038. * If we find one, then the inode number we are trying to
  1039. * allocate is not unique and so we should not use it.
  1040. *
  1041. * Returns 1 if the inode number is unique, 0 if it is not.
  1042. */
  1043. static int test_inode_iunique(struct super_block *sb, unsigned long ino)
  1044. {
  1045. struct hlist_head *b = inode_hashtable + hash(sb, ino);
  1046. struct inode *inode;
  1047. spin_lock(&inode_hash_lock);
  1048. hlist_for_each_entry(inode, b, i_hash) {
  1049. if (inode->i_ino == ino && inode->i_sb == sb) {
  1050. spin_unlock(&inode_hash_lock);
  1051. return 0;
  1052. }
  1053. }
  1054. spin_unlock(&inode_hash_lock);
  1055. return 1;
  1056. }
  1057. /**
  1058. * iunique - get a unique inode number
  1059. * @sb: superblock
  1060. * @max_reserved: highest reserved inode number
  1061. *
  1062. * Obtain an inode number that is unique on the system for a given
  1063. * superblock. This is used by file systems that have no natural
  1064. * permanent inode numbering system. An inode number is returned that
  1065. * is higher than the reserved limit but unique.
  1066. *
  1067. * BUGS:
  1068. * With a large number of inodes live on the file system this function
  1069. * currently becomes quite slow.
  1070. */
  1071. ino_t iunique(struct super_block *sb, ino_t max_reserved)
  1072. {
  1073. /*
  1074. * On a 32bit, non LFS stat() call, glibc will generate an EOVERFLOW
  1075. * error if st_ino won't fit in target struct field. Use 32bit counter
  1076. * here to attempt to avoid that.
  1077. */
  1078. static DEFINE_SPINLOCK(iunique_lock);
  1079. static unsigned int counter;
  1080. ino_t res;
  1081. spin_lock(&iunique_lock);
  1082. do {
  1083. if (counter <= max_reserved)
  1084. counter = max_reserved + 1;
  1085. res = counter++;
  1086. } while (!test_inode_iunique(sb, res));
  1087. spin_unlock(&iunique_lock);
  1088. return res;
  1089. }
  1090. EXPORT_SYMBOL(iunique);
  1091. struct inode *igrab(struct inode *inode)
  1092. {
  1093. spin_lock(&inode->i_lock);
  1094. if (!(inode->i_state & (I_FREEING|I_WILL_FREE))) {
  1095. __iget(inode);
  1096. spin_unlock(&inode->i_lock);
  1097. } else {
  1098. spin_unlock(&inode->i_lock);
  1099. /*
  1100. * Handle the case where s_op->clear_inode is not been
  1101. * called yet, and somebody is calling igrab
  1102. * while the inode is getting freed.
  1103. */
  1104. inode = NULL;
  1105. }
  1106. return inode;
  1107. }
  1108. EXPORT_SYMBOL(igrab);
  1109. /**
  1110. * ilookup5_nowait - search for an inode in the inode cache
  1111. * @sb: super block of file system to search
  1112. * @hashval: hash value (usually inode number) to search for
  1113. * @test: callback used for comparisons between inodes
  1114. * @data: opaque data pointer to pass to @test
  1115. *
  1116. * Search for the inode specified by @hashval and @data in the inode cache.
  1117. * If the inode is in the cache, the inode is returned with an incremented
  1118. * reference count.
  1119. *
  1120. * Note: I_NEW is not waited upon so you have to be very careful what you do
  1121. * with the returned inode. You probably should be using ilookup5() instead.
  1122. *
  1123. * Note2: @test is called with the inode_hash_lock held, so can't sleep.
  1124. */
  1125. struct inode *ilookup5_nowait(struct super_block *sb, unsigned long hashval,
  1126. int (*test)(struct inode *, void *), void *data)
  1127. {
  1128. struct hlist_head *head = inode_hashtable + hash(sb, hashval);
  1129. struct inode *inode;
  1130. spin_lock(&inode_hash_lock);
  1131. inode = find_inode(sb, head, test, data);
  1132. spin_unlock(&inode_hash_lock);
  1133. return inode;
  1134. }
  1135. EXPORT_SYMBOL(ilookup5_nowait);
  1136. /**
  1137. * ilookup5 - search for an inode in the inode cache
  1138. * @sb: super block of file system to search
  1139. * @hashval: hash value (usually inode number) to search for
  1140. * @test: callback used for comparisons between inodes
  1141. * @data: opaque data pointer to pass to @test
  1142. *
  1143. * Search for the inode specified by @hashval and @data in the inode cache,
  1144. * and if the inode is in the cache, return the inode with an incremented
  1145. * reference count. Waits on I_NEW before returning the inode.
  1146. * returned with an incremented reference count.
  1147. *
  1148. * This is a generalized version of ilookup() for file systems where the
  1149. * inode number is not sufficient for unique identification of an inode.
  1150. *
  1151. * Note: @test is called with the inode_hash_lock held, so can't sleep.
  1152. */
  1153. struct inode *ilookup5(struct super_block *sb, unsigned long hashval,
  1154. int (*test)(struct inode *, void *), void *data)
  1155. {
  1156. struct inode *inode;
  1157. again:
  1158. inode = ilookup5_nowait(sb, hashval, test, data);
  1159. if (inode) {
  1160. wait_on_inode(inode);
  1161. if (unlikely(inode_unhashed(inode))) {
  1162. iput(inode);
  1163. goto again;
  1164. }
  1165. }
  1166. return inode;
  1167. }
  1168. EXPORT_SYMBOL(ilookup5);
  1169. /**
  1170. * ilookup - search for an inode in the inode cache
  1171. * @sb: super block of file system to search
  1172. * @ino: inode number to search for
  1173. *
  1174. * Search for the inode @ino in the inode cache, and if the inode is in the
  1175. * cache, the inode is returned with an incremented reference count.
  1176. */
  1177. struct inode *ilookup(struct super_block *sb, unsigned long ino)
  1178. {
  1179. struct hlist_head *head = inode_hashtable + hash(sb, ino);
  1180. struct inode *inode;
  1181. again:
  1182. spin_lock(&inode_hash_lock);
  1183. inode = find_inode_fast(sb, head, ino);
  1184. spin_unlock(&inode_hash_lock);
  1185. if (inode) {
  1186. wait_on_inode(inode);
  1187. if (unlikely(inode_unhashed(inode))) {
  1188. iput(inode);
  1189. goto again;
  1190. }
  1191. }
  1192. return inode;
  1193. }
  1194. EXPORT_SYMBOL(ilookup);
  1195. /**
  1196. * find_inode_nowait - find an inode in the inode cache
  1197. * @sb: super block of file system to search
  1198. * @hashval: hash value (usually inode number) to search for
  1199. * @match: callback used for comparisons between inodes
  1200. * @data: opaque data pointer to pass to @match
  1201. *
  1202. * Search for the inode specified by @hashval and @data in the inode
  1203. * cache, where the helper function @match will return 0 if the inode
  1204. * does not match, 1 if the inode does match, and -1 if the search
  1205. * should be stopped. The @match function must be responsible for
  1206. * taking the i_lock spin_lock and checking i_state for an inode being
  1207. * freed or being initialized, and incrementing the reference count
  1208. * before returning 1. It also must not sleep, since it is called with
  1209. * the inode_hash_lock spinlock held.
  1210. *
  1211. * This is a even more generalized version of ilookup5() when the
  1212. * function must never block --- find_inode() can block in
  1213. * __wait_on_freeing_inode() --- or when the caller can not increment
  1214. * the reference count because the resulting iput() might cause an
  1215. * inode eviction. The tradeoff is that the @match funtion must be
  1216. * very carefully implemented.
  1217. */
  1218. struct inode *find_inode_nowait(struct super_block *sb,
  1219. unsigned long hashval,
  1220. int (*match)(struct inode *, unsigned long,
  1221. void *),
  1222. void *data)
  1223. {
  1224. struct hlist_head *head = inode_hashtable + hash(sb, hashval);
  1225. struct inode *inode, *ret_inode = NULL;
  1226. int mval;
  1227. spin_lock(&inode_hash_lock);
  1228. hlist_for_each_entry(inode, head, i_hash) {
  1229. if (inode->i_sb != sb)
  1230. continue;
  1231. mval = match(inode, hashval, data);
  1232. if (mval == 0)
  1233. continue;
  1234. if (mval == 1)
  1235. ret_inode = inode;
  1236. goto out;
  1237. }
  1238. out:
  1239. spin_unlock(&inode_hash_lock);
  1240. return ret_inode;
  1241. }
  1242. EXPORT_SYMBOL(find_inode_nowait);
  1243. int insert_inode_locked(struct inode *inode)
  1244. {
  1245. struct super_block *sb = inode->i_sb;
  1246. ino_t ino = inode->i_ino;
  1247. struct hlist_head *head = inode_hashtable + hash(sb, ino);
  1248. while (1) {
  1249. struct inode *old = NULL;
  1250. spin_lock(&inode_hash_lock);
  1251. hlist_for_each_entry(old, head, i_hash) {
  1252. if (old->i_ino != ino)
  1253. continue;
  1254. if (old->i_sb != sb)
  1255. continue;
  1256. spin_lock(&old->i_lock);
  1257. if (old->i_state & (I_FREEING|I_WILL_FREE)) {
  1258. spin_unlock(&old->i_lock);
  1259. continue;
  1260. }
  1261. break;
  1262. }
  1263. if (likely(!old)) {
  1264. spin_lock(&inode->i_lock);
  1265. inode->i_state |= I_NEW;
  1266. hlist_add_head(&inode->i_hash, head);
  1267. spin_unlock(&inode->i_lock);
  1268. spin_unlock(&inode_hash_lock);
  1269. return 0;
  1270. }
  1271. __iget(old);
  1272. spin_unlock(&old->i_lock);
  1273. spin_unlock(&inode_hash_lock);
  1274. wait_on_inode(old);
  1275. if (unlikely(!inode_unhashed(old))) {
  1276. iput(old);
  1277. return -EBUSY;
  1278. }
  1279. iput(old);
  1280. }
  1281. }
  1282. EXPORT_SYMBOL(insert_inode_locked);
  1283. int insert_inode_locked4(struct inode *inode, unsigned long hashval,
  1284. int (*test)(struct inode *, void *), void *data)
  1285. {
  1286. struct super_block *sb = inode->i_sb;
  1287. struct hlist_head *head = inode_hashtable + hash(sb, hashval);
  1288. while (1) {
  1289. struct inode *old = NULL;
  1290. spin_lock(&inode_hash_lock);
  1291. hlist_for_each_entry(old, head, i_hash) {
  1292. if (old->i_sb != sb)
  1293. continue;
  1294. if (!test(old, data))
  1295. continue;
  1296. spin_lock(&old->i_lock);
  1297. if (old->i_state & (I_FREEING|I_WILL_FREE)) {
  1298. spin_unlock(&old->i_lock);
  1299. continue;
  1300. }
  1301. break;
  1302. }
  1303. if (likely(!old)) {
  1304. spin_lock(&inode->i_lock);
  1305. inode->i_state |= I_NEW;
  1306. hlist_add_head(&inode->i_hash, head);
  1307. spin_unlock(&inode->i_lock);
  1308. spin_unlock(&inode_hash_lock);
  1309. return 0;
  1310. }
  1311. __iget(old);
  1312. spin_unlock(&old->i_lock);
  1313. spin_unlock(&inode_hash_lock);
  1314. wait_on_inode(old);
  1315. if (unlikely(!inode_unhashed(old))) {
  1316. iput(old);
  1317. return -EBUSY;
  1318. }
  1319. iput(old);
  1320. }
  1321. }
  1322. EXPORT_SYMBOL(insert_inode_locked4);
  1323. int generic_delete_inode(struct inode *inode)
  1324. {
  1325. return 1;
  1326. }
  1327. EXPORT_SYMBOL(generic_delete_inode);
  1328. /*
  1329. * Called when we're dropping the last reference
  1330. * to an inode.
  1331. *
  1332. * Call the FS "drop_inode()" function, defaulting to
  1333. * the legacy UNIX filesystem behaviour. If it tells
  1334. * us to evict inode, do so. Otherwise, retain inode
  1335. * in cache if fs is alive, sync and evict if fs is
  1336. * shutting down.
  1337. */
  1338. static void iput_final(struct inode *inode)
  1339. {
  1340. struct super_block *sb = inode->i_sb;
  1341. const struct super_operations *op = inode->i_sb->s_op;
  1342. int drop;
  1343. WARN_ON(inode->i_state & I_NEW);
  1344. if (op->drop_inode)
  1345. drop = op->drop_inode(inode);
  1346. else
  1347. drop = generic_drop_inode(inode);
  1348. if (!drop && (sb->s_flags & MS_ACTIVE)) {
  1349. inode->i_state |= I_REFERENCED;
  1350. inode_add_lru(inode);
  1351. spin_unlock(&inode->i_lock);
  1352. return;
  1353. }
  1354. if (!drop) {
  1355. inode->i_state |= I_WILL_FREE;
  1356. spin_unlock(&inode->i_lock);
  1357. write_inode_now(inode, 1);
  1358. spin_lock(&inode->i_lock);
  1359. WARN_ON(inode->i_state & I_NEW);
  1360. inode->i_state &= ~I_WILL_FREE;
  1361. }
  1362. inode->i_state |= I_FREEING;
  1363. if (!list_empty(&inode->i_lru))
  1364. inode_lru_list_del(inode);
  1365. spin_unlock(&inode->i_lock);
  1366. evict(inode);
  1367. }
  1368. /**
  1369. * iput - put an inode
  1370. * @inode: inode to put
  1371. *
  1372. * Puts an inode, dropping its usage count. If the inode use count hits
  1373. * zero, the inode is then freed and may also be destroyed.
  1374. *
  1375. * Consequently, iput() can sleep.
  1376. */
  1377. void iput(struct inode *inode)
  1378. {
  1379. if (!inode)
  1380. return;
  1381. BUG_ON(inode->i_state & I_CLEAR);
  1382. retry:
  1383. if (atomic_dec_and_lock(&inode->i_count, &inode->i_lock)) {
  1384. if (inode->i_nlink && (inode->i_state & I_DIRTY_TIME)) {
  1385. atomic_inc(&inode->i_count);
  1386. inode->i_state &= ~I_DIRTY_TIME;
  1387. spin_unlock(&inode->i_lock);
  1388. trace_writeback_lazytime_iput(inode);
  1389. mark_inode_dirty_sync(inode);
  1390. goto retry;
  1391. }
  1392. iput_final(inode);
  1393. }
  1394. }
  1395. EXPORT_SYMBOL(iput);
  1396. /**
  1397. * bmap - find a block number in a file
  1398. * @inode: inode of file
  1399. * @block: block to find
  1400. *
  1401. * Returns the block number on the device holding the inode that
  1402. * is the disk block number for the block of the file requested.
  1403. * That is, asked for block 4 of inode 1 the function will return the
  1404. * disk block relative to the disk start that holds that block of the
  1405. * file.
  1406. */
  1407. sector_t bmap(struct inode *inode, sector_t block)
  1408. {
  1409. sector_t res = 0;
  1410. if (inode->i_mapping->a_ops->bmap)
  1411. res = inode->i_mapping->a_ops->bmap(inode->i_mapping, block);
  1412. return res;
  1413. }
  1414. EXPORT_SYMBOL(bmap);
  1415. /*
  1416. * Update times in overlayed inode from underlying real inode
  1417. */
  1418. static void update_ovl_inode_times(struct dentry *dentry, struct inode *inode,
  1419. bool rcu)
  1420. {
  1421. if (!rcu) {
  1422. struct inode *realinode = d_real_inode(dentry);
  1423. if (unlikely(inode != realinode) &&
  1424. (!timespec_equal(&inode->i_mtime, &realinode->i_mtime) ||
  1425. !timespec_equal(&inode->i_ctime, &realinode->i_ctime))) {
  1426. inode->i_mtime = realinode->i_mtime;
  1427. inode->i_ctime = realinode->i_ctime;
  1428. }
  1429. }
  1430. }
  1431. /*
  1432. * With relative atime, only update atime if the previous atime is
  1433. * earlier than either the ctime or mtime or if at least a day has
  1434. * passed since the last atime update.
  1435. */
  1436. static int relatime_need_update(const struct path *path, struct inode *inode,
  1437. struct timespec now, bool rcu)
  1438. {
  1439. if (!(path->mnt->mnt_flags & MNT_RELATIME))
  1440. return 1;
  1441. update_ovl_inode_times(path->dentry, inode, rcu);
  1442. /*
  1443. * Is mtime younger than atime? If yes, update atime:
  1444. */
  1445. if (timespec_compare(&inode->i_mtime, &inode->i_atime) >= 0)
  1446. return 1;
  1447. /*
  1448. * Is ctime younger than atime? If yes, update atime:
  1449. */
  1450. if (timespec_compare(&inode->i_ctime, &inode->i_atime) >= 0)
  1451. return 1;
  1452. /*
  1453. * Is the previous atime value older than a day? If yes,
  1454. * update atime:
  1455. */
  1456. if ((long)(now.tv_sec - inode->i_atime.tv_sec) >= 24*60*60)
  1457. return 1;
  1458. /*
  1459. * Good, we can skip the atime update:
  1460. */
  1461. return 0;
  1462. }
  1463. int generic_update_time(struct inode *inode, struct timespec *time, int flags)
  1464. {
  1465. int iflags = I_DIRTY_TIME;
  1466. if (flags & S_ATIME)
  1467. inode->i_atime = *time;
  1468. if (flags & S_VERSION)
  1469. inode_inc_iversion(inode);
  1470. if (flags & S_CTIME)
  1471. inode->i_ctime = *time;
  1472. if (flags & S_MTIME)
  1473. inode->i_mtime = *time;
  1474. if (!(inode->i_sb->s_flags & MS_LAZYTIME) || (flags & S_VERSION))
  1475. iflags |= I_DIRTY_SYNC;
  1476. __mark_inode_dirty(inode, iflags);
  1477. return 0;
  1478. }
  1479. EXPORT_SYMBOL(generic_update_time);
  1480. /*
  1481. * This does the actual work of updating an inodes time or version. Must have
  1482. * had called mnt_want_write() before calling this.
  1483. */
  1484. static int update_time(struct inode *inode, struct timespec *time, int flags)
  1485. {
  1486. int (*update_time)(struct inode *, struct timespec *, int);
  1487. update_time = inode->i_op->update_time ? inode->i_op->update_time :
  1488. generic_update_time;
  1489. return update_time(inode, time, flags);
  1490. }
  1491. /**
  1492. * touch_atime - update the access time
  1493. * @path: the &struct path to update
  1494. * @inode: inode to update
  1495. *
  1496. * Update the accessed time on an inode and mark it for writeback.
  1497. * This function automatically handles read only file systems and media,
  1498. * as well as the "noatime" flag and inode specific "noatime" markers.
  1499. */
  1500. bool __atime_needs_update(const struct path *path, struct inode *inode,
  1501. bool rcu)
  1502. {
  1503. struct vfsmount *mnt = path->mnt;
  1504. struct timespec now;
  1505. if (inode->i_flags & S_NOATIME)
  1506. return false;
  1507. /* Atime updates will likely cause i_uid and i_gid to be written
  1508. * back improprely if their true value is unknown to the vfs.
  1509. */
  1510. if (HAS_UNMAPPED_ID(inode))
  1511. return false;
  1512. if (IS_NOATIME(inode))
  1513. return false;
  1514. if ((inode->i_sb->s_flags & MS_NODIRATIME) && S_ISDIR(inode->i_mode))
  1515. return false;
  1516. if (mnt->mnt_flags & MNT_NOATIME)
  1517. return false;
  1518. if ((mnt->mnt_flags & MNT_NODIRATIME) && S_ISDIR(inode->i_mode))
  1519. return false;
  1520. now = current_time(inode);
  1521. if (!relatime_need_update(path, inode, now, rcu))
  1522. return false;
  1523. if (timespec_equal(&inode->i_atime, &now))
  1524. return false;
  1525. return true;
  1526. }
  1527. void touch_atime(const struct path *path)
  1528. {
  1529. struct vfsmount *mnt = path->mnt;
  1530. struct inode *inode = d_inode(path->dentry);
  1531. struct timespec now;
  1532. if (!__atime_needs_update(path, inode, false))
  1533. return;
  1534. if (!sb_start_write_trylock(inode->i_sb))
  1535. return;
  1536. if (__mnt_want_write(mnt) != 0)
  1537. goto skip_update;
  1538. /*
  1539. * File systems can error out when updating inodes if they need to
  1540. * allocate new space to modify an inode (such is the case for
  1541. * Btrfs), but since we touch atime while walking down the path we
  1542. * really don't care if we failed to update the atime of the file,
  1543. * so just ignore the return value.
  1544. * We may also fail on filesystems that have the ability to make parts
  1545. * of the fs read only, e.g. subvolumes in Btrfs.
  1546. */
  1547. now = current_time(inode);
  1548. update_time(inode, &now, S_ATIME);
  1549. __mnt_drop_write(mnt);
  1550. skip_update:
  1551. sb_end_write(inode->i_sb);
  1552. }
  1553. EXPORT_SYMBOL(touch_atime);
  1554. /*
  1555. * The logic we want is
  1556. *
  1557. * if suid or (sgid and xgrp)
  1558. * remove privs
  1559. */
  1560. int should_remove_suid(struct dentry *dentry)
  1561. {
  1562. umode_t mode = d_inode(dentry)->i_mode;
  1563. int kill = 0;
  1564. /* suid always must be killed */
  1565. if (unlikely(mode & S_ISUID))
  1566. kill = ATTR_KILL_SUID;
  1567. /*
  1568. * sgid without any exec bits is just a mandatory locking mark; leave
  1569. * it alone. If some exec bits are set, it's a real sgid; kill it.
  1570. */
  1571. if (unlikely((mode & S_ISGID) && (mode & S_IXGRP)))
  1572. kill |= ATTR_KILL_SGID;
  1573. if (unlikely(kill && !capable(CAP_FSETID) && S_ISREG(mode)))
  1574. return kill;
  1575. return 0;
  1576. }
  1577. EXPORT_SYMBOL(should_remove_suid);
  1578. /*
  1579. * Return mask of changes for notify_change() that need to be done as a
  1580. * response to write or truncate. Return 0 if nothing has to be changed.
  1581. * Negative value on error (change should be denied).
  1582. */
  1583. int dentry_needs_remove_privs(struct dentry *dentry)
  1584. {
  1585. struct inode *inode = d_inode(dentry);
  1586. int mask = 0;
  1587. int ret;
  1588. if (IS_NOSEC(inode))
  1589. return 0;
  1590. mask = should_remove_suid(dentry);
  1591. ret = security_inode_need_killpriv(dentry);
  1592. if (ret < 0)
  1593. return ret;
  1594. if (ret)
  1595. mask |= ATTR_KILL_PRIV;
  1596. return mask;
  1597. }
  1598. static int __remove_privs(struct dentry *dentry, int kill)
  1599. {
  1600. struct iattr newattrs;
  1601. newattrs.ia_valid = ATTR_FORCE | kill;
  1602. /*
  1603. * Note we call this on write, so notify_change will not
  1604. * encounter any conflicting delegations:
  1605. */
  1606. return notify_change(dentry, &newattrs, NULL);
  1607. }
  1608. /*
  1609. * Remove special file priviledges (suid, capabilities) when file is written
  1610. * to or truncated.
  1611. */
  1612. int file_remove_privs(struct file *file)
  1613. {
  1614. struct dentry *dentry = file_dentry(file);
  1615. struct inode *inode = file_inode(file);
  1616. int kill;
  1617. int error = 0;
  1618. /* Fast path for nothing security related */
  1619. if (IS_NOSEC(inode))
  1620. return 0;
  1621. kill = dentry_needs_remove_privs(dentry);
  1622. if (kill < 0)
  1623. return kill;
  1624. if (kill)
  1625. error = __remove_privs(dentry, kill);
  1626. if (!error)
  1627. inode_has_no_xattr(inode);
  1628. return error;
  1629. }
  1630. EXPORT_SYMBOL(file_remove_privs);
  1631. /**
  1632. * file_update_time - update mtime and ctime time
  1633. * @file: file accessed
  1634. *
  1635. * Update the mtime and ctime members of an inode and mark the inode
  1636. * for writeback. Note that this function is meant exclusively for
  1637. * usage in the file write path of filesystems, and filesystems may
  1638. * choose to explicitly ignore update via this function with the
  1639. * S_NOCMTIME inode flag, e.g. for network filesystem where these
  1640. * timestamps are handled by the server. This can return an error for
  1641. * file systems who need to allocate space in order to update an inode.
  1642. */
  1643. int file_update_time(struct file *file)
  1644. {
  1645. struct inode *inode = file_inode(file);
  1646. struct timespec now;
  1647. int sync_it = 0;
  1648. int ret;
  1649. /* First try to exhaust all avenues to not sync */
  1650. if (IS_NOCMTIME(inode))
  1651. return 0;
  1652. now = current_time(inode);
  1653. if (!timespec_equal(&inode->i_mtime, &now))
  1654. sync_it = S_MTIME;
  1655. if (!timespec_equal(&inode->i_ctime, &now))
  1656. sync_it |= S_CTIME;
  1657. if (IS_I_VERSION(inode))
  1658. sync_it |= S_VERSION;
  1659. if (!sync_it)
  1660. return 0;
  1661. /* Finally allowed to write? Takes lock. */
  1662. if (__mnt_want_write_file(file))
  1663. return 0;
  1664. ret = update_time(inode, &now, sync_it);
  1665. __mnt_drop_write_file(file);
  1666. return ret;
  1667. }
  1668. EXPORT_SYMBOL(file_update_time);
  1669. int inode_needs_sync(struct inode *inode)
  1670. {
  1671. if (IS_SYNC(inode))
  1672. return 1;
  1673. if (S_ISDIR(inode->i_mode) && IS_DIRSYNC(inode))
  1674. return 1;
  1675. return 0;
  1676. }
  1677. EXPORT_SYMBOL(inode_needs_sync);
  1678. /*
  1679. * If we try to find an inode in the inode hash while it is being
  1680. * deleted, we have to wait until the filesystem completes its
  1681. * deletion before reporting that it isn't found. This function waits
  1682. * until the deletion _might_ have completed. Callers are responsible
  1683. * to recheck inode state.
  1684. *
  1685. * It doesn't matter if I_NEW is not set initially, a call to
  1686. * wake_up_bit(&inode->i_state, __I_NEW) after removing from the hash list
  1687. * will DTRT.
  1688. */
  1689. static void __wait_on_freeing_inode(struct inode *inode)
  1690. {
  1691. wait_queue_head_t *wq;
  1692. DEFINE_WAIT_BIT(wait, &inode->i_state, __I_NEW);
  1693. wq = bit_waitqueue(&inode->i_state, __I_NEW);
  1694. prepare_to_wait(wq, &wait.wait, TASK_UNINTERRUPTIBLE);
  1695. spin_unlock(&inode->i_lock);
  1696. spin_unlock(&inode_hash_lock);
  1697. schedule();
  1698. finish_wait(wq, &wait.wait);
  1699. spin_lock(&inode_hash_lock);
  1700. }
  1701. static __initdata unsigned long ihash_entries;
  1702. static int __init set_ihash_entries(char *str)
  1703. {
  1704. if (!str)
  1705. return 0;
  1706. ihash_entries = simple_strtoul(str, &str, 0);
  1707. return 1;
  1708. }
  1709. __setup("ihash_entries=", set_ihash_entries);
  1710. /*
  1711. * Initialize the waitqueues and inode hash table.
  1712. */
  1713. void __init inode_init_early(void)
  1714. {
  1715. unsigned int loop;
  1716. /* If hashes are distributed across NUMA nodes, defer
  1717. * hash allocation until vmalloc space is available.
  1718. */
  1719. if (hashdist)
  1720. return;
  1721. inode_hashtable =
  1722. alloc_large_system_hash("Inode-cache",
  1723. sizeof(struct hlist_head),
  1724. ihash_entries,
  1725. 14,
  1726. HASH_EARLY,
  1727. &i_hash_shift,
  1728. &i_hash_mask,
  1729. 0,
  1730. 0);
  1731. for (loop = 0; loop < (1U << i_hash_shift); loop++)
  1732. INIT_HLIST_HEAD(&inode_hashtable[loop]);
  1733. }
  1734. void __init inode_init(void)
  1735. {
  1736. unsigned int loop;
  1737. /* inode slab cache */
  1738. inode_cachep = kmem_cache_create("inode_cache",
  1739. sizeof(struct inode),
  1740. 0,
  1741. (SLAB_RECLAIM_ACCOUNT|SLAB_PANIC|
  1742. SLAB_MEM_SPREAD|SLAB_ACCOUNT),
  1743. init_once);
  1744. /* Hash may have been set up in inode_init_early */
  1745. if (!hashdist)
  1746. return;
  1747. inode_hashtable =
  1748. alloc_large_system_hash("Inode-cache",
  1749. sizeof(struct hlist_head),
  1750. ihash_entries,
  1751. 14,
  1752. 0,
  1753. &i_hash_shift,
  1754. &i_hash_mask,
  1755. 0,
  1756. 0);
  1757. for (loop = 0; loop < (1U << i_hash_shift); loop++)
  1758. INIT_HLIST_HEAD(&inode_hashtable[loop]);
  1759. }
  1760. void init_special_inode(struct inode *inode, umode_t mode, dev_t rdev)
  1761. {
  1762. inode->i_mode = mode;
  1763. if (S_ISCHR(mode)) {
  1764. inode->i_fop = &def_chr_fops;
  1765. inode->i_rdev = rdev;
  1766. } else if (S_ISBLK(mode)) {
  1767. inode->i_fop = &def_blk_fops;
  1768. inode->i_rdev = rdev;
  1769. } else if (S_ISFIFO(mode))
  1770. inode->i_fop = &pipefifo_fops;
  1771. else if (S_ISSOCK(mode))
  1772. ; /* leave it no_open_fops */
  1773. else
  1774. printk(KERN_DEBUG "init_special_inode: bogus i_mode (%o) for"
  1775. " inode %s:%lu\n", mode, inode->i_sb->s_id,
  1776. inode->i_ino);
  1777. }
  1778. EXPORT_SYMBOL(init_special_inode);
  1779. /**
  1780. * inode_init_owner - Init uid,gid,mode for new inode according to posix standards
  1781. * @inode: New inode
  1782. * @dir: Directory inode
  1783. * @mode: mode of the new inode
  1784. */
  1785. void inode_init_owner(struct inode *inode, const struct inode *dir,
  1786. umode_t mode)
  1787. {
  1788. inode->i_uid = current_fsuid();
  1789. if (dir && dir->i_mode & S_ISGID) {
  1790. inode->i_gid = dir->i_gid;
  1791. if (S_ISDIR(mode))
  1792. mode |= S_ISGID;
  1793. } else
  1794. inode->i_gid = current_fsgid();
  1795. inode->i_mode = mode;
  1796. }
  1797. EXPORT_SYMBOL(inode_init_owner);
  1798. /**
  1799. * inode_owner_or_capable - check current task permissions to inode
  1800. * @inode: inode being checked
  1801. *
  1802. * Return true if current either has CAP_FOWNER in a namespace with the
  1803. * inode owner uid mapped, or owns the file.
  1804. */
  1805. bool inode_owner_or_capable(const struct inode *inode)
  1806. {
  1807. struct user_namespace *ns;
  1808. if (uid_eq(current_fsuid(), inode->i_uid))
  1809. return true;
  1810. ns = current_user_ns();
  1811. if (ns_capable(ns, CAP_FOWNER) && kuid_has_mapping(ns, inode->i_uid))
  1812. return true;
  1813. return false;
  1814. }
  1815. EXPORT_SYMBOL(inode_owner_or_capable);
  1816. /*
  1817. * Direct i/o helper functions
  1818. */
  1819. static void __inode_dio_wait(struct inode *inode)
  1820. {
  1821. wait_queue_head_t *wq = bit_waitqueue(&inode->i_state, __I_DIO_WAKEUP);
  1822. DEFINE_WAIT_BIT(q, &inode->i_state, __I_DIO_WAKEUP);
  1823. do {
  1824. prepare_to_wait(wq, &q.wait, TASK_UNINTERRUPTIBLE);
  1825. if (atomic_read(&inode->i_dio_count))
  1826. schedule();
  1827. } while (atomic_read(&inode->i_dio_count));
  1828. finish_wait(wq, &q.wait);
  1829. }
  1830. /**
  1831. * inode_dio_wait - wait for outstanding DIO requests to finish
  1832. * @inode: inode to wait for
  1833. *
  1834. * Waits for all pending direct I/O requests to finish so that we can
  1835. * proceed with a truncate or equivalent operation.
  1836. *
  1837. * Must be called under a lock that serializes taking new references
  1838. * to i_dio_count, usually by inode->i_mutex.
  1839. */
  1840. void inode_dio_wait(struct inode *inode)
  1841. {
  1842. if (atomic_read(&inode->i_dio_count))
  1843. __inode_dio_wait(inode);
  1844. }
  1845. EXPORT_SYMBOL(inode_dio_wait);
  1846. /*
  1847. * inode_set_flags - atomically set some inode flags
  1848. *
  1849. * Note: the caller should be holding i_mutex, or else be sure that
  1850. * they have exclusive access to the inode structure (i.e., while the
  1851. * inode is being instantiated). The reason for the cmpxchg() loop
  1852. * --- which wouldn't be necessary if all code paths which modify
  1853. * i_flags actually followed this rule, is that there is at least one
  1854. * code path which doesn't today so we use cmpxchg() out of an abundance
  1855. * of caution.
  1856. *
  1857. * In the long run, i_mutex is overkill, and we should probably look
  1858. * at using the i_lock spinlock to protect i_flags, and then make sure
  1859. * it is so documented in include/linux/fs.h and that all code follows
  1860. * the locking convention!!
  1861. */
  1862. void inode_set_flags(struct inode *inode, unsigned int flags,
  1863. unsigned int mask)
  1864. {
  1865. unsigned int old_flags, new_flags;
  1866. WARN_ON_ONCE(flags & ~mask);
  1867. do {
  1868. old_flags = ACCESS_ONCE(inode->i_flags);
  1869. new_flags = (old_flags & ~mask) | flags;
  1870. } while (unlikely(cmpxchg(&inode->i_flags, old_flags,
  1871. new_flags) != old_flags));
  1872. }
  1873. EXPORT_SYMBOL(inode_set_flags);
  1874. void inode_nohighmem(struct inode *inode)
  1875. {
  1876. mapping_set_gfp_mask(inode->i_mapping, GFP_USER);
  1877. }
  1878. EXPORT_SYMBOL(inode_nohighmem);
  1879. /**
  1880. * current_time - Return FS time
  1881. * @inode: inode.
  1882. *
  1883. * Return the current time truncated to the time granularity supported by
  1884. * the fs.
  1885. *
  1886. * Note that inode and inode->sb cannot be NULL.
  1887. * Otherwise, the function warns and returns time without truncation.
  1888. */
  1889. struct timespec current_time(struct inode *inode)
  1890. {
  1891. struct timespec now = current_kernel_time();
  1892. if (unlikely(!inode->i_sb)) {
  1893. WARN(1, "current_time() called with uninitialized super_block in the inode");
  1894. return now;
  1895. }
  1896. return timespec_trunc(now, inode->i_sb->s_time_gran);
  1897. }
  1898. EXPORT_SYMBOL(current_time);