mmap-nommu.c 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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, maxpages, lpages;
  29. int ret;
  30. if (!mtd)
  31. return (unsigned long) -ENOSYS;
  32. /* the mapping mustn't extend beyond the EOF */
  33. lpages = (len + PAGE_SIZE - 1) >> PAGE_SHIFT;
  34. isize = i_size_read(inode);
  35. offset = pgoff << PAGE_SHIFT;
  36. maxpages = (isize + PAGE_SIZE - 1) >> PAGE_SHIFT;
  37. if ((pgoff >= maxpages) || (maxpages - pgoff < lpages))
  38. return (unsigned long) -EINVAL;
  39. if (addr != 0)
  40. return (unsigned long) -EINVAL;
  41. if (len > mtd->size || pgoff >= (mtd->size >> PAGE_SHIFT))
  42. return (unsigned long) -EINVAL;
  43. offset += ROMFS_I(inode)->i_dataoffset;
  44. if (offset >= mtd->size)
  45. return (unsigned long) -EINVAL;
  46. /* the mapping mustn't extend beyond the EOF */
  47. if ((offset + len) > mtd->size)
  48. len = mtd->size - offset;
  49. ret = mtd_get_unmapped_area(mtd, len, offset, flags);
  50. if (ret == -EOPNOTSUPP)
  51. ret = -ENOSYS;
  52. return (unsigned long) ret;
  53. }
  54. /*
  55. * permit a R/O mapping to be made directly through onto an MTD device if
  56. * possible
  57. */
  58. static int romfs_mmap(struct file *file, struct vm_area_struct *vma)
  59. {
  60. return vma->vm_flags & (VM_SHARED | VM_MAYSHARE) ? 0 : -ENOSYS;
  61. }
  62. static unsigned romfs_mmap_capabilities(struct file *file)
  63. {
  64. struct mtd_info *mtd = file_inode(file)->i_sb->s_mtd;
  65. if (!mtd)
  66. return NOMMU_MAP_COPY;
  67. return mtd_mmap_capabilities(mtd);
  68. }
  69. const struct file_operations romfs_ro_fops = {
  70. .llseek = generic_file_llseek,
  71. .read_iter = generic_file_read_iter,
  72. .splice_read = generic_file_splice_read,
  73. .mmap = romfs_mmap,
  74. .get_unmapped_area = romfs_get_unmapped_area,
  75. .mmap_capabilities = romfs_mmap_capabilities,
  76. };