lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite for Android: free password hash cracker in your pocket
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:   Tue, 10 Mar 2020 09:18:47 +0100
From:   Andrew Jones <drjones@...hat.com>
To:     Peter Xu <peterx@...hat.com>
Cc:     linux-kernel@...r.kernel.org, kvm@...r.kernel.org,
        Yan Zhao <yan.y.zhao@...el.com>,
        Jason Wang <jasowang@...hat.com>,
        Alex Williamson <alex.williamson@...hat.com>,
        Vitaly Kuznetsov <vkuznets@...hat.com>,
        "Dr . David Alan Gilbert" <dgilbert@...hat.com>,
        Christophe de Dinechin <dinechin@...hat.com>,
        "Michael S . Tsirkin" <mst@...hat.com>,
        Kevin Tian <kevin.tian@...el.com>,
        Paolo Bonzini <pbonzini@...hat.com>,
        Sean Christopherson <sean.j.christopherson@...el.com>
Subject: Re: [PATCH v6 12/14] KVM: selftests: Add dirty ring buffer test

On Mon, Mar 09, 2020 at 06:25:29PM -0400, Peter Xu wrote:
> +void *vcpu_map_dirty_ring(struct kvm_vm *vm, uint32_t vcpuid)
> +{
> +	struct vcpu *vcpu;
> +	uint32_t size = vm->dirty_ring_size;
> +
> +	TEST_ASSERT(size > 0, "Should enable dirty ring first");
> +
> +	vcpu = vcpu_find(vm, vcpuid);
> +
> +	TEST_ASSERT(vcpu, "Cannot find vcpu %u", vcpuid);
> +
> +	if (!vcpu->dirty_gfns) {
> +		void *addr;
> +
> +		addr = mmap(NULL, size, PROT_READ,
> +			    MAP_PRIVATE, vcpu->fd,
> +			    vm->page_size * KVM_DIRTY_LOG_PAGE_OFFSET);
> +		TEST_ASSERT(addr == MAP_FAILED, "Dirty ring mapped private");
> +
> +		addr = mmap(NULL, size, PROT_READ | PROT_EXEC,
> +			    MAP_PRIVATE, vcpu->fd,
> +			    vm->page_size * KVM_DIRTY_LOG_PAGE_OFFSET);
> +		TEST_ASSERT(addr == MAP_FAILED, "Dirty ring mapped exec");
> +
> +		addr = mmap(NULL, size, PROT_READ | PROT_WRITE,
> +			    MAP_SHARED, vcpu->fd,
> +			    vm->page_size * KVM_DIRTY_LOG_PAGE_OFFSET);

No TEST_ASSERT for this mmap?

> +
> +		vcpu->dirty_gfns = addr;
> +		vcpu->dirty_gfns_count = size / sizeof(struct kvm_dirty_gfn);
> +	}
> +
> +	return vcpu->dirty_gfns;
> +}

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ