18 #include "trinity.h" // page_size
21 static unsigned int num_global_mappings
= 0;
22 static struct map
*global_mappings
= NULL
;
24 static void dump_global_mappings(void)
27 struct list_head
*node
;
29 output(2, "There are %d entries in the map table\n", num_global_mappings
);
31 list_for_each(node
, &global_mappings
->list
) {
32 m
= (struct map
*) node
;
33 output(2, " start: %p name: %s\n", m
->ptr
, m
->name
);
37 static void alloc_zero_map(unsigned long size
, int prot
, const char *name
)
40 struct list_head
*list
;
43 fd
= open("/dev/zero", O_RDWR
);
45 newnode
= zmalloc(sizeof(struct map
));
46 newnode
->name
= strdup(name
);
49 newnode
->ptr
= mmap(NULL
, size
, prot
, MAP_ANONYMOUS
| MAP_SHARED
, fd
, 0);
50 if (newnode
->ptr
== MAP_FAILED
) {
51 outputerr("mmap failure\n");
55 newnode
->name
= malloc(80);
57 outputerr("malloc() failed in %s().", __func__
);
61 sprintf(newnode
->name
, "anon(%s)", name
);
63 num_global_mappings
++;
65 list
= &global_mappings
->list
;
66 list_add_tail(&newnode
->list
, list
);
68 output(2, "mapping[%d]: (zeropage %s) %p (%lu bytes)\n",
69 num_global_mappings
- 1, name
, newnode
->ptr
, size
);
74 void setup_global_mappings(void)
77 const unsigned long sizes
[] = {
78 1 * MB
, 2 * MB
, 4 * MB
, 10 * MB
,
79 // 1 * GB, // disabled for now, due to OOM.
82 global_mappings
= zmalloc(sizeof(struct map
));
83 INIT_LIST_HEAD(&global_mappings
->list
);
85 /* page_size * 2, so we have a guard page afterwards.
86 * This is necessary for when we want to test page boundaries.
87 * see end of _get_address() for details.
89 alloc_zero_map(page_size
* 2, PROT_READ
| PROT_WRITE
, "PROT_READ | PROT_WRITE");
90 alloc_zero_map(page_size
* 2, PROT_READ
, "PROT_READ");
91 alloc_zero_map(page_size
* 2, PROT_WRITE
, "PROT_WRITE");
94 * multi megabyte page mappings.
96 for (i
= 0; i
< ARRAY_SIZE(sizes
); i
++) {
97 alloc_zero_map(sizes
[i
], PROT_READ
| PROT_WRITE
, "PROT_READ | PROT_WRITE");
98 alloc_zero_map(sizes
[i
], PROT_READ
, "PROT_READ");
99 alloc_zero_map(sizes
[i
], PROT_WRITE
, "PROT_WRITE");
102 dump_global_mappings();
105 /* Walk the list, get the j'th element */
106 static struct map
* __get_map(struct list_head
*head
, unsigned int max
)
109 struct list_head
*node
;
111 unsigned int i
, j
= 0;
115 list_for_each(node
, head
) {
116 m
= (struct map
*) node
;
125 struct map
* get_map(void)
130 /* If we're not running in child context, just do global. */
132 return __get_map(&global_mappings
->list
, num_global_mappings
);
134 /* Only toss the dice if we actually have local mappings. */
135 if (shm
->num_mappings
[this_child
] > 0)
139 map
= __get_map(&shm
->mappings
[this_child
]->list
, shm
->num_mappings
[this_child
]);
141 map
= __get_map(&global_mappings
->list
, num_global_mappings
);
146 void destroy_global_mappings(void)
148 struct map
*m
= global_mappings
;
150 while (!list_empty(&global_mappings
->list
)) {
153 munmap(m
->ptr
, m
->size
);
156 global_mappings
= (struct map
*) m
->list
.next
;
162 num_global_mappings
= 0;
165 void delete_local_mapping(int childno
, struct map
*map
)
167 list_del(&map
->list
);
168 shm
->num_mappings
[childno
]--;
171 struct map
* common_set_mmap_ptr_len(int childno
)
175 map
= (struct map
*) shm
->a1
[childno
];
176 shm
->scratch
[childno
] = (unsigned long) map
; /* Save this for ->post */
178 shm
->a1
[childno
] = 0;
179 shm
->a2
[childno
] = 0;
183 shm
->a1
[childno
] = (unsigned long) map
->ptr
;
184 shm
->a2
[childno
] = map
->size
; //TODO: Munge this.
189 void dirty_mapping(struct map
*map
)
194 /* Check mapping is writable. */
195 if (!(map
->prot
& PROT_WRITE
))
199 /* Just fault in one page. */
200 p
[rand() % page_size
] = 1;
202 /* fault in the whole mapping */
203 for (i
= 0; i
< map
->size
; i
+= page_size
)
206 //TODO: More access patterns.