mmap-nommu.c 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. /* NOMMU mmap support for RomFS on MTD devices
  2. *
  3. * Copyright © 2007 Red Hat, Inc. All Rights Reserved.
  4. * Written by David Howells (dhowells@redhat.com)
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU General Public License
  8. * as published by the Free Software Foundation; either version
  9. * 2 of the License, or (at your option) any later version.
  10. */
  11. #include <linux/mm.h>
  12. #include <linux/mtd/super.h>
  13. #include "internal.h"
  14. /*
  15. * try to determine where a shared mapping can be made
  16. * - only supported for NOMMU at the moment (MMU can't doesn't copy private
  17. * mappings)
  18. * - attempts to map through to the underlying MTD device
  19. */
  20. static unsigned long romfs_get_unmapped_area(struct file *file,
  21. unsigned long addr,
  22. unsigned long len,
  23. unsigned long pgoff,
  24. unsigned long flags)
  25. {
  26. struct inode *inode = file->f_mapping->host;
  27. struct mtd_info *mtd = inode->i_sb->s_mtd;
  28. unsigned long isize, offset;
  29. if (!mtd)
  30. goto cant_map_directly;
  31. isize = i_size_read(inode);
  32. offset = pgoff << PAGE_SHIFT;
  33. if (offset > isize || len > isize || offset > isize - len)
  34. return (unsigned long) -EINVAL;
  35. /* we need to call down to the MTD layer to do the actual mapping */
  36. if (mtd->get_unmapped_area) {
  37. if (addr != 0)
  38. return (unsigned long) -EINVAL;
  39. if (len > mtd->size || pgoff >= (mtd->size >> PAGE_SHIFT))
  40. return (unsigned long) -EINVAL;
  41. offset += ROMFS_I(inode)->i_dataoffset;
  42. if (offset > mtd->size - len)
  43. return (unsigned long) -EINVAL;
  44. return mtd->get_unmapped_area(mtd, len, offset, flags);
  45. }
  46. cant_map_directly:
  47. return (unsigned long) -ENOSYS;
  48. }
  49. /*
  50. * permit a R/O mapping to be made directly through onto an MTD device if
  51. * possible
  52. */
  53. static int romfs_mmap(struct file *file, struct vm_area_struct *vma)
  54. {
  55. return vma->vm_flags & (VM_SHARED | VM_MAYSHARE) ? 0 : -ENOSYS;
  56. }
  57. const struct file_operations romfs_ro_fops = {
  58. .llseek = generic_file_llseek,
  59. .read = do_sync_read,
  60. .aio_read = generic_file_aio_read,
  61. .splice_read = generic_file_splice_read,
  62. .mmap = romfs_mmap,
  63. .get_unmapped_area = romfs_get_unmapped_area,
  64. };