《操作系统》的实验代码。
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

102 lines
3.1 KiB

10 years ago
  1. #ifndef __KERN_MM_VMM_H__
  2. #define __KERN_MM_VMM_H__
  3. #include <defs.h>
  4. #include <list.h>
  5. #include <memlayout.h>
  6. #include <sync.h>
  7. //pre define
  8. struct mm_struct;
  9. // the virtual continuous memory area(vma)
  10. struct vma_struct {
  11. struct mm_struct *vm_mm; // the set of vma using the same PDT
  12. uintptr_t vm_start; // start addr of vma
  13. uintptr_t vm_end; // end addr of vma
  14. uint32_t vm_flags; // flags of vma
  15. list_entry_t list_link; // linear list link which sorted by start addr of vma
  16. };
  17. #define le2vma(le, member) \
  18. to_struct((le), struct vma_struct, member)
  19. #define VM_READ 0x00000001
  20. #define VM_WRITE 0x00000002
  21. #define VM_EXEC 0x00000004
  22. #define VM_STACK 0x00000008
  23. // the control struct for a set of vma using the same PDT
  24. struct mm_struct {
  25. list_entry_t mmap_list; // linear list link which sorted by start addr of vma
  26. struct vma_struct *mmap_cache; // current accessed vma, used for speed purpose
  27. pde_t *pgdir; // the PDT of these vma
  28. int map_count; // the count of these vma
  29. void *sm_priv; // the private data for swap manager
  30. int mm_count; // the number ofprocess which shared the mm
  31. lock_t mm_lock; // mutex for using dup_mmap fun to duplicat the mm
  32. };
  33. struct vma_struct *find_vma(struct mm_struct *mm, uintptr_t addr);
  34. struct vma_struct *vma_create(uintptr_t vm_start, uintptr_t vm_end, uint32_t vm_flags);
  35. void insert_vma_struct(struct mm_struct *mm, struct vma_struct *vma);
  36. struct mm_struct *mm_create(void);
  37. void mm_destroy(struct mm_struct *mm);
  38. void vmm_init(void);
  39. int mm_map(struct mm_struct *mm, uintptr_t addr, size_t len, uint32_t vm_flags,
  40. struct vma_struct **vma_store);
  41. int do_pgfault(struct mm_struct *mm, uint32_t error_code, uintptr_t addr);
  42. int mm_unmap(struct mm_struct *mm, uintptr_t addr, size_t len);
  43. int dup_mmap(struct mm_struct *to, struct mm_struct *from);
  44. void exit_mmap(struct mm_struct *mm);
  45. uintptr_t get_unmapped_area(struct mm_struct *mm, size_t len);
  46. int mm_brk(struct mm_struct *mm, uintptr_t addr, size_t len);
  47. extern volatile unsigned int pgfault_num;
  48. extern struct mm_struct *check_mm_struct;
  49. bool user_mem_check(struct mm_struct *mm, uintptr_t start, size_t len, bool write);
  50. bool copy_from_user(struct mm_struct *mm, void *dst, const void *src, size_t len, bool writable);
  51. bool copy_to_user(struct mm_struct *mm, void *dst, const void *src, size_t len);
  52. static inline int
  53. mm_count(struct mm_struct *mm) {
  54. return mm->mm_count;
  55. }
  56. static inline void
  57. set_mm_count(struct mm_struct *mm, int val) {
  58. mm->mm_count = val;
  59. }
  60. static inline int
  61. mm_count_inc(struct mm_struct *mm) {
  62. mm->mm_count += 1;
  63. return mm->mm_count;
  64. }
  65. static inline int
  66. mm_count_dec(struct mm_struct *mm) {
  67. mm->mm_count -= 1;
  68. return mm->mm_count;
  69. }
  70. static inline void
  71. lock_mm(struct mm_struct *mm) {
  72. if (mm != NULL) {
  73. lock(&(mm->mm_lock));
  74. }
  75. }
  76. static inline void
  77. unlock_mm(struct mm_struct *mm) {
  78. if (mm != NULL) {
  79. unlock(&(mm->mm_lock));
  80. }
  81. }
  82. #endif /* !__KERN_MM_VMM_H__ */