2
0

memory_mapping.c 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352
  1. /*
  2. * QEMU memory mapping
  3. *
  4. * Copyright Fujitsu, Corp. 2011, 2012
  5. *
  6. * Authors:
  7. * Wen Congyang <wency@cn.fujitsu.com>
  8. *
  9. * This work is licensed under the terms of the GNU GPL, version 2 or later.
  10. * See the COPYING file in the top-level directory.
  11. *
  12. */
  13. #include <glib.h>
  14. #include "cpu.h"
  15. #include "exec/cpu-all.h"
  16. #include "sysemu/memory_mapping.h"
  17. #include "exec/memory.h"
  18. #include "exec/address-spaces.h"
  19. //#define DEBUG_GUEST_PHYS_REGION_ADD
  20. static void memory_mapping_list_add_mapping_sorted(MemoryMappingList *list,
  21. MemoryMapping *mapping)
  22. {
  23. MemoryMapping *p;
  24. QTAILQ_FOREACH(p, &list->head, next) {
  25. if (p->phys_addr >= mapping->phys_addr) {
  26. QTAILQ_INSERT_BEFORE(p, mapping, next);
  27. return;
  28. }
  29. }
  30. QTAILQ_INSERT_TAIL(&list->head, mapping, next);
  31. }
  32. static void create_new_memory_mapping(MemoryMappingList *list,
  33. hwaddr phys_addr,
  34. hwaddr virt_addr,
  35. ram_addr_t length)
  36. {
  37. MemoryMapping *memory_mapping;
  38. memory_mapping = g_malloc(sizeof(MemoryMapping));
  39. memory_mapping->phys_addr = phys_addr;
  40. memory_mapping->virt_addr = virt_addr;
  41. memory_mapping->length = length;
  42. list->last_mapping = memory_mapping;
  43. list->num++;
  44. memory_mapping_list_add_mapping_sorted(list, memory_mapping);
  45. }
  46. static inline bool mapping_contiguous(MemoryMapping *map,
  47. hwaddr phys_addr,
  48. hwaddr virt_addr)
  49. {
  50. return phys_addr == map->phys_addr + map->length &&
  51. virt_addr == map->virt_addr + map->length;
  52. }
  53. /*
  54. * [map->phys_addr, map->phys_addr + map->length) and
  55. * [phys_addr, phys_addr + length) have intersection?
  56. */
  57. static inline bool mapping_have_same_region(MemoryMapping *map,
  58. hwaddr phys_addr,
  59. ram_addr_t length)
  60. {
  61. return !(phys_addr + length < map->phys_addr ||
  62. phys_addr >= map->phys_addr + map->length);
  63. }
  64. /*
  65. * [map->phys_addr, map->phys_addr + map->length) and
  66. * [phys_addr, phys_addr + length) have intersection. The virtual address in the
  67. * intersection are the same?
  68. */
  69. static inline bool mapping_conflict(MemoryMapping *map,
  70. hwaddr phys_addr,
  71. hwaddr virt_addr)
  72. {
  73. return virt_addr - map->virt_addr != phys_addr - map->phys_addr;
  74. }
  75. /*
  76. * [map->virt_addr, map->virt_addr + map->length) and
  77. * [virt_addr, virt_addr + length) have intersection. And the physical address
  78. * in the intersection are the same.
  79. */
  80. static inline void mapping_merge(MemoryMapping *map,
  81. hwaddr virt_addr,
  82. ram_addr_t length)
  83. {
  84. if (virt_addr < map->virt_addr) {
  85. map->length += map->virt_addr - virt_addr;
  86. map->virt_addr = virt_addr;
  87. }
  88. if ((virt_addr + length) >
  89. (map->virt_addr + map->length)) {
  90. map->length = virt_addr + length - map->virt_addr;
  91. }
  92. }
  93. void memory_mapping_list_add_merge_sorted(MemoryMappingList *list,
  94. hwaddr phys_addr,
  95. hwaddr virt_addr,
  96. ram_addr_t length)
  97. {
  98. MemoryMapping *memory_mapping, *last_mapping;
  99. if (QTAILQ_EMPTY(&list->head)) {
  100. create_new_memory_mapping(list, phys_addr, virt_addr, length);
  101. return;
  102. }
  103. last_mapping = list->last_mapping;
  104. if (last_mapping) {
  105. if (mapping_contiguous(last_mapping, phys_addr, virt_addr)) {
  106. last_mapping->length += length;
  107. return;
  108. }
  109. }
  110. QTAILQ_FOREACH(memory_mapping, &list->head, next) {
  111. if (mapping_contiguous(memory_mapping, phys_addr, virt_addr)) {
  112. memory_mapping->length += length;
  113. list->last_mapping = memory_mapping;
  114. return;
  115. }
  116. if (phys_addr + length < memory_mapping->phys_addr) {
  117. /* create a new region before memory_mapping */
  118. break;
  119. }
  120. if (mapping_have_same_region(memory_mapping, phys_addr, length)) {
  121. if (mapping_conflict(memory_mapping, phys_addr, virt_addr)) {
  122. continue;
  123. }
  124. /* merge this region into memory_mapping */
  125. mapping_merge(memory_mapping, virt_addr, length);
  126. list->last_mapping = memory_mapping;
  127. return;
  128. }
  129. }
  130. /* this region can not be merged into any existed memory mapping. */
  131. create_new_memory_mapping(list, phys_addr, virt_addr, length);
  132. }
  133. void memory_mapping_list_free(MemoryMappingList *list)
  134. {
  135. MemoryMapping *p, *q;
  136. QTAILQ_FOREACH_SAFE(p, &list->head, next, q) {
  137. QTAILQ_REMOVE(&list->head, p, next);
  138. g_free(p);
  139. }
  140. list->num = 0;
  141. list->last_mapping = NULL;
  142. }
  143. void memory_mapping_list_init(MemoryMappingList *list)
  144. {
  145. list->num = 0;
  146. list->last_mapping = NULL;
  147. QTAILQ_INIT(&list->head);
  148. }
  149. void guest_phys_blocks_free(GuestPhysBlockList *list)
  150. {
  151. GuestPhysBlock *p, *q;
  152. QTAILQ_FOREACH_SAFE(p, &list->head, next, q) {
  153. QTAILQ_REMOVE(&list->head, p, next);
  154. g_free(p);
  155. }
  156. list->num = 0;
  157. }
  158. void guest_phys_blocks_init(GuestPhysBlockList *list)
  159. {
  160. list->num = 0;
  161. QTAILQ_INIT(&list->head);
  162. }
  163. typedef struct GuestPhysListener {
  164. GuestPhysBlockList *list;
  165. MemoryListener listener;
  166. } GuestPhysListener;
  167. static void guest_phys_blocks_region_add(MemoryListener *listener,
  168. MemoryRegionSection *section)
  169. {
  170. GuestPhysListener *g;
  171. uint64_t section_size;
  172. hwaddr target_start, target_end;
  173. uint8_t *host_addr;
  174. GuestPhysBlock *predecessor;
  175. /* we only care about RAM */
  176. if (!memory_region_is_ram(section->mr) ||
  177. memory_region_is_skip_dump(section->mr)) {
  178. return;
  179. }
  180. g = container_of(listener, GuestPhysListener, listener);
  181. section_size = int128_get64(section->size);
  182. target_start = section->offset_within_address_space;
  183. target_end = target_start + section_size;
  184. host_addr = memory_region_get_ram_ptr(section->mr) +
  185. section->offset_within_region;
  186. predecessor = NULL;
  187. /* find continuity in guest physical address space */
  188. if (!QTAILQ_EMPTY(&g->list->head)) {
  189. hwaddr predecessor_size;
  190. predecessor = QTAILQ_LAST(&g->list->head, GuestPhysBlockHead);
  191. predecessor_size = predecessor->target_end - predecessor->target_start;
  192. /* the memory API guarantees monotonically increasing traversal */
  193. g_assert(predecessor->target_end <= target_start);
  194. /* we want continuity in both guest-physical and host-virtual memory */
  195. if (predecessor->target_end < target_start ||
  196. predecessor->host_addr + predecessor_size != host_addr) {
  197. predecessor = NULL;
  198. }
  199. }
  200. if (predecessor == NULL) {
  201. /* isolated mapping, allocate it and add it to the list */
  202. GuestPhysBlock *block = g_malloc0(sizeof *block);
  203. block->target_start = target_start;
  204. block->target_end = target_end;
  205. block->host_addr = host_addr;
  206. QTAILQ_INSERT_TAIL(&g->list->head, block, next);
  207. ++g->list->num;
  208. } else {
  209. /* expand predecessor until @target_end; predecessor's start doesn't
  210. * change
  211. */
  212. predecessor->target_end = target_end;
  213. }
  214. #ifdef DEBUG_GUEST_PHYS_REGION_ADD
  215. fprintf(stderr, "%s: target_start=" TARGET_FMT_plx " target_end="
  216. TARGET_FMT_plx ": %s (count: %u)\n", __FUNCTION__, target_start,
  217. target_end, predecessor ? "joined" : "added", g->list->num);
  218. #endif
  219. }
  220. void guest_phys_blocks_append(GuestPhysBlockList *list)
  221. {
  222. GuestPhysListener g = { 0 };
  223. g.list = list;
  224. g.listener.region_add = &guest_phys_blocks_region_add;
  225. memory_listener_register(&g.listener, &address_space_memory);
  226. memory_listener_unregister(&g.listener);
  227. }
  228. static CPUState *find_paging_enabled_cpu(CPUState *start_cpu)
  229. {
  230. CPUState *cpu;
  231. CPU_FOREACH(cpu) {
  232. if (cpu_paging_enabled(cpu)) {
  233. return cpu;
  234. }
  235. }
  236. return NULL;
  237. }
  238. void qemu_get_guest_memory_mapping(MemoryMappingList *list,
  239. const GuestPhysBlockList *guest_phys_blocks,
  240. Error **errp)
  241. {
  242. CPUState *cpu, *first_paging_enabled_cpu;
  243. GuestPhysBlock *block;
  244. ram_addr_t offset, length;
  245. first_paging_enabled_cpu = find_paging_enabled_cpu(first_cpu);
  246. if (first_paging_enabled_cpu) {
  247. for (cpu = first_paging_enabled_cpu; cpu != NULL;
  248. cpu = CPU_NEXT(cpu)) {
  249. Error *err = NULL;
  250. cpu_get_memory_mapping(cpu, list, &err);
  251. if (err) {
  252. error_propagate(errp, err);
  253. return;
  254. }
  255. }
  256. return;
  257. }
  258. /*
  259. * If the guest doesn't use paging, the virtual address is equal to physical
  260. * address.
  261. */
  262. QTAILQ_FOREACH(block, &guest_phys_blocks->head, next) {
  263. offset = block->target_start;
  264. length = block->target_end - block->target_start;
  265. create_new_memory_mapping(list, offset, offset, length);
  266. }
  267. }
  268. void qemu_get_guest_simple_memory_mapping(MemoryMappingList *list,
  269. const GuestPhysBlockList *guest_phys_blocks)
  270. {
  271. GuestPhysBlock *block;
  272. QTAILQ_FOREACH(block, &guest_phys_blocks->head, next) {
  273. create_new_memory_mapping(list, block->target_start, 0,
  274. block->target_end - block->target_start);
  275. }
  276. }
  277. void memory_mapping_filter(MemoryMappingList *list, int64_t begin,
  278. int64_t length)
  279. {
  280. MemoryMapping *cur, *next;
  281. QTAILQ_FOREACH_SAFE(cur, &list->head, next, next) {
  282. if (cur->phys_addr >= begin + length ||
  283. cur->phys_addr + cur->length <= begin) {
  284. QTAILQ_REMOVE(&list->head, cur, next);
  285. list->num--;
  286. continue;
  287. }
  288. if (cur->phys_addr < begin) {
  289. cur->length -= begin - cur->phys_addr;
  290. if (cur->virt_addr) {
  291. cur->virt_addr += begin - cur->phys_addr;
  292. }
  293. cur->phys_addr = begin;
  294. }
  295. if (cur->phys_addr + cur->length > begin + length) {
  296. cur->length -= cur->phys_addr + cur->length - begin - length;
  297. }
  298. }
  299. }