Blame libipt/src/pt_block_cache.c

Packit b1f7ae
/*
Packit b1f7ae
 * Copyright (c) 2016-2017, Intel Corporation
Packit b1f7ae
 *
Packit b1f7ae
 * Redistribution and use in source and binary forms, with or without
Packit b1f7ae
 * modification, are permitted provided that the following conditions are met:
Packit b1f7ae
 *
Packit b1f7ae
 *  * Redistributions of source code must retain the above copyright notice,
Packit b1f7ae
 *    this list of conditions and the following disclaimer.
Packit b1f7ae
 *  * Redistributions in binary form must reproduce the above copyright notice,
Packit b1f7ae
 *    this list of conditions and the following disclaimer in the documentation
Packit b1f7ae
 *    and/or other materials provided with the distribution.
Packit b1f7ae
 *  * Neither the name of Intel Corporation nor the names of its contributors
Packit b1f7ae
 *    may be used to endorse or promote products derived from this software
Packit b1f7ae
 *    without specific prior written permission.
Packit b1f7ae
 *
Packit b1f7ae
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
Packit b1f7ae
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
Packit b1f7ae
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
Packit b1f7ae
 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
Packit b1f7ae
 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
Packit b1f7ae
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
Packit b1f7ae
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
Packit b1f7ae
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
Packit b1f7ae
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
Packit b1f7ae
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
Packit b1f7ae
 * POSSIBILITY OF SUCH DAMAGE.
Packit b1f7ae
 */
Packit b1f7ae
Packit b1f7ae
#include "pt_block_cache.h"
Packit b1f7ae
Packit b1f7ae
#include <stdlib.h>
Packit b1f7ae
#include <string.h>
Packit b1f7ae
Packit b1f7ae
Packit b1f7ae
struct pt_block_cache *pt_bcache_alloc(uint64_t nentries)
Packit b1f7ae
{
Packit b1f7ae
	struct pt_block_cache *bcache;
Packit b1f7ae
	uint64_t size;
Packit b1f7ae
Packit b1f7ae
	if (!nentries || (UINT32_MAX < nentries))
Packit b1f7ae
		return NULL;
Packit b1f7ae
Packit b1f7ae
	size = sizeof(*bcache) + (nentries * sizeof(struct pt_bcache_entry));
Packit b1f7ae
	if (SIZE_MAX < size)
Packit b1f7ae
		return NULL;
Packit b1f7ae
Packit b1f7ae
	bcache = malloc((size_t) size);
Packit b1f7ae
	if (!bcache)
Packit b1f7ae
		return NULL;
Packit b1f7ae
Packit b1f7ae
	memset(bcache, 0, (size_t) size);
Packit b1f7ae
	bcache->nentries = (uint32_t) nentries;
Packit b1f7ae
Packit b1f7ae
	return bcache;
Packit b1f7ae
}
Packit b1f7ae
Packit b1f7ae
void pt_bcache_free(struct pt_block_cache *bcache)
Packit b1f7ae
{
Packit b1f7ae
	free(bcache);
Packit b1f7ae
}
Packit b1f7ae
Packit b1f7ae
int pt_bcache_add(struct pt_block_cache *bcache, uint64_t index,
Packit b1f7ae
		  struct pt_bcache_entry bce)
Packit b1f7ae
{
Packit b1f7ae
	if (!bcache)
Packit b1f7ae
		return -pte_internal;
Packit b1f7ae
Packit b1f7ae
	if (bcache->nentries <= index)
Packit b1f7ae
		return -pte_internal;
Packit b1f7ae
Packit b1f7ae
	/* We rely on guaranteed atomic operations as specified in section 8.1.1
Packit b1f7ae
	 * in Volume 3A of the Intel(R) Software Developer's Manual at
Packit b1f7ae
	 * http://www.intel.com/sdm.
Packit b1f7ae
	 */
Packit b1f7ae
	bcache->entry[(uint32_t) index] = bce;
Packit b1f7ae
Packit b1f7ae
	return 0;
Packit b1f7ae
}
Packit b1f7ae
Packit b1f7ae
int pt_bcache_lookup(struct pt_bcache_entry *bce,
Packit b1f7ae
		     const struct pt_block_cache *bcache, uint64_t index)
Packit b1f7ae
{
Packit b1f7ae
	if (!bce || !bcache)
Packit b1f7ae
		return -pte_internal;
Packit b1f7ae
Packit b1f7ae
	if (bcache->nentries <= index)
Packit b1f7ae
		return -pte_internal;
Packit b1f7ae
Packit b1f7ae
	/* We rely on guaranteed atomic operations as specified in section 8.1.1
Packit b1f7ae
	 * in Volume 3A of the Intel(R) Software Developer's Manual at
Packit b1f7ae
	 * http://www.intel.com/sdm.
Packit b1f7ae
	 */
Packit b1f7ae
	*bce = bcache->entry[(uint32_t) index];
Packit b1f7ae
Packit b1f7ae
	return 0;
Packit b1f7ae
}