From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754303AbcGFOTE (ORCPT ); Wed, 6 Jul 2016 10:19:04 -0400 Received: from mail.skyhub.de ([78.46.96.112]:54820 "EHLO mail.skyhub.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751919AbcGFOTB (ORCPT ); Wed, 6 Jul 2016 10:19:01 -0400 Date: Wed, 6 Jul 2016 16:18:47 +0200 From: Borislav Petkov To: Paolo Bonzini Cc: linux-kernel@vger.kernel.org, kvm@vger.kernel.org, stable@vger.kernel.org Subject: Re: [PATCH] KVM: SVM: fix trashing of MSR_TSC_AUX Message-ID: <20160706141847.GF7300@pd.tnic> References: <1467812596-18903-1-git-send-email-pbonzini@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <1467812596-18903-1-git-send-email-pbonzini@redhat.com> User-Agent: Mutt/1.5.24 (2015-08-30) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, Jul 06, 2016 at 03:43:16PM +0200, Paolo Bonzini wrote: > I don't know what I was thinking when I wrote commit 46896c73c1a4 ("KVM: > svm: add support for RDTSCP", 2015-11-12); I missed write_rdtscp_aux which > obviously uses MSR_TSC_AUX. > > Therefore we do need to save/restore MSR_TSC_AUX in svm_vcpu_run. > > Cc: stable@vger.kernel.org > Cc: Borislav Petkov > Fixes: 46896c73c1a4 ("KVM: svm: add support for RDTSCP") > Signed-off-by: Paolo Bonzini Something's still missing. I have a small program which does RDTSCP in the guest: $ taskset -c 3 ./rdtscp aux1: 0x0 aux2: 0x0 p1: 195514968442, p2: 195515255582, 287140 and the aux things which are %ecx, are 0 (should be 3 in that case). It did work with my patch with the RDTSCP intercept: $ taskset -c 3 ./rdtscp aux1: 0x3 aux2: 0x3 p1: 157117003683, p2: 157119280794, 2277111 Btw, just for my own understanding: if we don't intercept RDTSCP, does it get emulated? Where does the TSC value come from, qemu? Here's the program. --- #include #include #include typedef unsigned long long u64; #define DECLARE_ARGS(val, low, high) unsigned low, high #define EAX_EDX_VAL(val, low, high) ((low) | ((u64)(high) << 32)) #define EAX_EDX_ARGS(val, low, high) "a" (low), "d" (high) #define EAX_EDX_RET(val, low, high) "=a" (low), "=d" (high) static __always_inline unsigned long long rdtscp(unsigned int *aux) { unsigned int lo, hi; asm volatile("rdtscp" : "=a" (lo), "=d" (hi), "=c" (*aux)); return EAX_EDX_VAL(0, lo, hi); } int main() { unsigned long long p1, p2; unsigned int aux; p1 = rdtscp(&aux); printf("aux1: 0x%x\n", aux); p2 = rdtscp(&aux); printf("aux2: 0x%x\n", aux); printf("p1: %llu, p2: %llu, %lld\n", p1, p2, p2 - p1); return 0; } -- Regards/Gruss, Boris. ECO tip #101: Trim your mails when you reply.