* [Qemu-devel] [PATCH 1/2] Do not link *-user target with libhw*.a @ 2009-09-02 15:21 Kirill A. Shutemov 2009-09-02 15:21 ` [Qemu-devel] [PATCH 2/2] Build *-user targets as PIE Kirill A. Shutemov 0 siblings, 1 reply; 22+ messages in thread From: Kirill A. Shutemov @ 2009-09-02 15:21 UTC (permalink / raw) To: qemu-devel; +Cc: Kirill A. Shutemov user targets are hardware-independed. Signed-off-by: Kirill A. Shutemov <kirill@shutemov.name> --- configure | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/configure b/configure index b805f10..0d0162a 100755 --- a/configure +++ b/configure @@ -2173,15 +2173,15 @@ case "$target_arch2" in echo "KVM_CFLAGS=$kvm_cflags" >> $config_mak fi esac -echo "HWLIB=../libhw$target_phys_bits/libqemuhw$target_phys_bits.a" >> $config_mak echo "TARGET_PHYS_ADDR_BITS=$target_phys_bits" >> $config_mak -echo "subdir-$target: subdir-libhw$target_phys_bits" >> $config_host_mak if test "$target_bigendian" = "yes" ; then echo "TARGET_WORDS_BIGENDIAN=y" >> $config_mak fi if test "$target_softmmu" = "yes" ; then echo "CONFIG_SOFTMMU=y" >> $config_mak echo "LIBS+=$libs_softmmu" >> $config_mak + echo "HWLIB=../libhw$target_phys_bits/libqemuhw$target_phys_bits.a" >> $config_mak + echo "subdir-$target: subdir-libhw$target_phys_bits" >> $config_host_mak fi if test "$target_user_only" = "yes" ; then echo "CONFIG_USER_ONLY=y" >> $config_mak -- 1.6.3.4 ^ permalink raw reply related [flat|nested] 22+ messages in thread
* [Qemu-devel] [PATCH 2/2] Build *-user targets as PIE 2009-09-02 15:21 [Qemu-devel] [PATCH 1/2] Do not link *-user target with libhw*.a Kirill A. Shutemov @ 2009-09-02 15:21 ` Kirill A. Shutemov 2009-09-02 14:24 ` [Qemu-devel] " Paolo Bonzini ` (3 more replies) 0 siblings, 4 replies; 22+ messages in thread From: Kirill A. Shutemov @ 2009-09-02 15:21 UTC (permalink / raw) To: qemu-devel; +Cc: Kirill A. Shutemov Now we can drop link hack for i386 and fix text relocations on i386 host. Signed-off-by: Kirill A. Shutemov <kirill@shutemov.name> --- Makefile | 10 +--------- Makefile.target | 19 +++++++++++++++---- configure | 17 ++++++----------- linux-user/main.c | 20 -------------------- 4 files changed, 22 insertions(+), 44 deletions(-) diff --git a/Makefile b/Makefile index bdac9b3..634ea81 100644 --- a/Makefile +++ b/Makefile @@ -39,8 +39,6 @@ subdir-%: $(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C $* V="$(V)" TARGET_DIR="$*/" all,) $(filter %-softmmu,$(SUBDIR_RULES)): libqemu_common.a -$(filter %-user,$(SUBDIR_RULES)): libqemu_user.a - ROMSUBDIR_RULES=$(patsubst %,romsubdir-%, $(ROMS)) romsubdir-%: @@ -74,7 +72,7 @@ block-obj-y += $(addprefix block/, $(block-nested-y)) # CPUs and machines. obj-y = $(block-obj-y) -obj-y += readline.o console.o host-utils.o +obj-y += readline.o console.o obj-y += irq.o ptimer.o obj-y += i2c.o smbus.o smbus_eeprom.o max7310.o max111x.o wm8750.o @@ -161,12 +159,6 @@ bt-host.o: QEMU_CFLAGS += $(BLUEZ_CFLAGS) libqemu_common.a: $(obj-y) -####################################################################### -# user-obj-y is code used by qemu userspace emulation -user-obj-y = cutils.o cache-utils.o path.o envlist.o host-utils.o - -libqemu_user.a: $(user-obj-y) - ###################################################################### qemu-img.o: qemu-img-cmds.h diff --git a/Makefile.target b/Makefile.target index f7d1919..f738617 100644 --- a/Makefile.target +++ b/Makefile.target @@ -31,7 +31,7 @@ all: $(PROGS) ######################################################### # cpu emulator library -libobj-y = exec.o translate-all.o cpu-exec.o translate.o +libobj-y = exec.o translate-all.o cpu-exec.o translate.o host-utils.o libobj-y += tcg/tcg.o tcg/tcg-runtime.o libobj-$(CONFIG_SOFTFLOAT) += fpu/softfloat.o libobj-$(CONFIG_NOSOFTFLOAT) += fpu/softfloat-native.o @@ -80,9 +80,9 @@ ifdef CONFIG_LINUX_USER VPATH+=:$(SRC_PATH)/linux-user:$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR) QEMU_CFLAGS+=-I$(SRC_PATH)/linux-user -I$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR) - obj-y = main.o syscall.o strace.o mmap.o signal.o thunk.o \ elfload.o linuxload.o uaccess.o gdbstub.o gdbstub-xml.o +obj-y += envlist.o path.o obj-$(TARGET_HAS_BFLT) += flatload.o obj-$(TARGET_HAS_ELFLOAD32) += elfload32.o @@ -98,7 +98,7 @@ obj-arm-y += arm-semi.o obj-m68k-y += m68k-sim.o m68k-semi.o -ARLIBS=../libqemu_user.a libqemu.a +ARLIBS=libqemu.a endif #CONFIG_LINUX_USER ######################################################### @@ -116,6 +116,7 @@ LIBS+=-lmx obj-y = main.o commpage.o machload.o mmap.o signal.o syscall.o thunk.o \ gdbstub.o gdbstub-xml.o +obj-y += envlist.o path.o obj-i386-y += ioport-user.o @@ -133,13 +134,23 @@ QEMU_CFLAGS+=-I$(SRC_PATH)/bsd-user -I$(SRC_PATH)/bsd-user/$(TARGET_ARCH) obj-y = main.o bsdload.o elfload.o mmap.o signal.o strace.o syscall.o \ gdbstub.o gdbstub-xml.o uaccess.o +obj-y += envlist.o path.o obj-i386-y += ioport-user.o -ARLIBS=libqemu.a ../libqemu_user.a +ARLIBS=libqemu.a endif #CONFIG_BSD_USER +ifdef CONFIG_USER_ONLY +# hack to compile with -fpie for *-user targets +obj-y += cutils-user.o cache-utils-user.o +cutils-user.c cache-utils-user.c: + @echo " LN $(TARGET_DIR)$@" + @ln -s $(SRC_PATH)/$(@:%-user.c=%.c) $@ +endif + + ######################################################### # System emulator target ifdef CONFIG_SOFTMMU diff --git a/configure b/configure index 0d0162a..b501526 100755 --- a/configure +++ b/configure @@ -2302,6 +2302,11 @@ if test "$target_softmmu" = "yes" ; then esac fi +if test "$target_user_only" = "yes" -a "$static" = "no" ; then + cflags="-fpie $cflags" + ldflags="-pie $ldflags" +fi + if test "$target_softmmu" = "yes" -a \( \ "$TARGET_ARCH" = "microblaze" -o \ "$TARGET_ARCH" = "cris" \) ; then @@ -2323,16 +2328,6 @@ fi linker_script="-Wl,-T../config-host.ld -Wl,-T,\$(SRC_PATH)/\$(ARCH).ld" if test "$target_linux_user" = "yes" -o "$target_bsd_user" = "yes" ; then case "$ARCH" in - i386) - if test "$gprof" = "yes" -o "$static" = "yes" ; then - ldflags="$linker_script $ldflags" - else - # WARNING: this LDFLAGS is _very_ tricky : qemu is an ELF shared object - # that the kernel ELF loader considers as an executable. I think this - # is the simplest way to make it self virtualizable! - ldflags="-Wl,-shared $ldflags" - fi - ;; sparc) # -static is used to avoid g1/g3 usage by the dynamic linker ldflags="$linker_script -static $ldflags" @@ -2340,7 +2335,7 @@ if test "$target_linux_user" = "yes" -o "$target_bsd_user" = "yes" ; then ia64) ldflags="-Wl,-G0 $linker_script -static $ldflags" ;; - x86_64|ppc|ppc64|s390|sparc64|alpha|arm|m68k|mips|mips64) + i386|x86_64|ppc|ppc64|s390|sparc64|alpha|arm|m68k|mips|mips64) ldflags="$linker_script $ldflags" ;; esac diff --git a/linux-user/main.c b/linux-user/main.c index a628c01..d3af2e2 100644 --- a/linux-user/main.c +++ b/linux-user/main.c @@ -54,26 +54,6 @@ const char *qemu_uname_release = CONFIG_UNAME_RELEASE; const char interp[] __attribute__((section(".interp"))) = "/lib/ld-linux.so.2"; #endif -/* for recent libc, we add these dummy symbols which are not declared - when generating a linked object (bug in ld ?) */ -#if (__GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 3)) && !defined(CONFIG_STATIC) -asm(".globl __preinit_array_start\n" - ".globl __preinit_array_end\n" - ".globl __init_array_start\n" - ".globl __init_array_end\n" - ".globl __fini_array_start\n" - ".globl __fini_array_end\n" - ".section \".rodata\"\n" - "__preinit_array_start:\n" - "__preinit_array_end:\n" - "__init_array_start:\n" - "__init_array_end:\n" - "__fini_array_start:\n" - "__fini_array_end:\n" - ".long 0\n" - ".previous\n"); -#endif - /* XXX: on x86 MAP_GROWSDOWN only works if ESP <= address + 32, so we allocate a bigger stack. Need a better solution, for example by remapping the process stack directly at the right place */ -- 1.6.3.4 ^ permalink raw reply related [flat|nested] 22+ messages in thread
* [Qemu-devel] Re: [PATCH 2/2] Build *-user targets as PIE 2009-09-02 15:21 ` [Qemu-devel] [PATCH 2/2] Build *-user targets as PIE Kirill A. Shutemov @ 2009-09-02 14:24 ` Paolo Bonzini 2009-09-02 14:35 ` Kirill A. Shutemov 2009-09-02 15:46 ` [Qemu-devel] " Arnaud Patard ` (2 subsequent siblings) 3 siblings, 1 reply; 22+ messages in thread From: Paolo Bonzini @ 2009-09-02 14:24 UTC (permalink / raw) To: Kirill A. Shutemov; +Cc: qemu-devel On 09/02/2009 05:21 PM, Kirill A. Shutemov wrote: > Now we can drop link hack for i386 and fix text relocations on i386 host. That's very nice---in fact on July 23rd I wrote: > BTW, maybe now the -Wl,-shared trick for self-virtualization can be > replaced with -fpie (position independent executable)? so, thanks for doing that! Paolo ^ permalink raw reply [flat|nested] 22+ messages in thread
* [Qemu-devel] Re: [PATCH 2/2] Build *-user targets as PIE 2009-09-02 14:24 ` [Qemu-devel] " Paolo Bonzini @ 2009-09-02 14:35 ` Kirill A. Shutemov 0 siblings, 0 replies; 22+ messages in thread From: Kirill A. Shutemov @ 2009-09-02 14:35 UTC (permalink / raw) To: Paolo Bonzini; +Cc: qemu-devel On Wed, Sep 2, 2009 at 5:24 PM, Paolo Bonzini<bonzini@gnu.org> wrote: > On 09/02/2009 05:21 PM, Kirill A. Shutemov wrote: >> >> Now we can drop link hack for i386 and fix text relocations on i386 host. > > That's very nice---in fact on July 23rd I wrote: > >> BTW, maybe now the -Wl,-shared trick for self-virtualization can be >> replaced with -fpie (position independent executable)? > > so, thanks for doing that! I hope it will be applied... ^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [Qemu-devel] [PATCH 2/2] Build *-user targets as PIE 2009-09-02 15:21 ` [Qemu-devel] [PATCH 2/2] Build *-user targets as PIE Kirill A. Shutemov 2009-09-02 14:24 ` [Qemu-devel] " Paolo Bonzini @ 2009-09-02 15:46 ` Arnaud Patard 2009-09-02 15:52 ` Kirill A. Shutemov 2009-09-02 18:54 ` [Qemu-devel] [PATCH 2/2] " Riku Voipio [not found] ` <m3iqg1ckts.fsf@neno.mitica> 3 siblings, 1 reply; 22+ messages in thread From: Arnaud Patard @ 2009-09-02 15:46 UTC (permalink / raw) To: Kirill A. Shutemov; +Cc: qemu-devel "Kirill A. Shutemov" <kirill@shutemov.name> writes: Hi, [...] > diff --git a/configure b/configure > index 0d0162a..b501526 100755 > --- a/configure > +++ b/configure > @@ -2302,6 +2302,11 @@ if test "$target_softmmu" = "yes" ; then > esac > fi > > +if test "$target_user_only" = "yes" -a "$static" = "no" ; then > + cflags="-fpie $cflags" > + ldflags="-pie $ldflags" > +fi > + Please do that on per-arch basis. For instance, pie support tends to be broken quite often on mips (afaik, it's currently broken on debian unstable). I know qemu doesn't support mips host but it doesn't mean it will never be supported - I need to find time to update to current git and fix remaining bugs in my code before sending it for merge. Unfortunately, this kind of patch will make sure it won't happen soon :( Thanks, Arnaud ^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [Qemu-devel] [PATCH 2/2] Build *-user targets as PIE 2009-09-02 15:46 ` [Qemu-devel] " Arnaud Patard @ 2009-09-02 15:52 ` Kirill A. Shutemov 2009-09-02 16:03 ` Arnaud Patard 0 siblings, 1 reply; 22+ messages in thread From: Kirill A. Shutemov @ 2009-09-02 15:52 UTC (permalink / raw) To: Arnaud Patard; +Cc: qemu-devel On Wed, Sep 2, 2009 at 6:46 PM, Arnaud Patard<arnaud.patard@rtp-net.org> wrote: > "Kirill A. Shutemov" <kirill@shutemov.name> writes: > > Hi, > > [...] > >> diff --git a/configure b/configure >> index 0d0162a..b501526 100755 >> --- a/configure >> +++ b/configure >> @@ -2302,6 +2302,11 @@ if test "$target_softmmu" = "yes" ; then >> esac >> fi >> >> +if test "$target_user_only" = "yes" -a "$static" = "no" ; then >> + cflags="-fpie $cflags" >> + ldflags="-pie $ldflags" >> +fi >> + > > Please do that on per-arch basis. For instance, pie support tends to > be broken quite often on mips (afaik, it's currently broken on debian > unstable). I know qemu doesn't support mips host but it doesn't mean it > will never be supported - I need to find time to update to current git > and fix remaining bugs in my code before sending it for merge. > Unfortunately, this kind of patch will make sure it won't happen soon :( > > > Thanks, > Arnaud > Will you happy if I provide option like --disable-user-pie to configure? P.S. Sorry I forgot to put qemu-devil into CC. ^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [Qemu-devel] [PATCH 2/2] Build *-user targets as PIE 2009-09-02 15:52 ` Kirill A. Shutemov @ 2009-09-02 16:03 ` Arnaud Patard 2009-09-03 12:15 ` [Qemu-devel] [PATCH v2] " Kirill A. Shutemov 0 siblings, 1 reply; 22+ messages in thread From: Arnaud Patard @ 2009-09-02 16:03 UTC (permalink / raw) To: Kirill A. Shutemov; +Cc: qemu-devel "Kirill A. Shutemov" <kirill@shutemov.name> writes: > On Wed, Sep 2, 2009 at 6:46 PM, Arnaud Patard<arnaud.patard@rtp-net.org> wrote: >> "Kirill A. Shutemov" <kirill@shutemov.name> writes: >> >> Hi, >> >> [...] >> >>> diff --git a/configure b/configure >>> index 0d0162a..b501526 100755 >>> --- a/configure >>> +++ b/configure >>> @@ -2302,6 +2302,11 @@ if test "$target_softmmu" = "yes" ; then >>> esac >>> fi >>> >>> +if test "$target_user_only" = "yes" -a "$static" = "no" ; then >>> + cflags="-fpie $cflags" >>> + ldflags="-pie $ldflags" >>> +fi >>> + >> >> Please do that on per-arch basis. For instance, pie support tends to >> be broken quite often on mips (afaik, it's currently broken on debian >> unstable). I know qemu doesn't support mips host but it doesn't mean it >> will never be supported - I need to find time to update to current git >> and fix remaining bugs in my code before sending it for merge. >> Unfortunately, this kind of patch will make sure it won't happen soon :( >> >> >> Thanks, >> Arnaud >> > > Will you happy if I provide option like --disable-user-pie to configure? yes, it's fine as I hope that pie support will be fixed. > > P.S. Sorry I forgot to put qemu-devil into CC. qemu-_devil_ ? :) Arnaud ^ permalink raw reply [flat|nested] 22+ messages in thread
* [Qemu-devel] [PATCH v2] Build *-user targets as PIE 2009-09-02 16:03 ` Arnaud Patard @ 2009-09-03 12:15 ` Kirill A. Shutemov 2009-09-03 12:00 ` Reimar Döffinger ` (2 more replies) 0 siblings, 3 replies; 22+ messages in thread From: Kirill A. Shutemov @ 2009-09-03 12:15 UTC (permalink / raw) To: qemu-devel Cc: Kirill A. Shutemov, Paolo Bonzini, Riku Voipio, Juan Quintela, Arnaud Patard Now we can drop link hack for i386 and fix text relocations on i386 host. v2: - Add configure options do enable/disable PIE for usermode targets. Disabling can be useful if you build uswing toolchain which has broken PIE support. PIE for usermode targets enabled by default. Signed-off-by: Kirill A. Shutemov <kirill@shutemov.name> --- Makefile | 10 +--------- Makefile.target | 19 +++++++++++++++---- configure | 26 +++++++++++++++----------- linux-user/main.c | 20 -------------------- 4 files changed, 31 insertions(+), 44 deletions(-) diff --git a/Makefile b/Makefile index bdac9b3..634ea81 100644 --- a/Makefile +++ b/Makefile @@ -39,8 +39,6 @@ subdir-%: $(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C $* V="$(V)" TARGET_DIR="$*/" all,) $(filter %-softmmu,$(SUBDIR_RULES)): libqemu_common.a -$(filter %-user,$(SUBDIR_RULES)): libqemu_user.a - ROMSUBDIR_RULES=$(patsubst %,romsubdir-%, $(ROMS)) romsubdir-%: @@ -74,7 +72,7 @@ block-obj-y += $(addprefix block/, $(block-nested-y)) # CPUs and machines. obj-y = $(block-obj-y) -obj-y += readline.o console.o host-utils.o +obj-y += readline.o console.o obj-y += irq.o ptimer.o obj-y += i2c.o smbus.o smbus_eeprom.o max7310.o max111x.o wm8750.o @@ -161,12 +159,6 @@ bt-host.o: QEMU_CFLAGS += $(BLUEZ_CFLAGS) libqemu_common.a: $(obj-y) -####################################################################### -# user-obj-y is code used by qemu userspace emulation -user-obj-y = cutils.o cache-utils.o path.o envlist.o host-utils.o - -libqemu_user.a: $(user-obj-y) - ###################################################################### qemu-img.o: qemu-img-cmds.h diff --git a/Makefile.target b/Makefile.target index f7d1919..f738617 100644 --- a/Makefile.target +++ b/Makefile.target @@ -31,7 +31,7 @@ all: $(PROGS) ######################################################### # cpu emulator library -libobj-y = exec.o translate-all.o cpu-exec.o translate.o +libobj-y = exec.o translate-all.o cpu-exec.o translate.o host-utils.o libobj-y += tcg/tcg.o tcg/tcg-runtime.o libobj-$(CONFIG_SOFTFLOAT) += fpu/softfloat.o libobj-$(CONFIG_NOSOFTFLOAT) += fpu/softfloat-native.o @@ -80,9 +80,9 @@ ifdef CONFIG_LINUX_USER VPATH+=:$(SRC_PATH)/linux-user:$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR) QEMU_CFLAGS+=-I$(SRC_PATH)/linux-user -I$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR) - obj-y = main.o syscall.o strace.o mmap.o signal.o thunk.o \ elfload.o linuxload.o uaccess.o gdbstub.o gdbstub-xml.o +obj-y += envlist.o path.o obj-$(TARGET_HAS_BFLT) += flatload.o obj-$(TARGET_HAS_ELFLOAD32) += elfload32.o @@ -98,7 +98,7 @@ obj-arm-y += arm-semi.o obj-m68k-y += m68k-sim.o m68k-semi.o -ARLIBS=../libqemu_user.a libqemu.a +ARLIBS=libqemu.a endif #CONFIG_LINUX_USER ######################################################### @@ -116,6 +116,7 @@ LIBS+=-lmx obj-y = main.o commpage.o machload.o mmap.o signal.o syscall.o thunk.o \ gdbstub.o gdbstub-xml.o +obj-y += envlist.o path.o obj-i386-y += ioport-user.o @@ -133,13 +134,23 @@ QEMU_CFLAGS+=-I$(SRC_PATH)/bsd-user -I$(SRC_PATH)/bsd-user/$(TARGET_ARCH) obj-y = main.o bsdload.o elfload.o mmap.o signal.o strace.o syscall.o \ gdbstub.o gdbstub-xml.o uaccess.o +obj-y += envlist.o path.o obj-i386-y += ioport-user.o -ARLIBS=libqemu.a ../libqemu_user.a +ARLIBS=libqemu.a endif #CONFIG_BSD_USER +ifdef CONFIG_USER_ONLY +# hack to compile with -fpie for *-user targets +obj-y += cutils-user.o cache-utils-user.o +cutils-user.c cache-utils-user.c: + @echo " LN $(TARGET_DIR)$@" + @ln -s $(SRC_PATH)/$(@:%-user.c=%.c) $@ +endif + + ######################################################### # System emulator target ifdef CONFIG_SOFTMMU diff --git a/configure b/configure index 0d0162a..4f5850c 100755 --- a/configure +++ b/configure @@ -221,6 +221,7 @@ kerneldir="" aix="no" blobs="yes" pkgversion="" +user_pie="yes" # OS specific if check_define __linux__ ; then @@ -498,6 +499,10 @@ for opt do ;; --disable-guest-base) guest_base="no" ;; + --enable-user-pie) user_pie="yes" + ;; + --disable-user-pie) user_pie="no" + ;; --enable-uname-release=*) uname_release="$optarg" ;; --sparc_cpu=*) @@ -672,6 +677,8 @@ echo " --disable-bsd-user disable all BSD usermode emulation targets" echo " --enable-guest-base enable GUEST_BASE support for usermode" echo " emulation targets" echo " --disable-guest-base disable GUEST_BASE support" +echo " --enable-user-pie build usermode emulation targets as PIE" +echo " --disable-user-pie do not build usermode emulation targets as PIE" echo " --fmod-lib path to FMOD library" echo " --fmod-inc path to FMOD includes" echo " --oss-lib path to OSS library" @@ -1678,6 +1685,7 @@ echo "Documentation $docs" echo "uname -r $uname_release" echo "NPTL support $nptl" echo "GUEST_BASE $guest_base" +echo "PIE user targets $user_pie" echo "vde support $vde" echo "IO thread $io_thread" echo "Linux AIO support $linux_aio" @@ -2302,6 +2310,12 @@ if test "$target_softmmu" = "yes" ; then esac fi +if test "$target_user_only" = "yes" -a "$static" = "no" -a \ + "$user_pie" = "yes" ; then + cflags="-fpie $cflags" + ldflags="-pie $ldflags" +fi + if test "$target_softmmu" = "yes" -a \( \ "$TARGET_ARCH" = "microblaze" -o \ "$TARGET_ARCH" = "cris" \) ; then @@ -2323,16 +2337,6 @@ fi linker_script="-Wl,-T../config-host.ld -Wl,-T,\$(SRC_PATH)/\$(ARCH).ld" if test "$target_linux_user" = "yes" -o "$target_bsd_user" = "yes" ; then case "$ARCH" in - i386) - if test "$gprof" = "yes" -o "$static" = "yes" ; then - ldflags="$linker_script $ldflags" - else - # WARNING: this LDFLAGS is _very_ tricky : qemu is an ELF shared object - # that the kernel ELF loader considers as an executable. I think this - # is the simplest way to make it self virtualizable! - ldflags="-Wl,-shared $ldflags" - fi - ;; sparc) # -static is used to avoid g1/g3 usage by the dynamic linker ldflags="$linker_script -static $ldflags" @@ -2340,7 +2344,7 @@ if test "$target_linux_user" = "yes" -o "$target_bsd_user" = "yes" ; then ia64) ldflags="-Wl,-G0 $linker_script -static $ldflags" ;; - x86_64|ppc|ppc64|s390|sparc64|alpha|arm|m68k|mips|mips64) + i386|x86_64|ppc|ppc64|s390|sparc64|alpha|arm|m68k|mips|mips64) ldflags="$linker_script $ldflags" ;; esac diff --git a/linux-user/main.c b/linux-user/main.c index a628c01..d3af2e2 100644 --- a/linux-user/main.c +++ b/linux-user/main.c @@ -54,26 +54,6 @@ const char *qemu_uname_release = CONFIG_UNAME_RELEASE; const char interp[] __attribute__((section(".interp"))) = "/lib/ld-linux.so.2"; #endif -/* for recent libc, we add these dummy symbols which are not declared - when generating a linked object (bug in ld ?) */ -#if (__GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 3)) && !defined(CONFIG_STATIC) -asm(".globl __preinit_array_start\n" - ".globl __preinit_array_end\n" - ".globl __init_array_start\n" - ".globl __init_array_end\n" - ".globl __fini_array_start\n" - ".globl __fini_array_end\n" - ".section \".rodata\"\n" - "__preinit_array_start:\n" - "__preinit_array_end:\n" - "__init_array_start:\n" - "__init_array_end:\n" - "__fini_array_start:\n" - "__fini_array_end:\n" - ".long 0\n" - ".previous\n"); -#endif - /* XXX: on x86 MAP_GROWSDOWN only works if ESP <= address + 32, so we allocate a bigger stack. Need a better solution, for example by remapping the process stack directly at the right place */ -- 1.6.4.2 ^ permalink raw reply related [flat|nested] 22+ messages in thread
* Re: [Qemu-devel] [PATCH v2] Build *-user targets as PIE 2009-09-03 12:15 ` [Qemu-devel] [PATCH v2] " Kirill A. Shutemov @ 2009-09-03 12:00 ` Reimar Döffinger 2009-09-03 14:21 ` Kirill A. Shutemov [not found] ` <m3ws4g9qqe.fsf@neno.mitica> 2009-09-03 14:39 ` [Qemu-devel] " Paul Brook 2 siblings, 1 reply; 22+ messages in thread From: Reimar Döffinger @ 2009-09-03 12:00 UTC (permalink / raw) To: Kirill A. Shutemov; +Cc: qemu-devel On Thu, Sep 03, 2009 at 03:15:17PM +0300, Kirill A. Shutemov wrote: > Now we can drop link hack for i386 and fix text relocations on i386 host. > > v2: > - Add configure options do enable/disable PIE for usermode targets. > Disabling can be useful if you build uswing toolchain which has > broken PIE support. PIE for usermode targets enabled by default. Hm. Would be nice if the commit message said more about the "why". What is the advantage of PIE (I mean, is there something special about qemu that makes it particularly useful)? Is there any measurable speed difference between PIE and no PIE? (sorry if it was explained for v1, I must have missed that one) ^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [Qemu-devel] [PATCH v2] Build *-user targets as PIE 2009-09-03 12:00 ` Reimar Döffinger @ 2009-09-03 14:21 ` Kirill A. Shutemov 2009-09-03 14:38 ` Paul Brook 0 siblings, 1 reply; 22+ messages in thread From: Kirill A. Shutemov @ 2009-09-03 14:21 UTC (permalink / raw) To: Kirill A. Shutemov, qemu-devel On Thu, Sep 3, 2009 at 3:00 PM, Reimar Döffinger<Reimar.Doeffinger@gmx.de> wrote: > On Thu, Sep 03, 2009 at 03:15:17PM +0300, Kirill A. Shutemov wrote: >> Now we can drop link hack for i386 and fix text relocations on i386 host. >> >> v2: >> - Add configure options do enable/disable PIE for usermode targets. >> Disabling can be useful if you build uswing toolchain which has >> broken PIE support. PIE for usermode targets enabled by default. > > Hm. Would be nice if the commit message said more about the "why". What > is the advantage of PIE (I mean, is there something special about qemu > that makes it particularly useful)? The main advantage is that we can drop linking hack for i386 (and keep keep qemu self-virtualizable) and solve text relocations. The other advantage is security. Since qemu is PIE kernel can load at random position in memory. It makes qemu harder for many types of attacks. > Is there any measurable speed > difference between PIE and no PIE? Actually, I have no numbers for qemu. PIE code usually is a bit slower. Approximately, 1% for i386 according to some tests. RISC architectures should be affected less, since they have more registers. On other hand we are getting rid from text relocations on i386 which make executable loading slower. So... ^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [Qemu-devel] [PATCH v2] Build *-user targets as PIE 2009-09-03 14:21 ` Kirill A. Shutemov @ 2009-09-03 14:38 ` Paul Brook 2009-09-03 14:52 ` [Qemu-devel] " Paolo Bonzini 2009-09-03 15:07 ` [Qemu-devel] " Kirill A. Shutemov 0 siblings, 2 replies; 22+ messages in thread From: Paul Brook @ 2009-09-03 14:38 UTC (permalink / raw) To: qemu-devel; +Cc: Kirill A. Shutemov > PIE code usually is a bit slower. Approximately, 1% for i386 according to > some tests. RISC architectures should be affected less, since they have > more registers. On other hand we are getting rid from text relocations on > i386 which make executable loading slower. So... I think you've got that backwards. A traditional (fixed address) executable requires no load-time relocation for internal references because all addresses are known at static link time. PIE require the dynamic linker adjust all absolute addresses. Paul ^ permalink raw reply [flat|nested] 22+ messages in thread
* [Qemu-devel] Re: [PATCH v2] Build *-user targets as PIE 2009-09-03 14:38 ` Paul Brook @ 2009-09-03 14:52 ` Paolo Bonzini 2009-09-03 15:07 ` [Qemu-devel] " Kirill A. Shutemov 1 sibling, 0 replies; 22+ messages in thread From: Paolo Bonzini @ 2009-09-03 14:52 UTC (permalink / raw) To: Paul Brook; +Cc: Kirill A. Shutemov, qemu-devel On 09/03/2009 04:38 PM, Paul Brook wrote: >> PIE code usually is a bit slower. Approximately, 1% for i386 according to >> some tests. RISC architectures should be affected less, since they have >> more registers. On other hand we are getting rid from text relocations on >> i386 which make executable loading slower. So... > > I think you've got that backwards. > A traditional (fixed address) executable requires no load-time relocation for > internal references because all addresses are known at static link time. PIE > require the dynamic linker adjust all absolute addresses. Yes, but since it's also compiled as PIE, there are no absolute addresses. Previously QEMU was linked -shared but compiled as non-position independent code. I am not sure whether only the self-virtualized machine would be subject to relocation, or also the outer one (maybe address space virtualization would also have to be taken into account?). Anyway, as far as text relocations are concerned Kirill's pathc cannot make things worse. Paolo ^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [Qemu-devel] [PATCH v2] Build *-user targets as PIE 2009-09-03 14:38 ` Paul Brook 2009-09-03 14:52 ` [Qemu-devel] " Paolo Bonzini @ 2009-09-03 15:07 ` Kirill A. Shutemov 2009-09-03 17:17 ` Reimar Döffinger 1 sibling, 1 reply; 22+ messages in thread From: Kirill A. Shutemov @ 2009-09-03 15:07 UTC (permalink / raw) To: Paul Brook; +Cc: qemu-devel On Thu, Sep 3, 2009 at 5:38 PM, Paul Brook<paul@codesourcery.com> wrote: >> PIE code usually is a bit slower. Approximately, 1% for i386 according to >> some tests. RISC architectures should be affected less, since they have >> more registers. On other hand we are getting rid from text relocations on >> i386 which make executable loading slower. So... > > I think you've got that backwards. > A traditional (fixed address) executable requires no load-time relocation for > internal references because all addresses are known at static link time. PIE > require the dynamic linker adjust all absolute addresses. Usermode qemu on i386 is not a traditional executable, sicne it uses -Wl,-shared for linking. In result we've got an executable which looks like PIE, but dynamic linker have to resolve text relocations. I think the best way it to create a true PIE without a text relocations. P.S. I press "reply" instead "reply all" first time. ^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [Qemu-devel] [PATCH v2] Build *-user targets as PIE 2009-09-03 15:07 ` [Qemu-devel] " Kirill A. Shutemov @ 2009-09-03 17:17 ` Reimar Döffinger 2009-09-04 4:33 ` Kirill A. Shutemov 0 siblings, 1 reply; 22+ messages in thread From: Reimar Döffinger @ 2009-09-03 17:17 UTC (permalink / raw) To: Kirill A. Shutemov; +Cc: qemu-devel On Thu, Sep 03, 2009 at 06:07:21PM +0300, Kirill A. Shutemov wrote: > On Thu, Sep 3, 2009 at 5:38 PM, Paul Brook<paul@codesourcery.com> wrote: > >> PIE code usually is a bit slower. Approximately, 1% for i386 according to > >> some tests. RISC architectures should be affected less, since they have > >> more registers. On other hand we are getting rid from text relocations on > >> i386 which make executable loading slower. So... > > > > I think you've got that backwards. > > A traditional (fixed address) executable requires no load-time relocation for > > internal references because all addresses are known at static link time. PIE > > require the dynamic linker adjust all absolute addresses. > > Usermode qemu on i386 is not a traditional executable, sicne it uses > -Wl,-shared for linking. In result we've got an executable which looks > like PIE, but dynamic linker have to resolve text relocations. I think > the best way it to create a true PIE without a text relocations. It is close to getting of topic, but since you state it, why try so hard to avoid text relocations? Sure, there are advantages (the biggest one is less issues with mis-/insufficiently configured selinux I think), possibly better sharing of pages when many instances are run and better delayed loading, but on x86/i386 that doesn't sound like a clear advantage compared to the in some cases quite relevant speed loss. Also, since this patch adds --disable-pie, isn't the hack currently used still necessary for that case? Or is --disable-pie supposed to disable self-hosting? Then maybe the option should be named --disable-self-hosting (and if that is indeed the only side-effect it might be better to disable it by default)? ^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [Qemu-devel] [PATCH v2] Build *-user targets as PIE 2009-09-03 17:17 ` Reimar Döffinger @ 2009-09-04 4:33 ` Kirill A. Shutemov 2009-09-04 7:51 ` Reimar Döffinger 0 siblings, 1 reply; 22+ messages in thread From: Kirill A. Shutemov @ 2009-09-04 4:33 UTC (permalink / raw) To: Kirill A. Shutemov, qemu-devel On Thu, Sep 3, 2009 at 8:17 PM, Reimar Döffinger<Reimar.Doeffinger@gmx.de> wrote: > On Thu, Sep 03, 2009 at 06:07:21PM +0300, Kirill A. Shutemov wrote: >> On Thu, Sep 3, 2009 at 5:38 PM, Paul Brook<paul@codesourcery.com> wrote: >> >> PIE code usually is a bit slower. Approximately, 1% for i386 according to >> >> some tests. RISC architectures should be affected less, since they have >> >> more registers. On other hand we are getting rid from text relocations on >> >> i386 which make executable loading slower. So... >> > >> > I think you've got that backwards. >> > A traditional (fixed address) executable requires no load-time relocation for >> > internal references because all addresses are known at static link time. PIE >> > require the dynamic linker adjust all absolute addresses. >> >> Usermode qemu on i386 is not a traditional executable, sicne it uses >> -Wl,-shared for linking. In result we've got an executable which looks >> like PIE, but dynamic linker have to resolve text relocations. I think >> the best way it to create a true PIE without a text relocations. > > It is close to getting of topic, but since you state it, why try so hard > to avoid text relocations? > Sure, there are advantages (the biggest one is less issues with > mis-/insufficiently configured selinux I think), possibly better sharing > of pages when many instances are run and better delayed loading, but on > x86/i386 that doesn't sound like a clear advantage compared to the in > some cases quite relevant speed loss. Do you have any numbers about speed loss? > Also, since this patch adds --disable-pie, isn't the hack currently used > still necessary for that case? > Or is --disable-pie supposed to disable self-hosting? Then maybe the > option should be named --disable-self-hosting (and if that is indeed the > only side-effect it might be better to disable it by default)? > ^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [Qemu-devel] [PATCH v2] Build *-user targets as PIE 2009-09-04 4:33 ` Kirill A. Shutemov @ 2009-09-04 7:51 ` Reimar Döffinger 2009-09-04 8:03 ` Kirill A. Shutemov 0 siblings, 1 reply; 22+ messages in thread From: Reimar Döffinger @ 2009-09-04 7:51 UTC (permalink / raw) To: Kirill A. Shutemov; +Cc: qemu-devel On Fri, Sep 04, 2009 at 07:33:25AM +0300, Kirill A. Shutemov wrote: > On Thu, Sep 3, 2009 at 8:17 PM, Reimar > Döffinger<Reimar.Doeffinger@gmx.de> wrote: > > It is close to getting of topic, but since you state it, why try so hard > > to avoid text relocations? > > Sure, there are advantages (the biggest one is less issues with > > mis-/insufficiently configured selinux I think), possibly better sharing > > of pages when many instances are run and better delayed loading, but on > > x86/i386 that doesn't sound like a clear advantage compared to the in > > some cases quite relevant speed loss. > > Do you have any numbers about speed loss? No, I was getting a bit off-topic. At least with KVM I doubt there is any relevant speed loss for qemu, though for MPlayer/FFmpeg (very different situation) it could be about 10 % when I last did some tests. ^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [Qemu-devel] [PATCH v2] Build *-user targets as PIE 2009-09-04 7:51 ` Reimar Döffinger @ 2009-09-04 8:03 ` Kirill A. Shutemov 0 siblings, 0 replies; 22+ messages in thread From: Kirill A. Shutemov @ 2009-09-04 8:03 UTC (permalink / raw) To: qemu-devel On Fri, Sep 4, 2009 at 10:51 AM, Reimar Döffinger<Reimar.Doeffinger@gmx.de> wrote: > On Fri, Sep 04, 2009 at 07:33:25AM +0300, Kirill A. Shutemov wrote: >> On Thu, Sep 3, 2009 at 8:17 PM, Reimar >> Döffinger<Reimar.Doeffinger@gmx.de> wrote: >> > It is close to getting of topic, but since you state it, why try so hard >> > to avoid text relocations? >> > Sure, there are advantages (the biggest one is less issues with >> > mis-/insufficiently configured selinux I think), possibly better sharing >> > of pages when many instances are run and better delayed loading, but on >> > x86/i386 that doesn't sound like a clear advantage compared to the in >> > some cases quite relevant speed loss. >> >> Do you have any numbers about speed loss? > > No, I was getting a bit off-topic. At least with KVM I doubt there > is any relevant speed loss for qemu, though for MPlayer/FFmpeg (very different > situation) it could be about 10 % when I last did some tests. > My patch compile only usermode targets as PIE, so it will not affect KVM. ^ permalink raw reply [flat|nested] 22+ messages in thread
[parent not found: <m3ws4g9qqe.fsf@neno.mitica>]
* [Qemu-devel] Re: [PATCH v2] Build *-user targets as PIE [not found] ` <m3ws4g9qqe.fsf@neno.mitica> @ 2009-09-03 12:51 ` Kirill A. Shutemov 0 siblings, 0 replies; 22+ messages in thread From: Kirill A. Shutemov @ 2009-09-03 12:51 UTC (permalink / raw) To: Juan Quintela; +Cc: Paolo Bonzini, Riku Voipio, qemu-devel, Arnaud Patard On Thu, Sep 3, 2009 at 3:07 PM, Juan Quintela<quintela@trasno.org> wrote: > "Kirill A. Shutemov" <kirill@shutemov.name> wrote: >> Now we can drop link hack for i386 and fix text relocations on i386 >> host. > > Still not good enough :( > > Fedora 11 here. I got this error: > > /usr/bin/ld: main.o: relocation R_X86_64_TPO LINK arm-linux-user/qemu-arm > /usr/bin/ld: main.o: relocation R_X86_64_TPOFF32 against `thread_env' can not be used when making a shared object; recompile with -fPIC > main.o: could not read symbols: Bad value > collect2: ld returned 1 exit status > make[1]: *** [qemu-arm] Error 1 > make: *** [subdir-arm-linux-user] Error 2 > > (I got it for all the -linux-user targets) What version of binutils do you have? It seems your binutils is buggy. ^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [Qemu-devel] [PATCH v2] Build *-user targets as PIE 2009-09-03 12:15 ` [Qemu-devel] [PATCH v2] " Kirill A. Shutemov 2009-09-03 12:00 ` Reimar Döffinger [not found] ` <m3ws4g9qqe.fsf@neno.mitica> @ 2009-09-03 14:39 ` Paul Brook 2009-09-03 15:08 ` Kirill A. Shutemov 2 siblings, 1 reply; 22+ messages in thread From: Paul Brook @ 2009-09-03 14:39 UTC (permalink / raw) To: qemu-devel Cc: Kirill A. Shutemov, Paolo Bonzini, Riku Voipio, Juan Quintela, Arnaud Patard On Thursday 03 September 2009, Kirill A. Shutemov wrote: > Now we can drop link hack for i386 and fix text relocations on i386 host. > > v2: > - Add configure options do enable/disable PIE for usermode targets. > Disabling can be useful if you build uswing toolchain which has > broken PIE support. PIE for usermode targets enabled by default. This isn't as useful as you might think. How do you stop the host dynamic linker loading qemu where the guest application expects to be loaded? Paul ^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [Qemu-devel] [PATCH v2] Build *-user targets as PIE 2009-09-03 14:39 ` [Qemu-devel] " Paul Brook @ 2009-09-03 15:08 ` Kirill A. Shutemov 0 siblings, 0 replies; 22+ messages in thread From: Kirill A. Shutemov @ 2009-09-03 15:08 UTC (permalink / raw) To: Paul Brook Cc: Paolo Bonzini, Riku Voipio, qemu-devel, Arnaud Patard, Juan Quintela On Thu, Sep 3, 2009 at 5:39 PM, Paul Brook<paul@codesourcery.com> wrote: > On Thursday 03 September 2009, Kirill A. Shutemov wrote: >> Now we can drop link hack for i386 and fix text relocations on i386 host. >> >> v2: >> - Add configure options do enable/disable PIE for usermode targets. >> Disabling can be useful if you build uswing toolchain which has >> broken PIE support. PIE for usermode targets enabled by default. > > This isn't as useful as you might think. > > How do you stop the host dynamic linker loading qemu where the guest > application expects to be loaded? At least it not worse that it was. For kernel qemu with the linking hack looks like PIE and it can load it at random address, doesn't it? P.S. I press "reply" instead "reply all" first time. ^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [Qemu-devel] [PATCH 2/2] Build *-user targets as PIE 2009-09-02 15:21 ` [Qemu-devel] [PATCH 2/2] Build *-user targets as PIE Kirill A. Shutemov 2009-09-02 14:24 ` [Qemu-devel] " Paolo Bonzini 2009-09-02 15:46 ` [Qemu-devel] " Arnaud Patard @ 2009-09-02 18:54 ` Riku Voipio [not found] ` <m3iqg1ckts.fsf@neno.mitica> 3 siblings, 0 replies; 22+ messages in thread From: Riku Voipio @ 2009-09-02 18:54 UTC (permalink / raw) To: Kirill A. Shutemov; +Cc: qemu-devel On Wed, Sep 02, 2009 at 06:21:23PM +0300, Kirill A. Shutemov wrote: > +if test "$target_user_only" = "yes" -a "$static" = "no" ; then > + cflags="-fpie $cflags" > + ldflags="-pie $ldflags" > +fi Do we really need to hadcode this in? we have --extra-cflags and --extra-ldflags for setting non-typical flags. Other than that, looks like a nice cleanup. ^ permalink raw reply [flat|nested] 22+ messages in thread
[parent not found: <m3iqg1ckts.fsf@neno.mitica>]
* [Qemu-devel] Re: [PATCH 2/2] Build *-user targets as PIE [not found] ` <m3iqg1ckts.fsf@neno.mitica> @ 2009-09-02 18:59 ` Kirill A. Shutemov 0 siblings, 0 replies; 22+ messages in thread From: Kirill A. Shutemov @ 2009-09-02 18:59 UTC (permalink / raw) To: Juan Quintela; +Cc: qemu-devel On Wed, Sep 2, 2009 at 8:34 PM, Juan Quintela<quintela@trasno.org> wrote: > "Kirill A. Shutemov" <kirill@shutemov.name> wrote: >> Now we can drop link hack for i386 and fix text relocations on i386 host. >> >> Signed-off-by: Kirill A. Shutemov <kirill@shutemov.name> > > Some comments. > > This patch moves files from being compiled only once (in Makefile), > to be compiled for aech target. > >> --- >> Makefile | 10 +--------- >> Makefile.target | 19 +++++++++++++++---- >> configure | 17 ++++++----------- >> linux-user/main.c | 20 -------------------- >> 4 files changed, 22 insertions(+), 44 deletions(-) >> >> diff --git a/Makefile b/Makefile >> index bdac9b3..634ea81 100644 >> --- a/Makefile >> +++ b/Makefile >> @@ -39,8 +39,6 @@ subdir-%: >> $(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C $* V="$(V)" TARGET_DIR="$*/" all,) >> >> $(filter %-softmmu,$(SUBDIR_RULES)): libqemu_common.a >> -$(filter %-user,$(SUBDIR_RULES)): libqemu_user.a >> - >> >> ROMSUBDIR_RULES=$(patsubst %,romsubdir-%, $(ROMS)) >> romsubdir-%: >> @@ -74,7 +72,7 @@ block-obj-y += $(addprefix block/, $(block-nested-y)) >> # CPUs and machines. >> >> obj-y = $(block-obj-y) >> -obj-y += readline.o console.no host-utils.o >> +obj-y += readline.o console.o > > What is the problem here? libqemu_common.o is not used for *-user targets? No. We need all object files for *-user built with -fpie. For softmmu they build without it. >> >> +ifdef CONFIG_USER_ONLY >> +# hack to compile with -fpie for *-user targets >> +obj-y += cutils-user.o cache-utils-user.o >> +cutils-user.c cache-utils-user.c: >> + @echo " LN $(TARGET_DIR)$@" >> + @ln -s $(SRC_PATH)/$(@:%-user.c=%.c) $@ >> +endif > > Why is this needed? Why cutils.o/cache-utils.o is not enough? > > I thought that: > > obj-$(CONFIG_USER_ONLY) += cutils.o cache-utils.o > > should be enough here. Why is needed the link? We need to build it with -fpie. Without symlink it will be linked with cutils.o and cache-utils.o which was built for softmmu without -fpie and we will get text relocation in executable. ^ permalink raw reply [flat|nested] 22+ messages in thread
end of thread, other threads:[~2009-09-04 8:51 UTC | newest] Thread overview: 22+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2009-09-02 15:21 [Qemu-devel] [PATCH 1/2] Do not link *-user target with libhw*.a Kirill A. Shutemov 2009-09-02 15:21 ` [Qemu-devel] [PATCH 2/2] Build *-user targets as PIE Kirill A. Shutemov 2009-09-02 14:24 ` [Qemu-devel] " Paolo Bonzini 2009-09-02 14:35 ` Kirill A. Shutemov 2009-09-02 15:46 ` [Qemu-devel] " Arnaud Patard 2009-09-02 15:52 ` Kirill A. Shutemov 2009-09-02 16:03 ` Arnaud Patard 2009-09-03 12:15 ` [Qemu-devel] [PATCH v2] " Kirill A. Shutemov 2009-09-03 12:00 ` Reimar Döffinger 2009-09-03 14:21 ` Kirill A. Shutemov 2009-09-03 14:38 ` Paul Brook 2009-09-03 14:52 ` [Qemu-devel] " Paolo Bonzini 2009-09-03 15:07 ` [Qemu-devel] " Kirill A. Shutemov 2009-09-03 17:17 ` Reimar Döffinger 2009-09-04 4:33 ` Kirill A. Shutemov 2009-09-04 7:51 ` Reimar Döffinger 2009-09-04 8:03 ` Kirill A. Shutemov [not found] ` <m3ws4g9qqe.fsf@neno.mitica> 2009-09-03 12:51 ` [Qemu-devel] " Kirill A. Shutemov 2009-09-03 14:39 ` [Qemu-devel] " Paul Brook 2009-09-03 15:08 ` Kirill A. Shutemov 2009-09-02 18:54 ` [Qemu-devel] [PATCH 2/2] " Riku Voipio [not found] ` <m3iqg1ckts.fsf@neno.mitica> 2009-09-02 18:59 ` [Qemu-devel] " Kirill A. Shutemov
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).