Re: [PATCH] Fix NULL dereference in gfn_to_hva_prot()

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Il 01/10/2013 18:58, Gleb Natapov ha scritto:
> gfn_to_memslot() can return NULL or invalid slot. We need to check slot
> validity before accessing it.
> 
> Signed-off-by: Gleb Natapov <gleb@xxxxxxxxxx>
> diff --git a/virt/kvm/kvm_main.c b/virt/kvm/kvm_main.c
> index 979bff4..a9dd682 100644
> --- a/virt/kvm/kvm_main.c
> +++ b/virt/kvm/kvm_main.c
> @@ -1064,10 +1064,12 @@ EXPORT_SYMBOL_GPL(gfn_to_hva);
>  unsigned long gfn_to_hva_prot(struct kvm *kvm, gfn_t gfn, bool *writable)
>  {
>  	struct kvm_memory_slot *slot = gfn_to_memslot(kvm, gfn);
> -	if (writable)
> +	unsigned long hva = __gfn_to_hva_many(slot, gfn, NULL, false);
> +
> +	if (!kvm_is_error_hva(hva) && writable)
>  		*writable = !memslot_is_readonly(slot);
>  
> -	return __gfn_to_hva_many(gfn_to_memslot(kvm, gfn), gfn, NULL, false);
> +	return hva;
>  }
>  
>  static int kvm_read_hva(void *data, void __user *hva, int len)
> --
> 			Gleb.
> 

Reviewed-by: Paolo Bonzini <pbonzini@xxxxxxxxxx>

--
To unsubscribe from this list: send the line "unsubscribe kvm" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html




[Index of Archives]     [KVM ARM]     [KVM ia64]     [KVM ppc]     [Virtualization Tools]     [Spice Development]     [Libvirt]     [Libvirt Users]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite Questions]     [Linux Kernel]     [Linux SCSI]     [XFree86]
  Powered by Linux