Blame p11-kit/mock-module-ep8.c

Packit Service 3749ba
/*
Packit Service 3749ba
 * Copyright (c) 2012 Stefan Walter
Packit Service 3749ba
 * Copyright (c) 2020 Red Hat, Inc.
Packit Service 3749ba
 *
Packit Service 3749ba
 * Redistribution and use in source and binary forms, with or without
Packit Service 3749ba
 * modification, are permitted provided that the following conditions
Packit Service 3749ba
 * are met:
Packit Service 3749ba
 *
Packit Service 3749ba
 *     * Redistributions of source code must retain the above
Packit Service 3749ba
 *       copyright notice, this list of conditions and the
Packit Service 3749ba
 *       following disclaimer.
Packit Service 3749ba
 *     * Redistributions in binary form must reproduce the
Packit Service 3749ba
 *       above copyright notice, this list of conditions and
Packit Service 3749ba
 *       the following disclaimer in the documentation and/or
Packit Service 3749ba
 *       other materials provided with the distribution.
Packit Service 3749ba
 *     * The names of contributors to this software may not be
Packit Service 3749ba
 *       used to endorse or promote products derived from this
Packit Service 3749ba
 *       software without specific prior written permission.
Packit Service 3749ba
 *
Packit Service 3749ba
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
Packit Service 3749ba
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
Packit Service 3749ba
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
Packit Service 3749ba
 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
Packit Service 3749ba
 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
Packit Service 3749ba
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
Packit Service 3749ba
 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
Packit Service 3749ba
 * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
Packit Service 3749ba
 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
Packit Service 3749ba
 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
Packit Service 3749ba
 * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
Packit Service 3749ba
 * DAMAGE.
Packit Service 3749ba
 *
Packit Service 3749ba
 * Author: Stef Walter <stef@thewalter.net>, Daiki Ueno, Anderson Sasaki
Packit Service 3749ba
 */
Packit Service 3749ba
Packit Service 3749ba
#include "config.h"
Packit Service 3749ba
Packit Service 3749ba
#define CRYPTOKI_EXPORTS 1
Packit Service 3749ba
#include "pkcs11.h"
Packit Service 3749ba
Packit Service 3749ba
#include "mock.h"
Packit Service 3749ba
#include "test.h"
Packit Service 3749ba
Packit Service 3749ba
#define MOCK_SLOT_THREE_ID 792
Packit Service 3749ba
Packit Service 3749ba
/* Update mock-module.h URIs when updating this */
Packit Service 3749ba
Packit Service 3749ba
static int called = 0;
Packit Service 3749ba
static CK_SLOT_ID last_id = 1;
Packit Service 3749ba
Packit Service 3749ba
static CK_RV
Packit Service 3749ba
override_get_slot_list (CK_BBOOL token_present,
Packit Service 3749ba
                    CK_SLOT_ID_PTR slot_list,
Packit Service 3749ba
                    CK_ULONG_PTR count)
Packit Service 3749ba
{
Packit Service 3749ba
	if (count == NULL)
Packit Service 3749ba
		return CKR_ARGUMENTS_BAD;
Packit Service 3749ba
Packit Service 3749ba
	/* For odd numbered calls, the module will return 1 slot with a slot ID
Packit Service 3749ba
	 * returned previously.
Packit Service 3749ba
	 *
Packit Service 3749ba
	 * For even numbered calls, the module will return 2 slots, being the new
Packit Service 3749ba
	 * slot put first in the list */
Packit Service 3749ba
	if (called % 2) {
Packit Service 3749ba
		if (slot_list == NULL) {
Packit Service 3749ba
			*count = 1;
Packit Service 3749ba
			return CKR_OK;
Packit Service 3749ba
		}
Packit Service 3749ba
		if (*count < 1) {
Packit Service 3749ba
			return CKR_BUFFER_TOO_SMALL;
Packit Service 3749ba
		}
Packit Service 3749ba
Packit Service 3749ba
		slot_list[0] = last_id;
Packit Service 3749ba
		*count = 1;
Packit Service 3749ba
	} else {
Packit Service 3749ba
		if (slot_list == NULL) {
Packit Service 3749ba
			*count = 2;
Packit Service 3749ba
			return CKR_OK;
Packit Service 3749ba
		}
Packit Service 3749ba
Packit Service 3749ba
		if (*count < 2) {
Packit Service 3749ba
			return CKR_BUFFER_TOO_SMALL;
Packit Service 3749ba
		}
Packit Service 3749ba
Packit Service 3749ba
		slot_list[1] = last_id;
Packit Service 3749ba
		slot_list[0] = ++last_id;
Packit Service 3749ba
Packit Service 3749ba
		*count = 2;
Packit Service 3749ba
	}
Packit Service 3749ba
Packit Service 3749ba
	++called;
Packit Service 3749ba
Packit Service 3749ba
	return CKR_OK;
Packit Service 3749ba
}
Packit Service 3749ba
Packit Service 3749ba
#ifdef OS_WIN32
Packit Service 3749ba
__declspec(dllexport)
Packit Service 3749ba
#endif
Packit Service 3749ba
CK_RV
Packit Service 3749ba
C_GetFunctionList (CK_FUNCTION_LIST_PTR_PTR list)
Packit Service 3749ba
{
Packit Service 3749ba
	mock_module_init ();
Packit Service 3749ba
	mock_module.C_GetFunctionList = C_GetFunctionList;
Packit Service 3749ba
	if (list == NULL)
Packit Service 3749ba
		return CKR_ARGUMENTS_BAD;
Packit Service 3749ba
	mock_module.C_GetSlotList= override_get_slot_list;
Packit Service 3749ba
	*list = &mock_module;
Packit Service 3749ba
	return CKR_OK;
Packit Service 3749ba
}
Packit Service 3749ba