commit_msg
stringlengths
1
24.2k
commit_hash
stringlengths
2
84
project
stringlengths
2
40
source
stringclasses
4 values
labels
int64
0
1
repo_url
stringlengths
26
70
commit_url
stringlengths
74
118
commit_date
stringlengths
25
25
crypto: fix leaks in TLS x509 helper functions The test_tls_get_ipaddr() method forgot to free the returned data from getaddrinfo(). The test_tls_write_cert_chain() method forgot to free the allocated buffer holding the certificate data after writing it out to a file. Signed-off-by: Daniel P. Berrange <[email protected]>
7b35030eedc26eff82210caa2b0fff2f9d0df453
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/7b35030eedc26eff82210caa2b0fff2f9d0df453
2015-11-18 14:56:58+00:00
aio-epoll: Fix use-after-free of node aio_epoll_update needs the fields in node, so delay the free. Reported-by: Paolo Bonzini <[email protected]> Signed-off-by: Fam Zheng <[email protected]> Message-id: [email protected] Signed-off-by: Stefan Hajnoczi <[email protected]>
0ed39f3df2d3cf7f0fc3468b057f952a3b251ad9
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/0ed39f3df2d3cf7f0fc3468b057f952a3b251ad9
2015-11-17 18:35:57+08:00
block: Allow configuring whether to account failed and invalid ops This patch adds two options, "stats-account-invalid" and "stats-account-failed", that can be used to decide whether invalid and failed I/O operations must be used when collecting statistics for latency and last access time. Signed-off-by: Alberto Garcia <[email protected]> Reviewed-by: Stefan Hajnoczi <[email protected]> Message-id: ebc7e5966511a342cad428a392c5f5ad56b15213.1446044837.git.berto@igalia.com Signed-off-by: Stefan Hajnoczi <[email protected]> Signed-off-by: Kevin Wolf <[email protected]>
362e9299b34b3101aaa20f20363441c9f055fa5e
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/362e9299b34b3101aaa20f20363441c9f055fa5e
2015-11-12 16:22:45+01:00
block: check for existing device IDs in external_snapshot_prepare() The 'snapshot-node-name' parameter of blockdev-snapshot-sync allows setting the node name of the image that is going to be created. Before creating the image, external_snapshot_prepare() checks that the name is not already being used. The check is however incomplete since it only considers existing node names, but node names must not clash with device IDs either because they share the same namespace. If the user attempts to create a snapshot using the name of an existing device for the 'snapshot-node-name' parameter the operation will eventually fail, but only after the new image has been created. This patch replaces bdrv_find_node() with bdrv_lookup_bs() to extend the check to existing device IDs, and thus detect possible name clashes before the new image is created. Signed-off-by: Alberto Garcia <[email protected]> Reviewed-by: Max Reitz <[email protected]> Reviewed-by: Jeff Cody <[email protected]> Signed-off-by: Kevin Wolf <[email protected]>
a39a24fbb05055d00026eb569ff3f7b868ca8785
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/a39a24fbb05055d00026eb569ff3f7b868ca8785
2015-11-11 16:25:47+01:00
vmxnet3: Do not fill stats if device is inactive Guest OS may issue VMXNET3_CMD_GET_STATS even before device was activated (for example in linux, after insmod but prior net-dev open). Accessing shared descriptors prior device activation is illegal as the VMXNET3State structures have not been fully initialized. As a result, guest memory gets corrupted and may lead to guest OS crashes. Fix, by not filling the stats descriptors if device is inactive. Reported-by: Leonid Shatz <[email protected]> Acked-by: Dmitry Fleytman <[email protected]> Signed-off-by: Dana Rubin <[email protected]> Signed-off-by: Shmulik Ladkani <[email protected]> Signed-off-by: Jason Wang <[email protected]>
eedeeeffd419ab149e0b0ad5fc4b7cf5e1db6274
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/eedeeeffd419ab149e0b0ad5fc4b7cf5e1db6274
2015-10-27 10:30:38+08:00
mmap-alloc: fix error handling Existing callers are checking for MAP_FAILED, so we should return that on error. Reported-by: Paolo Bonzini <[email protected]> Signed-off-by: Michael S. Tsirkin <[email protected]>
9d4ec9370a36f8a564e1ba05519328c0bd60da13
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/9d4ec9370a36f8a564e1ba05519328c0bd60da13
2015-10-29 11:05:24+02:00
hw/ide/ahci.c: Fix shift left into sign bit Avoid undefined behaviour from shifting left into the sign bit: hw/ide/ahci.c:551:36: runtime error: left shift of 255 by 24 places cannot be represented in type 'int' (Unfortunately C's promotion rules mean that in the expression "some_uint8_t_variable << 24" the LHS gets promoted to signed int before shifting.) Signed-off-by: Peter Maydell <[email protected]> Reviewed-by: John Snow <[email protected]>
40fe17bea478793fc9106a630fa3610dad51f939
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/40fe17bea478793fc9106a630fa3610dad51f939
2015-10-18 11:00:40+01:00
blkverify: Fix BDS leak in .bdrv_open error path Signed-off-by: Kevin Wolf <[email protected]> Reviewed-by: Jeff Cody <[email protected]>
7e39d3a2dd34a84900e10b4ea1567f3b352659af
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/7e39d3a2dd34a84900e10b4ea1567f3b352659af
2015-10-16 15:34:30+02:00
virtio-gpu: move iov free to virtio_gpu_cleanup_mapping_iov For symmetry reasons: virtio_gpu_create_mapping_iov() allocates it so virtio_gpu_cleanup_mapping_iov() should free it, otherwise it's easy to miss a free() needed and leak memory. Signed-off-by: Gerd Hoffmann <[email protected]> Reviewed-by: Max Reitz <[email protected]>
7f3be0f20ff8d976ab982cc06026cac0600f1fb6
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/7f3be0f20ff8d976ab982cc06026cac0600f1fb6
2015-10-08 10:31:35+02:00
virtio-input: Fix device introspection on non-Linux hosts When CONFIG_LINUX is off, devices "virtio-keyboard-device", "virtio-mouse-device", "virtio-tablet-device" and "virtio-input-host-device" aren't compiled in, yet "virtio-keyboard-pci", "virtio-mouse-pci", "virtio-tablet-pci" and "virtio-input-host-pci" still are. Attempts to introspect them crash, e.g. $ qemu-system-x86_64 -device virtio-tablet-pci,help ** ERROR:/work/armbru/qemu/qom/object.c:333:object_initialize_with_type: assertion failed: (type != NULL) Broken in commit 710e2d9 and commit 006a5ed. Fix by compiling the "virtio-FOO-pci" exactly when compiling the "virtio-FOO-device": compile "virtio-keyboard-device", "virtio-mouse-device", "virtio-tablet-device" regardless of CONFIG_LINUX, and compile "virtio-input-host-pci" only for CONFIG_LINUX. Reported-by: Peter Maydell <[email protected]> Signed-off-by: Markus Armbruster <[email protected]> Reviewed-by: Gerd Hoffmann <[email protected]> Message-Id: <[email protected]>
c6047e9621f77a65993bcda8f58b676996e24bb5
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/c6047e9621f77a65993bcda8f58b676996e24bb5
2015-10-09 15:25:56+02:00
net: add checks to validate ring buffer pointers(CVE-2015-5279) Ne2000 NIC uses ring buffer of NE2000_MEM_SIZE(49152) bytes to process network packets. While receiving packets via ne2000_receive() routine, a local 'index' variable could exceed the ring buffer size, which could lead to a memory buffer overflow. Added other checks at initialisation. Reported-by: Qinghao Tang <[email protected]> Signed-off-by: P J P <[email protected]> Signed-off-by: Stefan Hajnoczi <[email protected]>
9bbdbc66e5765068dce76e9269dce4547afd8ad4
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/9bbdbc66e5765068dce76e9269dce4547afd8ad4
2015-09-15 12:51:14+01:00
Added generic panic handler qemu_system_guest_panicked() There are pieces of guest panic handling code that can be shared in one generic function. These code replaced by call qemu_system_guest_panicked(). Signed-off-by: Andrey Smetanin <[email protected]> Signed-off-by: Denis V. Lunev <[email protected]> CC: Paolo Bonzini <[email protected]> CC: Andreas Färber <[email protected]> Message-Id: <[email protected]> Signed-off-by: Paolo Bonzini <[email protected]>
5f5b5942d56a138baad0ae01458d5d0e62d5be68
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/5f5b5942d56a138baad0ae01458d5d0e62d5be68
2015-09-07 18:14:03+02:00
s390x/css: start with cleared cstat/dstat When executing the start function, we should start with a clear state regarding subchannel and device status; it is easy to forget updating one of them after the ccw has been processed. Note that we don't need to care about resetting the various control fields: They are cleared by tsch(), and if they were still pending, we wouldn't be able to execute the start function in the first place. Also note that we don't want to clear cstat/dstat if a suspended subchannel is resumed. This fixes a bug where we would continue to present channel-program check in cstat even though later ccw requests for the subchannel finished without error (i.e. cstat should be 0). Cc: [email protected] Signed-off-by: Cornelia Huck <[email protected]> Reviewed-by: David Hildenbrand <[email protected]>
6b7741c2bedeae2e8c54fffce81723ca0a0c25c0
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/6b7741c2bedeae2e8c54fffce81723ca0a0c25c0
2015-09-07 16:10:43+02:00
rtl8139: drop tautologous if (ip) {...} statement (CVE-2015-5165) The previous patch stopped using the ip pointer as an indicator that the IP header is present. When we reach the if (ip) {...} statement we know ip is always non-NULL. Remove the if statement to reduce nesting. Reported-by: 朱东海(启路) <[email protected]> Reviewed-by: Jason Wang <[email protected]> Signed-off-by: Stefan Hajnoczi <[email protected]>
d6812d60e7932de3cd0f602c0ee63dd3d09f1847
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/d6812d60e7932de3cd0f602c0ee63dd3d09f1847
2015-08-03 13:07:54+01:00
numa: Fix memory leak in numa_set_mem_node_id() Fix a memory leak in numa_set_mem_node_id(). Signed-off-by: Bharata B Rao <[email protected]> Reported-by: Paolo Bonzini <[email protected]> Reviewed-by: Eduardo Habkost <[email protected]> Signed-off-by: Eduardo Habkost <[email protected]>
672558d2ea8dd782d1d2adc6e16af3bc34029a36
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/672558d2ea8dd782d1d2adc6e16af3bc34029a36
2015-07-15 16:57:50-03:00
target-mips: Copy restrictions from ext/ins to dext/dins The checks in dins is required to avoid triggering an assertion in tcg_gen_deposit_tl. The check in dext is just for completeness. Fold the other D cases in via fallthru. In this case the errant dins appears to be data, not code, as translation failed to stop after a break insn. Signed-off-by: Richard Henderson <[email protected]> Reviewed-by: Aurelien Jarno <[email protected]> Reviewed-by: Leon Alrae <[email protected]> Signed-off-by: Leon Alrae <[email protected]>
b7f26e523914b982a1c1bfa8295f77ff9787c33c
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/b7f26e523914b982a1c1bfa8295f77ff9787c33c
2015-08-04 11:53:15+01:00
ui: convert VNC server to use QCryptoTLSSession Switch VNC server over to using the QCryptoTLSSession object for the TLS session. This removes the direct use of gnutls from the VNC server code. It also removes most knowledge about TLS certificate handling from the VNC server code. This has the nice effect that all the CONFIG_VNC_TLS conditionals go away and the user gets an actual error message when requesting TLS instead of it being silently ignored. With this change, the existing configuration options for enabling TLS with -vnc are deprecated. Old syntax for anon-DH credentials: -vnc hostname:0,tls New syntax: -object tls-creds-anon,id=tls0,endpoint=server \ -vnc hostname:0,tls-creds=tls0 Old syntax for x509 credentials, no client certs: -vnc hostname:0,tls,x509=/path/to/certs New syntax: -object tls-creds-x509,id=tls0,dir=/path/to/certs,endpoint=server,verify-peer=no \ -vnc hostname:0,tls-creds=tls0 Old syntax for x509 credentials, requiring client certs: -vnc hostname:0,tls,x509verify=/path/to/certs New syntax: -object tls-creds-x509,id=tls0,dir=/path/to/certs,endpoint=server,verify-peer=yes \ -vnc hostname:0,tls-creds=tls0 This aligns VNC with the way TLS credentials are to be configured in the future for chardev, nbd and migration backends. It also has the benefit that the same TLS credentials can be shared across multiple VNC server instances, if desired. If someone uses the deprecated syntax, it will internally result in the creation of a 'tls-creds' object with an ID based on the VNC server ID. This allows backwards compat with the CLI syntax, while still deleting all the original TLS code from the VNC server. Signed-off-by: Daniel P. Berrange <[email protected]>
3e305e4a4752f70c0b5c3cf5b43ec957881714f7
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/3e305e4a4752f70c0b5c3cf5b43ec957881714f7
2015-09-15 15:20:55+01:00
blockjob: add block_job_release function There is job resource leak in function mirror_start_job, although bdrv_create_dirty_bitmap is unlikely failed. Add block_job_release for each release when needed. Signed-off-by: Ting Wang <[email protected]> Reviewed-by: John Snow <[email protected]> Message-id: [email protected] Signed-off-by: Stefan Hajnoczi <[email protected]>
970311646a701eecb103eb28093e8924d2fa6861
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/970311646a701eecb103eb28093e8924d2fa6861
2015-07-07 14:27:14+01:00
migration: extend migration_bitmap Prevously, if we hotplug a device(e.g. device_add e1000) during migration is processing in source side, qemu will add a new ram block but migration_bitmap is not extended. In this case, migration_bitmap will overflow and lead qemu abort unexpectedly. Signed-off-by: Li Zhijian <[email protected]> Signed-off-by: Wen Congyang <[email protected]> Signed-off-by: Juan Quintela <[email protected]>
dd63169766abd2b8dc33f4451dac5e778458a47c
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/dd63169766abd2b8dc33f4451dac5e778458a47c
2015-07-07 14:54:56+02:00
ahci: check for ncq prdtl overflow Don't attempt the NCQ transfer if the PRDT we were given is not big enough to perform the entire transfer. Signed-off-by: John Snow <[email protected]> Reviewed-by: Stefan Hajnoczi <[email protected]> Message-id: [email protected]
3bcbe4aa803c1a41e5392ecac7b4fc3c99a42f89
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/3bcbe4aa803c1a41e5392ecac7b4fc3c99a42f89
2015-07-04 02:06:03-04:00
vhost: correctly pass error to caller in vhost_dev_enable_notifiers() We override the error value r in fail_vq, this will cause the caller can't detect the failure which may cause the caller may disable the notifiers twice if vhost is failed to start. Fix this by using another variable to keep track the return value of set_host_notifier(). Fixes b0b3db79559e57db340b292621c397e7a6cdbdc5 ("vhost-net: cleanup host notifiers at last step") Cc: [email protected] Cc: Michael S. Tsirkin <[email protected]> Signed-off-by: Jason Wang <[email protected]> Reviewed-by: Michael S. Tsirkin <[email protected]> Signed-off-by: Michael S. Tsirkin <[email protected]>
16617e36b02ebdc83f215d89db9ac00f7d6d6d83
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/16617e36b02ebdc83f215d89db9ac00f7d6d6d83
2015-06-23 17:08:21+02:00
target-arm: Add the THUMB_DSP feature Create an ARM_FEATURE_THUMB_DSP controlling the Thumb encodings of the 85 DSP instructions (these are all Thumb2). This is enabled for all non-M-profile CPUs with Thumb2 support, as the instructions are mandatory for R and A profiles. On M profile they are optional and not present in the Cortex-M3 (though they are in the M4). The effect of this commit is that we will now treat the DSP encodings as illegal instructions on M3, when previously we incorrectly implemented them. Signed-off-by: Aurelio C. Remonda <[email protected]> Message-id: [email protected] [PMM: added clz/crc32/crc32c and default case to the early-decode switch; minor format/spacing fixups; reworded commit message a bit] Reviewed-by: Peter Maydell <[email protected]> Signed-off-by: Peter Maydell <[email protected]>
62b44f059a84d1ac580a653fc4110dfabaef6b83
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/62b44f059a84d1ac580a653fc4110dfabaef6b83
2015-06-15 18:06:09+01:00
alsaaudio: Remove unused error handling of qemu_set_fd_handler The function cannot fail, so the check is superfluous. Signed-off-by: Fam Zheng <[email protected]> Message-id: [email protected] Signed-off-by: Stefan Hajnoczi <[email protected]>
be93f216278d84d283187c95cef16c0b60b711b8
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/be93f216278d84d283187c95cef16c0b60b711b8
2015-06-12 13:26:21+01:00
memory: use atomic ops for setting dirty memory bits Use set_bit_atomic() and bitmap_set_atomic() so that multiple threads can dirty memory without race conditions. Signed-off-by: Stefan Hajnoczi <[email protected]> Message-Id: <[email protected]> Reviewed-by: Fam Zheng <[email protected]> Signed-off-by: Paolo Bonzini <[email protected]>
d114875b9a1c21162f69a12d72f69a22e7bab376
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/d114875b9a1c21162f69a12d72f69a22e7bab376
2015-06-05 17:10:00+02:00
hw/arm/omap_sx1.c: Fix memory leak spotted by valgrind Signed-off-by: Shannon Zhao <[email protected]> Signed-off-by: Shannon Zhao <[email protected]> Signed-off-by: Michael Tokarev <[email protected]>
9f9b026dc60398224fb035eb27ae0ed083d2d66f
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/9f9b026dc60398224fb035eb27ae0ed083d2d66f
2015-06-03 14:21:24+03:00
s390x: Add vector registers to ELF dump Create ELF notes for the vector registers where applicable, so that their contents can be examined by utilities such as crash or readelf. Signed-off-by: Eric Farman <[email protected]> Reviewed-by: David Hildenbrand <[email protected]> Signed-off-by: Cornelia Huck <[email protected]>
3ceeb2930faf1116ee4bb22c8a7794bb2337e8a9
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/3ceeb2930faf1116ee4bb22c8a7794bb2337e8a9
2015-05-27 17:52:03+02:00
xen/MSI: don't open-code pass-through of enable bit modifications Without this the actual XSA-131 fix would cause the enable bit to not get set anymore (due to the write back getting suppressed there based on the OR of emu_mask, ro_mask, and res_mask). Note that the fiddling with the enable bit shouldn't really be done by qemu, but making this work right (via libxc and the hypervisor) will require more extensive changes, which can be postponed until after the security issue got addressed. This is a preparatory patch for XSA-131. Signed-off-by: Jan Beulich <[email protected]> Acked-by: Stefano Stabellini <[email protected]>
d1d35cf4ffb6a60a356193397919e83306d0bb74
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/d1d35cf4ffb6a60a356193397919e83306d0bb74
2015-06-02 15:07:01+00:00
microblaze: fix memory leak When not assign a -dtb argument, the variable dtb_filename storage returned from qemu_find_file(), which should be freed after use. Alternatively we define a local variable filename, with 'char *' type, free after use. Signed-off-by: Gonglei <[email protected]> Reviewed-by: Peter Crosthwaite <[email protected]> Reviewed-by: Edgar E. Iglesias <[email protected]> Signed-off-by: Michael Tokarev <[email protected]>
4d850406a859d3a5dcfca74eb9caa76ccc064ab3
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/4d850406a859d3a5dcfca74eb9caa76ccc064ab3
2015-04-30 16:06:18+03:00
serial: fix multi-pci card error cleanup. Put the number of serial ports into a local variable in multi_serial_pci_realize, then increment the port count (pci->ports) as we initialize the serial port cores. Now pci->ports always holds the number of successfully initialized ports and we can use multi_serial_pci_exit to properly cleanup the already initialized bits in case of a init failure. https://bugzilla.redhat.com/show_bug.cgi?id=970551 Signed-off-by: Gerd Hoffmann <[email protected]> Reviewed-by: Paolo Bonzini <[email protected]>
a48da7b5bc1f0c98e7a124337140efd47049066c
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/a48da7b5bc1f0c98e7a124337140efd47049066c
2015-05-19 12:47:08+02:00
hw/9pfs/virtio-9p-posix-acl: Fix out-of-bounds access It's detected by coverity. Fix out-of-bounds access of the function mp_dacl_listxattr. Signed-off-by: Shannon Zhao <[email protected]> Signed-off-by: Shannon Zhao <[email protected]> Signed-off-by: Aneesh Kumar K.V <[email protected]>
9005c3b3efb7eb1b140d2ad0385efff6a3af59c4
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/9005c3b3efb7eb1b140d2ad0385efff6a3af59c4
2015-03-13 14:01:24+05:30
nbd: Fix overflow return value The value of reply.error should be the type unsigned int. Signed-off-by: Yik Fang <[email protected]> Message-Id: <[email protected]> Signed-off-by: Paolo Bonzini <[email protected]>
8b2f0abfd61237b301a29e814535b1e36d733aaa
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/8b2f0abfd61237b301a29e814535b1e36d733aaa
2015-03-18 12:02:37+01:00
block: Forbid bdrv_set_aio_context outside BQL Even if the caller has both the old and the new AioContext's, there can be a deadlock, due to the leading bdrv_drain_all. Suppose there are four io threads (A, B, A0, B0) with A and B owning a BDS for each (bs_a, bs_b); Now A wants to move bs_a to iothread A0, and B wants to move bs_b to B0, at the same time: iothread A iothread B -------------------------------------------------------------------------- aio_context_acquire(A0) /* OK */ aio_context_acquire(B0) /* OK */ bdrv_set_aio_context(bs_a, A0) bdrv_set_aio_context(bs_b, B0) -> bdrv_drain_all() -> bdrv_drain_all() -> acquire A /* OK */ -> acquire A /* blocked */ -> acquire B /* blocked */ -> acquire B ... ... Deadlock happens because A is waiting for B, and B is waiting for A. Signed-off-by: Fam Zheng <[email protected]> Reviewed-by: Paolo Bonzini <[email protected]> Message-Id: <[email protected]> Signed-off-by: Paolo Bonzini <[email protected]>
2e5b887cfc69991eee27be6cc0938c70a360fe45
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/2e5b887cfc69991eee27be6cc0938c70a360fe45
2015-02-27 14:43:45+01:00
acpi-test: update expected files A bunch of code moved from dsdt to ssdt, plus we got trivial changes like 0->Zero which our test dosn't recognize as identity yet. Update expected files to suppress test warning. Signed-off-by: Michael S. Tsirkin <[email protected]>
dc33c0293505db9c747a6e27487a808ab2b62a6f
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/dc33c0293505db9c747a6e27487a808ab2b62a6f
2015-02-26 13:04:19+01:00
pci: Convert core to realize Implement DeviceClass methods realize() and unrealize() instead of init() and exit(). The core's initialization errors now get propagated properly, and QMP sends them instead of an unspecific "Device initialization failed" error. Unrealize can't fail, so no change there. PCIDeviceClass is unchanged: it still provides init() and exit(). Therefore, device models' errors are still not propagated. Signed-off-by: Markus Armbruster <[email protected]> Reviewed-by: Michael S. Tsirkin <[email protected]> Signed-off-by: Michael S. Tsirkin <[email protected]> Reviewed-by: Gonglei <[email protected]>
133e9b228df16d11de01529c217417e78d1d9370
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/133e9b228df16d11de01529c217417e78d1d9370
2015-02-26 12:42:15+01:00
serial: serial_hds_isa_init() shouldn't fail It shouldn't fail, and no caller checks for failure. Make failure fatal. Maintainers of affected machines cc'ed. Cc: Richard Henderson <[email protected]> Cc: Anthony Liguori <[email protected]> Cc: "Michael S. Tsirkin" <[email protected]> Cc: Aurelien Jarno <[email protected]> Cc: Leon Alrae <[email protected]> Cc: Blue Swirl <[email protected]> Signed-off-by: Markus Armbruster <[email protected]> Signed-off-by: Andreas Färber <[email protected]>
c6f10a5876a81f7a016714df06730c48210ee419
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/c6f10a5876a81f7a016714df06730c48210ee419
2015-02-24 00:19:06+01:00
utils: drop strtok_r from envlist_parse The problem is that mingw 4.9.1 fails to compile the code with the following warning: /mingw/include/string.h:88:9: note: previous declaration of 'strtok_r' was here char *strtok_r(char * __restrict__ _Str, const char * __restrict__ _Delim, char ** __restrict__ __last); /include/sysemu/os-win32.h:83:7: warning: redundant redeclaration of 'strtok_r' [-Wredundant-decls] char *strtok_r(char *str, const char *delim, char **saveptr); The problem is that compiles just fine on previous versions of mingw. Compiler version check here is not a good idea. Though fortunately strtok_r is used only once in the code and we could simply rewrite the code without it. Signed-off-by: Olga Krishtal <[email protected]> Signed-off-by: Denis V. Lunev <[email protected]> CC: Eric Blake <[email protected]> CC: Michael Roth <[email protected]> Signed-off-by: Michael Roth <[email protected]>
459db780be10f7adac723a5d3a4ffeac8ae6e768
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/459db780be10f7adac723a5d3a4ffeac8ae6e768
2015-02-16 16:20:02-06:00
xbzrle: optimize XBZRLE to decrease the cache misses Avoid hot pages being replaced by others to remarkably decrease cache misses Sample results with the test program which quote from xbzrle.txt ran in vm:(migrate bandwidth:1GE and xbzrle cache size 8MB) the test program: include <stdlib.h> include <stdio.h> int main() { char *buf = (char *) calloc(4096, 4096); while (1) { int i; for (i = 0; i < 4096 * 4; i++) { buf[i * 4096 / 4]++; } printf("."); } } before this patch: virsh qemu-monitor-command test_vm '{"execute": "query-migrate"}' {"return":{"expected-downtime":1020,"xbzrle-cache":{"bytes":1108284, "cache-size":8388608,"cache-miss-rate":0.987013,"pages":18297,"overflow":8, "cache-miss":1228737},"status":"active","setup-time":10,"total-time":52398, "ram":{"total":12466991104,"remaining":1695744,"mbps":935.559472, "transferred":5780760580,"dirty-sync-counter":271,"duplicate":2878530, "dirty-pages-rate":29130,"skipped":0,"normal-bytes":5748592640, "normal":1403465}},"id":"libvirt-706"} 18k pages sent compressed in 52 seconds. cache-miss-rate is 98.7%, totally miss. after optimizing: virsh qemu-monitor-command test_vm '{"execute": "query-migrate"}' {"return":{"expected-downtime":2054,"xbzrle-cache":{"bytes":5066763, "cache-size":8388608,"cache-miss-rate":0.485924,"pages":194823,"overflow":0, "cache-miss":210653},"status":"active","setup-time":11,"total-time":18729, "ram":{"total":12466991104,"remaining":3895296,"mbps":937.663549, "transferred":1615042219,"dirty-sync-counter":98,"duplicate":2869840, "dirty-pages-rate":58781,"skipped":0,"normal-bytes":1588404224, "normal":387794}},"id":"libvirt-266"} 194k pages sent compressed in 18 seconds. The value of cache-miss-rate decrease to 48.59%. Signed-off-by: ChenLiang <[email protected]> Signed-off-by: Gonglei <[email protected]> Reviewed-by: Eric Blake <[email protected]> Signed-off-by: Amit Shah <[email protected]>
27af7d6ea5015e5ef1f7985eab94a8a218267a2b
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/27af7d6ea5015e5ef1f7985eab94a8a218267a2b
2015-01-15 17:49:43+05:30
vl: Don't silently change topology when all -smp options were set QEMU tries to change the "threads" option even if it was explicitly set in the command-line, and it shouldn't do that. The right thing to do when all options (cpus, sockets, cores, threds) are explicitly set is to sanity check them and abort in case they don't make sense (i.e. when sockets*cores*threads < cpus). Signed-off-by: Eduardo Habkost <[email protected]> Reviewed-by: Andrew Jones <[email protected]> Signed-off-by: Paolo Bonzini <[email protected]>
ec2cbbdd80463efd4bc81a9d1362a2acb3097a21
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/ec2cbbdd80463efd4bc81a9d1362a2acb3097a21
2015-01-09 23:41:12+01:00
migration/qemu-file.c: Don't shift left into sign bit Add a cast in qemu_get_be32() to avoid shifting left into the sign bit of a signed integer (which is undefined behaviour in C). Signed-off-by: Peter Maydell <[email protected]> Signed-off-by: Michael Tokarev <[email protected]>
90d6a6730b4dbe7d0ada9900aba8263d61376812
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/90d6a6730b4dbe7d0ada9900aba8263d61376812
2015-01-15 10:44:13+03:00
scsi: Use g_new() & friends where that makes obvious sense g_new(T, n) is neater than g_malloc(sizeof(T) * n). It's also safer, for two reasons. One, it catches multiplication overflowing size_t. Two, it returns T * rather than void *, which lets the compiler catch more type errors. This commit only touches allocations with size arguments of the form sizeof(T). Signed-off-by: Markus Armbruster <[email protected]> Reviewed-by: Eric Blake <[email protected]> Reviewed-by: Fam Zheng <[email protected]> Signed-off-by: Paolo Bonzini <[email protected]>
3c55fe2a13353b3ddf1db51c34ada23d161ee428
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/3c55fe2a13353b3ddf1db51c34ada23d161ee428
2014-12-15 12:21:02+01:00
gtk: fix possible memory leak about local_err local_err in gd_vc_gfx_init() is not freed, and we don't use it, so remove it. Signed-off-by: zhanghailiang <[email protected]> Signed-off-by: Gerd Hoffmann <[email protected]>
8a0f9b5263bb3a96d574ca78ad3b8f1d7bf8b12b
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/8a0f9b5263bb3a96d574ca78ad3b8f1d7bf8b12b
2014-11-21 08:37:59+01:00
target-ppc: kvm: Fix memory overflow issue about strncat() strncat() will append additional '\0' to destination buffer, so need additional 1 byte for it, or may cause memory overflow, just like other area within QEMU have done. And can use g_strdup_printf() instead of strncat(), which may be more easier understanding. Signed-off-by: Chen Gang <[email protected]> Signed-off-by: Alexander Graf <[email protected]>
cc64b1a1940dc2e041c5b06b003d9acf64c22372
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/cc64b1a1940dc2e041c5b06b003d9acf64c22372
2014-11-04 23:26:13+01:00
ivshmem: Fix fd leak on error Reported-by: Stefan Hajnoczi <[email protected]> Cc: [email protected] Signed-off-by: Andreas Färber <[email protected]> Reviewed-by: Michael S. Tsirkin <[email protected]> Signed-off-by: Paolo Bonzini <[email protected]>
3a31cff11203bf62ebafa6d74b1fcf2aba345eed
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/3a31cff11203bf62ebafa6d74b1fcf2aba345eed
2014-10-31 17:02:14+01:00
vmdk: Fix integer overflow in offset calculation This fixes the bug introduced by commit c6ac36e (vmdk: Optimize cluster allocation). $ ~/build/master/qemu-io /stor/vm/arch.vmdk -c 'write 2G 1k' write failed: Invalid argument Reported-by: Mark Cave-Ayland <[email protected]> Reviewed-by: Max Reitz <[email protected]> Signed-off-by: Fam Zheng <[email protected]> Message-id: [email protected] Signed-off-by: Stefan Hajnoczi <[email protected]>
d1319b077a4bd980ca1b8a167b02b519330dd26b
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/d1319b077a4bd980ca1b8a167b02b519330dd26b
2014-10-03 10:30:33+01:00
ssh: Don't crash if either host or path is not specified. $ ./qemu-img create -f qcow2 overlay \ -b 'json: { "file.driver":"ssh", "file.host":"localhost", "file.host_key_check":"no" }' qemu-img: qobject/qdict.c:193: qdict_get_obj: Assertion `obj != ((void *)0)' failed. Aborted A similar crash also happens if the file.host field is omitted. https://bugzilla.redhat.com/show_bug.cgi?id=1147343 Bug found and reported by Jun Li. Signed-off-by: Richard W.M. Jones <[email protected]> Reviewed-by: Gonglei <[email protected]> Signed-off-by: Stefan Hajnoczi <[email protected]>
18fe46d79a6de61cb2c379fb610d834ef658d84b
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/18fe46d79a6de61cb2c379fb610d834ef658d84b
2014-10-03 10:30:33+01:00
ohci: drop computed flags from trace events This exceeded the trace argument limit for LTTNG UST and wasn't really needed as the flags value is stored anyway. Dropping this fixes the compile failure for UST. It can probably be merged with the previous trace shortening patch. Signed-off-by: Alex Bennée <[email protected]> Reviewed-by: Stefan Hajnoczi <[email protected]> Signed-off-by: Stefan Hajnoczi <[email protected]>
bc0d104c6a3dc685e3adf92d89a017b2adc9878a
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/bc0d104c6a3dc685e3adf92d89a017b2adc9878a
2014-09-26 09:43:06+01:00
hmp: fix memory leak at hmp_info_block_jobs() Signed-off-by: Gonglei <[email protected]> Reviewed-by: Markus Armbruster <[email protected]> Message-id: [email protected] Signed-off-by: Stefan Hajnoczi <[email protected]>
93bb1315250dd010e65dc067af103cbaf0de03ae
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/93bb1315250dd010e65dc067af103cbaf0de03ae
2014-09-22 11:39:31+01:00
qapi/block: Add "fatal" to BLOCK_IMAGE_CORRUPTED Not every BLOCK_IMAGE_CORRUPTED event must be fatal; for example, when reading from an image, they should generally not be. Nonetheless, even an image only read from may of course be corrupted and this can be detected during normal operation. In this case, a non-fatal event should be emitted, but the image should not be marked corrupt (in accordance to "fatal" set to false). Signed-off-by: Max Reitz <[email protected]> Reviewed-by: Eric Blake <[email protected]> Message-id: [email protected] Signed-off-by: Stefan Hajnoczi <[email protected]>
9bf040b962f90aa2e1cef6543dfee6c96f73ef7e
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/9bf040b962f90aa2e1cef6543dfee6c96f73ef7e
2014-09-22 11:39:26+01:00
runner: Kill a program under test by time-out If a program under test get frozen, the test should finish and report about its failure. In such cases the runner waits for 10 minutes until the program ends its execution. After this time-out the program will be terminated and the test will be marked as failed. For current limitation of test image size to 10 MB as a maximum an execution of each command takes about several seconds in general, so 10 minutes is enough to discriminate freeze, but not drastically increase an overall test duration. Signed-off-by: Maria Kustova <[email protected]> Reviewed-by: Stefan Hajnoczi <[email protected]> Signed-off-by: Kevin Wolf <[email protected]>
18a7d0c56e1377f3d5fa1dc4d78a15dbab01cd83
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/18a7d0c56e1377f3d5fa1dc4d78a15dbab01cd83
2014-08-20 11:51:28+02:00
dataplane: fail notifier setting gracefully The dataplane code is currently doing a hard exit if it fails to set up either guest or host notifiers. In practice, this may mean that a guest suddenly dies after a dataplane device failed to come up (e.g., when a file descriptor limit is hit for tne nth device). Let's just try to unwind the setup instead and return. Acked-by: Christian Borntraeger <[email protected]> Signed-off-by: Cornelia Huck <[email protected]> Signed-off-by: Stefan Hajnoczi <[email protected]>
f9907ebc4cc37d0317ee67cfa8d6618eaf8f658b
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/f9907ebc4cc37d0317ee67cfa8d6618eaf8f658b
2014-08-15 18:03:13+01:00
cirrus_vga: adding sanity check for vram size when configure a invalid vram size for cirrus card, such as less 2 MB, which will crash qemu. Follow the real hardware, the cirrus card has 4 MB video memory. Also for backward compatibility, accept 8 MB and 16 MB vram size. Signed-off-by: Gonglei <[email protected]> Reviewed-by: Andreas Färber <[email protected]> Signed-off-by: Gerd Hoffmann <[email protected]>
f61d82c2dfe02a60642a76e8f0034a0244eef2bf
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/f61d82c2dfe02a60642a76e8f0034a0244eef2bf
2014-07-11 10:17:01+02:00
numa: Reject duplicate node IDs The same nodeid shouldn't appear multiple times in the command-line. In addition to detecting command-line mistakes, this will fix a bug where nb_numa_nodes may become larger than MAX_NODES (and cause out-of-bounds access on the numa_info array). Signed-off-by: Eduardo Habkost <[email protected]> Reviewed-by: Michael S. Tsirkin <[email protected]> Signed-off-by: Michael S. Tsirkin <[email protected]> Reviewed-by: Hu Tao <[email protected]> Reviewed-by: Eric Blake <[email protected]>
1945b9d8b03aad59e86bfe3a3194e6bbeffbad6a
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/1945b9d8b03aad59e86bfe3a3194e6bbeffbad6a
2014-06-29 18:59:42+03:00
block: Catch !bs->drv in bdrv_check() qemu-img check calls bdrv_check() twice if the first run repaired some inconsistencies. If the first run however again triggered corruption prevention (on qcow2) due to very bad inconsistencies, bs->drv may be NULL afterwards. Thus, bdrv_check() should check whether bs->drv is set. Signed-off-by: Max Reitz <[email protected]> Reviewed-by: Eric Blake <[email protected]> Signed-off-by: Kevin Wolf <[email protected]>
908bcd540f489f7adf2d804347905b0025d808d3
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/908bcd540f489f7adf2d804347905b0025d808d3
2014-08-15 15:07:16+02:00
virtio-serial-bus: keep port 0 reserved for virtconsole even on unplug We keep port 0 reserved for compat with older guests, where only virtio-console was expected. Even if a system is started without a virtio-console port, port #0 is kept aside. However, after a virtconsole port is unplugged, port id 0 became available, and the next hotplug of a virtserialport caused failure due to it not being a console port. Steps to reproduce: $ ./x86_64-softmmu/qemu-system-x86_64 -m 512 -cpu host -enable-kvm -device virtio-serial-pci -monitor stdio -vnc :1 QEMU 2.0.91 monitor - type 'help' for more information (qemu) device_add virtconsole,id=p1 (qemu) device_del p1 (qemu) device_add virtserialport,id=p1 Port number 0 on virtio-serial devices reserved for virtconsole devices for backward compatibility. Device 'virtserialport' could not be initialized (qemu) quit Reported-by: dengmin <[email protected]> Reviewed-by: Amos Kong <[email protected]> Reviewed-by: Paolo Bonzini <[email protected]> Signed-off-by: Amit Shah <[email protected]>
57d84cf35302fe51789c18354bf09a521bb603df
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/57d84cf35302fe51789c18354bf09a521bb603df
2014-07-16 14:32:40+05:30
qemu-img: Plug memory leak in convert command Introduced in commit 661a0f7. Spotted by Coverity. Signed-off-by: Markus Armbruster <[email protected]> Reviewed-by: Benoit Canet <[email protected]> Signed-off-by: Kevin Wolf <[email protected]>
bb9cd2ee99f6537c072d5f4bac441717d3cd2bed
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/bb9cd2ee99f6537c072d5f4bac441717d3cd2bed
2014-05-30 14:26:54+02:00
qemu-io: Plug memory leak in open command Introduced in commit b543c5c. Spotted by Coverity. Signed-off-by: Markus Armbruster <[email protected]> Signed-off-by: Kevin Wolf <[email protected]>
29f2601aa605f0af0cba8eedcff7812c6c8532e9
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/29f2601aa605f0af0cba8eedcff7812c6c8532e9
2014-05-30 14:26:54+02:00
signal/all: remove return value from restore_sigcontext make most implementations of restore_sigcontext void and remove checking it's return value from functions calling restore_sigcontext. The exception is the X86 version of the function that is too different from others to deal in this way, and arm version, to keep possibility of erroring out from failed valid_user_regs. v3: keep arm valid_user_regs for filling in near future. Signed-off-by: Riku Voipio <[email protected]> Reviewed-by: Peter Maydell <[email protected]>
016d2e1dfa21b64a524d3629fdd317d4c25bc3b8
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/016d2e1dfa21b64a524d3629fdd317d4c25bc3b8
2014-06-17 08:52:07+03:00
hw/arm/omap_gpmc: Avoid buffer overrun filling prefetch FIFO In fill_prefetch_fifo(), if the device we are reading from is 16 bit, then we must not try to transfer an odd number of bytes into the FIFO. This could otherwise have resulted in our overrunning the prefetch.fifo array by one byte. Signed-off-by: Peter Maydell <[email protected]> Reviewed-by: Peter Crosthwaite <[email protected]>
89f26e6b7b5e5c9657f2abd6ef5a336bea11add2
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/89f26e6b7b5e5c9657f2abd6ef5a336bea11add2
2014-05-13 16:09:39+01:00
seabios: update to 1.7.5-rc1 Code grew a bit, had to disable CONFIG_USB_UAS to make the bios for the old machine types continue top fit into 128k. git shortlog since 1.7.4: Eric Northup (2): init_virtio_blk, init_virtio_scsi: reset HBA on error vp_init_simple: enable PCI bus-mastering before relying on DMA. Gabriel L. Somlo (1): SMBIOS: Check for aggregate tables & entry point in fw_cfg Gerd Hoffmann (4): smbios: catch zero-length strings pci: improve io address space allocation xhci: allocate scratch pad buffers vga: rework bar detection, add virtio-vga Johannes Krampf (5): build: Remove unneccesary semicolons from acpi_extract scripts. build: Make print statements in scripts python3 compatible. build: Be explicit that we want integers when dividing for python3 compat. build: Avoid sort() on unordered classes for python3 compatibility. build: Be careful with unicode and byte strings for python3 compatibility. Kevin O'Connor (79): build: Don't trash the .config file when src/Kconfig changes. Remove the pmm handle argument from _malloc(). Clear the total block transfer count on error. Remove unnecesary updates of the disk op->count field. Always perform thread cleanup on MainThread stack. pvscsi: Don't store reference to struct pci_device. pvscsi: Always run entirely in 32bit mode. pvscsi: Remove use of LOWFLAT and GLOBALFLAT macros. usb: Replace EHCI to UHCI/OHCI synchronization with new scheme. Minor - pciinit.c - order header files and use static on local functions. Minor - fix misspelling in romfile.c comment. ehci: memset the qTD structures in ehci_alloc_intr_pipe build: Update kconfig to version in Linux 3.13. scripts: Allow encodeint.py to take integers in hex notation. coreboot: Support alternative locations for CBFS. debug: Add runtime option to not report the debug serial port to the OS. debug: Only call serial_debug_preinit() at startup. debug: Unify the SeaBIOS debug version banner. xhci: Use 64bit writes to ERDP register. xhci: Fix incorrect direction setting on status transmissions. xhci: Set the interval parameter on interrupt pipes. xhci: Verify PAGESIZE register before initializing driver. xhci: Allocate and free the xhci inctx structure on each use. xhci: Move set_address code from xhci_control to xhci_alloc_pipe. xhci: Eliminate 'struct xhci_device'. xhci: Support xhci controllers with 64 byte contexts. xhci: Allow the XHCI USB controller to be enabled for coreboot. xhci: Don't use a dummy endpoint count in configure command. xhci: Report the "protocol defined" and PSIC bits of extended capabilities. xhci: Support USB hubs on xhci controllers. Add call32_params() helper function. Add space between DTYPE_* definitions. xhci: Run the XHCI driver entirely in 32bit mode. Remove pci_writel() and pci_readl() functions. xhci: Check if scratch pad allocation fails. Increase maximum size of permanent high memory area. usb: USB 3 devices encode bMaxPacketSize0 field. usb: Move default pipe max packet size code from xhci to main code. xhci: Use the same endpoint initialization code in xhci_alloc_pipe() xhci: Add copyright notice to usb-xhci.c vgabios: Make sure exported structs use PACKED. vgabios: Simplify the bios save state area. vgabios: Simplify save/restore mechanism. vgabios: Attempt to detect old x86emu and force a fault. vgabios: Don't interpret TAB character. vgabios: Refactor write_teletype and write_chars. vgabios: Make sure stdvga_list_modes() doesn't overrun the buffer. coreboot: Add support for a "links" file to have aliases in CBFS. Enhance nullTrailingSpace() so that it can also skip leading spaces. coreboot: Move links file processing to its own function. vgabios: Fix PMM allocation request size. smbios: Default all values to zero. usb: Only disable HID devices if both USB_MOUSE and USB_KEYBOARD are off. Minor - fix some typos in comments. Replace CONFIG_THREAD_OPTIONROMS with a runtime config setting. acpi: Move acpi parsing logic from acpi.c to biostables.c / paravirt.c. smbios: Move smbios parsing logic from smbios.c to biostables.c. Move PirAddr definition from pirtable.c to biostables.c. Use biostables.c for copying bios tables even when generating them. Document no new changes to pirtable.c, mptable.c, acpi.c, and smbios.c. apm: Remove old Bochs mechanism for shutdown/suspend/standby. Minor - remove unused includes from pci.c. vgabios: Add option to control use of standard VGA IO ports. vgabios: Split vgafb_scroll() into separate move and clear functions. vgabios: Rewrite vgafb.c graphics operations to set of 4 standard operators. vgabios: Introduce text_address(). vgabios: Add support for manipulating framebuffers in high memory. Set the color attribute when calling vgabios print character. vgabios: PMM scan was incorrectly depending on a zero %ds segment. coreboot: Make coreboot table searching available to other code. vgabios: Initial support for coreboot native vga vgabios. Minor - replace some tab characters that slipped into the code. Factor out smbios table walking from display_uuid to smbios_next(). vgabios: Define PlatformRunningOn to make compile happy. If an int 1587 call is made from an option rom, stay in bigreal mode. xhci: Use msleep() instead of mdelay() for port status delay. build: Make sure romlayout.o is recompiled on Kconfig change. Fix int 1589 calls when CONFIG_ENTRY_EXTRASTACK is enabled. acpi: Fix acpi dsdt compile warning. Laszlo Ersek (1): init_virtio_scsi(): reset the HBA before freeing its virtio ring Marcel Apfelbaum (3): resume: restore piix pm config registers after resume hw/pci: reserve IO and mem for pci-2-pci bridges with no devices attached hw/pci: check if pci2pci bridges implement optional limit registers Roger Pau Monne (1): ld: don't hardcode "-melf_i386" Sander Eikelenboom (1): Prevent build failure by not splitting line in the middle of arguments to checkrom.py script Signed-off-by: Gerd Hoffmann <[email protected]>
db76ec6291df8a03c2cc82ea1249049383cca392
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/db76ec6291df8a03c2cc82ea1249049383cca392
2014-05-15 14:05:26+02:00
gluster: Correctly propagate errors when volume isn't accessible The docs for glfs_init suggest that the function sets errno on every failure. In fact it doesn't. As other functions such as qemu_gluster_open() in the gluster block code report their errors based on this fact we need to make sure that errno is set on each failure. This fixes a crash of qemu-img/qemu when a gluster brick isn't accessible from given host while the server serving the volume description is. Thread 1 (Thread 0x7ffff7fba740 (LWP 203880)): #0 0x00007ffff77673f8 in glfs_lseek () from /usr/lib64/libgfapi.so.0 #1 0x0000555555574a68 in qemu_gluster_getlength () #2 0x0000555555565742 in refresh_total_sectors () #3 0x000055555556914f in bdrv_open_common () #4 0x000055555556e8e8 in bdrv_open () #5 0x000055555556f02f in bdrv_open_image () #6 0x000055555556e5f6 in bdrv_open () #7 0x00005555555c5775 in bdrv_new_open () #8 0x00005555555c5b91 in img_info () #9 0x00007ffff62c9c05 in __libc_start_main () from /lib64/libc.so.6 #10 0x00005555555648ad in _start () Signed-off-by: Stefan Hajnoczi <[email protected]>
4557117d9eed8cadc360aec23b42fc39a7011864
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/4557117d9eed8cadc360aec23b42fc39a7011864
2014-05-09 20:57:32+02:00
ahci: fix buffer overrun on invalid state load CVE-2013-4526 Within hw/ide/ahci.c, VARRAY refers to ports which is also loaded. So we use the old version of ports to read the array but then allow any value for ports. This can cause the code to overflow. There's no reason to migrate ports - it never changes. So just make sure it matches. Reported-by: Anthony Liguori <[email protected]> Signed-off-by: Michael S. Tsirkin <[email protected]> Reviewed-by: Peter Maydell <[email protected]> Signed-off-by: Juan Quintela <[email protected]>
ae2158ad6ce0845b2fae2a22aa7f19c0d7a71ce5
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/ae2158ad6ce0845b2fae2a22aa7f19c0d7a71ce5
2014-05-05 22:15:02+02:00
pci-assign: propagate Error from check_irqchip_in_kernel() Rename check_irqchip_in_kernel() to verify_irqchip_in_kernel(), so that the name reflects our expectation better. Rather than returning a bool, make it do nothing or set an Error. Signed-off-by: Laszlo Ersek <[email protected]> Reviewed-by: Eric Blake <[email protected]> Signed-off-by: Luiz Capitulino <[email protected]>
665f119fbad97c05c2603673ac6b2dcbf0d0e9e1
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/665f119fbad97c05c2603673ac6b2dcbf0d0e9e1
2014-05-08 14:19:59-04:00
usb: mtp: fix error path memory leak Signed-off-by: Gerd Hoffmann <[email protected]> Reviewed-by: Peter Wu <[email protected]> Reviewed-by: Stefan Hajnoczi <[email protected]>
2dc7fdf33d28940255f171b8ea4b692d9d5b7a7d
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/2dc7fdf33d28940255f171b8ea4b692d9d5b7a7d
2014-05-05 12:57:45+02:00
mirror: Fix resource leak when bdrv_getlength fails The direct return will skip releasing of all the resouces at immediate_exit, don't miss that. Signed-off-by: Fam Zheng <[email protected]> Signed-off-by: Kevin Wolf <[email protected]>
373df5b135b4a54e0abb394e9e703fef3ded093c
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/373df5b135b4a54e0abb394e9e703fef3ded093c
2014-04-29 13:43:00+02:00
MAINTAINERS: addresses for responsible disclosure Adding addresses to MAINTAINERS, as agreed on the last conference call: http://wiki.qemu.org/SecurityProcess People sometimes detect security issues in upstream QEMU and don't know where to report them in a non-public way. Of course whoever just wants full disclosure can just go public, but there's nothing specified for non-public - until recently Anthony was doing this informally. As I started doing this recently anyway, I can handle this on the QEMU side in a more formal way. Adding a secalert mailing list as well - they are the ones who is actually opening CVEs, communicating issues to all downstreams etc, and they are already handling this for upstream, not just Red Hat. Keeping Anthony's address around in case he wants to be informed. Peter Maydell said that he prefers not to be on this contact list at this point. A public mailing list has been created - not listing it here yet - until we know how to set it up in a secure fashion and until there are more people so manually copying everyone becomes unwieldy for reporters. Signed-off-by: Michael S. Tsirkin <[email protected]>
62622c11f230edddcc47aabe2d988555bf125993
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/62622c11f230edddcc47aabe2d988555bf125993
2014-05-07 19:14:57+03:00
parallels: Fix catalog size integer overflow (CVE-2014-0143) The first test case would cause a huge memory allocation, leading to a qemu abort; the second one to a too small malloc() for the catalog (smaller than s->catalog_size), which causes a read-only out-of-bounds array access and on big endian hosts an endianess conversion for an undefined memory area. The sample image used here is not an original Parallels image. It was created using an hexeditor on the basis of the struct that qemu uses. Good enough for trying to crash the driver, but not for ensuring compatibility. Signed-off-by: Kevin Wolf <[email protected]> Reviewed-by: Max Reitz <[email protected]> Signed-off-by: Stefan Hajnoczi <[email protected]>
afbcc40bee4ef51731102d7d4b499ee12fc182e1
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/afbcc40bee4ef51731102d7d4b499ee12fc182e1
2014-04-01 15:22:35+02:00
qcow2: Validate refcount table offset The end of the refcount table must not exceed INT64_MAX so that integer overflows are avoided. Also check for misaligned refcount table. Such images are invalid and probably the result of data corruption. Error out to avoid further corruption. Signed-off-by: Kevin Wolf <[email protected]> Reviewed-by: Max Reitz <[email protected]> Signed-off-by: Stefan Hajnoczi <[email protected]>
8c7de28305a514d7f879fdfc677ca11fbf60d2e9
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/8c7de28305a514d7f879fdfc677ca11fbf60d2e9
2014-04-01 14:19:09+02:00
hw/usb/hcd-ohci.c: Avoid shifting left into sign bit Add U suffix to avoid undefined behaviour. This is only strictly necessary for the 1<<31 cases, but we add it for the other constants in these groups for consistency. Signed-off-by: Peter Maydell <[email protected]> Signed-off-by: Michael Tokarev <[email protected]>
00b0179347bae12c5856c1195b67ef5dc7887b9b
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/00b0179347bae12c5856c1195b67ef5dc7887b9b
2014-03-27 19:22:49+04:00
spapr-vscsi: fix CRQ status Normally VIOSRP_OK (0) means success and non-zero value means error except VIOSRP_OK2 (0x99) which is another success code by weird accident. This uses 0 as success code always as some guests do not cope with the 0x99 value well. The existing linux driver checks for both VIOSRP_OK and VIOSRP_OK2 since 2.6.32. This returns non-zero code (VIOSRP_ADAPTER_FAIL == 0x10) on errors which can only happen if DMA write failed. Suggested-by: Benjamin Herrenschmidt <[email protected]> Signed-off-by: Alexey Kardashevskiy <[email protected]> Signed-off-by: Paolo Bonzini <[email protected]>
22956a3755749b9cf6375ad024d58c1d277100bf
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/22956a3755749b9cf6375ad024d58c1d277100bf
2014-03-14 10:06:55+01:00
qcow2: Check bs->drv in copy_sectors() Before dereferencing bs->drv for a call to its member bdrv_co_readv(), copy_sectors() should check whether that pointer is indeed valid, since it may have been set to NULL by e.g. a concurrent write triggering the corruption prevention mechanism. Signed-off-by: Max Reitz <[email protected]> Signed-off-by: Stefan Hajnoczi <[email protected]>
dba2855572c746836ad90ce9154403b5929d996b
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/dba2855572c746836ad90ce9154403b5929d996b
2014-03-13 14:23:27+01:00
vnc: fix use-after-free in vnc_update_client_sync Spotted by Coverity: 876 static int vnc_update_client_sync(VncState *vs, int has_dirty) 877 { (1) Event freed_arg: "vnc_update_client(VncState *, int)" frees "vs". [details] Also see events: [deref_arg] 878 int ret = vnc_update_client(vs, has_dirty); (2) Event deref_arg: Calling "vnc_jobs_join(VncState *)" dereferences freed pointer "vs". [details] Also see events: [freed_arg] 879 vnc_jobs_join(vs); 880 return ret; 881 } Remove vnc_update_client_sync wrapper, replace it with an additional argument to vnc_update_client, so we can so the sync properly in vnc_update_client (i.e. skip it in case of a client disconnect). Signed-off-by: Gerd Hoffmann <[email protected]> Reviewed-by: Markus Armbruster <[email protected]>
38ee14f4f33f8836fc0e209ca59c6ae8c6edf380
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/38ee14f4f33f8836fc0e209ca59c6ae8c6edf380
2014-03-10 12:35:04+01:00
input: qapi: add unmapped key Simplifies building something -> QkeyCode mapping tables. Uninitialized entries can easily identified then. Signed-off-by: Gerd Hoffmann <[email protected]> Reviewed-by: Eric Blake <[email protected]>
bbd1b1cc25d551f2e0f85f4b635f4a769dbd86e4
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/bbd1b1cc25d551f2e0f85f4b635f4a769dbd86e4
2014-03-05 09:50:17+01:00
target-ppc: Introduce hypervisor call H_GET_TCE This patch introduces the hypervisor call H_GET_TCE which is basically the reverse of H_PUT_TCE, as defined in the Power Architecture Platform Requirements (PAPR). The hcall H_GET_TCE is required by the kdump kernel which is calling it to retrieve the TCE set up by the panicing kernel. Signed-off-by: Laurent Dufour <[email protected]> Signed-off-by: Alexander Graf <[email protected]>
a0fcac9c21dcbf481eeb5573a738f55023f5a953
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/a0fcac9c21dcbf481eeb5573a738f55023f5a953
2014-03-05 03:07:03+01:00
pci-assign: Fix potential read beyond buffer on -EBUSY readlink() doesn't write a terminating null byte. assign_failed_examine() passes the unterminated string to strrchr(). Oops. Terminate it. Spotted by Coverity. Signed-off-by: Markus Armbruster <[email protected]> Reviewed-by: Peter Maydell <[email protected]> Signed-off-by: Alex Williamson <[email protected]>
82d07945652f16078b172d2bd46659e8f5f30d8e
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/82d07945652f16078b172d2bd46659e8f5f30d8e
2014-02-26 10:30:03-07:00
block/iscsi: fix deadlock on scsi check condition the retry logic was broken because the complete status of the task structure was not reset. this resulted in an infinite loop retrying the command over and over. CC: [email protected] Signed-off-by: Peter Lieven <[email protected]> Signed-off-by: Paolo Bonzini <[email protected]>
837c390137193e715fee20b35c0ddb164b1c4fa4
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/837c390137193e715fee20b35c0ddb164b1c4fa4
2014-02-22 10:02:23+01:00
linux-user/elfload.c: Avoid calling g_free() on uninitialized data Avoid calling g_free() on unintialized data in the error-handling paths in elf_core_dump() by splitting the initialization of the elf_note_info struct out of fill_note_info() so that it's always valid to call free_note_info() whether we got to the point of being able to fill_note_info() or not. Signed-off-by: Peter Maydell <[email protected]> Signed-off-by: Riku Voipio <[email protected]>
6afafa86f3446f5e6dd410cc2c442e98adabc26c
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/6afafa86f3446f5e6dd410cc2c442e98adabc26c
2014-02-18 16:54:06+02:00
monitor: Cleanup mon->outbuf on write error In case monitor_flush() fails to write the contents of mon->outbuf to the output device, mon->outbuf is not cleaned up properly. Check the return code of the qemu_chr_fe_write() function and cleanup the outbuf if it fails. References: http://lists.nongnu.org/archive/html/qemu-devel/2014-01/msg02890.html Signed-off-by: Stratos Psomadakis <[email protected]> Signed-off-by: Dimitris Aragiorgis <[email protected]> Signed-off-by: Luiz Capitulino <[email protected]>
056f49ff2cf645dc484956b00b65a3aa18a1a9a3
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/056f49ff2cf645dc484956b00b65a3aa18a1a9a3
2014-01-28 12:47:12-05:00
tests: Add libqemustub to qom-interface-check The recent addition of util/error.c's dependency on error_report() causes this test to fail to link due to a number of missing monitor related symbols. All these symbols are however defined by libqemustub. Add this libary to the link. Signed-off-by: Peter Crosthwaite <[email protected]> Reviewed-by: Igor Mammedov <[email protected]> Signed-off-by: Edgar E. Iglesias <[email protected]>
3dbe85b8404fa479ad0a75d5adb464949257f129
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/3dbe85b8404fa479ad0a75d5adb464949257f129
2014-01-17 09:49:28+10:00
block: Don't use guest sector size for qemu_blockalign() bs->buffer_alignment is set by the device emulation and contains the logical block size of the guest device. This isn't something that the block layer should know, and even less something to use for determining the right alignment of buffers to be used for the host. The new BlockLimits field opt_mem_alignment tells the qemu block layer the optimal alignment to be used so that no bounce buffer must be used in the driver. This patch may change the buffer alignment from 4k to 512 for all callers that used qemu_blockalign() with the top-level image format BlockDriverState. The value was never propagated to other levels in the tree, so in particular raw-posix never required anything else than 512. While on disks with 4k sectors direct I/O requires a 4k alignment, memory may still be okay when aligned to 512 byte boundaries. This is what must have happened in practice, because otherwise this would already have failed earlier. Therefore I don't expect regressions even with this intermediate state. Later, raw-posix can implement the hook and expose a different memory alignment requirement. Signed-off-by: Kevin Wolf <[email protected]> Reviewed-by: Wenchao Xia <[email protected]> Reviewed-by: Max Reitz <[email protected]>
339064d5063924e5176842abbf6c8089f3479c5b
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/339064d5063924e5176842abbf6c8089f3479c5b
2014-01-24 17:40:01+01:00
virtio-pci: add device_unplugged callback This fixes a crash in hot-unplug of virtio-pci devices behind a PCIe switch. The crash happens because the ioeventfd is still set whent the child is destroyed (destruction happens in postorder). Then the proxy tries to unset to ioeventfd, but the virtqueue structure that holds the EventNotifier has been trashed in the meanwhile. kvm_set_ioeventfd_pio does not expect failure and aborts. The fix is simply to move parts of uninitialization to a new device_unplugged callback, which is called before the child is destroyed. Cc: [email protected] Acked-by: Andreas Faerber <[email protected]> Signed-off-by: Paolo Bonzini <[email protected]>
06a1307379fcd6c551185ad87679cd7ed896b9ea
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/06a1307379fcd6c551185ad87679cd7ed896b9ea
2013-12-09 21:46:48+01:00
virtio-balloon: switch exit callback to VirtioDeviceClass This ensures hot-unplug is handled properly by the proxy, and avoids leaking bus_name which is freed by virtio_device_exit. Cc: [email protected] Acked-by: Andreas Faerber <[email protected]> Signed-off-by: Paolo Bonzini <[email protected]>
baa61b9870dd7e0bb07e0ae61c6ec805db13f699
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/baa61b9870dd7e0bb07e0ae61c6ec805db13f699
2013-12-09 21:46:48+01:00
xhci: Add a few missing checks for disconnected devices One of the reworks of qemu's usb core made changes to usb-port's disconnect handling. Now ports with a device will always have a non 0 dev member, but if the device is not attached (which is possible with usb redirection), dev->attached will be 0. So supplement all checks for dev to also check dev->attached, and add an extra check in a path where a device check was completely missing. This fixes various crashes (asserts triggering) I've been seeing when xhci attached usb devices get disconnected at the wrong time. Signed-off-by: Hans de Goede <[email protected]> Signed-off-by: Gerd Hoffmann <[email protected]>
de9de157fbb9aa66380ab1973dd6ecf12fbd8b25
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/de9de157fbb9aa66380ab1973dd6ecf12fbd8b25
2013-11-26 09:21:17+01:00
.travis.yml: basic compile and check recipes This adds a build matrix definition for travis-ci.org continuous integration service. It is usable on any public repository hosted on GitHub. Once you have created an account signed into Travis you can enable it on selected projects via travis-ci.org/profile. Alternatively you can configure the service hooks on GitHub via the repository Settings tab,then Service Hooks and selecting Travis. Once setup Travis will automatically test every push as well as any pull requests submitted to that repository. The build matrix is currently split by target architecture (see TARGETS environment variable) because a full build of QEMU can take some time. This way you get quick feedback for any obvious errors. The additional environment variables exist to allow additional builds to tweak the environment. These are: EXTRA_CONFIG - extra terms passed to configure EXTRA_PKGS - extra dev packages to install TEST_CMD - default "make check", can be overridden I've confined the additional stuff to x86/x86_64 for convenience. As Travis supports clang the main builds are done twice (once for gcc and once for clang). However clang is disabled for the debug/trace builds for the purposes of brevity. Other wrinkles: * The lttng user-space tracing back-end is disabled (it is currently horribly broken) * The ftrace back-end doesn't run "make check" (it requires a mounted debugfs to work) * There are two debug enabled build (with and without TCG interpreter) Signed-off-by: Alex Bennée <[email protected]> Reviewed-by: Stefan Hajnoczi <[email protected]> Signed-off-by: Michael Tokarev <[email protected]>
fe863ab9855478e693d63f306141eb242217b424
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/fe863ab9855478e693d63f306141eb242217b424
2013-11-13 15:48:38+04:00
qemu-ga: vss-win32: Install VSS provider COM+ application service Currently, qemu-ga for Windows fails to execute guset-fsfreeze-freeze when no user is logging in to Windows, with an error message: {"error":{"class":"GenericError", "desc":"failed to add C:\\ to snapshotset: (error: 8004230f)"}} To enable guest-fsfreeze-freeze/thaw without logging in users, this installs a service to execute qemu-ga VSS provider COM+ application that has full access privileges to the local system. The service will automatically be removed when the COM+ application is deregistered. This patch replaces ICOMAdminCatalog interface with ICOMAdminCatalog2 interface that contains CreateServiceForApplication() method in addition. Signed-off-by: Tomoki Sekiyama <[email protected]> Reviewed-by: Gal Hammer <[email protected]> Reviewed-by: Yan Vugenfirer <[email protected]> Tested-by: Yan Vugenfirer <[email protected]> Signed-off-by: Michael Roth <[email protected]>
bca4bf1028b332f55502bc7f50345fa5ea1c4f40
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/bca4bf1028b332f55502bc7f50345fa5ea1c4f40
2013-11-22 15:14:05-06:00
vga: fix invalid read after free After calling dpy_gfx_replace_surface(s->con, surface), the outer surface is invalid. ==5370== Invalid read of size 4 ==5370== at 0x460229: surface_bits_per_pixel (console.h:250) ==5370== by 0x466A81: get_depth_index (vga.c:1173) ==5370== by 0x467EC2: vga_draw_graphic (vga.c:1718) ==5370== by 0x4687A5: vga_update_display (vga.c:1914) ==5370== by 0x2A782E: qxl_hw_update (qxl.c:1766) ==5370== by 0x3EB83B: graphic_hw_update (console.c:254) ==5370== by 0x3FBE31: qemu_spice_display_refresh (spice-display.c:418) ==5370== by 0x2A7D01: display_refresh (qxl.c:1886) ==5370== by 0x3EEE1C: dpy_refresh (console.c:1436) ==5370== by 0x3EB543: gui_update (console.c:192) ==5370== by 0x3C43B3: timerlist_run_timers (qemu-timer.c:488) ==5370== by 0x3C4416: qemu_clock_run_timers (qemu-timer.c:499) ==5370== Address 0x22ffb1e0 is 0 bytes inside a block of size 56 free'd ==5370== at 0x4A074C4: free (in /usr/lib64/valgrind/vgpreload_memcheck-amd64-linux.so) ==5370== by 0x4245FC: free_and_trace (vl.c:2771) ==5370== by 0x50899AE: g_free (gmem.c:252) ==5370== by 0x3EE8D3: qemu_free_displaysurface (console.c:1332) ==5370== by 0x3EEDB7: dpy_gfx_replace_surface (console.c:1427) ==5370== by 0x467EB6: vga_draw_graphic (vga.c:1714) ==5370== by 0x4687A5: vga_update_display (vga.c:1914) ==5370== by 0x2A782E: qxl_hw_update (qxl.c:1766) ==5370== by 0x3EB83B: graphic_hw_update (console.c:254) ==5370== by 0x3FBE31: qemu_spice_display_refresh (spice-display.c:418) ==5370== by 0x2A7D01: display_refresh (qxl.c:1886) ==5370== by 0x3EEE1C: dpy_refresh (console.c:1436) Signed-off-by: Marc-André Lureau <[email protected]> Reviewed-by: Gerd Hoffmann <[email protected]> Message-id: [email protected] Signed-off-by: Anthony Liguori <[email protected]>
2c8ebac7ccf51a8e683de593c4240d2ed7d592ec
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/2c8ebac7ccf51a8e683de593c4240d2ed7d592ec
2013-11-05 20:01:11-08:00
qcow2: Flush image after creation Opening the qcow2 image with BDRV_O_NO_FLUSH prevents any flushes during the image creation. This means that the image has not yet been flushed to disk when qemu-img create exits. This flush is delayed until the next operation on the image involving opening it without BDRV_O_NO_FLUSH and closing (or directly flushing) it. For large images and/or images with a small cluster size and preallocated metadata, this flush may take a significant amount of time and may occur unexpectedly. Reopening the image without BDRV_O_NO_FLUSH right before the end of qcow2_create2() results in hoisting the potentially costly flush into the image creation, which is expected to take some time (whereas successive image operations may be not). Signed-off-by: Max Reitz <[email protected]> Reviewed-by: Eric Blake <[email protected]> Reviewed-by: Benoit Canet <[email protected]> Signed-off-by: Kevin Wolf <[email protected]>
ba2ab2f2ca4150a7e314fbb19fa158bd8ddc36eb
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/ba2ab2f2ca4150a7e314fbb19fa158bd8ddc36eb
2013-10-28 17:34:32+01:00
qcow2: Remove wrong metadata overlap check In qcow2_write_compressed, if the compression fails, a normal cluster is written to disk. This is done through bdrv_write on the qcow2 BDS itself (using the guest offset), thus it is wrong to do a metadata overlap check before. Signed-off-by: Max Reitz <[email protected]> Signed-off-by: Kevin Wolf <[email protected]>
f9bff971436b5924ca3c3203c6a3dcd6437bd430
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/f9bff971436b5924ca3c3203c6a3dcd6437bd430
2013-10-11 16:49:59+02:00
migration: Fix compiler warning ('caps' may be used uninitialized) Signed-off-by: Michael Tokarev <[email protected]> Reviewed-by: Stefan Weil <[email protected]>
387eedebf60a463ba30833588f10123da296ba4d
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/387eedebf60a463ba30833588f10123da296ba4d
2013-10-05 14:02:29+04:00
throttle: Add a new throttling API implementing continuous leaky bucket. Implement the continuous leaky bucket algorithm devised on IRC as a separate module. Signed-off-by: Benoit Canet <[email protected]> Signed-off-by: Stefan Hajnoczi <[email protected]>
5ddfffbdc5e024014b77816dab88d372ad95a5b0
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/5ddfffbdc5e024014b77816dab88d372ad95a5b0
2013-09-06 15:25:07+02:00
hw/openrisc: Avoid using uninitialised variable 'entry' clang warns that cpu_openrisc_load_kernel() can use 'entry' uninitialized: hw/openrisc/openrisc_sim.c:69:9: error: variable 'entry' is used uninitialized whenever '&&' condition is false [-Werror,-Wsometimes-uninitialized] if (kernel_filename && !qtest_enabled()) { ^~~~~~~~~~~~~~~ hw/openrisc/openrisc_sim.c:91:19: note: uninitialized use occurs here cpu->env.pc = entry; ^~~~~ Fix this by not attempting to change the CPU's starting PC unless we actually loaded a kernel. Signed-off-by: Peter Maydell <[email protected]> Reviewed-by: Jia Liu <[email protected]>
b6d9766ddf5453e79e0c66c9348728ba44ba115f
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/b6d9766ddf5453e79e0c66c9348728ba44ba115f
2013-08-21 09:15:36+08:00
migration: notify migration state before starting thread The migration thread runs outside the QEMU global mutex when possible. Therefore we must notify migration state change *before* starting the migration thread. This allows registered listeners to act before live migration iterations begin. Therefore they can get into a state that allows for live migration. When the migration thread starts everything will be ready. Without this patch there is a race condition during migration setup, depending on whether the migration thread has already transitioned from SETUP to ACTIVE state. Acked-by: Paolo Bonzini <[email protected]> Reviewed-by: Kevin Wolf <[email protected]> Signed-off-by: Stefan Hajnoczi <[email protected]>
9287ac271d83166f99e050a0e0a4ebd462f7eb2b
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/9287ac271d83166f99e050a0e0a4ebd462f7eb2b
2013-07-29 17:18:54+02:00
target-arm: Avoid "1 << 31" undefined behaviour Avoid the undefined behaviour of "1 << 31" by using 1U to make the shift be of an unsigned value rather than shifting into the sign bit of a signed integer. For consistency, we make all the CPSR_* constants unsigned, though the only one which triggers undefined behaviour is CPSR_N. Signed-off-by: Peter Maydell <[email protected]> Reviewed-by: Richard Henderson <[email protected]> Message-id: [email protected]
78dbbbe4dff95369c63bf77ee0df23371e1d6602
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/78dbbbe4dff95369c63bf77ee0df23371e1d6602
2013-09-10 19:09:32+01:00
seabios: update to 1.7.3 Changes summary (git shortlog rel-1.7.2.2..rel-1.7.3): Alex Williamson (4): seabios q35: Enable all PIRQn IRQs at startup seabios q35: Add new PCI slot to irq routing function seabios: Add a dummy PCI slot to irq mapping function pciinit: Enable default VGA device Asias He (2): virtio-scsi: Set _DRIVER_OK flag before scsi target scanning virtio-scsi: Pack struct virtio_scsi_{req_cmd,resp_cmd} Avik Sil (1): USB-EHCI: Fix null pointer assignment Christian Gmeiner (5): geodevga: fix errors in geode_fp_* functions geodevga: move framebuffer setup geodevga: move output setup to own function geodevga: add debug to msr functions geodevga: fix wrong define name David Woodhouse (26): Add macros for pushing and popping struct bregs Clean up #if in pirtable.c. CONFIG_PIRTABLE can't be set if CONFIG_COREBOOT is post: Export functions which will be used individually by CSM Export callrom() for CSM to use Export copy_smbios() from biostables.c Import LegacyBios.h from OVMF Complete and checksum EFI_COMPATIBILITY16_TABLE at build time Add pic_save_mask() and pic_restore_mask() functions Add CSM support Add README.CSM Add find_pmtimer() function Enable PMTIMER for CSM build Fix rom_reserve()/rom_confirm() for CSM oprom dispatch Don't calibrate TSC if PMTIMER is already set up Move find_pmtimer() to ACPI table setup where it logically belongs Use find_pmtimer() after copying Xen ACPI tables Use find_pmtimer() after copying coreboot ACPI tables Unify return path for CSM to go via csm_return() Make CONFIG_OPTIONROMS_DEPLOYED depend on CONFIG_QEMU Implement !CONFIG_OPTIONROMS support for CSM Implement !CONFIG_BOOT for CSM Enable VGA output when settings bochs-specific mode Disable CONFIG_THREAD_OPTIONROMS for CSM build Fix return type of le64_to_cpu() and be64_to_cpu() Rename find_pmtimer() to find_acpi_features() Add acpi_reboot() reset method using RESET_REG Gerd Hoffmann (3): config: allow DEBUG_IO for !QEMU coreboot: add qemu detection tweak coreboot qemu detection Hu Tao (1): Add pvpanic device driver Kevin O'Connor (99): pmm: Use 'struct segoff_s' in pmm header. Minor: Update README - variable changes are now reset on soft-reboots. Normalize POST initialization function name suffixes. POST: Reorganize post init functions for better grouping and reusability. Fix rebase error in commit 8a0a972f that broke LOWMEM variables. Support calling a function other than maininit() from reloc_preinit(). Ensure exported symbols are visible in the final link POST: Move QEMU specific ramsize and BIOS table setup to paravirt.c. POST: Reorganize post entry and "preinit" functions. POST: Move cpu caching and dma setup to platform_hardware_setup(). Undo incorrect assumptions about Xen in commit 6ca0460f. Determine century during init and store in VARLOW mem during runtime. No need to check both CONFIG_THREADS and CONFIG_THREAD_OPTIONROMS. Add runningOnQEMU() and runningOnXen() for runtime platform detection. Consistently use CONFIG_COREBOOT, CONFIG_QEMU, and runningOnXen(). Convert kvm_para_available() to runningOnKVM(). Minor - move definitions to paravirt.c from paravirt.h. Only perform SMP setup on QEMU. Start device_hardware_setup in mainint even with CONFIG_THREAD_OPTIONROMS. The mathcp setup touches the PIC and thus move to the "setup" phase. Update tools/acpi_extract.py to handle iasl 20130117 release. Support skipping content when reading from QEMU fw_cfg romfile entries. Convert fw_cfg ACPI entries into romfile entries. Convert fw_cfg SMBIOS entries into romfile entries. Convert basic integer fw_cfg entries into romfile entries. Convert fw_cfg NUMA entries into a romfile entry. Process fw_cfg e820 entries during the fw_cfg setup stage. Integrate qemu_cfg_preinit() into qemu_romfile_init(). Group QEMU platform setup together and move to paravirt.c. vgabios: Bochs/QEMU vgabios support should depend on CONFIG_QEMU. Warn on unaligned PCI ROM structure in option roms. Fix Makefile - don't reference "out/" directly, instead use "$(OUT)". build: Don't require $(OUT) to be a sub-directory of the main directory. Rename rom_get_top() to rom_get_max(). Report on f-segment UMB ram also. Clarify build generated "zone low" values. Verify CC is valid during build tests. Disable handle_post() on CSM builds. Remove unnecessary "export" declarations from assembler functions. Minor assembler enhancements to __csm_return. Introduce VARFSEG for variables that will reside in the f-segment. Convert VAR16VISIBLE, VAR16EXPORT, and VAR32VISIBLE to VARFSEG. Don't relocate "varlow" variable references at runtime. Move malloc's ZoneFSeg and ZoneLow setup to malloc_init. Calculate "RamSize" needed by 16bit interface dynamically. Eliminate separate BiosTableSpace[] space for f-segment allocations. Use CONFIG_ prefix for Kconfig variables; use BUILD_ for others. Try to detect an unsuccessful hard-reboot to prevent soft-reboot loops. Minor - fix confusing final_sec32low_start name in layoutrom.py. Minor - introduce numeric defines for the IVT offset of hw irqs. Separate out 16bit PCI-BIOS entry point from regular int 0x1a entry point. Support using the "extra stack" for all 16bit irq entry points. Minor - improve comments and grouping of handle_08(). floppy: Introduce 'struct floppy_pio_s' for floppy PIO ops. floppy: Cleanup floppy irq wait handling. floppy: Clean up Check Interrupt Status code. floppy: Move recalibration and results parsing to floppy_cmd(). floppy: Improve floppy_pio() error checking. floppy: Implement media format sensing. floppy: Actually do controller reset in floppy_reset(). Minor - note that passing QEMU config via cmos is deprecated. Cache boot-fail-wait to avoid romfile access after POST. Rename src/ssdt-susp.dsl to src/ssdt-misc.dsl. acpi: Eliminate BDAT parameter passing to DSDT code. Add additional dependency checks to Makefile. Don't use __FILE__ in virtio-ring.c. shadow: Don't use PCIDevices list in make_bios_readonly(). smm: Don't use PCIDevices list in smm_setup(). Add VARVERIFY32INIT attribute for variables only available during "init". Use VARVERIFY32INIT on global variables that point to "tmp" memory. vgabios: Fix stdvga_perform_gray_scale_summing(). vgabios: Fix cirrus memory clear on mode switch. Minor - add missing newline to floppy debug statement. Fix bug in NUMA node setup - don't create SRAT if NUMA not present. Update README - copy *.aml files for QEMU. Add dependencies to vgafixup.py and buildversion.sh scripts. Set ZF prior to keyboard read call in check_for_keystroke(). mptable: Don't describe pci-to-pci bridges. mptable: Use same PCI irqs as ACPI code. Cleanup QEMU_CFG_NUMA fw_cfg processing - split into two romfile entries. Use container_of on romfile entries. acpi: Move ACPI table definitions from acpi.c to acpi.h. acpi: Remove dead code with descriptions of bit flags. acpi: Use cpu_to_leXX() consistently. Minor - explicitly close files in buildrom.py. Minor - move "tracked memory alloc" code in pmm.c. Introduce and convert pmm code to use standard list helpers. Minor - relocate code in stacks.c to keep low-level thread code together. Introduce helper function have_threads() in stacks.c. Convert stacks.c to use standard list manipulation code. Convert boot.c to use standard list manipulation code. Convert pciinit.c to use standard list manipulation code. Convert PCIDevices list to use standard list manipultion code. Revert "Convert pciinit.c to use standard list manipulation code." Fix error in hlist_for_each_entry_safe macro. Convert pciinit.c to use standard list manipulation code. make qemu_cfg_init depend on QEMU_HARDWARE instead of QEMU Another fix for hlist_for_each_entry_safe. Minor - remove debugging dprintf added to pciinit.c. Laszlo Ersek (1): Enable VGA output when setting Cirrus-specific mode Michael S. Tsirkin (1): acpi: make default DSDT optional Signed-off-by: Gerd Hoffmann <[email protected]>
41b8280a1c089f621f94db4fad7a37c6080430b3
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/41b8280a1c089f621f94db4fad7a37c6080430b3
2013-07-24 15:37:43+02:00
linux-user: Unlock mmap_lock when resuming guest from page_unprotect The page_unprotect() function is running everything locked. Before every potential exit path of the function mmap_unlock() gets called to make sure we don't leak the lock. However, the function calls tb_invalidate_phys_page() which again can exit a signal through longjmp, leaving our mmap_unlock() attempts in vain. Add a hint to tb_invalidate_phys_page() that we need to unlock before we can leave back into guest context, so that we don't leak the lock. This fixes 16-bit i386 wine programs running in linux-user for me. Signed-off-by: Alexander Graf <[email protected]> Signed-off-by: Riku Voipio <[email protected]>
d02532f08e207419e412ea7cd4eb8b36f04f426d
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/d02532f08e207419e412ea7cd4eb8b36f04f426d
2013-07-23 17:28:28+03:00
exec: reorganize address_space_map First of all, rename "todo" to "done". Second, clearly separate the case of done == 0 with the case of done != 0. This will help handling reference counting in the next patch. Third, this test: if (memory_region_get_ram_addr(mr) + xlat != raddr + todo) { does not guarantee that the memory region is the same across two iterations of the while loop. For example, you could have two blocks: A) size 640 K, mapped at physical address 0, ram_addr_t 0 B) size 64 K, mapped at physical address 0xa0000, ram_addr_t 0xa0000 then mapping 1 M starting at physical address zero will erroneously treat B as the continuation of block A. qemu_ram_ptr_length ensures that no invalid memory is accessed, but it is still a pointless complication of the algorithm. The patch makes the logic clearer with an explicit test that the memory region is the same. Reviewed-by: Jan Kiszka <[email protected]> Signed-off-by: Paolo Bonzini <[email protected]>
e3127ae0cdcde6b10a8643836f5bec197f2eff1a
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/e3127ae0cdcde6b10a8643836f5bec197f2eff1a
2013-07-04 17:42:46+02:00
qemu-socket: don't leak opts on error Signed-off-by: Gerd Hoffmann <[email protected]> Reviewed-by: Laszlo Ersek <[email protected]> Signed-off-by: Michael Tokarev <[email protected]>
7a5b6af13a45ae7109900dee03a436819302126c
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/7a5b6af13a45ae7109900dee03a436819302126c
2013-06-28 22:10:34+04:00
fix double free the memslot in kvm_set_phys_mem Luiz Capitulino reported that guest refused to boot and qemu complained with: kvm_set_phys_mem: error unregistering overlapping slot: Invalid argument It is caused by commit 235e8982ad that did double free for the memslot so that the second one raises the -EINVAL error Fix it by reset memory size only if it is needed Reported-by: Luiz Capitulino <[email protected]> Signed-off-by: Xiao Guangrong <[email protected]> Signed-off-by: Anthony Liguori <[email protected]>
651eb0f41b793021f7de672de78892def5819fb9
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/651eb0f41b793021f7de672de78892def5819fb9
2013-06-03 15:21:27-05:00
qapi: fix visitor serialization tests for numbers/doubles We never actually stored the stringified double values into the strings before we did the comparisons. This left number/double values completely uncovered in test-visitor-serialization tests. Fixing this exposed a bug in our handling of large whole number values in QEMU's JSON parser which is now fixed. Simplify the code while we're at it by dropping the calc_float_string_storage() craziness in favor of GStrings. Signed-off-by: Michael Roth <[email protected]> Reviewed-by: Laszlo Ersek <[email protected]> Reviewed-by: Amos Kong <[email protected]> Signed-off-by: Luiz Capitulino <[email protected]>
089f26bb735fb414b79f5fa3753910d5339d2a1d
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/089f26bb735fb414b79f5fa3753910d5339d2a1d
2013-05-23 09:44:21-04:00
qom: trace asserting casts This provides a way to detect the cast that leads to a (reproducible) crash even when QOM cast debugging is disabled. Signed-off-by: Paolo Bonzini <[email protected]> Message-id: [email protected] Signed-off-by: Anthony Liguori <[email protected]>
fa131d94a5c00c6bbea39358d4bca7bf98f6c1f5
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/fa131d94a5c00c6bbea39358d4bca7bf98f6c1f5
2013-05-13 09:52:06-05:00
pseries: Factor out check for out-of-bounds LIOBN PAPR defines LIOBNs (Logical IO Bus Numbers) to be 32-bit, and we check for values that aren't in the code for H_PUT_TCE. This patch factors the check into spapr_tce_find_by_liobn(), which already checks if a 32-bit LIOBN actually exists. This will become more important as future patches add other hypercalls which need to look up a LIOBN. At the same time we fix the typo in the message. Signed-off-by: David Gibson <[email protected]> Signed-off-by: Alexey Kardashevskiy <[email protected]> Signed-off-by: Alexander Graf <[email protected]>
d4261662b67b48e52f747ee1e3c31cf873c5c982
qemu
devign
1
https://github.com/qemu/qemu
https://github.com/qemu/qemu/commit/d4261662b67b48e52f747ee1e3c31cf873c5c982
2013-05-06 17:22:47+02:00