inode.c 43 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670
  1. /*
  2. * (C) 1997 Linus Torvalds
  3. * (C) 1999 Andrea Arcangeli <andrea@suse.de> (dynamic inode allocation)
  4. */
  5. #include <linux/fs.h>
  6. #include <linux/mm.h>
  7. #include <linux/dcache.h>
  8. #include <linux/init.h>
  9. #include <linux/slab.h>
  10. #include <linux/writeback.h>
  11. #include <linux/module.h>
  12. #include <linux/backing-dev.h>
  13. #include <linux/wait.h>
  14. #include <linux/rwsem.h>
  15. #include <linux/hash.h>
  16. #include <linux/swap.h>
  17. #include <linux/security.h>
  18. #include <linux/pagemap.h>
  19. #include <linux/cdev.h>
  20. #include <linux/bootmem.h>
  21. #include <linux/fsnotify.h>
  22. #include <linux/mount.h>
  23. #include <linux/async.h>
  24. #include <linux/posix_acl.h>
  25. #include <linux/prefetch.h>
  26. #include <linux/ima.h>
  27. #include <linux/cred.h>
  28. #include <linux/buffer_head.h> /* for inode_has_buffers */
  29. #include "internal.h"
  30. /*
  31. * Inode locking rules:
  32. *
  33. * inode->i_lock protects:
  34. * inode->i_state, inode->i_hash, __iget()
  35. * inode->i_sb->s_inode_lru_lock protects:
  36. * inode->i_sb->s_inode_lru, inode->i_lru
  37. * inode_sb_list_lock protects:
  38. * sb->s_inodes, inode->i_sb_list
  39. * bdi->wb.list_lock protects:
  40. * bdi->wb.b_{dirty,io,more_io}, inode->i_wb_list
  41. * inode_hash_lock protects:
  42. * inode_hashtable, inode->i_hash
  43. *
  44. * Lock ordering:
  45. *
  46. * inode_sb_list_lock
  47. * inode->i_lock
  48. * inode->i_sb->s_inode_lru_lock
  49. *
  50. * bdi->wb.list_lock
  51. * inode->i_lock
  52. *
  53. * inode_hash_lock
  54. * inode_sb_list_lock
  55. * inode->i_lock
  56. *
  57. * iunique_lock
  58. * inode_hash_lock
  59. */
  60. static unsigned int i_hash_mask __read_mostly;
  61. static unsigned int i_hash_shift __read_mostly;
  62. static struct hlist_head *inode_hashtable __read_mostly;
  63. static __cacheline_aligned_in_smp DEFINE_SPINLOCK(inode_hash_lock);
  64. __cacheline_aligned_in_smp DEFINE_SPINLOCK(inode_sb_list_lock);
  65. /*
  66. * Empty aops. Can be used for the cases where the user does not
  67. * define any of the address_space operations.
  68. */
  69. const struct address_space_operations empty_aops = {
  70. };
  71. EXPORT_SYMBOL(empty_aops);
  72. /*
  73. * Statistics gathering..
  74. */
  75. struct inodes_stat_t inodes_stat;
  76. static DEFINE_PER_CPU(unsigned int, nr_inodes);
  77. static DEFINE_PER_CPU(unsigned int, nr_unused);
  78. static struct kmem_cache *inode_cachep __read_mostly;
  79. static int get_nr_inodes(void)
  80. {
  81. int i;
  82. int sum = 0;
  83. for_each_possible_cpu(i)
  84. sum += per_cpu(nr_inodes, i);
  85. return sum < 0 ? 0 : sum;
  86. }
  87. static inline int get_nr_inodes_unused(void)
  88. {
  89. int i;
  90. int sum = 0;
  91. for_each_possible_cpu(i)
  92. sum += per_cpu(nr_unused, i);
  93. return sum < 0 ? 0 : sum;
  94. }
  95. int get_nr_dirty_inodes(void)
  96. {
  97. /* not actually dirty inodes, but a wild approximation */
  98. int nr_dirty = get_nr_inodes() - get_nr_inodes_unused();
  99. return nr_dirty > 0 ? nr_dirty : 0;
  100. }
  101. /*
  102. * Handle nr_inode sysctl
  103. */
  104. #ifdef CONFIG_SYSCTL
  105. int proc_nr_inodes(ctl_table *table, int write,
  106. void __user *buffer, size_t *lenp, loff_t *ppos)
  107. {
  108. inodes_stat.nr_inodes = get_nr_inodes();
  109. inodes_stat.nr_unused = get_nr_inodes_unused();
  110. return proc_dointvec(table, write, buffer, lenp, ppos);
  111. }
  112. #endif
  113. /**
  114. * inode_init_always - perform inode structure intialisation
  115. * @sb: superblock inode belongs to
  116. * @inode: inode to initialise
  117. *
  118. * These are initializations that need to be done on every inode
  119. * allocation as the fields are not initialised by slab allocation.
  120. */
  121. int inode_init_always(struct super_block *sb, struct inode *inode)
  122. {
  123. static const struct inode_operations empty_iops;
  124. static const struct file_operations empty_fops;
  125. struct address_space *const mapping = &inode->i_data;
  126. inode->i_sb = sb;
  127. inode->i_blkbits = sb->s_blocksize_bits;
  128. inode->i_flags = 0;
  129. atomic_set(&inode->i_count, 1);
  130. inode->i_op = &empty_iops;
  131. inode->i_fop = &empty_fops;
  132. inode->i_nlink = 1;
  133. inode->i_uid = 0;
  134. inode->i_gid = 0;
  135. atomic_set(&inode->i_writecount, 0);
  136. inode->i_size = 0;
  137. inode->i_blocks = 0;
  138. inode->i_bytes = 0;
  139. inode->i_generation = 0;
  140. #ifdef CONFIG_QUOTA
  141. memset(&inode->i_dquot, 0, sizeof(inode->i_dquot));
  142. #endif
  143. inode->i_pipe = NULL;
  144. inode->i_bdev = NULL;
  145. inode->i_cdev = NULL;
  146. inode->i_rdev = 0;
  147. inode->dirtied_when = 0;
  148. if (security_inode_alloc(inode))
  149. goto out;
  150. spin_lock_init(&inode->i_lock);
  151. lockdep_set_class(&inode->i_lock, &sb->s_type->i_lock_key);
  152. mutex_init(&inode->i_mutex);
  153. lockdep_set_class(&inode->i_mutex, &sb->s_type->i_mutex_key);
  154. atomic_set(&inode->i_dio_count, 0);
  155. mapping->a_ops = &empty_aops;
  156. mapping->host = inode;
  157. mapping->flags = 0;
  158. mapping_set_gfp_mask(mapping, GFP_HIGHUSER_MOVABLE);
  159. mapping->assoc_mapping = NULL;
  160. mapping->backing_dev_info = &default_backing_dev_info;
  161. mapping->writeback_index = 0;
  162. /*
  163. * If the block_device provides a backing_dev_info for client
  164. * inodes then use that. Otherwise the inode share the bdev's
  165. * backing_dev_info.
  166. */
  167. if (sb->s_bdev) {
  168. struct backing_dev_info *bdi;
  169. bdi = sb->s_bdev->bd_inode->i_mapping->backing_dev_info;
  170. mapping->backing_dev_info = bdi;
  171. }
  172. inode->i_private = NULL;
  173. inode->i_mapping = mapping;
  174. #ifdef CONFIG_FS_POSIX_ACL
  175. inode->i_acl = inode->i_default_acl = ACL_NOT_CACHED;
  176. #endif
  177. #ifdef CONFIG_FSNOTIFY
  178. inode->i_fsnotify_mask = 0;
  179. #endif
  180. this_cpu_inc(nr_inodes);
  181. return 0;
  182. out:
  183. return -ENOMEM;
  184. }
  185. EXPORT_SYMBOL(inode_init_always);
  186. static struct inode *alloc_inode(struct super_block *sb)
  187. {
  188. struct inode *inode;
  189. if (sb->s_op->alloc_inode)
  190. inode = sb->s_op->alloc_inode(sb);
  191. else
  192. inode = kmem_cache_alloc(inode_cachep, GFP_KERNEL);
  193. if (!inode)
  194. return NULL;
  195. if (unlikely(inode_init_always(sb, inode))) {
  196. if (inode->i_sb->s_op->destroy_inode)
  197. inode->i_sb->s_op->destroy_inode(inode);
  198. else
  199. kmem_cache_free(inode_cachep, inode);
  200. return NULL;
  201. }
  202. return inode;
  203. }
  204. void free_inode_nonrcu(struct inode *inode)
  205. {
  206. kmem_cache_free(inode_cachep, inode);
  207. }
  208. EXPORT_SYMBOL(free_inode_nonrcu);
  209. void __destroy_inode(struct inode *inode)
  210. {
  211. BUG_ON(inode_has_buffers(inode));
  212. security_inode_free(inode);
  213. fsnotify_inode_delete(inode);
  214. #ifdef CONFIG_FS_POSIX_ACL
  215. if (inode->i_acl && inode->i_acl != ACL_NOT_CACHED)
  216. posix_acl_release(inode->i_acl);
  217. if (inode->i_default_acl && inode->i_default_acl != ACL_NOT_CACHED)
  218. posix_acl_release(inode->i_default_acl);
  219. #endif
  220. this_cpu_dec(nr_inodes);
  221. }
  222. EXPORT_SYMBOL(__destroy_inode);
  223. static void i_callback(struct rcu_head *head)
  224. {
  225. struct inode *inode = container_of(head, struct inode, i_rcu);
  226. INIT_LIST_HEAD(&inode->i_dentry);
  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. void address_space_init_once(struct address_space *mapping)
  239. {
  240. memset(mapping, 0, sizeof(*mapping));
  241. INIT_RADIX_TREE(&mapping->page_tree, GFP_ATOMIC);
  242. spin_lock_init(&mapping->tree_lock);
  243. mutex_init(&mapping->i_mmap_mutex);
  244. INIT_LIST_HEAD(&mapping->private_list);
  245. spin_lock_init(&mapping->private_lock);
  246. INIT_RAW_PRIO_TREE_ROOT(&mapping->i_mmap);
  247. INIT_LIST_HEAD(&mapping->i_mmap_nonlinear);
  248. }
  249. EXPORT_SYMBOL(address_space_init_once);
  250. /*
  251. * These are initializations that only need to be done
  252. * once, because the fields are idempotent across use
  253. * of the inode, so let the slab aware of that.
  254. */
  255. void inode_init_once(struct inode *inode)
  256. {
  257. memset(inode, 0, sizeof(*inode));
  258. INIT_HLIST_NODE(&inode->i_hash);
  259. INIT_LIST_HEAD(&inode->i_dentry);
  260. INIT_LIST_HEAD(&inode->i_devices);
  261. INIT_LIST_HEAD(&inode->i_wb_list);
  262. INIT_LIST_HEAD(&inode->i_lru);
  263. address_space_init_once(&inode->i_data);
  264. i_size_ordered_init(inode);
  265. #ifdef CONFIG_FSNOTIFY
  266. INIT_HLIST_HEAD(&inode->i_fsnotify_marks);
  267. #endif
  268. }
  269. EXPORT_SYMBOL(inode_init_once);
  270. static void init_once(void *foo)
  271. {
  272. struct inode *inode = (struct inode *) foo;
  273. inode_init_once(inode);
  274. }
  275. /*
  276. * inode->i_lock must be held
  277. */
  278. void __iget(struct inode *inode)
  279. {
  280. atomic_inc(&inode->i_count);
  281. }
  282. /*
  283. * get additional reference to inode; caller must already hold one.
  284. */
  285. void ihold(struct inode *inode)
  286. {
  287. WARN_ON(atomic_inc_return(&inode->i_count) < 2);
  288. }
  289. EXPORT_SYMBOL(ihold);
  290. static void inode_lru_list_add(struct inode *inode)
  291. {
  292. spin_lock(&inode->i_sb->s_inode_lru_lock);
  293. if (list_empty(&inode->i_lru)) {
  294. list_add(&inode->i_lru, &inode->i_sb->s_inode_lru);
  295. inode->i_sb->s_nr_inodes_unused++;
  296. this_cpu_inc(nr_unused);
  297. }
  298. spin_unlock(&inode->i_sb->s_inode_lru_lock);
  299. }
  300. static void inode_lru_list_del(struct inode *inode)
  301. {
  302. spin_lock(&inode->i_sb->s_inode_lru_lock);
  303. if (!list_empty(&inode->i_lru)) {
  304. list_del_init(&inode->i_lru);
  305. inode->i_sb->s_nr_inodes_unused--;
  306. this_cpu_dec(nr_unused);
  307. }
  308. spin_unlock(&inode->i_sb->s_inode_lru_lock);
  309. }
  310. /**
  311. * inode_sb_list_add - add inode to the superblock list of inodes
  312. * @inode: inode to add
  313. */
  314. void inode_sb_list_add(struct inode *inode)
  315. {
  316. spin_lock(&inode_sb_list_lock);
  317. list_add(&inode->i_sb_list, &inode->i_sb->s_inodes);
  318. spin_unlock(&inode_sb_list_lock);
  319. }
  320. EXPORT_SYMBOL_GPL(inode_sb_list_add);
  321. static inline void inode_sb_list_del(struct inode *inode)
  322. {
  323. if (!list_empty(&inode->i_sb_list)) {
  324. spin_lock(&inode_sb_list_lock);
  325. list_del_init(&inode->i_sb_list);
  326. spin_unlock(&inode_sb_list_lock);
  327. }
  328. }
  329. static unsigned long hash(struct super_block *sb, unsigned long hashval)
  330. {
  331. unsigned long tmp;
  332. tmp = (hashval * (unsigned long)sb) ^ (GOLDEN_RATIO_PRIME + hashval) /
  333. L1_CACHE_BYTES;
  334. tmp = tmp ^ ((tmp ^ GOLDEN_RATIO_PRIME) >> i_hash_shift);
  335. return tmp & i_hash_mask;
  336. }
  337. /**
  338. * __insert_inode_hash - hash an inode
  339. * @inode: unhashed inode
  340. * @hashval: unsigned long value used to locate this object in the
  341. * inode_hashtable.
  342. *
  343. * Add an inode to the inode hash for this superblock.
  344. */
  345. void __insert_inode_hash(struct inode *inode, unsigned long hashval)
  346. {
  347. struct hlist_head *b = inode_hashtable + hash(inode->i_sb, hashval);
  348. spin_lock(&inode_hash_lock);
  349. spin_lock(&inode->i_lock);
  350. hlist_add_head(&inode->i_hash, b);
  351. spin_unlock(&inode->i_lock);
  352. spin_unlock(&inode_hash_lock);
  353. }
  354. EXPORT_SYMBOL(__insert_inode_hash);
  355. /**
  356. * remove_inode_hash - remove an inode from the hash
  357. * @inode: inode to unhash
  358. *
  359. * Remove an inode from the superblock.
  360. */
  361. void remove_inode_hash(struct inode *inode)
  362. {
  363. spin_lock(&inode_hash_lock);
  364. spin_lock(&inode->i_lock);
  365. hlist_del_init(&inode->i_hash);
  366. spin_unlock(&inode->i_lock);
  367. spin_unlock(&inode_hash_lock);
  368. }
  369. EXPORT_SYMBOL(remove_inode_hash);
  370. void end_writeback(struct inode *inode)
  371. {
  372. might_sleep();
  373. /*
  374. * We have to cycle tree_lock here because reclaim can be still in the
  375. * process of removing the last page (in __delete_from_page_cache())
  376. * and we must not free mapping under it.
  377. */
  378. spin_lock_irq(&inode->i_data.tree_lock);
  379. BUG_ON(inode->i_data.nrpages);
  380. spin_unlock_irq(&inode->i_data.tree_lock);
  381. BUG_ON(!list_empty(&inode->i_data.private_list));
  382. BUG_ON(!(inode->i_state & I_FREEING));
  383. BUG_ON(inode->i_state & I_CLEAR);
  384. inode_sync_wait(inode);
  385. /* don't need i_lock here, no concurrent mods to i_state */
  386. inode->i_state = I_FREEING | I_CLEAR;
  387. }
  388. EXPORT_SYMBOL(end_writeback);
  389. /*
  390. * Free the inode passed in, removing it from the lists it is still connected
  391. * to. We remove any pages still attached to the inode and wait for any IO that
  392. * is still in progress before finally destroying the inode.
  393. *
  394. * An inode must already be marked I_FREEING so that we avoid the inode being
  395. * moved back onto lists if we race with other code that manipulates the lists
  396. * (e.g. writeback_single_inode). The caller is responsible for setting this.
  397. *
  398. * An inode must already be removed from the LRU list before being evicted from
  399. * the cache. This should occur atomically with setting the I_FREEING state
  400. * flag, so no inodes here should ever be on the LRU when being evicted.
  401. */
  402. static void evict(struct inode *inode)
  403. {
  404. const struct super_operations *op = inode->i_sb->s_op;
  405. BUG_ON(!(inode->i_state & I_FREEING));
  406. BUG_ON(!list_empty(&inode->i_lru));
  407. inode_wb_list_del(inode);
  408. inode_sb_list_del(inode);
  409. if (op->evict_inode) {
  410. op->evict_inode(inode);
  411. } else {
  412. if (inode->i_data.nrpages)
  413. truncate_inode_pages(&inode->i_data, 0);
  414. end_writeback(inode);
  415. }
  416. if (S_ISBLK(inode->i_mode) && inode->i_bdev)
  417. bd_forget(inode);
  418. if (S_ISCHR(inode->i_mode) && inode->i_cdev)
  419. cd_forget(inode);
  420. remove_inode_hash(inode);
  421. spin_lock(&inode->i_lock);
  422. wake_up_bit(&inode->i_state, __I_NEW);
  423. BUG_ON(inode->i_state != (I_FREEING | I_CLEAR));
  424. spin_unlock(&inode->i_lock);
  425. destroy_inode(inode);
  426. }
  427. /*
  428. * dispose_list - dispose of the contents of a local list
  429. * @head: the head of the list to free
  430. *
  431. * Dispose-list gets a local list with local inodes in it, so it doesn't
  432. * need to worry about list corruption and SMP locks.
  433. */
  434. static void dispose_list(struct list_head *head)
  435. {
  436. while (!list_empty(head)) {
  437. struct inode *inode;
  438. inode = list_first_entry(head, struct inode, i_lru);
  439. list_del_init(&inode->i_lru);
  440. evict(inode);
  441. }
  442. }
  443. /**
  444. * evict_inodes - evict all evictable inodes for a superblock
  445. * @sb: superblock to operate on
  446. *
  447. * Make sure that no inodes with zero refcount are retained. This is
  448. * called by superblock shutdown after having MS_ACTIVE flag removed,
  449. * so any inode reaching zero refcount during or after that call will
  450. * be immediately evicted.
  451. */
  452. void evict_inodes(struct super_block *sb)
  453. {
  454. struct inode *inode, *next;
  455. LIST_HEAD(dispose);
  456. spin_lock(&inode_sb_list_lock);
  457. list_for_each_entry_safe(inode, next, &sb->s_inodes, i_sb_list) {
  458. if (atomic_read(&inode->i_count))
  459. continue;
  460. spin_lock(&inode->i_lock);
  461. if (inode->i_state & (I_NEW | I_FREEING | I_WILL_FREE)) {
  462. spin_unlock(&inode->i_lock);
  463. continue;
  464. }
  465. inode->i_state |= I_FREEING;
  466. inode_lru_list_del(inode);
  467. spin_unlock(&inode->i_lock);
  468. list_add(&inode->i_lru, &dispose);
  469. }
  470. spin_unlock(&inode_sb_list_lock);
  471. dispose_list(&dispose);
  472. }
  473. /**
  474. * invalidate_inodes - attempt to free all inodes on a superblock
  475. * @sb: superblock to operate on
  476. * @kill_dirty: flag to guide handling of dirty inodes
  477. *
  478. * Attempts to free all inodes for a given superblock. If there were any
  479. * busy inodes return a non-zero value, else zero.
  480. * If @kill_dirty is set, discard dirty inodes too, otherwise treat
  481. * them as busy.
  482. */
  483. int invalidate_inodes(struct super_block *sb, bool kill_dirty)
  484. {
  485. int busy = 0;
  486. struct inode *inode, *next;
  487. LIST_HEAD(dispose);
  488. spin_lock(&inode_sb_list_lock);
  489. list_for_each_entry_safe(inode, next, &sb->s_inodes, i_sb_list) {
  490. spin_lock(&inode->i_lock);
  491. if (inode->i_state & (I_NEW | I_FREEING | I_WILL_FREE)) {
  492. spin_unlock(&inode->i_lock);
  493. continue;
  494. }
  495. if (inode->i_state & I_DIRTY && !kill_dirty) {
  496. spin_unlock(&inode->i_lock);
  497. busy = 1;
  498. continue;
  499. }
  500. if (atomic_read(&inode->i_count)) {
  501. spin_unlock(&inode->i_lock);
  502. busy = 1;
  503. continue;
  504. }
  505. inode->i_state |= I_FREEING;
  506. inode_lru_list_del(inode);
  507. spin_unlock(&inode->i_lock);
  508. list_add(&inode->i_lru, &dispose);
  509. }
  510. spin_unlock(&inode_sb_list_lock);
  511. dispose_list(&dispose);
  512. return busy;
  513. }
  514. static int can_unuse(struct inode *inode)
  515. {
  516. if (inode->i_state & ~I_REFERENCED)
  517. return 0;
  518. if (inode_has_buffers(inode))
  519. return 0;
  520. if (atomic_read(&inode->i_count))
  521. return 0;
  522. if (inode->i_data.nrpages)
  523. return 0;
  524. return 1;
  525. }
  526. /*
  527. * Walk the superblock inode LRU for freeable inodes and attempt to free them.
  528. * This is called from the superblock shrinker function with a number of inodes
  529. * to trim from the LRU. Inodes to be freed are moved to a temporary list and
  530. * then are freed outside inode_lock by dispose_list().
  531. *
  532. * Any inodes which are pinned purely because of attached pagecache have their
  533. * pagecache removed. If the inode has metadata buffers attached to
  534. * mapping->private_list then try to remove them.
  535. *
  536. * If the inode has the I_REFERENCED flag set, then it means that it has been
  537. * used recently - the flag is set in iput_final(). When we encounter such an
  538. * inode, clear the flag and move it to the back of the LRU so it gets another
  539. * pass through the LRU before it gets reclaimed. This is necessary because of
  540. * the fact we are doing lazy LRU updates to minimise lock contention so the
  541. * LRU does not have strict ordering. Hence we don't want to reclaim inodes
  542. * with this flag set because they are the inodes that are out of order.
  543. */
  544. void prune_icache_sb(struct super_block *sb, int nr_to_scan)
  545. {
  546. LIST_HEAD(freeable);
  547. int nr_scanned;
  548. unsigned long reap = 0;
  549. spin_lock(&sb->s_inode_lru_lock);
  550. for (nr_scanned = nr_to_scan; nr_scanned >= 0; nr_scanned--) {
  551. struct inode *inode;
  552. if (list_empty(&sb->s_inode_lru))
  553. break;
  554. inode = list_entry(sb->s_inode_lru.prev, struct inode, i_lru);
  555. /*
  556. * we are inverting the sb->s_inode_lru_lock/inode->i_lock here,
  557. * so use a trylock. If we fail to get the lock, just move the
  558. * inode to the back of the list so we don't spin on it.
  559. */
  560. if (!spin_trylock(&inode->i_lock)) {
  561. list_move(&inode->i_lru, &sb->s_inode_lru);
  562. continue;
  563. }
  564. /*
  565. * Referenced or dirty inodes are still in use. Give them
  566. * another pass through the LRU as we canot reclaim them now.
  567. */
  568. if (atomic_read(&inode->i_count) ||
  569. (inode->i_state & ~I_REFERENCED)) {
  570. list_del_init(&inode->i_lru);
  571. spin_unlock(&inode->i_lock);
  572. sb->s_nr_inodes_unused--;
  573. this_cpu_dec(nr_unused);
  574. continue;
  575. }
  576. /* recently referenced inodes get one more pass */
  577. if (inode->i_state & I_REFERENCED) {
  578. inode->i_state &= ~I_REFERENCED;
  579. list_move(&inode->i_lru, &sb->s_inode_lru);
  580. spin_unlock(&inode->i_lock);
  581. continue;
  582. }
  583. if (inode_has_buffers(inode) || inode->i_data.nrpages) {
  584. __iget(inode);
  585. spin_unlock(&inode->i_lock);
  586. spin_unlock(&sb->s_inode_lru_lock);
  587. if (remove_inode_buffers(inode))
  588. reap += invalidate_mapping_pages(&inode->i_data,
  589. 0, -1);
  590. iput(inode);
  591. spin_lock(&sb->s_inode_lru_lock);
  592. if (inode != list_entry(sb->s_inode_lru.next,
  593. struct inode, i_lru))
  594. continue; /* wrong inode or list_empty */
  595. /* avoid lock inversions with trylock */
  596. if (!spin_trylock(&inode->i_lock))
  597. continue;
  598. if (!can_unuse(inode)) {
  599. spin_unlock(&inode->i_lock);
  600. continue;
  601. }
  602. }
  603. WARN_ON(inode->i_state & I_NEW);
  604. inode->i_state |= I_FREEING;
  605. spin_unlock(&inode->i_lock);
  606. list_move(&inode->i_lru, &freeable);
  607. sb->s_nr_inodes_unused--;
  608. this_cpu_dec(nr_unused);
  609. }
  610. if (current_is_kswapd())
  611. __count_vm_events(KSWAPD_INODESTEAL, reap);
  612. else
  613. __count_vm_events(PGINODESTEAL, reap);
  614. spin_unlock(&sb->s_inode_lru_lock);
  615. dispose_list(&freeable);
  616. }
  617. static void __wait_on_freeing_inode(struct inode *inode);
  618. /*
  619. * Called with the inode lock held.
  620. */
  621. static struct inode *find_inode(struct super_block *sb,
  622. struct hlist_head *head,
  623. int (*test)(struct inode *, void *),
  624. void *data)
  625. {
  626. struct hlist_node *node;
  627. struct inode *inode = NULL;
  628. repeat:
  629. hlist_for_each_entry(inode, node, head, i_hash) {
  630. spin_lock(&inode->i_lock);
  631. if (inode->i_sb != sb) {
  632. spin_unlock(&inode->i_lock);
  633. continue;
  634. }
  635. if (!test(inode, data)) {
  636. spin_unlock(&inode->i_lock);
  637. continue;
  638. }
  639. if (inode->i_state & (I_FREEING|I_WILL_FREE)) {
  640. __wait_on_freeing_inode(inode);
  641. goto repeat;
  642. }
  643. __iget(inode);
  644. spin_unlock(&inode->i_lock);
  645. return inode;
  646. }
  647. return NULL;
  648. }
  649. /*
  650. * find_inode_fast is the fast path version of find_inode, see the comment at
  651. * iget_locked for details.
  652. */
  653. static struct inode *find_inode_fast(struct super_block *sb,
  654. struct hlist_head *head, unsigned long ino)
  655. {
  656. struct hlist_node *node;
  657. struct inode *inode = NULL;
  658. repeat:
  659. hlist_for_each_entry(inode, node, head, i_hash) {
  660. spin_lock(&inode->i_lock);
  661. if (inode->i_ino != ino) {
  662. spin_unlock(&inode->i_lock);
  663. continue;
  664. }
  665. if (inode->i_sb != sb) {
  666. spin_unlock(&inode->i_lock);
  667. continue;
  668. }
  669. if (inode->i_state & (I_FREEING|I_WILL_FREE)) {
  670. __wait_on_freeing_inode(inode);
  671. goto repeat;
  672. }
  673. __iget(inode);
  674. spin_unlock(&inode->i_lock);
  675. return inode;
  676. }
  677. return NULL;
  678. }
  679. /*
  680. * Each cpu owns a range of LAST_INO_BATCH numbers.
  681. * 'shared_last_ino' is dirtied only once out of LAST_INO_BATCH allocations,
  682. * to renew the exhausted range.
  683. *
  684. * This does not significantly increase overflow rate because every CPU can
  685. * consume at most LAST_INO_BATCH-1 unused inode numbers. So there is
  686. * NR_CPUS*(LAST_INO_BATCH-1) wastage. At 4096 and 1024, this is ~0.1% of the
  687. * 2^32 range, and is a worst-case. Even a 50% wastage would only increase
  688. * overflow rate by 2x, which does not seem too significant.
  689. *
  690. * On a 32bit, non LFS stat() call, glibc will generate an EOVERFLOW
  691. * error if st_ino won't fit in target struct field. Use 32bit counter
  692. * here to attempt to avoid that.
  693. */
  694. #define LAST_INO_BATCH 1024
  695. static DEFINE_PER_CPU(unsigned int, last_ino);
  696. unsigned int get_next_ino(void)
  697. {
  698. unsigned int *p = &get_cpu_var(last_ino);
  699. unsigned int res = *p;
  700. #ifdef CONFIG_SMP
  701. if (unlikely((res & (LAST_INO_BATCH-1)) == 0)) {
  702. static atomic_t shared_last_ino;
  703. int next = atomic_add_return(LAST_INO_BATCH, &shared_last_ino);
  704. res = next - LAST_INO_BATCH;
  705. }
  706. #endif
  707. *p = ++res;
  708. put_cpu_var(last_ino);
  709. return res;
  710. }
  711. EXPORT_SYMBOL(get_next_ino);
  712. /**
  713. * new_inode_pseudo - obtain an inode
  714. * @sb: superblock
  715. *
  716. * Allocates a new inode for given superblock.
  717. * Inode wont be chained in superblock s_inodes list
  718. * This means :
  719. * - fs can't be unmount
  720. * - quotas, fsnotify, writeback can't work
  721. */
  722. struct inode *new_inode_pseudo(struct super_block *sb)
  723. {
  724. struct inode *inode = alloc_inode(sb);
  725. if (inode) {
  726. spin_lock(&inode->i_lock);
  727. inode->i_state = 0;
  728. spin_unlock(&inode->i_lock);
  729. INIT_LIST_HEAD(&inode->i_sb_list);
  730. }
  731. return inode;
  732. }
  733. /**
  734. * new_inode - obtain an inode
  735. * @sb: superblock
  736. *
  737. * Allocates a new inode for given superblock. The default gfp_mask
  738. * for allocations related to inode->i_mapping is GFP_HIGHUSER_MOVABLE.
  739. * If HIGHMEM pages are unsuitable or it is known that pages allocated
  740. * for the page cache are not reclaimable or migratable,
  741. * mapping_set_gfp_mask() must be called with suitable flags on the
  742. * newly created inode's mapping
  743. *
  744. */
  745. struct inode *new_inode(struct super_block *sb)
  746. {
  747. struct inode *inode;
  748. spin_lock_prefetch(&inode_sb_list_lock);
  749. inode = new_inode_pseudo(sb);
  750. if (inode)
  751. inode_sb_list_add(inode);
  752. return inode;
  753. }
  754. EXPORT_SYMBOL(new_inode);
  755. /**
  756. * unlock_new_inode - clear the I_NEW state and wake up any waiters
  757. * @inode: new inode to unlock
  758. *
  759. * Called when the inode is fully initialised to clear the new state of the
  760. * inode and wake up anyone waiting for the inode to finish initialisation.
  761. */
  762. void unlock_new_inode(struct inode *inode)
  763. {
  764. #ifdef CONFIG_DEBUG_LOCK_ALLOC
  765. if (S_ISDIR(inode->i_mode)) {
  766. struct file_system_type *type = inode->i_sb->s_type;
  767. /* Set new key only if filesystem hasn't already changed it */
  768. if (!lockdep_match_class(&inode->i_mutex,
  769. &type->i_mutex_key)) {
  770. /*
  771. * ensure nobody is actually holding i_mutex
  772. */
  773. mutex_destroy(&inode->i_mutex);
  774. mutex_init(&inode->i_mutex);
  775. lockdep_set_class(&inode->i_mutex,
  776. &type->i_mutex_dir_key);
  777. }
  778. }
  779. #endif
  780. spin_lock(&inode->i_lock);
  781. WARN_ON(!(inode->i_state & I_NEW));
  782. inode->i_state &= ~I_NEW;
  783. wake_up_bit(&inode->i_state, __I_NEW);
  784. spin_unlock(&inode->i_lock);
  785. }
  786. EXPORT_SYMBOL(unlock_new_inode);
  787. /**
  788. * iget5_locked - obtain an inode from a mounted file system
  789. * @sb: super block of file system
  790. * @hashval: hash value (usually inode number) to get
  791. * @test: callback used for comparisons between inodes
  792. * @set: callback used to initialize a new struct inode
  793. * @data: opaque data pointer to pass to @test and @set
  794. *
  795. * Search for the inode specified by @hashval and @data in the inode cache,
  796. * and if present it is return it with an increased reference count. This is
  797. * a generalized version of iget_locked() for file systems where the inode
  798. * number is not sufficient for unique identification of an inode.
  799. *
  800. * If the inode is not in cache, allocate a new inode and return it locked,
  801. * hashed, and with the I_NEW flag set. The file system gets to fill it in
  802. * before unlocking it via unlock_new_inode().
  803. *
  804. * Note both @test and @set are called with the inode_hash_lock held, so can't
  805. * sleep.
  806. */
  807. struct inode *iget5_locked(struct super_block *sb, unsigned long hashval,
  808. int (*test)(struct inode *, void *),
  809. int (*set)(struct inode *, void *), void *data)
  810. {
  811. struct hlist_head *head = inode_hashtable + hash(sb, hashval);
  812. struct inode *inode;
  813. spin_lock(&inode_hash_lock);
  814. inode = find_inode(sb, head, test, data);
  815. spin_unlock(&inode_hash_lock);
  816. if (inode) {
  817. wait_on_inode(inode);
  818. return inode;
  819. }
  820. inode = alloc_inode(sb);
  821. if (inode) {
  822. struct inode *old;
  823. spin_lock(&inode_hash_lock);
  824. /* We released the lock, so.. */
  825. old = find_inode(sb, head, test, data);
  826. if (!old) {
  827. if (set(inode, data))
  828. goto set_failed;
  829. spin_lock(&inode->i_lock);
  830. inode->i_state = I_NEW;
  831. hlist_add_head(&inode->i_hash, head);
  832. spin_unlock(&inode->i_lock);
  833. inode_sb_list_add(inode);
  834. spin_unlock(&inode_hash_lock);
  835. /* Return the locked inode with I_NEW set, the
  836. * caller is responsible for filling in the contents
  837. */
  838. return inode;
  839. }
  840. /*
  841. * Uhhuh, somebody else created the same inode under
  842. * us. Use the old inode instead of the one we just
  843. * allocated.
  844. */
  845. spin_unlock(&inode_hash_lock);
  846. destroy_inode(inode);
  847. inode = old;
  848. wait_on_inode(inode);
  849. }
  850. return inode;
  851. set_failed:
  852. spin_unlock(&inode_hash_lock);
  853. destroy_inode(inode);
  854. return NULL;
  855. }
  856. EXPORT_SYMBOL(iget5_locked);
  857. /**
  858. * iget_locked - obtain an inode from a mounted file system
  859. * @sb: super block of file system
  860. * @ino: inode number to get
  861. *
  862. * Search for the inode specified by @ino in the inode cache and if present
  863. * return it with an increased reference count. This is for file systems
  864. * where the inode number is sufficient for unique identification of an inode.
  865. *
  866. * If the inode is not in cache, allocate a new inode and return it locked,
  867. * hashed, and with the I_NEW flag set. The file system gets to fill it in
  868. * before unlocking it via unlock_new_inode().
  869. */
  870. struct inode *iget_locked(struct super_block *sb, unsigned long ino)
  871. {
  872. struct hlist_head *head = inode_hashtable + hash(sb, ino);
  873. struct inode *inode;
  874. spin_lock(&inode_hash_lock);
  875. inode = find_inode_fast(sb, head, ino);
  876. spin_unlock(&inode_hash_lock);
  877. if (inode) {
  878. wait_on_inode(inode);
  879. return inode;
  880. }
  881. inode = alloc_inode(sb);
  882. if (inode) {
  883. struct inode *old;
  884. spin_lock(&inode_hash_lock);
  885. /* We released the lock, so.. */
  886. old = find_inode_fast(sb, head, ino);
  887. if (!old) {
  888. inode->i_ino = ino;
  889. spin_lock(&inode->i_lock);
  890. inode->i_state = I_NEW;
  891. hlist_add_head(&inode->i_hash, head);
  892. spin_unlock(&inode->i_lock);
  893. inode_sb_list_add(inode);
  894. spin_unlock(&inode_hash_lock);
  895. /* Return the locked inode with I_NEW set, the
  896. * caller is responsible for filling in the contents
  897. */
  898. return inode;
  899. }
  900. /*
  901. * Uhhuh, somebody else created the same inode under
  902. * us. Use the old inode instead of the one we just
  903. * allocated.
  904. */
  905. spin_unlock(&inode_hash_lock);
  906. destroy_inode(inode);
  907. inode = old;
  908. wait_on_inode(inode);
  909. }
  910. return inode;
  911. }
  912. EXPORT_SYMBOL(iget_locked);
  913. /*
  914. * search the inode cache for a matching inode number.
  915. * If we find one, then the inode number we are trying to
  916. * allocate is not unique and so we should not use it.
  917. *
  918. * Returns 1 if the inode number is unique, 0 if it is not.
  919. */
  920. static int test_inode_iunique(struct super_block *sb, unsigned long ino)
  921. {
  922. struct hlist_head *b = inode_hashtable + hash(sb, ino);
  923. struct hlist_node *node;
  924. struct inode *inode;
  925. spin_lock(&inode_hash_lock);
  926. hlist_for_each_entry(inode, node, b, i_hash) {
  927. if (inode->i_ino == ino && inode->i_sb == sb) {
  928. spin_unlock(&inode_hash_lock);
  929. return 0;
  930. }
  931. }
  932. spin_unlock(&inode_hash_lock);
  933. return 1;
  934. }
  935. /**
  936. * iunique - get a unique inode number
  937. * @sb: superblock
  938. * @max_reserved: highest reserved inode number
  939. *
  940. * Obtain an inode number that is unique on the system for a given
  941. * superblock. This is used by file systems that have no natural
  942. * permanent inode numbering system. An inode number is returned that
  943. * is higher than the reserved limit but unique.
  944. *
  945. * BUGS:
  946. * With a large number of inodes live on the file system this function
  947. * currently becomes quite slow.
  948. */
  949. ino_t iunique(struct super_block *sb, ino_t max_reserved)
  950. {
  951. /*
  952. * On a 32bit, non LFS stat() call, glibc will generate an EOVERFLOW
  953. * error if st_ino won't fit in target struct field. Use 32bit counter
  954. * here to attempt to avoid that.
  955. */
  956. static DEFINE_SPINLOCK(iunique_lock);
  957. static unsigned int counter;
  958. ino_t res;
  959. spin_lock(&iunique_lock);
  960. do {
  961. if (counter <= max_reserved)
  962. counter = max_reserved + 1;
  963. res = counter++;
  964. } while (!test_inode_iunique(sb, res));
  965. spin_unlock(&iunique_lock);
  966. return res;
  967. }
  968. EXPORT_SYMBOL(iunique);
  969. struct inode *igrab(struct inode *inode)
  970. {
  971. spin_lock(&inode->i_lock);
  972. if (!(inode->i_state & (I_FREEING|I_WILL_FREE))) {
  973. __iget(inode);
  974. spin_unlock(&inode->i_lock);
  975. } else {
  976. spin_unlock(&inode->i_lock);
  977. /*
  978. * Handle the case where s_op->clear_inode is not been
  979. * called yet, and somebody is calling igrab
  980. * while the inode is getting freed.
  981. */
  982. inode = NULL;
  983. }
  984. return inode;
  985. }
  986. EXPORT_SYMBOL(igrab);
  987. /**
  988. * ilookup5_nowait - search for an inode in the inode cache
  989. * @sb: super block of file system to search
  990. * @hashval: hash value (usually inode number) to search for
  991. * @test: callback used for comparisons between inodes
  992. * @data: opaque data pointer to pass to @test
  993. *
  994. * Search for the inode specified by @hashval and @data in the inode cache.
  995. * If the inode is in the cache, the inode is returned with an incremented
  996. * reference count.
  997. *
  998. * Note: I_NEW is not waited upon so you have to be very careful what you do
  999. * with the returned inode. You probably should be using ilookup5() instead.
  1000. *
  1001. * Note2: @test is called with the inode_hash_lock held, so can't sleep.
  1002. */
  1003. struct inode *ilookup5_nowait(struct super_block *sb, unsigned long hashval,
  1004. int (*test)(struct inode *, void *), void *data)
  1005. {
  1006. struct hlist_head *head = inode_hashtable + hash(sb, hashval);
  1007. struct inode *inode;
  1008. spin_lock(&inode_hash_lock);
  1009. inode = find_inode(sb, head, test, data);
  1010. spin_unlock(&inode_hash_lock);
  1011. return inode;
  1012. }
  1013. EXPORT_SYMBOL(ilookup5_nowait);
  1014. /**
  1015. * ilookup5 - search for an inode in the inode cache
  1016. * @sb: super block of file system to search
  1017. * @hashval: hash value (usually inode number) to search for
  1018. * @test: callback used for comparisons between inodes
  1019. * @data: opaque data pointer to pass to @test
  1020. *
  1021. * Search for the inode specified by @hashval and @data in the inode cache,
  1022. * and if the inode is in the cache, return the inode with an incremented
  1023. * reference count. Waits on I_NEW before returning the inode.
  1024. * returned with an incremented reference count.
  1025. *
  1026. * This is a generalized version of ilookup() for file systems where the
  1027. * inode number is not sufficient for unique identification of an inode.
  1028. *
  1029. * Note: @test is called with the inode_hash_lock held, so can't sleep.
  1030. */
  1031. struct inode *ilookup5(struct super_block *sb, unsigned long hashval,
  1032. int (*test)(struct inode *, void *), void *data)
  1033. {
  1034. struct inode *inode = ilookup5_nowait(sb, hashval, test, data);
  1035. if (inode)
  1036. wait_on_inode(inode);
  1037. return inode;
  1038. }
  1039. EXPORT_SYMBOL(ilookup5);
  1040. /**
  1041. * ilookup - search for an inode in the inode cache
  1042. * @sb: super block of file system to search
  1043. * @ino: inode number to search for
  1044. *
  1045. * Search for the inode @ino in the inode cache, and if the inode is in the
  1046. * cache, the inode is returned with an incremented reference count.
  1047. */
  1048. struct inode *ilookup(struct super_block *sb, unsigned long ino)
  1049. {
  1050. struct hlist_head *head = inode_hashtable + hash(sb, ino);
  1051. struct inode *inode;
  1052. spin_lock(&inode_hash_lock);
  1053. inode = find_inode_fast(sb, head, ino);
  1054. spin_unlock(&inode_hash_lock);
  1055. if (inode)
  1056. wait_on_inode(inode);
  1057. return inode;
  1058. }
  1059. EXPORT_SYMBOL(ilookup);
  1060. int insert_inode_locked(struct inode *inode)
  1061. {
  1062. struct super_block *sb = inode->i_sb;
  1063. ino_t ino = inode->i_ino;
  1064. struct hlist_head *head = inode_hashtable + hash(sb, ino);
  1065. while (1) {
  1066. struct hlist_node *node;
  1067. struct inode *old = NULL;
  1068. spin_lock(&inode_hash_lock);
  1069. hlist_for_each_entry(old, node, head, i_hash) {
  1070. if (old->i_ino != ino)
  1071. continue;
  1072. if (old->i_sb != sb)
  1073. continue;
  1074. spin_lock(&old->i_lock);
  1075. if (old->i_state & (I_FREEING|I_WILL_FREE)) {
  1076. spin_unlock(&old->i_lock);
  1077. continue;
  1078. }
  1079. break;
  1080. }
  1081. if (likely(!node)) {
  1082. spin_lock(&inode->i_lock);
  1083. inode->i_state |= I_NEW;
  1084. hlist_add_head(&inode->i_hash, head);
  1085. spin_unlock(&inode->i_lock);
  1086. spin_unlock(&inode_hash_lock);
  1087. return 0;
  1088. }
  1089. __iget(old);
  1090. spin_unlock(&old->i_lock);
  1091. spin_unlock(&inode_hash_lock);
  1092. wait_on_inode(old);
  1093. if (unlikely(!inode_unhashed(old))) {
  1094. iput(old);
  1095. return -EBUSY;
  1096. }
  1097. iput(old);
  1098. }
  1099. }
  1100. EXPORT_SYMBOL(insert_inode_locked);
  1101. int insert_inode_locked4(struct inode *inode, unsigned long hashval,
  1102. int (*test)(struct inode *, void *), void *data)
  1103. {
  1104. struct super_block *sb = inode->i_sb;
  1105. struct hlist_head *head = inode_hashtable + hash(sb, hashval);
  1106. while (1) {
  1107. struct hlist_node *node;
  1108. struct inode *old = NULL;
  1109. spin_lock(&inode_hash_lock);
  1110. hlist_for_each_entry(old, node, head, i_hash) {
  1111. if (old->i_sb != sb)
  1112. continue;
  1113. if (!test(old, data))
  1114. continue;
  1115. spin_lock(&old->i_lock);
  1116. if (old->i_state & (I_FREEING|I_WILL_FREE)) {
  1117. spin_unlock(&old->i_lock);
  1118. continue;
  1119. }
  1120. break;
  1121. }
  1122. if (likely(!node)) {
  1123. spin_lock(&inode->i_lock);
  1124. inode->i_state |= I_NEW;
  1125. hlist_add_head(&inode->i_hash, head);
  1126. spin_unlock(&inode->i_lock);
  1127. spin_unlock(&inode_hash_lock);
  1128. return 0;
  1129. }
  1130. __iget(old);
  1131. spin_unlock(&old->i_lock);
  1132. spin_unlock(&inode_hash_lock);
  1133. wait_on_inode(old);
  1134. if (unlikely(!inode_unhashed(old))) {
  1135. iput(old);
  1136. return -EBUSY;
  1137. }
  1138. iput(old);
  1139. }
  1140. }
  1141. EXPORT_SYMBOL(insert_inode_locked4);
  1142. int generic_delete_inode(struct inode *inode)
  1143. {
  1144. return 1;
  1145. }
  1146. EXPORT_SYMBOL(generic_delete_inode);
  1147. /*
  1148. * Normal UNIX filesystem behaviour: delete the
  1149. * inode when the usage count drops to zero, and
  1150. * i_nlink is zero.
  1151. */
  1152. int generic_drop_inode(struct inode *inode)
  1153. {
  1154. return !inode->i_nlink || inode_unhashed(inode);
  1155. }
  1156. EXPORT_SYMBOL_GPL(generic_drop_inode);
  1157. /*
  1158. * Called when we're dropping the last reference
  1159. * to an inode.
  1160. *
  1161. * Call the FS "drop_inode()" function, defaulting to
  1162. * the legacy UNIX filesystem behaviour. If it tells
  1163. * us to evict inode, do so. Otherwise, retain inode
  1164. * in cache if fs is alive, sync and evict if fs is
  1165. * shutting down.
  1166. */
  1167. static void iput_final(struct inode *inode)
  1168. {
  1169. struct super_block *sb = inode->i_sb;
  1170. const struct super_operations *op = inode->i_sb->s_op;
  1171. int drop;
  1172. WARN_ON(inode->i_state & I_NEW);
  1173. if (op->drop_inode)
  1174. drop = op->drop_inode(inode);
  1175. else
  1176. drop = generic_drop_inode(inode);
  1177. if (!drop && (sb->s_flags & MS_ACTIVE)) {
  1178. inode->i_state |= I_REFERENCED;
  1179. if (!(inode->i_state & (I_DIRTY|I_SYNC)))
  1180. inode_lru_list_add(inode);
  1181. spin_unlock(&inode->i_lock);
  1182. return;
  1183. }
  1184. if (!drop) {
  1185. inode->i_state |= I_WILL_FREE;
  1186. spin_unlock(&inode->i_lock);
  1187. write_inode_now(inode, 1);
  1188. spin_lock(&inode->i_lock);
  1189. WARN_ON(inode->i_state & I_NEW);
  1190. inode->i_state &= ~I_WILL_FREE;
  1191. }
  1192. inode->i_state |= I_FREEING;
  1193. inode_lru_list_del(inode);
  1194. spin_unlock(&inode->i_lock);
  1195. evict(inode);
  1196. }
  1197. /**
  1198. * iput - put an inode
  1199. * @inode: inode to put
  1200. *
  1201. * Puts an inode, dropping its usage count. If the inode use count hits
  1202. * zero, the inode is then freed and may also be destroyed.
  1203. *
  1204. * Consequently, iput() can sleep.
  1205. */
  1206. void iput(struct inode *inode)
  1207. {
  1208. if (inode) {
  1209. BUG_ON(inode->i_state & I_CLEAR);
  1210. if (atomic_dec_and_lock(&inode->i_count, &inode->i_lock))
  1211. iput_final(inode);
  1212. }
  1213. }
  1214. EXPORT_SYMBOL(iput);
  1215. /**
  1216. * bmap - find a block number in a file
  1217. * @inode: inode of file
  1218. * @block: block to find
  1219. *
  1220. * Returns the block number on the device holding the inode that
  1221. * is the disk block number for the block of the file requested.
  1222. * That is, asked for block 4 of inode 1 the function will return the
  1223. * disk block relative to the disk start that holds that block of the
  1224. * file.
  1225. */
  1226. sector_t bmap(struct inode *inode, sector_t block)
  1227. {
  1228. sector_t res = 0;
  1229. if (inode->i_mapping->a_ops->bmap)
  1230. res = inode->i_mapping->a_ops->bmap(inode->i_mapping, block);
  1231. return res;
  1232. }
  1233. EXPORT_SYMBOL(bmap);
  1234. /*
  1235. * With relative atime, only update atime if the previous atime is
  1236. * earlier than either the ctime or mtime or if at least a day has
  1237. * passed since the last atime update.
  1238. */
  1239. static int relatime_need_update(struct vfsmount *mnt, struct inode *inode,
  1240. struct timespec now)
  1241. {
  1242. if (!(mnt->mnt_flags & MNT_RELATIME))
  1243. return 1;
  1244. /*
  1245. * Is mtime younger than atime? If yes, update atime:
  1246. */
  1247. if (timespec_compare(&inode->i_mtime, &inode->i_atime) >= 0)
  1248. return 1;
  1249. /*
  1250. * Is ctime younger than atime? If yes, update atime:
  1251. */
  1252. if (timespec_compare(&inode->i_ctime, &inode->i_atime) >= 0)
  1253. return 1;
  1254. /*
  1255. * Is the previous atime value older than a day? If yes,
  1256. * update atime:
  1257. */
  1258. if ((long)(now.tv_sec - inode->i_atime.tv_sec) >= 24*60*60)
  1259. return 1;
  1260. /*
  1261. * Good, we can skip the atime update:
  1262. */
  1263. return 0;
  1264. }
  1265. /**
  1266. * touch_atime - update the access time
  1267. * @mnt: mount the inode is accessed on
  1268. * @dentry: dentry accessed
  1269. *
  1270. * Update the accessed time on an inode and mark it for writeback.
  1271. * This function automatically handles read only file systems and media,
  1272. * as well as the "noatime" flag and inode specific "noatime" markers.
  1273. */
  1274. void touch_atime(struct vfsmount *mnt, struct dentry *dentry)
  1275. {
  1276. struct inode *inode = dentry->d_inode;
  1277. struct timespec now;
  1278. if (inode->i_flags & S_NOATIME)
  1279. return;
  1280. if (IS_NOATIME(inode))
  1281. return;
  1282. if ((inode->i_sb->s_flags & MS_NODIRATIME) && S_ISDIR(inode->i_mode))
  1283. return;
  1284. if (mnt->mnt_flags & MNT_NOATIME)
  1285. return;
  1286. if ((mnt->mnt_flags & MNT_NODIRATIME) && S_ISDIR(inode->i_mode))
  1287. return;
  1288. now = current_fs_time(inode->i_sb);
  1289. if (!relatime_need_update(mnt, inode, now))
  1290. return;
  1291. if (timespec_equal(&inode->i_atime, &now))
  1292. return;
  1293. if (mnt_want_write(mnt))
  1294. return;
  1295. inode->i_atime = now;
  1296. mark_inode_dirty_sync(inode);
  1297. mnt_drop_write(mnt);
  1298. }
  1299. EXPORT_SYMBOL(touch_atime);
  1300. /**
  1301. * file_update_time - update mtime and ctime time
  1302. * @file: file accessed
  1303. *
  1304. * Update the mtime and ctime members of an inode and mark the inode
  1305. * for writeback. Note that this function is meant exclusively for
  1306. * usage in the file write path of filesystems, and filesystems may
  1307. * choose to explicitly ignore update via this function with the
  1308. * S_NOCMTIME inode flag, e.g. for network filesystem where these
  1309. * timestamps are handled by the server.
  1310. */
  1311. void file_update_time(struct file *file)
  1312. {
  1313. struct inode *inode = file->f_path.dentry->d_inode;
  1314. struct timespec now;
  1315. enum { S_MTIME = 1, S_CTIME = 2, S_VERSION = 4 } sync_it = 0;
  1316. /* First try to exhaust all avenues to not sync */
  1317. if (IS_NOCMTIME(inode))
  1318. return;
  1319. now = current_fs_time(inode->i_sb);
  1320. if (!timespec_equal(&inode->i_mtime, &now))
  1321. sync_it = S_MTIME;
  1322. if (!timespec_equal(&inode->i_ctime, &now))
  1323. sync_it |= S_CTIME;
  1324. if (IS_I_VERSION(inode))
  1325. sync_it |= S_VERSION;
  1326. if (!sync_it)
  1327. return;
  1328. /* Finally allowed to write? Takes lock. */
  1329. if (mnt_want_write_file(file))
  1330. return;
  1331. /* Only change inode inside the lock region */
  1332. if (sync_it & S_VERSION)
  1333. inode_inc_iversion(inode);
  1334. if (sync_it & S_CTIME)
  1335. inode->i_ctime = now;
  1336. if (sync_it & S_MTIME)
  1337. inode->i_mtime = now;
  1338. mark_inode_dirty_sync(inode);
  1339. mnt_drop_write(file->f_path.mnt);
  1340. }
  1341. EXPORT_SYMBOL(file_update_time);
  1342. int inode_needs_sync(struct inode *inode)
  1343. {
  1344. if (IS_SYNC(inode))
  1345. return 1;
  1346. if (S_ISDIR(inode->i_mode) && IS_DIRSYNC(inode))
  1347. return 1;
  1348. return 0;
  1349. }
  1350. EXPORT_SYMBOL(inode_needs_sync);
  1351. int inode_wait(void *word)
  1352. {
  1353. schedule();
  1354. return 0;
  1355. }
  1356. EXPORT_SYMBOL(inode_wait);
  1357. /*
  1358. * If we try to find an inode in the inode hash while it is being
  1359. * deleted, we have to wait until the filesystem completes its
  1360. * deletion before reporting that it isn't found. This function waits
  1361. * until the deletion _might_ have completed. Callers are responsible
  1362. * to recheck inode state.
  1363. *
  1364. * It doesn't matter if I_NEW is not set initially, a call to
  1365. * wake_up_bit(&inode->i_state, __I_NEW) after removing from the hash list
  1366. * will DTRT.
  1367. */
  1368. static void __wait_on_freeing_inode(struct inode *inode)
  1369. {
  1370. wait_queue_head_t *wq;
  1371. DEFINE_WAIT_BIT(wait, &inode->i_state, __I_NEW);
  1372. wq = bit_waitqueue(&inode->i_state, __I_NEW);
  1373. prepare_to_wait(wq, &wait.wait, TASK_UNINTERRUPTIBLE);
  1374. spin_unlock(&inode->i_lock);
  1375. spin_unlock(&inode_hash_lock);
  1376. schedule();
  1377. finish_wait(wq, &wait.wait);
  1378. spin_lock(&inode_hash_lock);
  1379. }
  1380. static __initdata unsigned long ihash_entries;
  1381. static int __init set_ihash_entries(char *str)
  1382. {
  1383. if (!str)
  1384. return 0;
  1385. ihash_entries = simple_strtoul(str, &str, 0);
  1386. return 1;
  1387. }
  1388. __setup("ihash_entries=", set_ihash_entries);
  1389. /*
  1390. * Initialize the waitqueues and inode hash table.
  1391. */
  1392. void __init inode_init_early(void)
  1393. {
  1394. int loop;
  1395. /* If hashes are distributed across NUMA nodes, defer
  1396. * hash allocation until vmalloc space is available.
  1397. */
  1398. if (hashdist)
  1399. return;
  1400. inode_hashtable =
  1401. alloc_large_system_hash("Inode-cache",
  1402. sizeof(struct hlist_head),
  1403. ihash_entries,
  1404. 14,
  1405. HASH_EARLY,
  1406. &i_hash_shift,
  1407. &i_hash_mask,
  1408. 0);
  1409. for (loop = 0; loop < (1 << i_hash_shift); loop++)
  1410. INIT_HLIST_HEAD(&inode_hashtable[loop]);
  1411. }
  1412. void __init inode_init(void)
  1413. {
  1414. int loop;
  1415. /* inode slab cache */
  1416. inode_cachep = kmem_cache_create("inode_cache",
  1417. sizeof(struct inode),
  1418. 0,
  1419. (SLAB_RECLAIM_ACCOUNT|SLAB_PANIC|
  1420. SLAB_MEM_SPREAD),
  1421. init_once);
  1422. /* Hash may have been set up in inode_init_early */
  1423. if (!hashdist)
  1424. return;
  1425. inode_hashtable =
  1426. alloc_large_system_hash("Inode-cache",
  1427. sizeof(struct hlist_head),
  1428. ihash_entries,
  1429. 14,
  1430. 0,
  1431. &i_hash_shift,
  1432. &i_hash_mask,
  1433. 0);
  1434. for (loop = 0; loop < (1 << i_hash_shift); loop++)
  1435. INIT_HLIST_HEAD(&inode_hashtable[loop]);
  1436. }
  1437. void init_special_inode(struct inode *inode, umode_t mode, dev_t rdev)
  1438. {
  1439. inode->i_mode = mode;
  1440. if (S_ISCHR(mode)) {
  1441. inode->i_fop = &def_chr_fops;
  1442. inode->i_rdev = rdev;
  1443. } else if (S_ISBLK(mode)) {
  1444. inode->i_fop = &def_blk_fops;
  1445. inode->i_rdev = rdev;
  1446. } else if (S_ISFIFO(mode))
  1447. inode->i_fop = &def_fifo_fops;
  1448. else if (S_ISSOCK(mode))
  1449. inode->i_fop = &bad_sock_fops;
  1450. else
  1451. printk(KERN_DEBUG "init_special_inode: bogus i_mode (%o) for"
  1452. " inode %s:%lu\n", mode, inode->i_sb->s_id,
  1453. inode->i_ino);
  1454. }
  1455. EXPORT_SYMBOL(init_special_inode);
  1456. /**
  1457. * inode_init_owner - Init uid,gid,mode for new inode according to posix standards
  1458. * @inode: New inode
  1459. * @dir: Directory inode
  1460. * @mode: mode of the new inode
  1461. */
  1462. void inode_init_owner(struct inode *inode, const struct inode *dir,
  1463. mode_t mode)
  1464. {
  1465. inode->i_uid = current_fsuid();
  1466. if (dir && dir->i_mode & S_ISGID) {
  1467. inode->i_gid = dir->i_gid;
  1468. if (S_ISDIR(mode))
  1469. mode |= S_ISGID;
  1470. } else
  1471. inode->i_gid = current_fsgid();
  1472. inode->i_mode = mode;
  1473. }
  1474. EXPORT_SYMBOL(inode_init_owner);
  1475. /**
  1476. * inode_owner_or_capable - check current task permissions to inode
  1477. * @inode: inode being checked
  1478. *
  1479. * Return true if current either has CAP_FOWNER to the inode, or
  1480. * owns the file.
  1481. */
  1482. bool inode_owner_or_capable(const struct inode *inode)
  1483. {
  1484. struct user_namespace *ns = inode_userns(inode);
  1485. if (current_user_ns() == ns && current_fsuid() == inode->i_uid)
  1486. return true;
  1487. if (ns_capable(ns, CAP_FOWNER))
  1488. return true;
  1489. return false;
  1490. }
  1491. EXPORT_SYMBOL(inode_owner_or_capable);