]> git.proxmox.com Git - qemu.git/blob - xen-all.c
memory: support stateless memory listeners
[qemu.git] / xen-all.c
1 /*
2 * Copyright (C) 2010 Citrix Ltd.
3 *
4 * This work is licensed under the terms of the GNU GPL, version 2. See
5 * the COPYING file in the top-level directory.
6 *
7 * Contributions after 2012-01-13 are licensed under the terms of the
8 * GNU GPL, version 2 or (at your option) any later version.
9 */
10
11 #include <sys/mman.h>
12
13 #include "hw/pci.h"
14 #include "hw/pc.h"
15 #include "hw/xen_common.h"
16 #include "hw/xen_backend.h"
17
18 #include "range.h"
19 #include "xen-mapcache.h"
20 #include "trace.h"
21 #include "exec-memory.h"
22
23 #include <xen/hvm/ioreq.h>
24 #include <xen/hvm/params.h>
25 #include <xen/hvm/e820.h>
26
27 //#define DEBUG_XEN
28
29 #ifdef DEBUG_XEN
30 #define DPRINTF(fmt, ...) \
31 do { fprintf(stderr, "xen: " fmt, ## __VA_ARGS__); } while (0)
32 #else
33 #define DPRINTF(fmt, ...) \
34 do { } while (0)
35 #endif
36
37 static MemoryRegion ram_memory, ram_640k, ram_lo, ram_hi;
38 static MemoryRegion *framebuffer;
39
40 /* Compatibility with older version */
41 #if __XEN_LATEST_INTERFACE_VERSION__ < 0x0003020a
42 static inline uint32_t xen_vcpu_eport(shared_iopage_t *shared_page, int i)
43 {
44 return shared_page->vcpu_iodata[i].vp_eport;
45 }
46 static inline ioreq_t *xen_vcpu_ioreq(shared_iopage_t *shared_page, int vcpu)
47 {
48 return &shared_page->vcpu_iodata[vcpu].vp_ioreq;
49 }
50 # define FMT_ioreq_size PRIx64
51 #else
52 static inline uint32_t xen_vcpu_eport(shared_iopage_t *shared_page, int i)
53 {
54 return shared_page->vcpu_ioreq[i].vp_eport;
55 }
56 static inline ioreq_t *xen_vcpu_ioreq(shared_iopage_t *shared_page, int vcpu)
57 {
58 return &shared_page->vcpu_ioreq[vcpu];
59 }
60 # define FMT_ioreq_size "u"
61 #endif
62
63 #define BUFFER_IO_MAX_DELAY 100
64
65 typedef struct XenPhysmap {
66 target_phys_addr_t start_addr;
67 ram_addr_t size;
68 MemoryRegion *mr;
69 target_phys_addr_t phys_offset;
70
71 QLIST_ENTRY(XenPhysmap) list;
72 } XenPhysmap;
73
74 typedef struct XenIOState {
75 shared_iopage_t *shared_page;
76 buffered_iopage_t *buffered_io_page;
77 QEMUTimer *buffered_io_timer;
78 /* the evtchn port for polling the notification, */
79 evtchn_port_t *ioreq_local_port;
80 /* the evtchn fd for polling */
81 XenEvtchn xce_handle;
82 /* which vcpu we are serving */
83 int send_vcpu;
84
85 struct xs_handle *xenstore;
86 MemoryListener memory_listener;
87 QLIST_HEAD(, XenPhysmap) physmap;
88 target_phys_addr_t free_phys_offset;
89 const XenPhysmap *log_for_dirtybit;
90
91 Notifier exit;
92 } XenIOState;
93
94 /* Xen specific function for piix pci */
95
96 int xen_pci_slot_get_pirq(PCIDevice *pci_dev, int irq_num)
97 {
98 return irq_num + ((pci_dev->devfn >> 3) << 2);
99 }
100
101 void xen_piix3_set_irq(void *opaque, int irq_num, int level)
102 {
103 xc_hvm_set_pci_intx_level(xen_xc, xen_domid, 0, 0, irq_num >> 2,
104 irq_num & 3, level);
105 }
106
107 void xen_piix_pci_write_config_client(uint32_t address, uint32_t val, int len)
108 {
109 int i;
110
111 /* Scan for updates to PCI link routes (0x60-0x63). */
112 for (i = 0; i < len; i++) {
113 uint8_t v = (val >> (8 * i)) & 0xff;
114 if (v & 0x80) {
115 v = 0;
116 }
117 v &= 0xf;
118 if (((address + i) >= 0x60) && ((address + i) <= 0x63)) {
119 xc_hvm_set_pci_link_route(xen_xc, xen_domid, address + i - 0x60, v);
120 }
121 }
122 }
123
124 void xen_cmos_set_s3_resume(void *opaque, int irq, int level)
125 {
126 pc_cmos_set_s3_resume(opaque, irq, level);
127 if (level) {
128 xc_set_hvm_param(xen_xc, xen_domid, HVM_PARAM_ACPI_S_STATE, 3);
129 }
130 }
131
132 /* Xen Interrupt Controller */
133
134 static void xen_set_irq(void *opaque, int irq, int level)
135 {
136 xc_hvm_set_isa_irq_level(xen_xc, xen_domid, irq, level);
137 }
138
139 qemu_irq *xen_interrupt_controller_init(void)
140 {
141 return qemu_allocate_irqs(xen_set_irq, NULL, 16);
142 }
143
144 /* Memory Ops */
145
146 static void xen_ram_init(ram_addr_t ram_size)
147 {
148 MemoryRegion *sysmem = get_system_memory();
149 ram_addr_t below_4g_mem_size, above_4g_mem_size = 0;
150 ram_addr_t block_len;
151
152 block_len = ram_size;
153 if (ram_size >= HVM_BELOW_4G_RAM_END) {
154 /* Xen does not allocate the memory continuously, and keep a hole at
155 * HVM_BELOW_4G_MMIO_START of HVM_BELOW_4G_MMIO_LENGTH
156 */
157 block_len += HVM_BELOW_4G_MMIO_LENGTH;
158 }
159 memory_region_init_ram(&ram_memory, "xen.ram", block_len);
160 vmstate_register_ram_global(&ram_memory);
161
162 if (ram_size >= HVM_BELOW_4G_RAM_END) {
163 above_4g_mem_size = ram_size - HVM_BELOW_4G_RAM_END;
164 below_4g_mem_size = HVM_BELOW_4G_RAM_END;
165 } else {
166 below_4g_mem_size = ram_size;
167 }
168
169 memory_region_init_alias(&ram_640k, "xen.ram.640k",
170 &ram_memory, 0, 0xa0000);
171 memory_region_add_subregion(sysmem, 0, &ram_640k);
172 /* Skip of the VGA IO memory space, it will be registered later by the VGA
173 * emulated device.
174 *
175 * The area between 0xc0000 and 0x100000 will be used by SeaBIOS to load
176 * the Options ROM, so it is registered here as RAM.
177 */
178 memory_region_init_alias(&ram_lo, "xen.ram.lo",
179 &ram_memory, 0xc0000, below_4g_mem_size - 0xc0000);
180 memory_region_add_subregion(sysmem, 0xc0000, &ram_lo);
181 if (above_4g_mem_size > 0) {
182 memory_region_init_alias(&ram_hi, "xen.ram.hi",
183 &ram_memory, 0x100000000ULL,
184 above_4g_mem_size);
185 memory_region_add_subregion(sysmem, 0x100000000ULL, &ram_hi);
186 }
187 }
188
189 void xen_ram_alloc(ram_addr_t ram_addr, ram_addr_t size, MemoryRegion *mr)
190 {
191 unsigned long nr_pfn;
192 xen_pfn_t *pfn_list;
193 int i;
194
195 if (mr == &ram_memory) {
196 return;
197 }
198
199 trace_xen_ram_alloc(ram_addr, size);
200
201 nr_pfn = size >> TARGET_PAGE_BITS;
202 pfn_list = g_malloc(sizeof (*pfn_list) * nr_pfn);
203
204 for (i = 0; i < nr_pfn; i++) {
205 pfn_list[i] = (ram_addr >> TARGET_PAGE_BITS) + i;
206 }
207
208 if (xc_domain_populate_physmap_exact(xen_xc, xen_domid, nr_pfn, 0, 0, pfn_list)) {
209 hw_error("xen: failed to populate ram at " RAM_ADDR_FMT, ram_addr);
210 }
211
212 g_free(pfn_list);
213 }
214
215 static XenPhysmap *get_physmapping(XenIOState *state,
216 target_phys_addr_t start_addr, ram_addr_t size)
217 {
218 XenPhysmap *physmap = NULL;
219
220 start_addr &= TARGET_PAGE_MASK;
221
222 QLIST_FOREACH(physmap, &state->physmap, list) {
223 if (range_covers_byte(physmap->start_addr, physmap->size, start_addr)) {
224 return physmap;
225 }
226 }
227 return NULL;
228 }
229
230 #if CONFIG_XEN_CTRL_INTERFACE_VERSION >= 340
231 static int xen_add_to_physmap(XenIOState *state,
232 target_phys_addr_t start_addr,
233 ram_addr_t size,
234 MemoryRegion *mr,
235 target_phys_addr_t offset_within_region)
236 {
237 unsigned long i = 0;
238 int rc = 0;
239 XenPhysmap *physmap = NULL;
240 target_phys_addr_t pfn, start_gpfn;
241 target_phys_addr_t phys_offset = memory_region_get_ram_addr(mr);
242
243 if (get_physmapping(state, start_addr, size)) {
244 return 0;
245 }
246 if (size <= 0) {
247 return -1;
248 }
249
250 /* Xen can only handle a single dirty log region for now and we want
251 * the linear framebuffer to be that region.
252 * Avoid tracking any regions that is not videoram and avoid tracking
253 * the legacy vga region. */
254 if (mr == framebuffer && start_addr > 0xbffff) {
255 goto go_physmap;
256 }
257 return -1;
258
259 go_physmap:
260 DPRINTF("mapping vram to %llx - %llx\n", start_addr, start_addr + size);
261
262 pfn = phys_offset >> TARGET_PAGE_BITS;
263 start_gpfn = start_addr >> TARGET_PAGE_BITS;
264 for (i = 0; i < size >> TARGET_PAGE_BITS; i++) {
265 unsigned long idx = pfn + i;
266 xen_pfn_t gpfn = start_gpfn + i;
267
268 rc = xc_domain_add_to_physmap(xen_xc, xen_domid, XENMAPSPACE_gmfn, idx, gpfn);
269 if (rc) {
270 DPRINTF("add_to_physmap MFN %"PRI_xen_pfn" to PFN %"
271 PRI_xen_pfn" failed: %d\n", idx, gpfn, rc);
272 return -rc;
273 }
274 }
275
276 physmap = g_malloc(sizeof (XenPhysmap));
277
278 physmap->start_addr = start_addr;
279 physmap->size = size;
280 physmap->phys_offset = phys_offset;
281
282 QLIST_INSERT_HEAD(&state->physmap, physmap, list);
283
284 xc_domain_pin_memory_cacheattr(xen_xc, xen_domid,
285 start_addr >> TARGET_PAGE_BITS,
286 (start_addr + size) >> TARGET_PAGE_BITS,
287 XEN_DOMCTL_MEM_CACHEATTR_WB);
288 return 0;
289 }
290
291 static int xen_remove_from_physmap(XenIOState *state,
292 target_phys_addr_t start_addr,
293 ram_addr_t size)
294 {
295 unsigned long i = 0;
296 int rc = 0;
297 XenPhysmap *physmap = NULL;
298 target_phys_addr_t phys_offset = 0;
299
300 physmap = get_physmapping(state, start_addr, size);
301 if (physmap == NULL) {
302 return -1;
303 }
304
305 phys_offset = physmap->phys_offset;
306 size = physmap->size;
307
308 DPRINTF("unmapping vram to %llx - %llx, from %llx\n",
309 phys_offset, phys_offset + size, start_addr);
310
311 size >>= TARGET_PAGE_BITS;
312 start_addr >>= TARGET_PAGE_BITS;
313 phys_offset >>= TARGET_PAGE_BITS;
314 for (i = 0; i < size; i++) {
315 unsigned long idx = start_addr + i;
316 xen_pfn_t gpfn = phys_offset + i;
317
318 rc = xc_domain_add_to_physmap(xen_xc, xen_domid, XENMAPSPACE_gmfn, idx, gpfn);
319 if (rc) {
320 fprintf(stderr, "add_to_physmap MFN %"PRI_xen_pfn" to PFN %"
321 PRI_xen_pfn" failed: %d\n", idx, gpfn, rc);
322 return -rc;
323 }
324 }
325
326 QLIST_REMOVE(physmap, list);
327 if (state->log_for_dirtybit == physmap) {
328 state->log_for_dirtybit = NULL;
329 }
330 free(physmap);
331
332 return 0;
333 }
334
335 #else
336 static int xen_add_to_physmap(XenIOState *state,
337 target_phys_addr_t start_addr,
338 ram_addr_t size,
339 MemoryRegion *mr,
340 target_phys_addr_t offset_within_region)
341 {
342 return -ENOSYS;
343 }
344
345 static int xen_remove_from_physmap(XenIOState *state,
346 target_phys_addr_t start_addr,
347 ram_addr_t size)
348 {
349 return -ENOSYS;
350 }
351 #endif
352
353 static void xen_set_memory(struct MemoryListener *listener,
354 MemoryRegionSection *section,
355 bool add)
356 {
357 XenIOState *state = container_of(listener, XenIOState, memory_listener);
358 target_phys_addr_t start_addr = section->offset_within_address_space;
359 ram_addr_t size = section->size;
360 bool log_dirty = memory_region_is_logging(section->mr);
361 hvmmem_type_t mem_type;
362
363 if (!memory_region_is_ram(section->mr)) {
364 return;
365 }
366
367 if (!(section->mr != &ram_memory
368 && ( (log_dirty && add) || (!log_dirty && !add)))) {
369 return;
370 }
371
372 trace_xen_client_set_memory(start_addr, size, log_dirty);
373
374 start_addr &= TARGET_PAGE_MASK;
375 size = TARGET_PAGE_ALIGN(size);
376
377 if (add) {
378 if (!memory_region_is_rom(section->mr)) {
379 xen_add_to_physmap(state, start_addr, size,
380 section->mr, section->offset_within_region);
381 } else {
382 mem_type = HVMMEM_ram_ro;
383 if (xc_hvm_set_mem_type(xen_xc, xen_domid, mem_type,
384 start_addr >> TARGET_PAGE_BITS,
385 size >> TARGET_PAGE_BITS)) {
386 DPRINTF("xc_hvm_set_mem_type error, addr: "TARGET_FMT_plx"\n",
387 start_addr);
388 }
389 }
390 } else {
391 if (xen_remove_from_physmap(state, start_addr, size) < 0) {
392 DPRINTF("physmapping does not exist at "TARGET_FMT_plx"\n", start_addr);
393 }
394 }
395 }
396
397 static void xen_begin(MemoryListener *listener)
398 {
399 }
400
401 static void xen_commit(MemoryListener *listener)
402 {
403 }
404
405 static void xen_region_add(MemoryListener *listener,
406 MemoryRegionSection *section)
407 {
408 xen_set_memory(listener, section, true);
409 }
410
411 static void xen_region_del(MemoryListener *listener,
412 MemoryRegionSection *section)
413 {
414 xen_set_memory(listener, section, false);
415 }
416
417 static void xen_region_nop(MemoryListener *listener,
418 MemoryRegionSection *section)
419 {
420 }
421
422 static void xen_sync_dirty_bitmap(XenIOState *state,
423 target_phys_addr_t start_addr,
424 ram_addr_t size)
425 {
426 target_phys_addr_t npages = size >> TARGET_PAGE_BITS;
427 const int width = sizeof(unsigned long) * 8;
428 unsigned long bitmap[(npages + width - 1) / width];
429 int rc, i, j;
430 const XenPhysmap *physmap = NULL;
431
432 physmap = get_physmapping(state, start_addr, size);
433 if (physmap == NULL) {
434 /* not handled */
435 return;
436 }
437
438 if (state->log_for_dirtybit == NULL) {
439 state->log_for_dirtybit = physmap;
440 } else if (state->log_for_dirtybit != physmap) {
441 /* Only one range for dirty bitmap can be tracked. */
442 return;
443 }
444
445 rc = xc_hvm_track_dirty_vram(xen_xc, xen_domid,
446 start_addr >> TARGET_PAGE_BITS, npages,
447 bitmap);
448 if (rc < 0) {
449 if (rc != -ENODATA) {
450 fprintf(stderr, "xen: track_dirty_vram failed (0x" TARGET_FMT_plx
451 ", 0x" TARGET_FMT_plx "): %s\n",
452 start_addr, start_addr + size, strerror(-rc));
453 }
454 return;
455 }
456
457 for (i = 0; i < ARRAY_SIZE(bitmap); i++) {
458 unsigned long map = bitmap[i];
459 while (map != 0) {
460 j = ffsl(map) - 1;
461 map &= ~(1ul << j);
462 memory_region_set_dirty(framebuffer,
463 (i * width + j) * TARGET_PAGE_SIZE,
464 TARGET_PAGE_SIZE);
465 };
466 }
467 }
468
469 static void xen_log_start(MemoryListener *listener,
470 MemoryRegionSection *section)
471 {
472 XenIOState *state = container_of(listener, XenIOState, memory_listener);
473
474 xen_sync_dirty_bitmap(state, section->offset_within_address_space,
475 section->size);
476 }
477
478 static void xen_log_stop(MemoryListener *listener, MemoryRegionSection *section)
479 {
480 XenIOState *state = container_of(listener, XenIOState, memory_listener);
481
482 state->log_for_dirtybit = NULL;
483 /* Disable dirty bit tracking */
484 xc_hvm_track_dirty_vram(xen_xc, xen_domid, 0, 0, NULL);
485 }
486
487 static void xen_log_sync(MemoryListener *listener, MemoryRegionSection *section)
488 {
489 XenIOState *state = container_of(listener, XenIOState, memory_listener);
490
491 xen_sync_dirty_bitmap(state, section->offset_within_address_space,
492 section->size);
493 }
494
495 static void xen_log_global_start(MemoryListener *listener)
496 {
497 }
498
499 static void xen_log_global_stop(MemoryListener *listener)
500 {
501 }
502
503 static void xen_eventfd_add(MemoryListener *listener,
504 MemoryRegionSection *section,
505 bool match_data, uint64_t data, int fd)
506 {
507 }
508
509 static void xen_eventfd_del(MemoryListener *listener,
510 MemoryRegionSection *section,
511 bool match_data, uint64_t data, int fd)
512 {
513 }
514
515 static MemoryListener xen_memory_listener = {
516 .begin = xen_begin,
517 .commit = xen_commit,
518 .region_add = xen_region_add,
519 .region_del = xen_region_del,
520 .region_nop = xen_region_nop,
521 .log_start = xen_log_start,
522 .log_stop = xen_log_stop,
523 .log_sync = xen_log_sync,
524 .log_global_start = xen_log_global_start,
525 .log_global_stop = xen_log_global_stop,
526 .eventfd_add = xen_eventfd_add,
527 .eventfd_del = xen_eventfd_del,
528 .priority = 10,
529 };
530
531 /* VCPU Operations, MMIO, IO ring ... */
532
533 static void xen_reset_vcpu(void *opaque)
534 {
535 CPUState *env = opaque;
536
537 env->halted = 1;
538 }
539
540 void xen_vcpu_init(void)
541 {
542 CPUState *first_cpu;
543
544 if ((first_cpu = qemu_get_cpu(0))) {
545 qemu_register_reset(xen_reset_vcpu, first_cpu);
546 xen_reset_vcpu(first_cpu);
547 }
548 }
549
550 /* get the ioreq packets from share mem */
551 static ioreq_t *cpu_get_ioreq_from_shared_memory(XenIOState *state, int vcpu)
552 {
553 ioreq_t *req = xen_vcpu_ioreq(state->shared_page, vcpu);
554
555 if (req->state != STATE_IOREQ_READY) {
556 DPRINTF("I/O request not ready: "
557 "%x, ptr: %x, port: %"PRIx64", "
558 "data: %"PRIx64", count: %" FMT_ioreq_size ", size: %" FMT_ioreq_size "\n",
559 req->state, req->data_is_ptr, req->addr,
560 req->data, req->count, req->size);
561 return NULL;
562 }
563
564 xen_rmb(); /* see IOREQ_READY /then/ read contents of ioreq */
565
566 req->state = STATE_IOREQ_INPROCESS;
567 return req;
568 }
569
570 /* use poll to get the port notification */
571 /* ioreq_vec--out,the */
572 /* retval--the number of ioreq packet */
573 static ioreq_t *cpu_get_ioreq(XenIOState *state)
574 {
575 int i;
576 evtchn_port_t port;
577
578 port = xc_evtchn_pending(state->xce_handle);
579 if (port != -1) {
580 for (i = 0; i < smp_cpus; i++) {
581 if (state->ioreq_local_port[i] == port) {
582 break;
583 }
584 }
585
586 if (i == smp_cpus) {
587 hw_error("Fatal error while trying to get io event!\n");
588 }
589
590 /* unmask the wanted port again */
591 xc_evtchn_unmask(state->xce_handle, port);
592
593 /* get the io packet from shared memory */
594 state->send_vcpu = i;
595 return cpu_get_ioreq_from_shared_memory(state, i);
596 }
597
598 /* read error or read nothing */
599 return NULL;
600 }
601
602 static uint32_t do_inp(pio_addr_t addr, unsigned long size)
603 {
604 switch (size) {
605 case 1:
606 return cpu_inb(addr);
607 case 2:
608 return cpu_inw(addr);
609 case 4:
610 return cpu_inl(addr);
611 default:
612 hw_error("inp: bad size: %04"FMT_pioaddr" %lx", addr, size);
613 }
614 }
615
616 static void do_outp(pio_addr_t addr,
617 unsigned long size, uint32_t val)
618 {
619 switch (size) {
620 case 1:
621 return cpu_outb(addr, val);
622 case 2:
623 return cpu_outw(addr, val);
624 case 4:
625 return cpu_outl(addr, val);
626 default:
627 hw_error("outp: bad size: %04"FMT_pioaddr" %lx", addr, size);
628 }
629 }
630
631 static void cpu_ioreq_pio(ioreq_t *req)
632 {
633 int i, sign;
634
635 sign = req->df ? -1 : 1;
636
637 if (req->dir == IOREQ_READ) {
638 if (!req->data_is_ptr) {
639 req->data = do_inp(req->addr, req->size);
640 } else {
641 uint32_t tmp;
642
643 for (i = 0; i < req->count; i++) {
644 tmp = do_inp(req->addr, req->size);
645 cpu_physical_memory_write(req->data + (sign * i * req->size),
646 (uint8_t *) &tmp, req->size);
647 }
648 }
649 } else if (req->dir == IOREQ_WRITE) {
650 if (!req->data_is_ptr) {
651 do_outp(req->addr, req->size, req->data);
652 } else {
653 for (i = 0; i < req->count; i++) {
654 uint32_t tmp = 0;
655
656 cpu_physical_memory_read(req->data + (sign * i * req->size),
657 (uint8_t*) &tmp, req->size);
658 do_outp(req->addr, req->size, tmp);
659 }
660 }
661 }
662 }
663
664 static void cpu_ioreq_move(ioreq_t *req)
665 {
666 int i, sign;
667
668 sign = req->df ? -1 : 1;
669
670 if (!req->data_is_ptr) {
671 if (req->dir == IOREQ_READ) {
672 for (i = 0; i < req->count; i++) {
673 cpu_physical_memory_read(req->addr + (sign * i * req->size),
674 (uint8_t *) &req->data, req->size);
675 }
676 } else if (req->dir == IOREQ_WRITE) {
677 for (i = 0; i < req->count; i++) {
678 cpu_physical_memory_write(req->addr + (sign * i * req->size),
679 (uint8_t *) &req->data, req->size);
680 }
681 }
682 } else {
683 uint64_t tmp;
684
685 if (req->dir == IOREQ_READ) {
686 for (i = 0; i < req->count; i++) {
687 cpu_physical_memory_read(req->addr + (sign * i * req->size),
688 (uint8_t*) &tmp, req->size);
689 cpu_physical_memory_write(req->data + (sign * i * req->size),
690 (uint8_t*) &tmp, req->size);
691 }
692 } else if (req->dir == IOREQ_WRITE) {
693 for (i = 0; i < req->count; i++) {
694 cpu_physical_memory_read(req->data + (sign * i * req->size),
695 (uint8_t*) &tmp, req->size);
696 cpu_physical_memory_write(req->addr + (sign * i * req->size),
697 (uint8_t*) &tmp, req->size);
698 }
699 }
700 }
701 }
702
703 static void handle_ioreq(ioreq_t *req)
704 {
705 if (!req->data_is_ptr && (req->dir == IOREQ_WRITE) &&
706 (req->size < sizeof (target_ulong))) {
707 req->data &= ((target_ulong) 1 << (8 * req->size)) - 1;
708 }
709
710 switch (req->type) {
711 case IOREQ_TYPE_PIO:
712 cpu_ioreq_pio(req);
713 break;
714 case IOREQ_TYPE_COPY:
715 cpu_ioreq_move(req);
716 break;
717 case IOREQ_TYPE_TIMEOFFSET:
718 break;
719 case IOREQ_TYPE_INVALIDATE:
720 xen_invalidate_map_cache();
721 break;
722 default:
723 hw_error("Invalid ioreq type 0x%x\n", req->type);
724 }
725 }
726
727 static void handle_buffered_iopage(XenIOState *state)
728 {
729 buf_ioreq_t *buf_req = NULL;
730 ioreq_t req;
731 int qw;
732
733 if (!state->buffered_io_page) {
734 return;
735 }
736
737 while (state->buffered_io_page->read_pointer != state->buffered_io_page->write_pointer) {
738 buf_req = &state->buffered_io_page->buf_ioreq[
739 state->buffered_io_page->read_pointer % IOREQ_BUFFER_SLOT_NUM];
740 req.size = 1UL << buf_req->size;
741 req.count = 1;
742 req.addr = buf_req->addr;
743 req.data = buf_req->data;
744 req.state = STATE_IOREQ_READY;
745 req.dir = buf_req->dir;
746 req.df = 1;
747 req.type = buf_req->type;
748 req.data_is_ptr = 0;
749 qw = (req.size == 8);
750 if (qw) {
751 buf_req = &state->buffered_io_page->buf_ioreq[
752 (state->buffered_io_page->read_pointer + 1) % IOREQ_BUFFER_SLOT_NUM];
753 req.data |= ((uint64_t)buf_req->data) << 32;
754 }
755
756 handle_ioreq(&req);
757
758 xen_mb();
759 state->buffered_io_page->read_pointer += qw ? 2 : 1;
760 }
761 }
762
763 static void handle_buffered_io(void *opaque)
764 {
765 XenIOState *state = opaque;
766
767 handle_buffered_iopage(state);
768 qemu_mod_timer(state->buffered_io_timer,
769 BUFFER_IO_MAX_DELAY + qemu_get_clock_ms(rt_clock));
770 }
771
772 static void cpu_handle_ioreq(void *opaque)
773 {
774 XenIOState *state = opaque;
775 ioreq_t *req = cpu_get_ioreq(state);
776
777 handle_buffered_iopage(state);
778 if (req) {
779 handle_ioreq(req);
780
781 if (req->state != STATE_IOREQ_INPROCESS) {
782 fprintf(stderr, "Badness in I/O request ... not in service?!: "
783 "%x, ptr: %x, port: %"PRIx64", "
784 "data: %"PRIx64", count: %" FMT_ioreq_size ", size: %" FMT_ioreq_size "\n",
785 req->state, req->data_is_ptr, req->addr,
786 req->data, req->count, req->size);
787 destroy_hvm_domain();
788 return;
789 }
790
791 xen_wmb(); /* Update ioreq contents /then/ update state. */
792
793 /*
794 * We do this before we send the response so that the tools
795 * have the opportunity to pick up on the reset before the
796 * guest resumes and does a hlt with interrupts disabled which
797 * causes Xen to powerdown the domain.
798 */
799 if (runstate_is_running()) {
800 if (qemu_shutdown_requested_get()) {
801 destroy_hvm_domain();
802 }
803 if (qemu_reset_requested_get()) {
804 qemu_system_reset(VMRESET_REPORT);
805 }
806 }
807
808 req->state = STATE_IORESP_READY;
809 xc_evtchn_notify(state->xce_handle, state->ioreq_local_port[state->send_vcpu]);
810 }
811 }
812
813 static int store_dev_info(int domid, CharDriverState *cs, const char *string)
814 {
815 struct xs_handle *xs = NULL;
816 char *path = NULL;
817 char *newpath = NULL;
818 char *pts = NULL;
819 int ret = -1;
820
821 /* Only continue if we're talking to a pty. */
822 if (strncmp(cs->filename, "pty:", 4)) {
823 return 0;
824 }
825 pts = cs->filename + 4;
826
827 /* We now have everything we need to set the xenstore entry. */
828 xs = xs_open(0);
829 if (xs == NULL) {
830 fprintf(stderr, "Could not contact XenStore\n");
831 goto out;
832 }
833
834 path = xs_get_domain_path(xs, domid);
835 if (path == NULL) {
836 fprintf(stderr, "xs_get_domain_path() error\n");
837 goto out;
838 }
839 newpath = realloc(path, (strlen(path) + strlen(string) +
840 strlen("/tty") + 1));
841 if (newpath == NULL) {
842 fprintf(stderr, "realloc error\n");
843 goto out;
844 }
845 path = newpath;
846
847 strcat(path, string);
848 strcat(path, "/tty");
849 if (!xs_write(xs, XBT_NULL, path, pts, strlen(pts))) {
850 fprintf(stderr, "xs_write for '%s' fail", string);
851 goto out;
852 }
853 ret = 0;
854
855 out:
856 free(path);
857 xs_close(xs);
858
859 return ret;
860 }
861
862 void xenstore_store_pv_console_info(int i, CharDriverState *chr)
863 {
864 if (i == 0) {
865 store_dev_info(xen_domid, chr, "/console");
866 } else {
867 char buf[32];
868 snprintf(buf, sizeof(buf), "/device/console/%d", i);
869 store_dev_info(xen_domid, chr, buf);
870 }
871 }
872
873 static void xenstore_record_dm_state(struct xs_handle *xs, const char *state)
874 {
875 char path[50];
876
877 if (xs == NULL) {
878 fprintf(stderr, "xenstore connection not initialized\n");
879 exit(1);
880 }
881
882 snprintf(path, sizeof (path), "/local/domain/0/device-model/%u/state", xen_domid);
883 if (!xs_write(xs, XBT_NULL, path, state, strlen(state))) {
884 fprintf(stderr, "error recording dm state\n");
885 exit(1);
886 }
887 }
888
889 static void xen_main_loop_prepare(XenIOState *state)
890 {
891 int evtchn_fd = -1;
892
893 if (state->xce_handle != XC_HANDLER_INITIAL_VALUE) {
894 evtchn_fd = xc_evtchn_fd(state->xce_handle);
895 }
896
897 state->buffered_io_timer = qemu_new_timer_ms(rt_clock, handle_buffered_io,
898 state);
899 qemu_mod_timer(state->buffered_io_timer, qemu_get_clock_ms(rt_clock));
900
901 if (evtchn_fd != -1) {
902 qemu_set_fd_handler(evtchn_fd, cpu_handle_ioreq, NULL, state);
903 }
904 }
905
906
907 /* Initialise Xen */
908
909 static void xen_change_state_handler(void *opaque, int running,
910 RunState state)
911 {
912 if (running) {
913 /* record state running */
914 xenstore_record_dm_state(xenstore, "running");
915 }
916 }
917
918 static void xen_hvm_change_state_handler(void *opaque, int running,
919 RunState rstate)
920 {
921 XenIOState *xstate = opaque;
922 if (running) {
923 xen_main_loop_prepare(xstate);
924 }
925 }
926
927 static void xen_exit_notifier(Notifier *n, void *data)
928 {
929 XenIOState *state = container_of(n, XenIOState, exit);
930
931 xc_evtchn_close(state->xce_handle);
932 xs_daemon_close(state->xenstore);
933 }
934
935 int xen_init(void)
936 {
937 xen_xc = xen_xc_interface_open(0, 0, 0);
938 if (xen_xc == XC_HANDLER_INITIAL_VALUE) {
939 xen_be_printf(NULL, 0, "can't open xen interface\n");
940 return -1;
941 }
942 qemu_add_vm_change_state_handler(xen_change_state_handler, NULL);
943
944 return 0;
945 }
946
947 int xen_hvm_init(void)
948 {
949 int i, rc;
950 unsigned long ioreq_pfn;
951 XenIOState *state;
952
953 state = g_malloc0(sizeof (XenIOState));
954
955 state->xce_handle = xen_xc_evtchn_open(NULL, 0);
956 if (state->xce_handle == XC_HANDLER_INITIAL_VALUE) {
957 perror("xen: event channel open");
958 return -errno;
959 }
960
961 state->xenstore = xs_daemon_open();
962 if (state->xenstore == NULL) {
963 perror("xen: xenstore open");
964 return -errno;
965 }
966
967 state->exit.notify = xen_exit_notifier;
968 qemu_add_exit_notifier(&state->exit);
969
970 xc_get_hvm_param(xen_xc, xen_domid, HVM_PARAM_IOREQ_PFN, &ioreq_pfn);
971 DPRINTF("shared page at pfn %lx\n", ioreq_pfn);
972 state->shared_page = xc_map_foreign_range(xen_xc, xen_domid, XC_PAGE_SIZE,
973 PROT_READ|PROT_WRITE, ioreq_pfn);
974 if (state->shared_page == NULL) {
975 hw_error("map shared IO page returned error %d handle=" XC_INTERFACE_FMT,
976 errno, xen_xc);
977 }
978
979 xc_get_hvm_param(xen_xc, xen_domid, HVM_PARAM_BUFIOREQ_PFN, &ioreq_pfn);
980 DPRINTF("buffered io page at pfn %lx\n", ioreq_pfn);
981 state->buffered_io_page = xc_map_foreign_range(xen_xc, xen_domid, XC_PAGE_SIZE,
982 PROT_READ|PROT_WRITE, ioreq_pfn);
983 if (state->buffered_io_page == NULL) {
984 hw_error("map buffered IO page returned error %d", errno);
985 }
986
987 state->ioreq_local_port = g_malloc0(smp_cpus * sizeof (evtchn_port_t));
988
989 /* FIXME: how about if we overflow the page here? */
990 for (i = 0; i < smp_cpus; i++) {
991 rc = xc_evtchn_bind_interdomain(state->xce_handle, xen_domid,
992 xen_vcpu_eport(state->shared_page, i));
993 if (rc == -1) {
994 fprintf(stderr, "bind interdomain ioctl error %d\n", errno);
995 return -1;
996 }
997 state->ioreq_local_port[i] = rc;
998 }
999
1000 /* Init RAM management */
1001 xen_map_cache_init();
1002 xen_ram_init(ram_size);
1003
1004 qemu_add_vm_change_state_handler(xen_hvm_change_state_handler, state);
1005
1006 state->memory_listener = xen_memory_listener;
1007 QLIST_INIT(&state->physmap);
1008 memory_listener_register(&state->memory_listener, get_system_memory());
1009 state->log_for_dirtybit = NULL;
1010
1011 /* Initialize backend core & drivers */
1012 if (xen_be_init() != 0) {
1013 fprintf(stderr, "%s: xen backend core setup failed\n", __FUNCTION__);
1014 exit(1);
1015 }
1016 xen_be_register("console", &xen_console_ops);
1017 xen_be_register("vkbd", &xen_kbdmouse_ops);
1018 xen_be_register("qdisk", &xen_blkdev_ops);
1019
1020 return 0;
1021 }
1022
1023 void destroy_hvm_domain(void)
1024 {
1025 XenXC xc_handle;
1026 int sts;
1027
1028 xc_handle = xen_xc_interface_open(0, 0, 0);
1029 if (xc_handle == XC_HANDLER_INITIAL_VALUE) {
1030 fprintf(stderr, "Cannot acquire xenctrl handle\n");
1031 } else {
1032 sts = xc_domain_shutdown(xc_handle, xen_domid, SHUTDOWN_poweroff);
1033 if (sts != 0) {
1034 fprintf(stderr, "? xc_domain_shutdown failed to issue poweroff, "
1035 "sts %d, %s\n", sts, strerror(errno));
1036 } else {
1037 fprintf(stderr, "Issued domain %d poweroff\n", xen_domid);
1038 }
1039 xc_interface_close(xc_handle);
1040 }
1041 }
1042
1043 void xen_register_framebuffer(MemoryRegion *mr)
1044 {
1045 framebuffer = mr;
1046 }