filemap.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:76k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * linux/mm/filemap.c
  3.  *
  4.  * Copyright (C) 1994-1999  Linus Torvalds
  5.  */
  6. /*
  7.  * This file handles the generic file mmap semantics used by
  8.  * most "normal" filesystems (but you don't /have/ to use this:
  9.  * the NFS filesystem used to do this differently, for example)
  10.  */
  11. #include <linux/module.h>
  12. #include <linux/slab.h>
  13. #include <linux/shm.h>
  14. #include <linux/mman.h>
  15. #include <linux/locks.h>
  16. #include <linux/pagemap.h>
  17. #include <linux/swap.h>
  18. #include <linux/smp_lock.h>
  19. #include <linux/blkdev.h>
  20. #include <linux/file.h>
  21. #include <linux/swapctl.h>
  22. #include <linux/init.h>
  23. #include <linux/mm.h>
  24. #include <linux/iobuf.h>
  25. #include <linux/compiler.h>
  26. #include <asm/pgalloc.h>
  27. #include <asm/uaccess.h>
  28. #include <asm/mman.h>
  29. #include <linux/highmem.h>
  30. /*
  31.  * Shared mappings implemented 30.11.1994. It's not fully working yet,
  32.  * though.
  33.  *
  34.  * Shared mappings now work. 15.8.1995  Bruno.
  35.  *
  36.  * finished 'unifying' the page and buffer cache and SMP-threaded the
  37.  * page-cache, 21.05.1999, Ingo Molnar <mingo@redhat.com>
  38.  *
  39.  * SMP-threaded pagemap-LRU 1999, Andrea Arcangeli <andrea@suse.de>
  40.  */
  41. atomic_t page_cache_size = ATOMIC_INIT(0);
  42. unsigned int page_hash_bits;
  43. struct page **page_hash_table;
  44. int vm_max_readahead = 31;
  45. int vm_min_readahead = 3;
  46. EXPORT_SYMBOL(vm_max_readahead);
  47. EXPORT_SYMBOL(vm_min_readahead);
  48. spinlock_t pagecache_lock __cacheline_aligned_in_smp = SPIN_LOCK_UNLOCKED;
  49. /*
  50.  * NOTE: to avoid deadlocking you must never acquire the pagemap_lru_lock 
  51.  * with the pagecache_lock held.
  52.  *
  53.  * Ordering:
  54.  * swap_lock ->
  55.  * pagemap_lru_lock ->
  56.  * pagecache_lock
  57.  */
  58. spinlock_t pagemap_lru_lock __cacheline_aligned_in_smp = SPIN_LOCK_UNLOCKED;
  59. #define CLUSTER_PAGES (1 << page_cluster)
  60. #define CLUSTER_OFFSET(x) (((x) >> page_cluster) << page_cluster)
  61. static void FASTCALL(add_page_to_hash_queue(struct page * page, struct page **p));
  62. static void add_page_to_hash_queue(struct page * page, struct page **p)
  63. {
  64. struct page *next = *p;
  65. *p = page;
  66. page->next_hash = next;
  67. page->pprev_hash = p;
  68. if (next)
  69. next->pprev_hash = &page->next_hash;
  70. if (page->buffers)
  71. PAGE_BUG(page);
  72. atomic_inc(&page_cache_size);
  73. }
  74. static inline void add_page_to_inode_queue(struct address_space *mapping, struct page * page)
  75. {
  76. struct list_head *head = &mapping->clean_pages;
  77. mapping->nrpages++;
  78. list_add(&page->list, head);
  79. page->mapping = mapping;
  80. }
  81. static inline void remove_page_from_inode_queue(struct page * page)
  82. {
  83. struct address_space * mapping = page->mapping;
  84. mapping->nrpages--;
  85. list_del(&page->list);
  86. page->mapping = NULL;
  87. }
  88. static inline void remove_page_from_hash_queue(struct page * page)
  89. {
  90. struct page *next = page->next_hash;
  91. struct page **pprev = page->pprev_hash;
  92. if (next)
  93. next->pprev_hash = pprev;
  94. *pprev = next;
  95. page->pprev_hash = NULL;
  96. atomic_dec(&page_cache_size);
  97. }
  98. /*
  99.  * Remove a page from the page cache and free it. Caller has to make
  100.  * sure the page is locked and that nobody else uses it - or that usage
  101.  * is safe.
  102.  */
  103. void __remove_inode_page(struct page *page)
  104. {
  105. if (PageDirty(page)) BUG();
  106. remove_page_from_inode_queue(page);
  107. remove_page_from_hash_queue(page);
  108. }
  109. void remove_inode_page(struct page *page)
  110. {
  111. if (!PageLocked(page))
  112. PAGE_BUG(page);
  113. spin_lock(&pagecache_lock);
  114. __remove_inode_page(page);
  115. spin_unlock(&pagecache_lock);
  116. }
  117. static inline int sync_page(struct page *page)
  118. {
  119. struct address_space *mapping = page->mapping;
  120. if (mapping && mapping->a_ops && mapping->a_ops->sync_page)
  121. return mapping->a_ops->sync_page(page);
  122. return 0;
  123. }
  124. /*
  125.  * Add a page to the dirty page list.
  126.  */
  127. void set_page_dirty(struct page *page)
  128. {
  129. if (!test_and_set_bit(PG_dirty, &page->flags)) {
  130. struct address_space *mapping = page->mapping;
  131. if (mapping) {
  132. spin_lock(&pagecache_lock);
  133. list_del(&page->list);
  134. list_add(&page->list, &mapping->dirty_pages);
  135. spin_unlock(&pagecache_lock);
  136. if (mapping->host)
  137. mark_inode_dirty_pages(mapping->host);
  138. }
  139. }
  140. }
  141. /**
  142.  * invalidate_inode_pages - Invalidate all the unlocked pages of one inode
  143.  * @inode: the inode which pages we want to invalidate
  144.  *
  145.  * This function only removes the unlocked pages, if you want to
  146.  * remove all the pages of one inode, you must call truncate_inode_pages.
  147.  */
  148. void invalidate_inode_pages(struct inode * inode)
  149. {
  150. struct list_head *head, *curr;
  151. struct page * page;
  152. head = &inode->i_mapping->clean_pages;
  153. spin_lock(&pagemap_lru_lock);
  154. spin_lock(&pagecache_lock);
  155. curr = head->next;
  156. while (curr != head) {
  157. page = list_entry(curr, struct page, list);
  158. curr = curr->next;
  159. /* We cannot invalidate something in dirty.. */
  160. if (PageDirty(page))
  161. continue;
  162. /* ..or locked */
  163. if (TryLockPage(page))
  164. continue;
  165. if (page->buffers && !try_to_free_buffers(page, 0))
  166. goto unlock;
  167. if (page_count(page) != 1)
  168. goto unlock;
  169. __lru_cache_del(page);
  170. __remove_inode_page(page);
  171. UnlockPage(page);
  172. page_cache_release(page);
  173. continue;
  174. unlock:
  175. UnlockPage(page);
  176. continue;
  177. }
  178. spin_unlock(&pagecache_lock);
  179. spin_unlock(&pagemap_lru_lock);
  180. }
  181. static int do_flushpage(struct page *page, unsigned long offset)
  182. {
  183. int (*flushpage) (struct page *, unsigned long);
  184. flushpage = page->mapping->a_ops->flushpage;
  185. if (flushpage)
  186. return (*flushpage)(page, offset);
  187. return block_flushpage(page, offset);
  188. }
  189. static inline void truncate_partial_page(struct page *page, unsigned partial)
  190. {
  191. memclear_highpage_flush(page, partial, PAGE_CACHE_SIZE-partial);
  192. if (page->buffers)
  193. do_flushpage(page, partial);
  194. }
  195. static void truncate_complete_page(struct page *page)
  196. {
  197. /* Leave it on the LRU if it gets converted into anonymous buffers */
  198. if (!page->buffers || do_flushpage(page, 0))
  199. lru_cache_del(page);
  200. /*
  201.  * We remove the page from the page cache _after_ we have
  202.  * destroyed all buffer-cache references to it. Otherwise some
  203.  * other process might think this inode page is not in the
  204.  * page cache and creates a buffer-cache alias to it causing
  205.  * all sorts of fun problems ...  
  206.  */
  207. ClearPageDirty(page);
  208. ClearPageUptodate(page);
  209. remove_inode_page(page);
  210. page_cache_release(page);
  211. }
  212. static int FASTCALL(truncate_list_pages(struct list_head *, unsigned long, unsigned *));
  213. static int truncate_list_pages(struct list_head *head, unsigned long start, unsigned *partial)
  214. {
  215. struct list_head *curr;
  216. struct page * page;
  217. int unlocked = 0;
  218.  restart:
  219. curr = head->prev;
  220. while (curr != head) {
  221. unsigned long offset;
  222. page = list_entry(curr, struct page, list);
  223. offset = page->index;
  224. /* Is one of the pages to truncate? */
  225. if ((offset >= start) || (*partial && (offset + 1) == start)) {
  226. int failed;
  227. page_cache_get(page);
  228. failed = TryLockPage(page);
  229. list_del(head);
  230. if (!failed)
  231. /* Restart after this page */
  232. list_add_tail(head, curr);
  233. else
  234. /* Restart on this page */
  235. list_add(head, curr);
  236. spin_unlock(&pagecache_lock);
  237. unlocked = 1;
  238.   if (!failed) {
  239. if (*partial && (offset + 1) == start) {
  240. truncate_partial_page(page, *partial);
  241. *partial = 0;
  242. } else 
  243. truncate_complete_page(page);
  244. UnlockPage(page);
  245. } else
  246.   wait_on_page(page);
  247. page_cache_release(page);
  248. if (current->need_resched) {
  249. __set_current_state(TASK_RUNNING);
  250. schedule();
  251. }
  252. spin_lock(&pagecache_lock);
  253. goto restart;
  254. }
  255. curr = curr->prev;
  256. }
  257. return unlocked;
  258. }
  259. /**
  260.  * truncate_inode_pages - truncate *all* the pages from an offset
  261.  * @mapping: mapping to truncate
  262.  * @lstart: offset from with to truncate
  263.  *
  264.  * Truncate the page cache at a set offset, removing the pages
  265.  * that are beyond that offset (and zeroing out partial pages).
  266.  * If any page is locked we wait for it to become unlocked.
  267.  */
  268. void truncate_inode_pages(struct address_space * mapping, loff_t lstart) 
  269. {
  270. unsigned long start = (lstart + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
  271. unsigned partial = lstart & (PAGE_CACHE_SIZE - 1);
  272. int unlocked;
  273. spin_lock(&pagecache_lock);
  274. do {
  275. unlocked = truncate_list_pages(&mapping->clean_pages, start, &partial);
  276. unlocked |= truncate_list_pages(&mapping->dirty_pages, start, &partial);
  277. unlocked |= truncate_list_pages(&mapping->locked_pages, start, &partial);
  278. } while (unlocked);
  279. /* Traversed all three lists without dropping the lock */
  280. spin_unlock(&pagecache_lock);
  281. }
  282. static inline int invalidate_this_page2(struct page * page,
  283. struct list_head * curr,
  284. struct list_head * head)
  285. {
  286. int unlocked = 1;
  287. /*
  288.  * The page is locked and we hold the pagecache_lock as well
  289.  * so both page_count(page) and page->buffers stays constant here.
  290.  */
  291. if (page_count(page) == 1 + !!page->buffers) {
  292. /* Restart after this page */
  293. list_del(head);
  294. list_add_tail(head, curr);
  295. page_cache_get(page);
  296. spin_unlock(&pagecache_lock);
  297. truncate_complete_page(page);
  298. } else {
  299. if (page->buffers) {
  300. /* Restart after this page */
  301. list_del(head);
  302. list_add_tail(head, curr);
  303. page_cache_get(page);
  304. spin_unlock(&pagecache_lock);
  305. block_invalidate_page(page);
  306. } else
  307. unlocked = 0;
  308. ClearPageDirty(page);
  309. ClearPageUptodate(page);
  310. }
  311. return unlocked;
  312. }
  313. static int FASTCALL(invalidate_list_pages2(struct list_head *));
  314. static int invalidate_list_pages2(struct list_head *head)
  315. {
  316. struct list_head *curr;
  317. struct page * page;
  318. int unlocked = 0;
  319.  restart:
  320. curr = head->prev;
  321. while (curr != head) {
  322. page = list_entry(curr, struct page, list);
  323. if (!TryLockPage(page)) {
  324. int __unlocked;
  325. __unlocked = invalidate_this_page2(page, curr, head);
  326. UnlockPage(page);
  327. unlocked |= __unlocked;
  328. if (!__unlocked) {
  329. curr = curr->prev;
  330. continue;
  331. }
  332. } else {
  333. /* Restart on this page */
  334. list_del(head);
  335. list_add(head, curr);
  336. page_cache_get(page);
  337. spin_unlock(&pagecache_lock);
  338. unlocked = 1;
  339. wait_on_page(page);
  340. }
  341. page_cache_release(page);
  342. if (current->need_resched) {
  343. __set_current_state(TASK_RUNNING);
  344. schedule();
  345. }
  346. spin_lock(&pagecache_lock);
  347. goto restart;
  348. }
  349. return unlocked;
  350. }
  351. /**
  352.  * invalidate_inode_pages2 - Clear all the dirty bits around if it can't
  353.  * free the pages because they're mapped.
  354.  * @mapping: the address_space which pages we want to invalidate
  355.  */
  356. void invalidate_inode_pages2(struct address_space * mapping)
  357. {
  358. int unlocked;
  359. spin_lock(&pagecache_lock);
  360. do {
  361. unlocked = invalidate_list_pages2(&mapping->clean_pages);
  362. unlocked |= invalidate_list_pages2(&mapping->dirty_pages);
  363. unlocked |= invalidate_list_pages2(&mapping->locked_pages);
  364. } while (unlocked);
  365. spin_unlock(&pagecache_lock);
  366. }
  367. static inline struct page * __find_page_nolock(struct address_space *mapping, unsigned long offset, struct page *page)
  368. {
  369. goto inside;
  370. for (;;) {
  371. page = page->next_hash;
  372. inside:
  373. if (!page)
  374. goto not_found;
  375. if (page->mapping != mapping)
  376. continue;
  377. if (page->index == offset)
  378. break;
  379. }
  380. not_found:
  381. return page;
  382. }
  383. static int do_buffer_fdatasync(struct list_head *head, unsigned long start, unsigned long end, int (*fn)(struct page *))
  384. {
  385. struct list_head *curr;
  386. struct page *page;
  387. int retval = 0;
  388. spin_lock(&pagecache_lock);
  389. curr = head->next;
  390. while (curr != head) {
  391. page = list_entry(curr, struct page, list);
  392. curr = curr->next;
  393. if (!page->buffers)
  394. continue;
  395. if (page->index >= end)
  396. continue;
  397. if (page->index < start)
  398. continue;
  399. page_cache_get(page);
  400. spin_unlock(&pagecache_lock);
  401. lock_page(page);
  402. /* The buffers could have been free'd while we waited for the page lock */
  403. if (page->buffers)
  404. retval |= fn(page);
  405. UnlockPage(page);
  406. spin_lock(&pagecache_lock);
  407. curr = page->list.next;
  408. page_cache_release(page);
  409. }
  410. spin_unlock(&pagecache_lock);
  411. return retval;
  412. }
  413. /*
  414.  * Two-stage data sync: first start the IO, then go back and
  415.  * collect the information..
  416.  */
  417. int generic_buffer_fdatasync(struct inode *inode, unsigned long start_idx, unsigned long end_idx)
  418. {
  419. int retval;
  420. /* writeout dirty buffers on pages from both clean and dirty lists */
  421. retval = do_buffer_fdatasync(&inode->i_mapping->dirty_pages, start_idx, end_idx, writeout_one_page);
  422. retval |= do_buffer_fdatasync(&inode->i_mapping->clean_pages, start_idx, end_idx, writeout_one_page);
  423. retval |= do_buffer_fdatasync(&inode->i_mapping->locked_pages, start_idx, end_idx, writeout_one_page);
  424. /* now wait for locked buffers on pages from both clean and dirty lists */
  425. retval |= do_buffer_fdatasync(&inode->i_mapping->dirty_pages, start_idx, end_idx, waitfor_one_page);
  426. retval |= do_buffer_fdatasync(&inode->i_mapping->clean_pages, start_idx, end_idx, waitfor_one_page);
  427. retval |= do_buffer_fdatasync(&inode->i_mapping->locked_pages, start_idx, end_idx, waitfor_one_page);
  428. return retval;
  429. }
  430. /*
  431.  * In-memory filesystems have to fail their
  432.  * writepage function - and this has to be
  433.  * worked around in the VM layer..
  434.  *
  435.  * We
  436.  *  - mark the page dirty again (but do NOT
  437.  *    add it back to the inode dirty list, as
  438.  *    that would livelock in fdatasync)
  439.  *  - activate the page so that the page stealer
  440.  *    doesn't try to write it out over and over
  441.  *    again.
  442.  */
  443. int fail_writepage(struct page *page)
  444. {
  445. /* Only activate on memory-pressure, not fsync.. */
  446. if (PageLaunder(page)) {
  447. activate_page(page);
  448. SetPageReferenced(page);
  449. }
  450. /* Set the page dirty again, unlock */
  451. SetPageDirty(page);
  452. UnlockPage(page);
  453. return 0;
  454. }
  455. EXPORT_SYMBOL(fail_writepage);
  456. /**
  457.  *      filemap_fdatasync - walk the list of dirty pages of the given address space
  458.  *      and writepage() all of them.
  459.  * 
  460.  *      @mapping: address space structure to write
  461.  *
  462.  */
  463. int filemap_fdatasync(struct address_space * mapping)
  464. {
  465. int ret = 0;
  466. int (*writepage)(struct page *) = mapping->a_ops->writepage;
  467. spin_lock(&pagecache_lock);
  468.         while (!list_empty(&mapping->dirty_pages)) {
  469. struct page *page = list_entry(mapping->dirty_pages.next, struct page, list);
  470. list_del(&page->list);
  471. list_add(&page->list, &mapping->locked_pages);
  472. if (!PageDirty(page))
  473. continue;
  474. page_cache_get(page);
  475. spin_unlock(&pagecache_lock);
  476. lock_page(page);
  477. if (PageDirty(page)) {
  478. int err;
  479. ClearPageDirty(page);
  480. err = writepage(page);
  481. if (err && !ret)
  482. ret = err;
  483. } else
  484. UnlockPage(page);
  485. page_cache_release(page);
  486. spin_lock(&pagecache_lock);
  487. }
  488. spin_unlock(&pagecache_lock);
  489. return ret;
  490. }
  491. /**
  492.  *      filemap_fdatawait - walk the list of locked pages of the given address space
  493.  *      and wait for all of them.
  494.  * 
  495.  *      @mapping: address space structure to wait for
  496.  *
  497.  */
  498. int filemap_fdatawait(struct address_space * mapping)
  499. {
  500. int ret = 0;
  501. spin_lock(&pagecache_lock);
  502.         while (!list_empty(&mapping->locked_pages)) {
  503. struct page *page = list_entry(mapping->locked_pages.next, struct page, list);
  504. list_del(&page->list);
  505. list_add(&page->list, &mapping->clean_pages);
  506. if (!PageLocked(page))
  507. continue;
  508. page_cache_get(page);
  509. spin_unlock(&pagecache_lock);
  510. ___wait_on_page(page);
  511. if (PageError(page))
  512. ret = -EIO;
  513. page_cache_release(page);
  514. spin_lock(&pagecache_lock);
  515. }
  516. spin_unlock(&pagecache_lock);
  517. return ret;
  518. }
  519. /*
  520.  * Add a page to the inode page cache.
  521.  *
  522.  * The caller must have locked the page and 
  523.  * set all the page flags correctly..
  524.  */
  525. void add_to_page_cache_locked(struct page * page, struct address_space *mapping, unsigned long index)
  526. {
  527. if (!PageLocked(page))
  528. BUG();
  529. page->index = index;
  530. page_cache_get(page);
  531. spin_lock(&pagecache_lock);
  532. add_page_to_inode_queue(mapping, page);
  533. add_page_to_hash_queue(page, page_hash(mapping, index));
  534. spin_unlock(&pagecache_lock);
  535. lru_cache_add(page);
  536. }
  537. /*
  538.  * This adds a page to the page cache, starting out as locked,
  539.  * owned by us, but unreferenced, not uptodate and with no errors.
  540.  */
  541. static inline void __add_to_page_cache(struct page * page,
  542. struct address_space *mapping, unsigned long offset,
  543. struct page **hash)
  544. {
  545. unsigned long flags;
  546. flags = page->flags & ~(1 << PG_uptodate | 1 << PG_error | 1 << PG_dirty | 1 << PG_referenced | 1 << PG_arch_1 | 1 << PG_checked);
  547. page->flags = flags | (1 << PG_locked);
  548. page_cache_get(page);
  549. page->index = offset;
  550. add_page_to_inode_queue(mapping, page);
  551. add_page_to_hash_queue(page, hash);
  552. }
  553. void add_to_page_cache(struct page * page, struct address_space * mapping, unsigned long offset)
  554. {
  555. spin_lock(&pagecache_lock);
  556. __add_to_page_cache(page, mapping, offset, page_hash(mapping, offset));
  557. spin_unlock(&pagecache_lock);
  558. lru_cache_add(page);
  559. }
  560. int add_to_page_cache_unique(struct page * page,
  561. struct address_space *mapping, unsigned long offset,
  562. struct page **hash)
  563. {
  564. int err;
  565. struct page *alias;
  566. spin_lock(&pagecache_lock);
  567. alias = __find_page_nolock(mapping, offset, *hash);
  568. err = 1;
  569. if (!alias) {
  570. __add_to_page_cache(page,mapping,offset,hash);
  571. err = 0;
  572. }
  573. spin_unlock(&pagecache_lock);
  574. if (!err)
  575. lru_cache_add(page);
  576. return err;
  577. }
  578. /*
  579.  * This adds the requested page to the page cache if it isn't already there,
  580.  * and schedules an I/O to read in its contents from disk.
  581.  */
  582. static int FASTCALL(page_cache_read(struct file * file, unsigned long offset));
  583. static int page_cache_read(struct file * file, unsigned long offset)
  584. {
  585. struct address_space *mapping = file->f_dentry->d_inode->i_mapping;
  586. struct page **hash = page_hash(mapping, offset);
  587. struct page *page; 
  588. spin_lock(&pagecache_lock);
  589. page = __find_page_nolock(mapping, offset, *hash);
  590. spin_unlock(&pagecache_lock);
  591. if (page)
  592. return 0;
  593. page = page_cache_alloc(mapping);
  594. if (!page)
  595. return -ENOMEM;
  596. if (!add_to_page_cache_unique(page, mapping, offset, hash)) {
  597. int error = mapping->a_ops->readpage(file, page);
  598. page_cache_release(page);
  599. return error;
  600. }
  601. /*
  602.  * We arrive here in the unlikely event that someone 
  603.  * raced with us and added our page to the cache first.
  604.  */
  605. page_cache_release(page);
  606. return 0;
  607. }
  608. /*
  609.  * Read in an entire cluster at once.  A cluster is usually a 64k-
  610.  * aligned block that includes the page requested in "offset."
  611.  */
  612. static int FASTCALL(read_cluster_nonblocking(struct file * file, unsigned long offset,
  613.      unsigned long filesize));
  614. static int read_cluster_nonblocking(struct file * file, unsigned long offset,
  615. unsigned long filesize)
  616. {
  617. unsigned long pages = CLUSTER_PAGES;
  618. offset = CLUSTER_OFFSET(offset);
  619. while ((pages-- > 0) && (offset < filesize)) {
  620. int error = page_cache_read(file, offset);
  621. if (error < 0)
  622. return error;
  623. offset ++;
  624. }
  625. return 0;
  626. }
  627. /* 
  628.  * Wait for a page to get unlocked.
  629.  *
  630.  * This must be called with the caller "holding" the page,
  631.  * ie with increased "page->count" so that the page won't
  632.  * go away during the wait..
  633.  */
  634. void ___wait_on_page(struct page *page)
  635. {
  636. struct task_struct *tsk = current;
  637. DECLARE_WAITQUEUE(wait, tsk);
  638. add_wait_queue(&page->wait, &wait);
  639. do {
  640. set_task_state(tsk, TASK_UNINTERRUPTIBLE);
  641. if (!PageLocked(page))
  642. break;
  643. sync_page(page);
  644. schedule();
  645. } while (PageLocked(page));
  646. tsk->state = TASK_RUNNING;
  647. remove_wait_queue(&page->wait, &wait);
  648. }
  649. void unlock_page(struct page *page)
  650. {
  651. clear_bit(PG_launder, &(page)->flags);
  652. smp_mb__before_clear_bit();
  653. if (!test_and_clear_bit(PG_locked, &(page)->flags))
  654. BUG();
  655. smp_mb__after_clear_bit(); 
  656. if (waitqueue_active(&(page)->wait))
  657. wake_up(&(page)->wait);
  658. }
  659. /*
  660.  * Get a lock on the page, assuming we need to sleep
  661.  * to get it..
  662.  */
  663. static void __lock_page(struct page *page)
  664. {
  665. struct task_struct *tsk = current;
  666. DECLARE_WAITQUEUE(wait, tsk);
  667. add_wait_queue_exclusive(&page->wait, &wait);
  668. for (;;) {
  669. set_task_state(tsk, TASK_UNINTERRUPTIBLE);
  670. if (PageLocked(page)) {
  671. sync_page(page);
  672. schedule();
  673. }
  674. if (!TryLockPage(page))
  675. break;
  676. }
  677. tsk->state = TASK_RUNNING;
  678. remove_wait_queue(&page->wait, &wait);
  679. }
  680. /*
  681.  * Get an exclusive lock on the page, optimistically
  682.  * assuming it's not locked..
  683.  */
  684. void lock_page(struct page *page)
  685. {
  686. if (TryLockPage(page))
  687. __lock_page(page);
  688. }
  689. /*
  690.  * a rather lightweight function, finding and getting a reference to a
  691.  * hashed page atomically.
  692.  */
  693. struct page * __find_get_page(struct address_space *mapping,
  694.       unsigned long offset, struct page **hash)
  695. {
  696. struct page *page;
  697. /*
  698.  * We scan the hash list read-only. Addition to and removal from
  699.  * the hash-list needs a held write-lock.
  700.  */
  701. spin_lock(&pagecache_lock);
  702. page = __find_page_nolock(mapping, offset, *hash);
  703. if (page)
  704. page_cache_get(page);
  705. spin_unlock(&pagecache_lock);
  706. return page;
  707. }
  708. /*
  709.  * Same as above, but trylock it instead of incrementing the count.
  710.  */
  711. struct page *find_trylock_page(struct address_space *mapping, unsigned long offset)
  712. {
  713. struct page *page;
  714. struct page **hash = page_hash(mapping, offset);
  715. spin_lock(&pagecache_lock);
  716. page = __find_page_nolock(mapping, offset, *hash);
  717. if (page) {
  718. if (TryLockPage(page))
  719. page = NULL;
  720. }
  721. spin_unlock(&pagecache_lock);
  722. return page;
  723. }
  724. /*
  725.  * Must be called with the pagecache lock held,
  726.  * will return with it held (but it may be dropped
  727.  * during blocking operations..
  728.  */
  729. static struct page * FASTCALL(__find_lock_page_helper(struct address_space *, unsigned long, struct page *));
  730. static struct page * __find_lock_page_helper(struct address_space *mapping,
  731. unsigned long offset, struct page *hash)
  732. {
  733. struct page *page;
  734. /*
  735.  * We scan the hash list read-only. Addition to and removal from
  736.  * the hash-list needs a held write-lock.
  737.  */
  738. repeat:
  739. page = __find_page_nolock(mapping, offset, hash);
  740. if (page) {
  741. page_cache_get(page);
  742. if (TryLockPage(page)) {
  743. spin_unlock(&pagecache_lock);
  744. lock_page(page);
  745. spin_lock(&pagecache_lock);
  746. /* Has the page been re-allocated while we slept? */
  747. if (page->mapping != mapping || page->index != offset) {
  748. UnlockPage(page);
  749. page_cache_release(page);
  750. goto repeat;
  751. }
  752. }
  753. }
  754. return page;
  755. }
  756. /*
  757.  * Same as the above, but lock the page too, verifying that
  758.  * it's still valid once we own it.
  759.  */
  760. struct page * __find_lock_page (struct address_space *mapping,
  761. unsigned long offset, struct page **hash)
  762. {
  763. struct page *page;
  764. spin_lock(&pagecache_lock);
  765. page = __find_lock_page_helper(mapping, offset, *hash);
  766. spin_unlock(&pagecache_lock);
  767. return page;
  768. }
  769. /*
  770.  * Same as above, but create the page if required..
  771.  */
  772. struct page * find_or_create_page(struct address_space *mapping, unsigned long index, unsigned int gfp_mask)
  773. {
  774. struct page *page;
  775. struct page **hash = page_hash(mapping, index);
  776. spin_lock(&pagecache_lock);
  777. page = __find_lock_page_helper(mapping, index, *hash);
  778. spin_unlock(&pagecache_lock);
  779. if (!page) {
  780. struct page *newpage = alloc_page(gfp_mask);
  781. if (newpage) {
  782. spin_lock(&pagecache_lock);
  783. page = __find_lock_page_helper(mapping, index, *hash);
  784. if (likely(!page)) {
  785. page = newpage;
  786. __add_to_page_cache(page, mapping, index, hash);
  787. newpage = NULL;
  788. }
  789. spin_unlock(&pagecache_lock);
  790. if (newpage == NULL)
  791. lru_cache_add(page);
  792. else 
  793. page_cache_release(newpage);
  794. }
  795. }
  796. return page;
  797. }
  798. /*
  799.  * Returns locked page at given index in given cache, creating it if needed.
  800.  */
  801. struct page *grab_cache_page(struct address_space *mapping, unsigned long index)
  802. {
  803. return find_or_create_page(mapping, index, mapping->gfp_mask);
  804. }
  805. /*
  806.  * Same as grab_cache_page, but do not wait if the page is unavailable.
  807.  * This is intended for speculative data generators, where the data can
  808.  * be regenerated if the page couldn't be grabbed.  This routine should
  809.  * be safe to call while holding the lock for another page.
  810.  */
  811. struct page *grab_cache_page_nowait(struct address_space *mapping, unsigned long index)
  812. {
  813. struct page *page, **hash;
  814. hash = page_hash(mapping, index);
  815. page = __find_get_page(mapping, index, hash);
  816. if ( page ) {
  817. if ( !TryLockPage(page) ) {
  818. /* Page found and locked */
  819. /* This test is overly paranoid, but what the heck... */
  820. if ( unlikely(page->mapping != mapping || page->index != index) ) {
  821. /* Someone reallocated this page under us. */
  822. UnlockPage(page);
  823. page_cache_release(page);
  824. return NULL;
  825. } else {
  826. return page;
  827. }
  828. } else {
  829. /* Page locked by someone else */
  830. page_cache_release(page);
  831. return NULL;
  832. }
  833. }
  834. page = page_cache_alloc(mapping);
  835. if ( unlikely(!page) )
  836. return NULL; /* Failed to allocate a page */
  837. if ( unlikely(add_to_page_cache_unique(page, mapping, index, hash)) ) {
  838. /* Someone else grabbed the page already. */
  839. page_cache_release(page);
  840. return NULL;
  841. }
  842. return page;
  843. }
  844. #if 0
  845. #define PROFILE_READAHEAD
  846. #define DEBUG_READAHEAD
  847. #endif
  848. /*
  849.  * Read-ahead profiling information
  850.  * --------------------------------
  851.  * Every PROFILE_MAXREADCOUNT, the following information is written 
  852.  * to the syslog:
  853.  *   Percentage of asynchronous read-ahead.
  854.  *   Average of read-ahead fields context value.
  855.  * If DEBUG_READAHEAD is defined, a snapshot of these fields is written 
  856.  * to the syslog.
  857.  */
  858. #ifdef PROFILE_READAHEAD
  859. #define PROFILE_MAXREADCOUNT 1000
  860. static unsigned long total_reada;
  861. static unsigned long total_async;
  862. static unsigned long total_ramax;
  863. static unsigned long total_ralen;
  864. static unsigned long total_rawin;
  865. static void profile_readahead(int async, struct file *filp)
  866. {
  867. unsigned long flags;
  868. ++total_reada;
  869. if (async)
  870. ++total_async;
  871. total_ramax += filp->f_ramax;
  872. total_ralen += filp->f_ralen;
  873. total_rawin += filp->f_rawin;
  874. if (total_reada > PROFILE_MAXREADCOUNT) {
  875. save_flags(flags);
  876. cli();
  877. if (!(total_reada > PROFILE_MAXREADCOUNT)) {
  878. restore_flags(flags);
  879. return;
  880. }
  881. printk("Readahead average:  max=%ld, len=%ld, win=%ld, async=%ld%%n",
  882. total_ramax/total_reada,
  883. total_ralen/total_reada,
  884. total_rawin/total_reada,
  885. (total_async*100)/total_reada);
  886. #ifdef DEBUG_READAHEAD
  887. printk("Readahead snapshot: max=%ld, len=%ld, win=%ld, raend=%Ldn",
  888. filp->f_ramax, filp->f_ralen, filp->f_rawin, filp->f_raend);
  889. #endif
  890. total_reada = 0;
  891. total_async = 0;
  892. total_ramax = 0;
  893. total_ralen = 0;
  894. total_rawin = 0;
  895. restore_flags(flags);
  896. }
  897. }
  898. #endif  /* defined PROFILE_READAHEAD */
  899. /*
  900.  * Read-ahead context:
  901.  * -------------------
  902.  * The read ahead context fields of the "struct file" are the following:
  903.  * - f_raend : position of the first byte after the last page we tried to
  904.  *        read ahead.
  905.  * - f_ramax : current read-ahead maximum size.
  906.  * - f_ralen : length of the current IO read block we tried to read-ahead.
  907.  * - f_rawin : length of the current read-ahead window.
  908.  * if last read-ahead was synchronous then
  909.  * f_rawin = f_ralen
  910.  * otherwise (was asynchronous)
  911.  * f_rawin = previous value of f_ralen + f_ralen
  912.  *
  913.  * Read-ahead limits:
  914.  * ------------------
  915.  * MIN_READAHEAD   : minimum read-ahead size when read-ahead.
  916.  * MAX_READAHEAD   : maximum read-ahead size when read-ahead.
  917.  *
  918.  * Synchronous read-ahead benefits:
  919.  * --------------------------------
  920.  * Using reasonable IO xfer length from peripheral devices increase system 
  921.  * performances.
  922.  * Reasonable means, in this context, not too large but not too small.
  923.  * The actual maximum value is:
  924.  * MAX_READAHEAD + PAGE_CACHE_SIZE = 76k is CONFIG_READA_SMALL is undefined
  925.  *      and 32K if defined (4K page size assumed).
  926.  *
  927.  * Asynchronous read-ahead benefits:
  928.  * ---------------------------------
  929.  * Overlapping next read request and user process execution increase system 
  930.  * performance.
  931.  *
  932.  * Read-ahead risks:
  933.  * -----------------
  934.  * We have to guess which further data are needed by the user process.
  935.  * If these data are often not really needed, it's bad for system 
  936.  * performances.
  937.  * However, we know that files are often accessed sequentially by 
  938.  * application programs and it seems that it is possible to have some good 
  939.  * strategy in that guessing.
  940.  * We only try to read-ahead files that seems to be read sequentially.
  941.  *
  942.  * Asynchronous read-ahead risks:
  943.  * ------------------------------
  944.  * In order to maximize overlapping, we must start some asynchronous read 
  945.  * request from the device, as soon as possible.
  946.  * We must be very careful about:
  947.  * - The number of effective pending IO read requests.
  948.  *   ONE seems to be the only reasonable value.
  949.  * - The total memory pool usage for the file access stream.
  950.  *   This maximum memory usage is implicitly 2 IO read chunks:
  951.  *   2*(MAX_READAHEAD + PAGE_CACHE_SIZE) = 156K if CONFIG_READA_SMALL is undefined,
  952.  *   64k if defined (4K page size assumed).
  953.  */
  954. static inline int get_max_readahead(struct inode * inode)
  955. {
  956. if (!inode->i_dev || !max_readahead[MAJOR(inode->i_dev)])
  957. return vm_max_readahead;
  958. return max_readahead[MAJOR(inode->i_dev)][MINOR(inode->i_dev)];
  959. }
  960. static void generic_file_readahead(int reada_ok,
  961. struct file * filp, struct inode * inode,
  962. struct page * page)
  963. {
  964. unsigned long end_index;
  965. unsigned long index = page->index;
  966. unsigned long max_ahead, ahead;
  967. unsigned long raend;
  968. int max_readahead = get_max_readahead(inode);
  969. end_index = inode->i_size >> PAGE_CACHE_SHIFT;
  970. raend = filp->f_raend;
  971. max_ahead = 0;
  972. /*
  973.  * The current page is locked.
  974.  * If the current position is inside the previous read IO request, do not
  975.  * try to reread previously read ahead pages.
  976.  * Otherwise decide or not to read ahead some pages synchronously.
  977.  * If we are not going to read ahead, set the read ahead context for this 
  978.  * page only.
  979.  */
  980. if (PageLocked(page)) {
  981. if (!filp->f_ralen || index >= raend || index + filp->f_rawin < raend) {
  982. raend = index;
  983. if (raend < end_index)
  984. max_ahead = filp->f_ramax;
  985. filp->f_rawin = 0;
  986. filp->f_ralen = 1;
  987. if (!max_ahead) {
  988. filp->f_raend  = index + filp->f_ralen;
  989. filp->f_rawin += filp->f_ralen;
  990. }
  991. }
  992. }
  993. /*
  994.  * The current page is not locked.
  995.  * If we were reading ahead and,
  996.  * if the current max read ahead size is not zero and,
  997.  * if the current position is inside the last read-ahead IO request,
  998.  *   it is the moment to try to read ahead asynchronously.
  999.  * We will later force unplug device in order to force asynchronous read IO.
  1000.  */
  1001. else if (reada_ok && filp->f_ramax && raend >= 1 &&
  1002.  index <= raend && index + filp->f_ralen >= raend) {
  1003. /*
  1004.  * Add ONE page to max_ahead in order to try to have about the same IO max size
  1005.  * as synchronous read-ahead (MAX_READAHEAD + 1)*PAGE_CACHE_SIZE.
  1006.  * Compute the position of the last page we have tried to read in order to 
  1007.  * begin to read ahead just at the next page.
  1008.  */
  1009. raend -= 1;
  1010. if (raend < end_index)
  1011. max_ahead = filp->f_ramax + 1;
  1012. if (max_ahead) {
  1013. filp->f_rawin = filp->f_ralen;
  1014. filp->f_ralen = 0;
  1015. reada_ok      = 2;
  1016. }
  1017. }
  1018. /*
  1019.  * Try to read ahead pages.
  1020.  * We hope that ll_rw_blk() plug/unplug, coalescence, requests sort and the
  1021.  * scheduler, will work enough for us to avoid too bad actuals IO requests.
  1022.  */
  1023. ahead = 0;
  1024. while (ahead < max_ahead) {
  1025. ahead ++;
  1026. if ((raend + ahead) >= end_index)
  1027. break;
  1028. if (page_cache_read(filp, raend + ahead) < 0)
  1029. break;
  1030. }
  1031. /*
  1032.  * If we tried to read ahead some pages,
  1033.  * If we tried to read ahead asynchronously,
  1034.  *   Try to force unplug of the device in order to start an asynchronous
  1035.  *   read IO request.
  1036.  * Update the read-ahead context.
  1037.  * Store the length of the current read-ahead window.
  1038.  * Double the current max read ahead size.
  1039.  *   That heuristic avoid to do some large IO for files that are not really
  1040.  *   accessed sequentially.
  1041.  */
  1042. if (ahead) {
  1043. filp->f_ralen += ahead;
  1044. filp->f_rawin += filp->f_ralen;
  1045. filp->f_raend = raend + ahead + 1;
  1046. filp->f_ramax += filp->f_ramax;
  1047. if (filp->f_ramax > max_readahead)
  1048. filp->f_ramax = max_readahead;
  1049. #ifdef PROFILE_READAHEAD
  1050. profile_readahead((reada_ok == 2), filp);
  1051. #endif
  1052. }
  1053. return;
  1054. }
  1055. /*
  1056.  * Mark a page as having seen activity.
  1057.  *
  1058.  * If it was already so marked, move it
  1059.  * to the active queue and drop the referenced
  1060.  * bit. Otherwise, just mark it for future
  1061.  * action..
  1062.  */
  1063. void mark_page_accessed(struct page *page)
  1064. {
  1065. if (!PageActive(page) && PageReferenced(page)) {
  1066. activate_page(page);
  1067. ClearPageReferenced(page);
  1068. return;
  1069. }
  1070. /* Mark the page referenced, AFTER checking for previous usage.. */
  1071. SetPageReferenced(page);
  1072. }
  1073. /*
  1074.  * This is a generic file read routine, and uses the
  1075.  * inode->i_op->readpage() function for the actual low-level
  1076.  * stuff.
  1077.  *
  1078.  * This is really ugly. But the goto's actually try to clarify some
  1079.  * of the logic when it comes to error handling etc.
  1080.  */
  1081. void do_generic_file_read(struct file * filp, loff_t *ppos, read_descriptor_t * desc, read_actor_t actor)
  1082. {
  1083. struct address_space *mapping = filp->f_dentry->d_inode->i_mapping;
  1084. struct inode *inode = mapping->host;
  1085. unsigned long index, offset;
  1086. struct page *cached_page;
  1087. int reada_ok;
  1088. int error;
  1089. int max_readahead = get_max_readahead(inode);
  1090. cached_page = NULL;
  1091. index = *ppos >> PAGE_CACHE_SHIFT;
  1092. offset = *ppos & ~PAGE_CACHE_MASK;
  1093. /*
  1094.  * If the current position is outside the previous read-ahead window, 
  1095.  * we reset the current read-ahead context and set read ahead max to zero
  1096.  * (will be set to just needed value later),
  1097.  * otherwise, we assume that the file accesses are sequential enough to
  1098.  * continue read-ahead.
  1099.  */
  1100. if (index > filp->f_raend || index + filp->f_rawin < filp->f_raend) {
  1101. reada_ok = 0;
  1102. filp->f_raend = 0;
  1103. filp->f_ralen = 0;
  1104. filp->f_ramax = 0;
  1105. filp->f_rawin = 0;
  1106. } else {
  1107. reada_ok = 1;
  1108. }
  1109. /*
  1110.  * Adjust the current value of read-ahead max.
  1111.  * If the read operation stay in the first half page, force no readahead.
  1112.  * Otherwise try to increase read ahead max just enough to do the read request.
  1113.  * Then, at least MIN_READAHEAD if read ahead is ok,
  1114.  * and at most MAX_READAHEAD in all cases.
  1115.  */
  1116. if (!index && offset + desc->count <= (PAGE_CACHE_SIZE >> 1)) {
  1117. filp->f_ramax = 0;
  1118. } else {
  1119. unsigned long needed;
  1120. needed = ((offset + desc->count) >> PAGE_CACHE_SHIFT) + 1;
  1121. if (filp->f_ramax < needed)
  1122. filp->f_ramax = needed;
  1123. if (reada_ok && filp->f_ramax < vm_min_readahead)
  1124. filp->f_ramax = vm_min_readahead;
  1125. if (filp->f_ramax > max_readahead)
  1126. filp->f_ramax = max_readahead;
  1127. }
  1128. for (;;) {
  1129. struct page *page, **hash;
  1130. unsigned long end_index, nr, ret;
  1131. end_index = inode->i_size >> PAGE_CACHE_SHIFT;
  1132. if (index > end_index)
  1133. break;
  1134. nr = PAGE_CACHE_SIZE;
  1135. if (index == end_index) {
  1136. nr = inode->i_size & ~PAGE_CACHE_MASK;
  1137. if (nr <= offset)
  1138. break;
  1139. }
  1140. nr = nr - offset;
  1141. /*
  1142.  * Try to find the data in the page cache..
  1143.  */
  1144. hash = page_hash(mapping, index);
  1145. spin_lock(&pagecache_lock);
  1146. page = __find_page_nolock(mapping, index, *hash);
  1147. if (!page)
  1148. goto no_cached_page;
  1149. found_page:
  1150. page_cache_get(page);
  1151. spin_unlock(&pagecache_lock);
  1152. if (!Page_Uptodate(page))
  1153. goto page_not_up_to_date;
  1154. generic_file_readahead(reada_ok, filp, inode, page);
  1155. page_ok:
  1156. /* If users can be writing to this page using arbitrary
  1157.  * virtual addresses, take care about potential aliasing
  1158.  * before reading the page on the kernel side.
  1159.  */
  1160. if (mapping->i_mmap_shared != NULL)
  1161. flush_dcache_page(page);
  1162. /*
  1163.  * Mark the page accessed if we read the
  1164.  * beginning or we just did an lseek.
  1165.  */
  1166. if (!offset || !filp->f_reada)
  1167. mark_page_accessed(page);
  1168. /*
  1169.  * Ok, we have the page, and it's up-to-date, so
  1170.  * now we can copy it to user space...
  1171.  *
  1172.  * The actor routine returns how many bytes were actually used..
  1173.  * NOTE! This may not be the same as how much of a user buffer
  1174.  * we filled up (we may be padding etc), so we can only update
  1175.  * "pos" here (the actor routine has to update the user buffer
  1176.  * pointers and the remaining count).
  1177.  */
  1178. ret = actor(desc, page, offset, nr);
  1179. offset += ret;
  1180. index += offset >> PAGE_CACHE_SHIFT;
  1181. offset &= ~PAGE_CACHE_MASK;
  1182. page_cache_release(page);
  1183. if (ret == nr && desc->count)
  1184. continue;
  1185. break;
  1186. /*
  1187.  * Ok, the page was not immediately readable, so let's try to read ahead while we're at it..
  1188.  */
  1189. page_not_up_to_date:
  1190. generic_file_readahead(reada_ok, filp, inode, page);
  1191. if (Page_Uptodate(page))
  1192. goto page_ok;
  1193. /* Get exclusive access to the page ... */
  1194. lock_page(page);
  1195. /* Did it get unhashed before we got the lock? */
  1196. if (!page->mapping) {
  1197. UnlockPage(page);
  1198. page_cache_release(page);
  1199. continue;
  1200. }
  1201. /* Did somebody else fill it already? */
  1202. if (Page_Uptodate(page)) {
  1203. UnlockPage(page);
  1204. goto page_ok;
  1205. }
  1206. readpage:
  1207. /* ... and start the actual read. The read will unlock the page. */
  1208. error = mapping->a_ops->readpage(filp, page);
  1209. if (!error) {
  1210. if (Page_Uptodate(page))
  1211. goto page_ok;
  1212. /* Again, try some read-ahead while waiting for the page to finish.. */
  1213. generic_file_readahead(reada_ok, filp, inode, page);
  1214. wait_on_page(page);
  1215. if (Page_Uptodate(page))
  1216. goto page_ok;
  1217. error = -EIO;
  1218. }
  1219. /* UHHUH! A synchronous read error occurred. Report it */
  1220. desc->error = error;
  1221. page_cache_release(page);
  1222. break;
  1223. no_cached_page:
  1224. /*
  1225.  * Ok, it wasn't cached, so we need to create a new
  1226.  * page..
  1227.  *
  1228.  * We get here with the page cache lock held.
  1229.  */
  1230. if (!cached_page) {
  1231. spin_unlock(&pagecache_lock);
  1232. cached_page = page_cache_alloc(mapping);
  1233. if (!cached_page) {
  1234. desc->error = -ENOMEM;
  1235. break;
  1236. }
  1237. /*
  1238.  * Somebody may have added the page while we
  1239.  * dropped the page cache lock. Check for that.
  1240.  */
  1241. spin_lock(&pagecache_lock);
  1242. page = __find_page_nolock(mapping, index, *hash);
  1243. if (page)
  1244. goto found_page;
  1245. }
  1246. /*
  1247.  * Ok, add the new page to the hash-queues...
  1248.  */
  1249. page = cached_page;
  1250. __add_to_page_cache(page, mapping, index, hash);
  1251. spin_unlock(&pagecache_lock);
  1252. lru_cache_add(page);
  1253. cached_page = NULL;
  1254. goto readpage;
  1255. }
  1256. *ppos = ((loff_t) index << PAGE_CACHE_SHIFT) + offset;
  1257. filp->f_reada = 1;
  1258. if (cached_page)
  1259. page_cache_release(cached_page);
  1260. UPDATE_ATIME(inode);
  1261. }
  1262. static ssize_t generic_file_direct_IO(int rw, struct file * filp, char * buf, size_t count, loff_t offset)
  1263. {
  1264. ssize_t retval;
  1265. int new_iobuf, chunk_size, blocksize_mask, blocksize, blocksize_bits, iosize, progress;
  1266. struct kiobuf * iobuf;
  1267. struct address_space * mapping = filp->f_dentry->d_inode->i_mapping;
  1268. struct inode * inode = mapping->host;
  1269. new_iobuf = 0;
  1270. iobuf = filp->f_iobuf;
  1271. if (test_and_set_bit(0, &filp->f_iobuf_lock)) {
  1272. /*
  1273.  * A parallel read/write is using the preallocated iobuf
  1274.  * so just run slow and allocate a new one.
  1275.  */
  1276. retval = alloc_kiovec(1, &iobuf);
  1277. if (retval)
  1278. goto out;
  1279. new_iobuf = 1;
  1280. }
  1281. blocksize = 1 << inode->i_blkbits;
  1282. blocksize_bits = inode->i_blkbits;
  1283. blocksize_mask = blocksize - 1;
  1284. chunk_size = KIO_MAX_ATOMIC_IO << 10;
  1285. retval = -EINVAL;
  1286. if ((offset & blocksize_mask) || (count & blocksize_mask))
  1287. goto out_free;
  1288. if (!mapping->a_ops->direct_IO)
  1289. goto out_free;
  1290. /*
  1291.  * Flush to disk exclusively the _data_, metadata must remain
  1292.  * completly asynchronous or performance will go to /dev/null.
  1293.  */
  1294. retval = filemap_fdatasync(mapping);
  1295. if (retval == 0)
  1296. retval = fsync_inode_data_buffers(inode);
  1297. if (retval == 0)
  1298. retval = filemap_fdatawait(mapping);
  1299. if (retval < 0)
  1300. goto out_free;
  1301. progress = retval = 0;
  1302. while (count > 0) {
  1303. iosize = count;
  1304. if (iosize > chunk_size)
  1305. iosize = chunk_size;
  1306. retval = map_user_kiobuf(rw, iobuf, (unsigned long) buf, iosize);
  1307. if (retval)
  1308. break;
  1309. retval = mapping->a_ops->direct_IO(rw, inode, iobuf, (offset+progress) >> blocksize_bits, blocksize);
  1310. if (rw == READ && retval > 0)
  1311. mark_dirty_kiobuf(iobuf, retval);
  1312. if (retval >= 0) {
  1313. count -= retval;
  1314. buf += retval;
  1315. progress += retval;
  1316. }
  1317. unmap_kiobuf(iobuf);
  1318. if (retval != iosize)
  1319. break;
  1320. }
  1321. if (progress)
  1322. retval = progress;
  1323.  out_free:
  1324. if (!new_iobuf)
  1325. clear_bit(0, &filp->f_iobuf_lock);
  1326. else
  1327. free_kiovec(1, &iobuf);
  1328.  out:
  1329. return retval;
  1330. }
  1331. int file_read_actor(read_descriptor_t * desc, struct page *page, unsigned long offset, unsigned long size)
  1332. {
  1333. char *kaddr;
  1334. unsigned long left, count = desc->count;
  1335. if (size > count)
  1336. size = count;
  1337. kaddr = kmap(page);
  1338. left = __copy_to_user(desc->buf, kaddr + offset, size);
  1339. kunmap(page);
  1340. if (left) {
  1341. size -= left;
  1342. desc->error = -EFAULT;
  1343. }
  1344. desc->count = count - size;
  1345. desc->written += size;
  1346. desc->buf += size;
  1347. return size;
  1348. }
  1349. /*
  1350.  * This is the "read()" routine for all filesystems
  1351.  * that can use the page cache directly.
  1352.  */
  1353. ssize_t generic_file_read(struct file * filp, char * buf, size_t count, loff_t *ppos)
  1354. {
  1355. ssize_t retval;
  1356. if ((ssize_t) count < 0)
  1357. return -EINVAL;
  1358. if (filp->f_flags & O_DIRECT)
  1359. goto o_direct;
  1360. retval = -EFAULT;
  1361. if (access_ok(VERIFY_WRITE, buf, count)) {
  1362. retval = 0;
  1363. if (count) {
  1364. read_descriptor_t desc;
  1365. desc.written = 0;
  1366. desc.count = count;
  1367. desc.buf = buf;
  1368. desc.error = 0;
  1369. do_generic_file_read(filp, ppos, &desc, file_read_actor);
  1370. retval = desc.written;
  1371. if (!retval)
  1372. retval = desc.error;
  1373. }
  1374. }
  1375.  out:
  1376. return retval;
  1377.  o_direct:
  1378. {
  1379. loff_t pos = *ppos, size;
  1380. struct address_space *mapping = filp->f_dentry->d_inode->i_mapping;
  1381. struct inode *inode = mapping->host;
  1382. retval = 0;
  1383. if (!count)
  1384. goto out; /* skip atime */
  1385. size = inode->i_size;
  1386. if (pos < size) {
  1387. if (pos + count > size)
  1388. count = size - pos;
  1389. retval = generic_file_direct_IO(READ, filp, buf, count, pos);
  1390. if (retval > 0)
  1391. *ppos = pos + retval;
  1392. }
  1393. UPDATE_ATIME(filp->f_dentry->d_inode);
  1394. goto out;
  1395. }
  1396. }
  1397. static int file_send_actor(read_descriptor_t * desc, struct page *page, unsigned long offset , unsigned long size)
  1398. {
  1399. ssize_t written;
  1400. unsigned long count = desc->count;
  1401. struct file *file = (struct file *) desc->buf;
  1402. if (size > count)
  1403. size = count;
  1404.   if (file->f_op->sendpage) {
  1405.   written = file->f_op->sendpage(file, page, offset,
  1406.        size, &file->f_pos, size<count);
  1407. } else {
  1408. char *kaddr;
  1409. mm_segment_t old_fs;
  1410. old_fs = get_fs();
  1411. set_fs(KERNEL_DS);
  1412. kaddr = kmap(page);
  1413. written = file->f_op->write(file, kaddr + offset, size, &file->f_pos);
  1414. kunmap(page);
  1415. set_fs(old_fs);
  1416. }
  1417. if (written < 0) {
  1418. desc->error = written;
  1419. written = 0;
  1420. }
  1421. desc->count = count - written;
  1422. desc->written += written;
  1423. return written;
  1424. }
  1425. asmlinkage ssize_t sys_sendfile(int out_fd, int in_fd, off_t *offset, size_t count)
  1426. {
  1427. ssize_t retval;
  1428. struct file * in_file, * out_file;
  1429. struct inode * in_inode, * out_inode;
  1430. /*
  1431.  * Get input file, and verify that it is ok..
  1432.  */
  1433. retval = -EBADF;
  1434. in_file = fget(in_fd);
  1435. if (!in_file)
  1436. goto out;
  1437. if (!(in_file->f_mode & FMODE_READ))
  1438. goto fput_in;
  1439. retval = -EINVAL;
  1440. in_inode = in_file->f_dentry->d_inode;
  1441. if (!in_inode)
  1442. goto fput_in;
  1443. if (!in_inode->i_mapping->a_ops->readpage)
  1444. goto fput_in;
  1445. retval = locks_verify_area(FLOCK_VERIFY_READ, in_inode, in_file, in_file->f_pos, count);
  1446. if (retval)
  1447. goto fput_in;
  1448. /*
  1449.  * Get output file, and verify that it is ok..
  1450.  */
  1451. retval = -EBADF;
  1452. out_file = fget(out_fd);
  1453. if (!out_file)
  1454. goto fput_in;
  1455. if (!(out_file->f_mode & FMODE_WRITE))
  1456. goto fput_out;
  1457. retval = -EINVAL;
  1458. if (!out_file->f_op || !out_file->f_op->write)
  1459. goto fput_out;
  1460. out_inode = out_file->f_dentry->d_inode;
  1461. retval = locks_verify_area(FLOCK_VERIFY_WRITE, out_inode, out_file, out_file->f_pos, count);
  1462. if (retval)
  1463. goto fput_out;
  1464. retval = 0;
  1465. if (count) {
  1466. read_descriptor_t desc;
  1467. loff_t pos = 0, *ppos;
  1468. retval = -EFAULT;
  1469. ppos = &in_file->f_pos;
  1470. if (offset) {
  1471. if (get_user(pos, offset))
  1472. goto fput_out;
  1473. ppos = &pos;
  1474. }
  1475. desc.written = 0;
  1476. desc.count = count;
  1477. desc.buf = (char *) out_file;
  1478. desc.error = 0;
  1479. do_generic_file_read(in_file, ppos, &desc, file_send_actor);
  1480. retval = desc.written;
  1481. if (!retval)
  1482. retval = desc.error;
  1483. if (offset)
  1484. put_user(pos, offset);
  1485. }
  1486. fput_out:
  1487. fput(out_file);
  1488. fput_in:
  1489. fput(in_file);
  1490. out:
  1491. return retval;
  1492. }
  1493. static ssize_t do_readahead(struct file *file, unsigned long index, unsigned long nr)
  1494. {
  1495. struct address_space *mapping = file->f_dentry->d_inode->i_mapping;
  1496. unsigned long max;
  1497. if (!mapping || !mapping->a_ops || !mapping->a_ops->readpage)
  1498. return -EINVAL;
  1499. /* Limit it to the size of the file.. */
  1500. max = (mapping->host->i_size + ~PAGE_CACHE_MASK) >> PAGE_CACHE_SHIFT;
  1501. if (index > max)
  1502. return 0;
  1503. max -= index;
  1504. if (nr > max)
  1505. nr = max;
  1506. /* And limit it to a sane percentage of the inactive list.. */
  1507. max = nr_inactive_pages / 2;
  1508. if (nr > max)
  1509. nr = max;
  1510. while (nr) {
  1511. page_cache_read(file, index);
  1512. index++;
  1513. nr--;
  1514. }
  1515. return 0;
  1516. }
  1517. asmlinkage ssize_t sys_readahead(int fd, loff_t offset, size_t count)
  1518. {
  1519. ssize_t ret;
  1520. struct file *file;
  1521. ret = -EBADF;
  1522. file = fget(fd);
  1523. if (file) {
  1524. if (file->f_mode & FMODE_READ) {
  1525. unsigned long start = offset >> PAGE_CACHE_SHIFT;
  1526. unsigned long len = (count + ((long)offset & ~PAGE_CACHE_MASK)) >> PAGE_CACHE_SHIFT;
  1527. ret = do_readahead(file, start, len);
  1528. }
  1529. fput(file);
  1530. }
  1531. return ret;
  1532. }
  1533. /*
  1534.  * Read-ahead and flush behind for MADV_SEQUENTIAL areas.  Since we are
  1535.  * sure this is sequential access, we don't need a flexible read-ahead
  1536.  * window size -- we can always use a large fixed size window.
  1537.  */
  1538. static void nopage_sequential_readahead(struct vm_area_struct * vma,
  1539. unsigned long pgoff, unsigned long filesize)
  1540. {
  1541. unsigned long ra_window;
  1542. ra_window = get_max_readahead(vma->vm_file->f_dentry->d_inode);
  1543. ra_window = CLUSTER_OFFSET(ra_window + CLUSTER_PAGES - 1);
  1544. /* vm_raend is zero if we haven't read ahead in this area yet.  */
  1545. if (vma->vm_raend == 0)
  1546. vma->vm_raend = vma->vm_pgoff + ra_window;
  1547. /*
  1548.  * If we've just faulted the page half-way through our window,
  1549.  * then schedule reads for the next window, and release the
  1550.  * pages in the previous window.
  1551.  */
  1552. if ((pgoff + (ra_window >> 1)) == vma->vm_raend) {
  1553. unsigned long start = vma->vm_pgoff + vma->vm_raend;
  1554. unsigned long end = start + ra_window;
  1555. if (end > ((vma->vm_end >> PAGE_SHIFT) + vma->vm_pgoff))
  1556. end = (vma->vm_end >> PAGE_SHIFT) + vma->vm_pgoff;
  1557. if (start > end)
  1558. return;
  1559. while ((start < end) && (start < filesize)) {
  1560. if (read_cluster_nonblocking(vma->vm_file,
  1561. start, filesize) < 0)
  1562. break;
  1563. start += CLUSTER_PAGES;
  1564. }
  1565. run_task_queue(&tq_disk);
  1566. /* if we're far enough past the beginning of this area,
  1567.    recycle pages that are in the previous window. */
  1568. if (vma->vm_raend > (vma->vm_pgoff + ra_window + ra_window)) {
  1569. unsigned long window = ra_window << PAGE_SHIFT;
  1570. end = vma->vm_start + (vma->vm_raend << PAGE_SHIFT);
  1571. end -= window + window;
  1572. filemap_sync(vma, end - window, window, MS_INVALIDATE);
  1573. }
  1574. vma->vm_raend += ra_window;
  1575. }
  1576. return;
  1577. }
  1578. /*
  1579.  * filemap_nopage() is invoked via the vma operations vector for a
  1580.  * mapped memory region to read in file data during a page fault.
  1581.  *
  1582.  * The goto's are kind of ugly, but this streamlines the normal case of having
  1583.  * it in the page cache, and handles the special cases reasonably without
  1584.  * having a lot of duplicated code.
  1585.  */
  1586. struct page * filemap_nopage(struct vm_area_struct * area, unsigned long address, int unused)
  1587. {
  1588. int error;
  1589. struct file *file = area->vm_file;
  1590. struct address_space *mapping = file->f_dentry->d_inode->i_mapping;
  1591. struct inode *inode = mapping->host;
  1592. struct page *page, **hash;
  1593. unsigned long size, pgoff, endoff;
  1594. pgoff = ((address - area->vm_start) >> PAGE_CACHE_SHIFT) + area->vm_pgoff;
  1595. endoff = ((area->vm_end - area->vm_start) >> PAGE_CACHE_SHIFT) + area->vm_pgoff;
  1596. retry_all:
  1597. /*
  1598.  * An external ptracer can access pages that normally aren't
  1599.  * accessible..
  1600.  */
  1601. size = (inode->i_size + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
  1602. if ((pgoff >= size) && (area->vm_mm == current->mm))
  1603. return NULL;
  1604. /* The "size" of the file, as far as mmap is concerned, isn't bigger than the mapping */
  1605. if (size > endoff)
  1606. size = endoff;
  1607. /*
  1608.  * Do we have something in the page cache already?
  1609.  */
  1610. hash = page_hash(mapping, pgoff);
  1611. retry_find:
  1612. page = __find_get_page(mapping, pgoff, hash);
  1613. if (!page)
  1614. goto no_cached_page;
  1615. /*
  1616.  * Ok, found a page in the page cache, now we need to check
  1617.  * that it's up-to-date.
  1618.  */
  1619. if (!Page_Uptodate(page))
  1620. goto page_not_uptodate;
  1621. success:
  1622.   /*
  1623.  * Try read-ahead for sequential areas.
  1624.  */
  1625. if (VM_SequentialReadHint(area))
  1626. nopage_sequential_readahead(area, pgoff, size);
  1627. /*
  1628.  * Found the page and have a reference on it, need to check sharing
  1629.  * and possibly copy it over to another page..
  1630.  */
  1631. mark_page_accessed(page);
  1632. flush_page_to_ram(page);
  1633. return page;
  1634. no_cached_page:
  1635. /*
  1636.  * If the requested offset is within our file, try to read a whole 
  1637.  * cluster of pages at once.
  1638.  *
  1639.  * Otherwise, we're off the end of a privately mapped file,
  1640.  * so we need to map a zero page.
  1641.  */
  1642. if ((pgoff < size) && !VM_RandomReadHint(area))
  1643. error = read_cluster_nonblocking(file, pgoff, size);
  1644. else
  1645. error = page_cache_read(file, pgoff);
  1646. /*
  1647.  * The page we want has now been added to the page cache.
  1648.  * In the unlikely event that someone removed it in the
  1649.  * meantime, we'll just come back here and read it again.
  1650.  */
  1651. if (error >= 0)
  1652. goto retry_find;
  1653. /*
  1654.  * An error return from page_cache_read can result if the
  1655.  * system is low on memory, or a problem occurs while trying
  1656.  * to schedule I/O.
  1657.  */
  1658. if (error == -ENOMEM)
  1659. return NOPAGE_OOM;
  1660. return NULL;
  1661. page_not_uptodate:
  1662. lock_page(page);
  1663. /* Did it get unhashed while we waited for it? */
  1664. if (!page->mapping) {
  1665. UnlockPage(page);
  1666. page_cache_release(page);
  1667. goto retry_all;
  1668. }
  1669. /* Did somebody else get it up-to-date? */
  1670. if (Page_Uptodate(page)) {
  1671. UnlockPage(page);
  1672. goto success;
  1673. }
  1674. if (!mapping->a_ops->readpage(file, page)) {
  1675. wait_on_page(page);
  1676. if (Page_Uptodate(page))
  1677. goto success;
  1678. }
  1679. /*
  1680.  * Umm, take care of errors if the page isn't up-to-date.
  1681.  * Try to re-read it _once_. We do this synchronously,
  1682.  * because there really aren't any performance issues here
  1683.  * and we need to check for errors.
  1684.  */
  1685. lock_page(page);
  1686. /* Somebody truncated the page on us? */
  1687. if (!page->mapping) {
  1688. UnlockPage(page);
  1689. page_cache_release(page);
  1690. goto retry_all;
  1691. }
  1692. /* Somebody else successfully read it in? */
  1693. if (Page_Uptodate(page)) {
  1694. UnlockPage(page);
  1695. goto success;
  1696. }
  1697. ClearPageError(page);
  1698. if (!mapping->a_ops->readpage(file, page)) {
  1699. wait_on_page(page);
  1700. if (Page_Uptodate(page))
  1701. goto success;
  1702. }
  1703. /*
  1704.  * Things didn't work out. Return zero to tell the
  1705.  * mm layer so, possibly freeing the page cache page first.
  1706.  */
  1707. page_cache_release(page);
  1708. return NULL;
  1709. }
  1710. /* Called with mm->page_table_lock held to protect against other
  1711.  * threads/the swapper from ripping pte's out from under us.
  1712.  */
  1713. static inline int filemap_sync_pte(pte_t * ptep, struct vm_area_struct *vma,
  1714. unsigned long address, unsigned int flags)
  1715. {
  1716. pte_t pte = *ptep;
  1717. if (pte_present(pte)) {
  1718. struct page *page = pte_page(pte);
  1719. if (VALID_PAGE(page) && !PageReserved(page) && ptep_test_and_clear_dirty(ptep)) {
  1720. flush_tlb_page(vma, address);
  1721. set_page_dirty(page);
  1722. }
  1723. }
  1724. return 0;
  1725. }
  1726. static inline int filemap_sync_pte_range(pmd_t * pmd,
  1727. unsigned long address, unsigned long size, 
  1728. struct vm_area_struct *vma, unsigned long offset, unsigned int flags)
  1729. {
  1730. pte_t * pte;
  1731. unsigned long end;
  1732. int error;
  1733. if (pmd_none(*pmd))
  1734. return 0;
  1735. if (pmd_bad(*pmd)) {
  1736. pmd_ERROR(*pmd);
  1737. pmd_clear(pmd);
  1738. return 0;
  1739. }
  1740. pte = pte_offset(pmd, address);
  1741. offset += address & PMD_MASK;
  1742. address &= ~PMD_MASK;
  1743. end = address + size;
  1744. if (end > PMD_SIZE)
  1745. end = PMD_SIZE;
  1746. error = 0;
  1747. do {
  1748. error |= filemap_sync_pte(pte, vma, address + offset, flags);
  1749. address += PAGE_SIZE;
  1750. pte++;
  1751. } while (address && (address < end));
  1752. return error;
  1753. }
  1754. static inline int filemap_sync_pmd_range(pgd_t * pgd,
  1755. unsigned long address, unsigned long size, 
  1756. struct vm_area_struct *vma, unsigned int flags)
  1757. {
  1758. pmd_t * pmd;
  1759. unsigned long offset, end;
  1760. int error;
  1761. if (pgd_none(*pgd))
  1762. return 0;
  1763. if (pgd_bad(*pgd)) {
  1764. pgd_ERROR(*pgd);
  1765. pgd_clear(pgd);
  1766. return 0;
  1767. }
  1768. pmd = pmd_offset(pgd, address);
  1769. offset = address & PGDIR_MASK;
  1770. address &= ~PGDIR_MASK;
  1771. end = address + size;
  1772. if (end > PGDIR_SIZE)
  1773. end = PGDIR_SIZE;
  1774. error = 0;
  1775. do {
  1776. error |= filemap_sync_pte_range(pmd, address, end - address, vma, offset, flags);
  1777. address = (address + PMD_SIZE) & PMD_MASK;
  1778. pmd++;
  1779. } while (address && (address < end));
  1780. return error;
  1781. }
  1782. int filemap_sync(struct vm_area_struct * vma, unsigned long address,
  1783. size_t size, unsigned int flags)
  1784. {
  1785. pgd_t * dir;
  1786. unsigned long end = address + size;
  1787. int error = 0;
  1788. /* Aquire the lock early; it may be possible to avoid dropping
  1789.  * and reaquiring it repeatedly.
  1790.  */
  1791. spin_lock(&vma->vm_mm->page_table_lock);
  1792. dir = pgd_offset(vma->vm_mm, address);
  1793. flush_cache_range(vma->vm_mm, end - size, end);
  1794. if (address >= end)
  1795. BUG();
  1796. do {
  1797. error |= filemap_sync_pmd_range(dir, address, end - address, vma, flags);
  1798. address = (address + PGDIR_SIZE) & PGDIR_MASK;
  1799. dir++;
  1800. } while (address && (address < end));
  1801. flush_tlb_range(vma->vm_mm, end - size, end);
  1802. spin_unlock(&vma->vm_mm->page_table_lock);
  1803. return error;
  1804. }
  1805. static struct vm_operations_struct generic_file_vm_ops = {
  1806. nopage: filemap_nopage,
  1807. };
  1808. /* This is used for a general mmap of a disk file */
  1809. int generic_file_mmap(struct file * file, struct vm_area_struct * vma)
  1810. {
  1811. struct address_space *mapping = file->f_dentry->d_inode->i_mapping;
  1812. struct inode *inode = mapping->host;
  1813. if ((vma->vm_flags & VM_SHARED) && (vma->vm_flags & VM_MAYWRITE)) {
  1814. if (!mapping->a_ops->writepage)
  1815. return -EINVAL;
  1816. }
  1817. if (!mapping->a_ops->readpage)
  1818. return -ENOEXEC;
  1819. UPDATE_ATIME(inode);
  1820. vma->vm_ops = &generic_file_vm_ops;
  1821. return 0;
  1822. }
  1823. /*
  1824.  * The msync() system call.
  1825.  */
  1826. /*
  1827.  * MS_SYNC syncs the entire file - including mappings.
  1828.  *
  1829.  * MS_ASYNC initiates writeout of just the dirty mapped data.
  1830.  * This provides no guarantee of file integrity - things like indirect
  1831.  * blocks may not have started writeout.  MS_ASYNC is primarily useful
  1832.  * where the application knows that it has finished with the data and
  1833.  * wishes to intelligently schedule its own I/O traffic.
  1834.  */
  1835. static int msync_interval(struct vm_area_struct * vma,
  1836. unsigned long start, unsigned long end, int flags)
  1837. {
  1838. int ret = 0;
  1839. struct file * file = vma->vm_file;
  1840. if (file && (vma->vm_flags & VM_SHARED)) {
  1841. ret = filemap_sync(vma, start, end-start, flags);
  1842. if (!ret && (flags & (MS_SYNC|MS_ASYNC))) {
  1843. struct inode * inode = file->f_dentry->d_inode;
  1844. down(&inode->i_sem);
  1845. ret = filemap_fdatasync(inode->i_mapping);
  1846. if (flags & MS_SYNC) {
  1847. int err;
  1848. if (file->f_op && file->f_op->fsync) {
  1849. err = file->f_op->fsync(file, file->f_dentry, 1);
  1850. if (err && !ret)
  1851. ret = err;
  1852. }
  1853. err = filemap_fdatawait(inode->i_mapping);
  1854. if (err && !ret)
  1855. ret = err;
  1856. }
  1857. up(&inode->i_sem);
  1858. }
  1859. }
  1860. return ret;
  1861. }
  1862. asmlinkage long sys_msync(unsigned long start, size_t len, int flags)
  1863. {
  1864. unsigned long end;
  1865. struct vm_area_struct * vma;
  1866. int unmapped_error, error = -EINVAL;
  1867. down_read(&current->mm->mmap_sem);
  1868. if (start & ~PAGE_MASK)
  1869. goto out;
  1870. len = (len + ~PAGE_MASK) & PAGE_MASK;
  1871. end = start + len;
  1872. if (end < start)
  1873. goto out;
  1874. if (flags & ~(MS_ASYNC | MS_INVALIDATE | MS_SYNC))
  1875. goto out;
  1876. error = 0;
  1877. if (end == start)
  1878. goto out;
  1879. /*
  1880.  * If the interval [start,end) covers some unmapped address ranges,
  1881.  * just ignore them, but return -EFAULT at the end.
  1882.  */
  1883. vma = find_vma(current->mm, start);
  1884. unmapped_error = 0;
  1885. for (;;) {
  1886. /* Still start < end. */
  1887. error = -EFAULT;
  1888. if (!vma)
  1889. goto out;
  1890. /* Here start < vma->vm_end. */
  1891. if (start < vma->vm_start) {
  1892. unmapped_error = -EFAULT;
  1893. start = vma->vm_start;
  1894. }
  1895. /* Here vma->vm_start <= start < vma->vm_end. */
  1896. if (end <= vma->vm_end) {
  1897. if (start < end) {
  1898. error = msync_interval(vma, start, end, flags);
  1899. if (error)
  1900. goto out;
  1901. }
  1902. error = unmapped_error;
  1903. goto out;
  1904. }
  1905. /* Here vma->vm_start <= start < vma->vm_end < end. */
  1906. error = msync_interval(vma, start, vma->vm_end, flags);
  1907. if (error)
  1908. goto out;
  1909. start = vma->vm_end;
  1910. vma = vma->vm_next;
  1911. }
  1912. out:
  1913. up_read(&current->mm->mmap_sem);
  1914. return error;
  1915. }
  1916. static inline void setup_read_behavior(struct vm_area_struct * vma,
  1917. int behavior)
  1918. {
  1919. VM_ClearReadHint(vma);
  1920. switch(behavior) {
  1921. case MADV_SEQUENTIAL:
  1922. vma->vm_flags |= VM_SEQ_READ;
  1923. break;
  1924. case MADV_RANDOM:
  1925. vma->vm_flags |= VM_RAND_READ;
  1926. break;
  1927. default:
  1928. break;
  1929. }
  1930. return;
  1931. }
  1932. static long madvise_fixup_start(struct vm_area_struct * vma,
  1933. unsigned long end, int behavior)
  1934. {
  1935. struct vm_area_struct * n;
  1936. struct mm_struct * mm = vma->vm_mm;
  1937. n = kmem_cache_alloc(vm_area_cachep, SLAB_KERNEL);
  1938. if (!n)
  1939. return -EAGAIN;
  1940. *n = *vma;
  1941. n->vm_end = end;
  1942. setup_read_behavior(n, behavior);
  1943. n->vm_raend = 0;
  1944. if (n->vm_file)
  1945. get_file(n->vm_file);
  1946. if (n->vm_ops && n->vm_ops->open)
  1947. n->vm_ops->open(n);
  1948. vma->vm_pgoff += (end - vma->vm_start) >> PAGE_SHIFT;
  1949. lock_vma_mappings(vma);
  1950. spin_lock(&mm->page_table_lock);
  1951. vma->vm_start = end;
  1952. __insert_vm_struct(mm, n);
  1953. spin_unlock(&mm->page_table_lock);
  1954. unlock_vma_mappings(vma);
  1955. return 0;
  1956. }
  1957. static long madvise_fixup_end(struct vm_area_struct * vma,
  1958. unsigned long start, int behavior)
  1959. {
  1960. struct vm_area_struct * n;
  1961. struct mm_struct * mm = vma->vm_mm;
  1962. n = kmem_cache_alloc(vm_area_cachep, SLAB_KERNEL);
  1963. if (!n)
  1964. return -EAGAIN;
  1965. *n = *vma;
  1966. n->vm_start = start;
  1967. n->vm_pgoff += (n->vm_start - vma->vm_start) >> PAGE_SHIFT;
  1968. setup_read_behavior(n, behavior);
  1969. n->vm_raend = 0;
  1970. if (n->vm_file)
  1971. get_file(n->vm_file);
  1972. if (n->vm_ops && n->vm_ops->open)
  1973. n->vm_ops->open(n);
  1974. lock_vma_mappings(vma);
  1975. spin_lock(&mm->page_table_lock);
  1976. vma->vm_end = start;
  1977. __insert_vm_struct(mm, n);
  1978. spin_unlock(&mm->page_table_lock);
  1979. unlock_vma_mappings(vma);
  1980. return 0;
  1981. }
  1982. static long madvise_fixup_middle(struct vm_area_struct * vma,
  1983. unsigned long start, unsigned long end, int behavior)
  1984. {
  1985. struct vm_area_struct * left, * right;
  1986. struct mm_struct * mm = vma->vm_mm;
  1987. left = kmem_cache_alloc(vm_area_cachep, SLAB_KERNEL);
  1988. if (!left)
  1989. return -EAGAIN;
  1990. right = kmem_cache_alloc(vm_area_cachep, SLAB_KERNEL);
  1991. if (!right) {
  1992. kmem_cache_free(vm_area_cachep, left);
  1993. return -EAGAIN;
  1994. }
  1995. *left = *vma;
  1996. *right = *vma;
  1997. left->vm_end = start;
  1998. right->vm_start = end;
  1999. right->vm_pgoff += (right->vm_start - left->vm_start) >> PAGE_SHIFT;
  2000. left->vm_raend = 0;
  2001. right->vm_raend = 0;
  2002. if (vma->vm_file)
  2003. atomic_add(2, &vma->vm_file->f_count);
  2004. if (vma->vm_ops && vma->vm_ops->open) {
  2005. vma->vm_ops->open(left);
  2006. vma->vm_ops->open(right);
  2007. }
  2008. vma->vm_pgoff += (start - vma->vm_start) >> PAGE_SHIFT;
  2009. vma->vm_raend = 0;
  2010. lock_vma_mappings(vma);
  2011. spin_lock(&mm->page_table_lock);
  2012. vma->vm_start = start;
  2013. vma->vm_end = end;
  2014. setup_read_behavior(vma, behavior);
  2015. __insert_vm_struct(mm, left);
  2016. __insert_vm_struct(mm, right);
  2017. spin_unlock(&mm->page_table_lock);
  2018. unlock_vma_mappings(vma);
  2019. return 0;
  2020. }
  2021. /*
  2022.  * We can potentially split a vm area into separate
  2023.  * areas, each area with its own behavior.
  2024.  */
  2025. static long madvise_behavior(struct vm_area_struct * vma,
  2026. unsigned long start, unsigned long end, int behavior)
  2027. {
  2028. int error = 0;
  2029. /* This caps the number of vma's this process can own */
  2030. if (vma->vm_mm->map_count > MAX_MAP_COUNT)
  2031. return -ENOMEM;
  2032. if (start == vma->vm_start) {
  2033. if (end == vma->vm_end) {
  2034. setup_read_behavior(vma, behavior);
  2035. vma->vm_raend = 0;
  2036. } else
  2037. error = madvise_fixup_start(vma, end, behavior);
  2038. } else {
  2039. if (end == vma->vm_end)
  2040. error = madvise_fixup_end(vma, start, behavior);
  2041. else
  2042. error = madvise_fixup_middle(vma, start, end, behavior);
  2043. }
  2044. return error;
  2045. }
  2046. /*
  2047.  * Schedule all required I/O operations, then run the disk queue
  2048.  * to make sure they are started.  Do not wait for completion.
  2049.  */
  2050. static long madvise_willneed(struct vm_area_struct * vma,
  2051. unsigned long start, unsigned long end)
  2052. {
  2053. long error = -EBADF;
  2054. struct file * file;
  2055. unsigned long size, rlim_rss;
  2056. /* Doesn't work if there's no mapped file. */
  2057. if (!vma->vm_file)
  2058. return error;
  2059. file = vma->vm_file;
  2060. size = (file->f_dentry->d_inode->i_size + PAGE_CACHE_SIZE - 1) >>
  2061. PAGE_CACHE_SHIFT;
  2062. start = ((start - vma->vm_start) >> PAGE_SHIFT) + vma->vm_pgoff;
  2063. if (end > vma->vm_end)
  2064. end = vma->vm_end;
  2065. end = ((end - vma->vm_start) >> PAGE_SHIFT) + vma->vm_pgoff;
  2066. /* Make sure this doesn't exceed the process's max rss. */
  2067. error = -EIO;
  2068. rlim_rss = current->rlim ?  current->rlim[RLIMIT_RSS].rlim_cur :
  2069. LONG_MAX; /* default: see resource.h */
  2070. if ((vma->vm_mm->rss + (end - start)) > rlim_rss)
  2071. return error;
  2072. /* round to cluster boundaries if this isn't a "random" area. */
  2073. if (!VM_RandomReadHint(vma)) {
  2074. start = CLUSTER_OFFSET(start);
  2075. end = CLUSTER_OFFSET(end + CLUSTER_PAGES - 1);
  2076. while ((start < end) && (start < size)) {
  2077. error = read_cluster_nonblocking(file, start, size);
  2078. start += CLUSTER_PAGES;
  2079. if (error < 0)
  2080. break;
  2081. }
  2082. } else {
  2083. while ((start < end) && (start < size)) {
  2084. error = page_cache_read(file, start);
  2085. start++;
  2086. if (error < 0)
  2087. break;
  2088. }
  2089. }
  2090. /* Don't wait for someone else to push these requests. */
  2091. run_task_queue(&tq_disk);
  2092. return error;
  2093. }
  2094. /*
  2095.  * Application no longer needs these pages.  If the pages are dirty,
  2096.  * it's OK to just throw them away.  The app will be more careful about
  2097.  * data it wants to keep.  Be sure to free swap resources too.  The
  2098.  * zap_page_range call sets things up for refill_inactive to actually free
  2099.  * these pages later if no one else has touched them in the meantime,
  2100.  * although we could add these pages to a global reuse list for
  2101.  * refill_inactive to pick up before reclaiming other pages.
  2102.  *
  2103.  * NB: This interface discards data rather than pushes it out to swap,
  2104.  * as some implementations do.  This has performance implications for
  2105.  * applications like large transactional databases which want to discard
  2106.  * pages in anonymous maps after committing to backing store the data
  2107.  * that was kept in them.  There is no reason to write this data out to
  2108.  * the swap area if the application is discarding it.
  2109.  *
  2110.  * An interface that causes the system to free clean pages and flush
  2111.  * dirty pages is already available as msync(MS_INVALIDATE).
  2112.  */
  2113. static long madvise_dontneed(struct vm_area_struct * vma,
  2114. unsigned long start, unsigned long end)
  2115. {
  2116. if (vma->vm_flags & VM_LOCKED)
  2117. return -EINVAL;
  2118. zap_page_range(vma->vm_mm, start, end - start);
  2119. return 0;
  2120. }
  2121. static long madvise_vma(struct vm_area_struct * vma, unsigned long start,
  2122. unsigned long end, int behavior)
  2123. {
  2124. long error = -EBADF;
  2125. switch (behavior) {
  2126. case MADV_NORMAL:
  2127. case MADV_SEQUENTIAL:
  2128. case MADV_RANDOM:
  2129. error = madvise_behavior(vma, start, end, behavior);
  2130. break;
  2131. case MADV_WILLNEED:
  2132. error = madvise_willneed(vma, start, end);
  2133. break;
  2134. case MADV_DONTNEED:
  2135. error = madvise_dontneed(vma, start, end);
  2136. break;
  2137. default:
  2138. error = -EINVAL;
  2139. break;
  2140. }
  2141. return error;
  2142. }
  2143. /*
  2144.  * The madvise(2) system call.
  2145.  *
  2146.  * Applications can use madvise() to advise the kernel how it should
  2147.  * handle paging I/O in this VM area.  The idea is to help the kernel
  2148.  * use appropriate read-ahead and caching techniques.  The information
  2149.  * provided is advisory only, and can be safely disregarded by the
  2150.  * kernel without affecting the correct operation of the application.
  2151.  *
  2152.  * behavior values:
  2153.  *  MADV_NORMAL - the default behavior is to read clusters.  This
  2154.  * results in some read-ahead and read-behind.
  2155.  *  MADV_RANDOM - the system should read the minimum amount of data
  2156.  * on any access, since it is unlikely that the appli-
  2157.  * cation will need more than what it asks for.
  2158.  *  MADV_SEQUENTIAL - pages in the given range will probably be accessed
  2159.  * once, so they can be aggressively read ahead, and
  2160.  * can be freed soon after they are accessed.
  2161.  *  MADV_WILLNEED - the application is notifying the system to read
  2162.  * some pages ahead.
  2163.  *  MADV_DONTNEED - the application is finished with the given range,
  2164.  * so the kernel can free resources associated with it.
  2165.  *
  2166.  * return values:
  2167.  *  zero    - success
  2168.  *  -EINVAL - start + len < 0, start is not page-aligned,
  2169.  * "behavior" is not a valid value, or application
  2170.  * is attempting to release locked or shared pages.
  2171.  *  -ENOMEM - addresses in the specified range are not currently
  2172.  * mapped, or are outside the AS of the process.
  2173.  *  -EIO    - an I/O error occurred while paging in data.
  2174.  *  -EBADF  - map exists, but area maps something that isn't a file.
  2175.  *  -EAGAIN - a kernel resource was temporarily unavailable.
  2176.  */
  2177. asmlinkage long sys_madvise(unsigned long start, size_t len, int behavior)
  2178. {
  2179. unsigned long end;
  2180. struct vm_area_struct * vma;
  2181. int unmapped_error = 0;
  2182. int error = -EINVAL;
  2183. down_write(&current->mm->mmap_sem);
  2184. if (start & ~PAGE_MASK)
  2185. goto out;
  2186. len = (len + ~PAGE_MASK) & PAGE_MASK;
  2187. end = start + len;
  2188. if (end < start)
  2189. goto out;
  2190. error = 0;
  2191. if (end == start)
  2192. goto out;
  2193. /*
  2194.  * If the interval [start,end) covers some unmapped address
  2195.  * ranges, just ignore them, but return -ENOMEM at the end.
  2196.  */
  2197. vma = find_vma(current->mm, start);
  2198. for (;;) {
  2199. /* Still start < end. */
  2200. error = -ENOMEM;
  2201. if (!vma)
  2202. goto out;
  2203. /* Here start < vma->vm_end. */
  2204. if (start < vma->vm_start) {
  2205. unmapped_error = -ENOMEM;
  2206. start = vma->vm_start;
  2207. }
  2208. /* Here vma->vm_start <= start < vma->vm_end. */
  2209. if (end <= vma->vm_end) {
  2210. if (start < end) {
  2211. error = madvise_vma(vma, start, end,
  2212. behavior);
  2213. if (error)
  2214. goto out;
  2215. }
  2216. error = unmapped_error;
  2217. goto out;
  2218. }
  2219. /* Here vma->vm_start <= start < vma->vm_end < end. */
  2220. error = madvise_vma(vma, start, vma->vm_end, behavior);
  2221. if (error)
  2222. goto out;
  2223. start = vma->vm_end;
  2224. vma = vma->vm_next;
  2225. }
  2226. out:
  2227. up_write(&current->mm->mmap_sem);
  2228. return error;
  2229. }
  2230. /*
  2231.  * Later we can get more picky about what "in core" means precisely.
  2232.  * For now, simply check to see if the page is in the page cache,
  2233.  * and is up to date; i.e. that no page-in operation would be required
  2234.  * at this time if an application were to map and access this page.
  2235.  */
  2236. static unsigned char mincore_page(struct vm_area_struct * vma,
  2237. unsigned long pgoff)
  2238. {
  2239. unsigned char present = 0;
  2240. struct address_space * as = vma->vm_file->f_dentry->d_inode->i_mapping;
  2241. struct page * page, ** hash = page_hash(as, pgoff);
  2242. spin_lock(&pagecache_lock);
  2243. page = __find_page_nolock(as, pgoff, *hash);
  2244. if ((page) && (Page_Uptodate(page)))
  2245. present = 1;
  2246. spin_unlock(&pagecache_lock);
  2247. return present;
  2248. }
  2249. static long mincore_vma(struct vm_area_struct * vma,
  2250. unsigned long start, unsigned long end, unsigned char * vec)
  2251. {
  2252. long error, i, remaining;
  2253. unsigned char * tmp;
  2254. error = -ENOMEM;
  2255. if (!vma->vm_file)
  2256. return error;
  2257. start = ((start - vma->vm_start) >> PAGE_SHIFT) + vma->vm_pgoff;
  2258. if (end > vma->vm_end)
  2259. end = vma->vm_end;
  2260. end = ((end - vma->vm_start) >> PAGE_SHIFT) + vma->vm_pgoff;
  2261. error = -EAGAIN;
  2262. tmp = (unsigned char *) __get_free_page(GFP_KERNEL);
  2263. if (!tmp)
  2264. return error;
  2265. /* (end - start) is # of pages, and also # of bytes in "vec */
  2266. remaining = (end - start),
  2267. error = 0;
  2268. for (i = 0; remaining > 0; remaining -= PAGE_SIZE, i++) {
  2269. int j = 0;
  2270. long thispiece = (remaining < PAGE_SIZE) ?
  2271. remaining : PAGE_SIZE;
  2272. while (j < thispiece)
  2273. tmp[j++] = mincore_page(vma, start++);
  2274. if (copy_to_user(vec + PAGE_SIZE * i, tmp, thispiece)) {
  2275. error = -EFAULT;
  2276. break;
  2277. }
  2278. }
  2279. free_page((unsigned long) tmp);
  2280. return error;
  2281. }
  2282. /*
  2283.  * The mincore(2) system call.
  2284.  *
  2285.  * mincore() returns the memory residency status of the pages in the
  2286.  * current process's address space specified by [addr, addr + len).
  2287.  * The status is returned in a vector of bytes.  The least significant
  2288.  * bit of each byte is 1 if the referenced page is in memory, otherwise
  2289.  * it is zero.
  2290.  *
  2291.  * Because the status of a page can change after mincore() checks it
  2292.  * but before it returns to the application, the returned vector may
  2293.  * contain stale information.  Only locked pages are guaranteed to
  2294.  * remain in memory.
  2295.  *
  2296.  * return values:
  2297.  *  zero    - success
  2298.  *  -EFAULT - vec points to an illegal address
  2299.  *  -EINVAL - addr is not a multiple of PAGE_CACHE_SIZE,
  2300.  * or len has a nonpositive value
  2301.  *  -ENOMEM - Addresses in the range [addr, addr + len] are
  2302.  * invalid for the address space of this process, or
  2303.  * specify one or more pages which are not currently
  2304.  * mapped
  2305.  *  -EAGAIN - A kernel resource was temporarily unavailable.
  2306.  */
  2307. asmlinkage long sys_mincore(unsigned long start, size_t len,
  2308. unsigned char * vec)
  2309. {
  2310. int index = 0;
  2311. unsigned long end;
  2312. struct vm_area_struct * vma;
  2313. int unmapped_error = 0;
  2314. long error = -EINVAL;
  2315. down_read(&current->mm->mmap_sem);
  2316. if (start & ~PAGE_CACHE_MASK)
  2317. goto out;
  2318. len = (len + ~PAGE_CACHE_MASK) & PAGE_CACHE_MASK;
  2319. end = start + len;
  2320. if (end < start)
  2321. goto out;
  2322. error = 0;
  2323. if (end == start)
  2324. goto out;
  2325. /*
  2326.  * If the interval [start,end) covers some unmapped address
  2327.  * ranges, just ignore them, but return -ENOMEM at the end.
  2328.  */
  2329. vma = find_vma(current->mm, start);
  2330. for (;;) {
  2331. /* Still start < end. */
  2332. error = -ENOMEM;
  2333. if (!vma)
  2334. goto out;
  2335. /* Here start < vma->vm_end. */
  2336. if (start < vma->vm_start) {
  2337. unmapped_error = -ENOMEM;
  2338. start = vma->vm_start;
  2339. }
  2340. /* Here vma->vm_start <= start < vma->vm_end. */
  2341. if (end <= vma->vm_end) {
  2342. if (start < end) {
  2343. error = mincore_vma(vma, start, end,
  2344. &vec[index]);
  2345. if (error)
  2346. goto out;
  2347. }
  2348. error = unmapped_error;
  2349. goto out;
  2350. }
  2351. /* Here vma->vm_start <= start < vma->vm_end < end. */
  2352. error = mincore_vma(vma, start, vma->vm_end, &vec[index]);
  2353. if (error)
  2354. goto out;
  2355. index += (vma->vm_end - start) >> PAGE_CACHE_SHIFT;
  2356. start = vma->vm_end;
  2357. vma = vma->vm_next;
  2358. }
  2359. out:
  2360. up_read(&current->mm->mmap_sem);
  2361. return error;
  2362. }
  2363. static inline
  2364. struct page *__read_cache_page(struct address_space *mapping,
  2365. unsigned long index,
  2366. int (*filler)(void *,struct page*),
  2367. void *data)
  2368. {
  2369. struct page **hash = page_hash(mapping, index);
  2370. struct page *page, *cached_page = NULL;
  2371. int err;
  2372. repeat:
  2373. page = __find_get_page(mapping, index, hash);
  2374. if (!page) {
  2375. if (!cached_page) {
  2376. cached_page = page_cache_alloc(mapping);
  2377. if (!cached_page)
  2378. return ERR_PTR(-ENOMEM);
  2379. }
  2380. page = cached_page;
  2381. if (add_to_page_cache_unique(page, mapping, index, hash))
  2382. goto repeat;
  2383. cached_page = NULL;
  2384. err = filler(data, page);
  2385. if (err < 0) {
  2386. page_cache_release(page);
  2387. page = ERR_PTR(err);
  2388. }
  2389. }
  2390. if (cached_page)
  2391. page_cache_release(cached_page);
  2392. return page;
  2393. }
  2394. /*
  2395.  * Read into the page cache. If a page already exists,
  2396.  * and Page_Uptodate() is not set, try to fill the page.
  2397.  */
  2398. struct page *read_cache_page(struct address_space *mapping,
  2399. unsigned long index,
  2400. int (*filler)(void *,struct page*),
  2401. void *data)
  2402. {
  2403. struct page *page;
  2404. int err;
  2405. retry:
  2406. page = __read_cache_page(mapping, index, filler, data);
  2407. if (IS_ERR(page))
  2408. goto out;
  2409. mark_page_accessed(page);
  2410. if (Page_Uptodate(page))
  2411. goto out;
  2412. lock_page(page);
  2413. if (!page->mapping) {
  2414. UnlockPage(page);
  2415. page_cache_release(page);
  2416. goto retry;
  2417. }
  2418. if (Page_Uptodate(page)) {
  2419. UnlockPage(page);
  2420. goto out;
  2421. }
  2422. err = filler(data, page);
  2423. if (err < 0) {
  2424. page_cache_release(page);
  2425. page = ERR_PTR(err);
  2426. }
  2427.  out:
  2428. return page;
  2429. }
  2430. static inline struct page * __grab_cache_page(struct address_space *mapping,
  2431. unsigned long index, struct page **cached_page)
  2432. {
  2433. struct page *page, **hash = page_hash(mapping, index);
  2434. repeat:
  2435. page = __find_lock_page(mapping, index, hash);
  2436. if (!page) {
  2437. if (!*cached_page) {
  2438. *cached_page = page_cache_alloc(mapping);
  2439. if (!*cached_page)
  2440. return NULL;
  2441. }
  2442. page = *cached_page;
  2443. if (add_to_page_cache_unique(page, mapping, index, hash))
  2444. goto repeat;
  2445. *cached_page = NULL;
  2446. }
  2447. return page;
  2448. }
  2449. inline void remove_suid(struct inode *inode)
  2450. {
  2451. unsigned int mode;
  2452. /* set S_IGID if S_IXGRP is set, and always set S_ISUID */
  2453. mode = (inode->i_mode & S_IXGRP)*(S_ISGID/S_IXGRP) | S_ISUID;
  2454. /* was any of the uid bits set? */
  2455. mode &= inode->i_mode;
  2456. if (mode && !capable(CAP_FSETID)) {
  2457. inode->i_mode &= ~mode;
  2458. mark_inode_dirty(inode);
  2459. }
  2460. }
  2461. /*
  2462.  * Write to a file through the page cache. 
  2463.  *
  2464.  * We currently put everything into the page cache prior to writing it.
  2465.  * This is not a problem when writing full pages. With partial pages,
  2466.  * however, we first have to read the data into the cache, then
  2467.  * dirty the page, and finally schedule it for writing. Alternatively, we
  2468.  * could write-through just the portion of data that would go into that
  2469.  * page, but that would kill performance for applications that write data
  2470.  * line by line, and it's prone to race conditions.
  2471.  *
  2472.  * Note that this routine doesn't try to keep track of dirty pages. Each
  2473.  * file system has to do this all by itself, unfortunately.
  2474.  * okir@monad.swb.de
  2475.  */
  2476. ssize_t
  2477. generic_file_write(struct file *file,const char *buf,size_t count, loff_t *ppos)
  2478. {
  2479. struct address_space *mapping = file->f_dentry->d_inode->i_mapping;
  2480. struct inode *inode = mapping->host;
  2481. unsigned long limit = current->rlim[RLIMIT_FSIZE].rlim_cur;
  2482. loff_t pos;
  2483. struct page *page, *cached_page;
  2484. ssize_t written;
  2485. long status = 0;
  2486. int err;
  2487. unsigned bytes;
  2488. if ((ssize_t) count < 0)
  2489. return -EINVAL;
  2490. if (!access_ok(VERIFY_READ, buf, count))
  2491. return -EFAULT;
  2492. cached_page = NULL;
  2493. down(&inode->i_sem);
  2494. pos = *ppos;
  2495. err = -EINVAL;
  2496. if (pos < 0)
  2497. goto out;
  2498. err = file->f_error;
  2499. if (err) {
  2500. file->f_error = 0;
  2501. goto out;
  2502. }
  2503. written = 0;
  2504. /* FIXME: this is for backwards compatibility with 2.4 */
  2505. if (!S_ISBLK(inode->i_mode) && file->f_flags & O_APPEND)
  2506. pos = inode->i_size;
  2507. /*
  2508.  * Check whether we've reached the file size limit.
  2509.  */
  2510. err = -EFBIG;
  2511. if (limit != RLIM_INFINITY) {
  2512. if (pos >= limit) {
  2513. send_sig(SIGXFSZ, current, 0);
  2514. goto out;
  2515. }
  2516. if (pos > 0xFFFFFFFFULL || count > limit - (u32)pos) {
  2517. /* send_sig(SIGXFSZ, current, 0); */
  2518. count = limit - (u32)pos;
  2519. }
  2520. }
  2521. /*
  2522.  * LFS rule 
  2523.  */
  2524. if ( pos + count > MAX_NON_LFS && !(file->f_flags&O_LARGEFILE)) {
  2525. if (pos >= MAX_NON_LFS) {
  2526. send_sig(SIGXFSZ, current, 0);
  2527. goto out;
  2528. }
  2529. if (count > MAX_NON_LFS - (u32)pos) {
  2530. /* send_sig(SIGXFSZ, current, 0); */
  2531. count = MAX_NON_LFS - (u32)pos;
  2532. }
  2533. }
  2534. /*
  2535.  * Are we about to exceed the fs block limit ?
  2536.  *
  2537.  * If we have written data it becomes a short write
  2538.  * If we have exceeded without writing data we send
  2539.  * a signal and give them an EFBIG.
  2540.  *
  2541.  * Linus frestrict idea will clean these up nicely..
  2542.  */
  2543.  
  2544. if (!S_ISBLK(inode->i_mode)) {
  2545. if (pos >= inode->i_sb->s_maxbytes)
  2546. {
  2547. if (count || pos > inode->i_sb->s_maxbytes) {
  2548. send_sig(SIGXFSZ, current, 0);
  2549. err = -EFBIG;
  2550. goto out;
  2551. }
  2552. /* zero-length writes at ->s_maxbytes are OK */
  2553. }
  2554. if (pos + count > inode->i_sb->s_maxbytes)
  2555. count = inode->i_sb->s_maxbytes - pos;
  2556. } else {
  2557. if (is_read_only(inode->i_rdev)) {
  2558. err = -EPERM;
  2559. goto out;
  2560. }
  2561. if (pos >= inode->i_size) {
  2562. if (count || pos > inode->i_size) {
  2563. err = -ENOSPC;
  2564. goto out;
  2565. }
  2566. }
  2567. if (pos + count > inode->i_size)
  2568. count = inode->i_size - pos;
  2569. }
  2570. err = 0;
  2571. if (count == 0)
  2572. goto out;
  2573. remove_suid(inode);
  2574. inode->i_ctime = inode->i_mtime = CURRENT_TIME;
  2575. mark_inode_dirty_sync(inode);
  2576. if (file->f_flags & O_DIRECT)
  2577. goto o_direct;
  2578. do {
  2579. unsigned long index, offset;
  2580. long page_fault;
  2581. char *kaddr;
  2582. /*
  2583.  * Try to find the page in the cache. If it isn't there,
  2584.  * allocate a free page.
  2585.  */
  2586. offset = (pos & (PAGE_CACHE_SIZE -1)); /* Within page */
  2587. index = pos >> PAGE_CACHE_SHIFT;
  2588. bytes = PAGE_CACHE_SIZE - offset;
  2589. if (bytes > count)
  2590. bytes = count;
  2591. /*
  2592.  * Bring in the user page that we will copy from _first_.
  2593.  * Otherwise there's a nasty deadlock on copying from the
  2594.  * same page as we're writing to, without it being marked
  2595.  * up-to-date.
  2596.  */
  2597. { volatile unsigned char dummy;
  2598. __get_user(dummy, buf);
  2599. __get_user(dummy, buf+bytes-1);
  2600. }
  2601. status = -ENOMEM; /* we'll assign it later anyway */
  2602. page = __grab_cache_page(mapping, index, &cached_page);
  2603. if (!page)
  2604. break;
  2605. /* We have exclusive IO access to the page.. */
  2606. if (!PageLocked(page)) {
  2607. PAGE_BUG(page);
  2608. }
  2609. kaddr = kmap(page);
  2610. status = mapping->a_ops->prepare_write(file, page, offset, offset+bytes);
  2611. if (status)
  2612. goto sync_failure;
  2613. page_fault = __copy_from_user(kaddr+offset, buf, bytes);
  2614. flush_dcache_page(page);
  2615. status = mapping->a_ops->commit_write(file, page, offset, offset+bytes);
  2616. if (page_fault)
  2617. goto fail_write;
  2618. if (!status)
  2619. status = bytes;
  2620. if (status >= 0) {
  2621. written += status;
  2622. count -= status;
  2623. pos += status;
  2624. buf += status;
  2625. }
  2626. unlock:
  2627. kunmap(page);
  2628. /* Mark it unlocked again and drop the page.. */
  2629. SetPageReferenced(page);
  2630. UnlockPage(page);
  2631. page_cache_release(page);
  2632. if (status < 0)
  2633. break;
  2634. } while (count);
  2635. done:
  2636. *ppos = pos;
  2637. if (cached_page)
  2638. page_cache_release(cached_page);
  2639. /* For now, when the user asks for O_SYNC, we'll actually
  2640.  * provide O_DSYNC. */
  2641. if (status >= 0) {
  2642. if ((file->f_flags & O_SYNC) || IS_SYNC(inode))
  2643. status = generic_osync_inode(inode, OSYNC_METADATA|OSYNC_DATA);
  2644. }
  2645. out_status:
  2646. err = written ? written : status;
  2647. out:
  2648. up(&inode->i_sem);
  2649. return err;
  2650. fail_write:
  2651. status = -EFAULT;
  2652. goto unlock;
  2653. sync_failure:
  2654. /*
  2655.  * If blocksize < pagesize, prepare_write() may have instantiated a
  2656.  * few blocks outside i_size.  Trim these off again.
  2657.  */
  2658. kunmap(page);
  2659. UnlockPage(page);
  2660. page_cache_release(page);
  2661. if (pos + bytes > inode->i_size)
  2662. vmtruncate(inode, inode->i_size);
  2663. goto done;
  2664. o_direct:
  2665. written = generic_file_direct_IO(WRITE, file, (char *) buf, count, pos);
  2666. if (written > 0) {
  2667. loff_t end = pos + written;
  2668. if (end > inode->i_size && !S_ISBLK(inode->i_mode)) {
  2669. inode->i_size = end;
  2670. mark_inode_dirty(inode);
  2671. }
  2672. *ppos = end;
  2673. invalidate_inode_pages2(mapping);
  2674. }
  2675. /*
  2676.  * Sync the fs metadata but not the minor inode changes and
  2677.  * of course not the data as we did direct DMA for the IO.
  2678.  */
  2679. if (written >= 0 && file->f_flags & O_SYNC)
  2680. status = generic_osync_inode(inode, OSYNC_METADATA);
  2681. goto out_status;
  2682. }
  2683. void __init page_cache_init(unsigned long mempages)
  2684. {
  2685. unsigned long htable_size, order;
  2686. htable_size = mempages;
  2687. htable_size *= sizeof(struct page *);
  2688. for(order = 0; (PAGE_SIZE << order) < htable_size; order++)
  2689. ;
  2690. do {
  2691. unsigned long tmp = (PAGE_SIZE << order) / sizeof(struct page *);
  2692. page_hash_bits = 0;
  2693. while((tmp >>= 1UL) != 0UL)
  2694. page_hash_bits++;
  2695. page_hash_table = (struct page **)
  2696. __get_free_pages(GFP_ATOMIC, order);
  2697. } while(page_hash_table == NULL && --order > 0);
  2698. printk("Page-cache hash table entries: %d (order: %ld, %ld bytes)n",
  2699.        (1 << page_hash_bits), order, (PAGE_SIZE << order));
  2700. if (!page_hash_table)
  2701. panic("Failed to allocate page hash tablen");
  2702. memset((void *)page_hash_table, 0, PAGE_HASH_SIZE * sizeof(struct page *));
  2703. }