ccid/src/utils.c

143 lines
2.8 KiB
C
Raw Normal View History

2017-12-08 18:39:30 +00:00
/*
2021-08-30 09:27:00 +00:00
utils.c:
Copyright (C) 2003-2008 Ludovic Rousseau
2017-12-08 18:39:30 +00:00
2021-08-30 09:27:00 +00:00
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
2017-12-08 18:39:30 +00:00
2021-08-30 09:27:00 +00:00
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
2017-12-08 18:39:30 +00:00
You should have received a copy of the GNU Lesser General Public License
along with this library; if not, write to the Free Software Foundation,
Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
2020-04-22 09:29:14 +00:00
#include <string.h>
2017-12-08 18:39:30 +00:00
#include <pcsclite.h>
#include <config.h>
#include "ccid.h"
#include "defs.h"
#include "ccid_ifdhandler.h"
#include "utils.h"
#include "debug.h"
int ReaderIndex[CCID_DRIVER_MAX_READERS];
2022-01-27 12:05:07 +00:00
#define FREE_ENTRY -42
2017-12-08 18:39:30 +00:00
void InitReaderIndex(void)
{
int i;
for (i=0; i<CCID_DRIVER_MAX_READERS; i++)
2022-01-27 12:05:07 +00:00
ReaderIndex[i] = FREE_ENTRY;
2017-12-08 18:39:30 +00:00
} /* InitReaderIndex */
int GetNewReaderIndex(const int Lun)
{
int i;
/* check that Lun is NOT already used */
for (i=0; i<CCID_DRIVER_MAX_READERS; i++)
if (Lun == ReaderIndex[i])
break;
if (i < CCID_DRIVER_MAX_READERS)
{
DEBUG_CRITICAL2("Lun: %d is already used", Lun);
return -1;
}
for (i=0; i<CCID_DRIVER_MAX_READERS; i++)
2022-01-27 12:05:07 +00:00
if (FREE_ENTRY == ReaderIndex[i])
2017-12-08 18:39:30 +00:00
{
ReaderIndex[i] = Lun;
return i;
}
DEBUG_CRITICAL("ReaderIndex[] is full");
return -1;
} /* GetReaderIndex */
int LunToReaderIndex(const int Lun)
{
int i;
for (i=0; i<CCID_DRIVER_MAX_READERS; i++)
if (Lun == ReaderIndex[i])
return i;
DEBUG_CRITICAL2("Lun: %X not found", Lun);
return -1;
} /* LunToReaderIndex */
void ReleaseReaderIndex(const int index)
{
2022-01-27 12:05:07 +00:00
ReaderIndex[index] = FREE_ENTRY;
2017-12-08 18:39:30 +00:00
} /* ReleaseReaderIndex */
2020-04-22 09:29:14 +00:00
/* Read a non aligned 16-bit integer */
uint16_t get_U16(void *buf)
{
uint16_t value;
memcpy(&value, buf, sizeof value);
return value;
}
/* Read a non aligned 32-bit integer */
uint32_t get_U32(void *buf)
{
uint32_t value;
memcpy(&value, buf, sizeof value);
return value;
}
/* Write a non aligned 16-bit integer */
void set_U16(void *buf, uint16_t value)
{
memcpy(buf, &value, sizeof value);
}
/* Write a non aligned 32-bit integer */
void set_U32(void *buf, uint32_t value)
{
memcpy(buf, &value, sizeof value);
}
/* swap a 16-bits integer in memory */
/* "AB" -> "BA" */
void p_bswap_16(void *ptr)
{
uint8_t *array, tmp;
array = ptr;
tmp = array[0];
array[0] = array[1];
array[1] = tmp;
}
/* swap a 32-bits integer in memory */
/* "ABCD" -> "DCBA" */
void p_bswap_32(void *ptr)
{
uint8_t *array, tmp;
array = ptr;
tmp = array[0];
array[0] = array[3];
array[3] = tmp;
tmp = array[1];
array[1] = array[2];
array[2] = tmp;
}