199 lines
7.7 KiB
C
199 lines
7.7 KiB
C
/*-
|
|
* Public platform independent Near Field Communication (NFC) library
|
|
*
|
|
* Copyright (C) 2011, Romain Tartière, Romuald Conty
|
|
*
|
|
* This program 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 3 of the License, or (at your
|
|
* option) any later version.
|
|
*
|
|
* This program 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 General Public License for
|
|
* more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
|
*/
|
|
|
|
/**
|
|
* @file nfc-internal.h
|
|
* @brief Internal defines and macros
|
|
*/
|
|
|
|
#ifndef __NFC_INTERNAL_H__
|
|
#define __NFC_INTERNAL_H__
|
|
|
|
#include <stdbool.h>
|
|
#include <err.h>
|
|
# include <sys/time.h>
|
|
|
|
#include "nfc/nfc.h"
|
|
|
|
#include "log.h"
|
|
|
|
/**
|
|
* @macro HAL
|
|
* @brief Execute corresponding driver function if exists.
|
|
*/
|
|
#define HAL( FUNCTION, ... ) pnd->last_error = 0; \
|
|
if (pnd->driver->FUNCTION) { \
|
|
return pnd->driver->FUNCTION( __VA_ARGS__ ); \
|
|
} else { \
|
|
pnd->last_error = NFC_EDEVNOTSUPP; \
|
|
return false; \
|
|
}
|
|
|
|
/*
|
|
* Buffer management macros.
|
|
*
|
|
* The following macros ease setting-up and using buffers:
|
|
* BUFFER_INIT (data, 5); // data -> [ xx, xx, xx, xx, xx ]
|
|
* BUFFER_SIZE (data); // size -> 0
|
|
* BUFFER_APPEND (data, 0x12); // data -> [ 12, xx, xx, xx, xx ]
|
|
* BUFFER_SIZE (data); // size -> 1
|
|
* uint16_t x = 0x3456; // We suppose we are little endian
|
|
* BUFFER_APPEND_BYTES (data, x, 2);
|
|
* // data -> [ 12, 56, 34, xx, xx ]
|
|
* BUFFER_SIZE (data); // size -> 3
|
|
* BUFFER_APPEND_LE (data, x, 2, sizeof (x));
|
|
* // data -> [ 12, 56, 34, 34, 56 ]
|
|
* BUFFER_SIZE (data); // size -> 5
|
|
*/
|
|
|
|
/*
|
|
* Initialise a buffer named buffer_name of size bytes.
|
|
*/
|
|
#define BUFFER_INIT(buffer_name, size) \
|
|
uint8_t buffer_name[size]; \
|
|
size_t __##buffer_name##_n = 0
|
|
|
|
/*
|
|
* Create a wrapper for an existing buffer.
|
|
* BEWARE! It eats children!
|
|
*/
|
|
#define BUFFER_ALIAS(buffer_name, origin) \
|
|
uint8_t *buffer_name = (void *)origin; \
|
|
size_t __##buffer_name##_n = 0;
|
|
|
|
#define BUFFER_SIZE(buffer_name) (__##buffer_name##_n)
|
|
|
|
#define BUFFER_CLEAR(buffer_name) (__##buffer_name##_n = 0)
|
|
/*
|
|
* Append one byte of data to the buffer buffer_name.
|
|
*/
|
|
#define BUFFER_APPEND(buffer_name, data) \
|
|
do { \
|
|
buffer_name[__##buffer_name##_n++] = data; \
|
|
} while (0)
|
|
|
|
/*
|
|
* Append size bytes of data to the buffer buffer_name.
|
|
*/
|
|
#define BUFFER_APPEND_BYTES(buffer_name, data, size) \
|
|
do { \
|
|
size_t __n = 0; \
|
|
while (__n < size) { \
|
|
buffer_name[__##buffer_name##_n++] = ((uint8_t *)data)[__n++]; \
|
|
} \
|
|
} while (0)
|
|
|
|
/*
|
|
* Append data_size bytes of data at the end of the buffer. Since data is
|
|
* copied as a little endian value, the storage size of the value has to be
|
|
* passed as the field_size parameter.
|
|
*
|
|
* Example: to copy 24 bits of data from a 32 bits value:
|
|
* BUFFER_APPEND_LE (buffer, data, 3, 4);
|
|
*/
|
|
|
|
#if _BYTE_ORDER != _LITTLE_ENDIAN
|
|
#define BUFFER_APPEND_LE(buffer, data, data_size, field_size) \
|
|
do { \
|
|
size_t __data_size = data_size; \
|
|
size_t __field_size = field_size; \
|
|
while (__field_size--, __data_size--) { \
|
|
buffer[__##buffer##_n++] = ((uint8_t *)&data)[__field_size]; \
|
|
} \
|
|
} while (0)
|
|
#else
|
|
#define BUFFER_APPEND_LE(buffer, data, data_size, field_size) \
|
|
do { \
|
|
memcpy (buffer + __##buffer##_n, &data, data_size); \
|
|
__##buffer##_n += data_size; \
|
|
} while (0)
|
|
#endif
|
|
|
|
|
|
struct nfc_driver {
|
|
const char *name;
|
|
bool (*probe)(nfc_connstring connstrings[], size_t connstrings_len, size_t * pszDeviceFound);
|
|
struct nfc_device *(*open) (const nfc_connstring connstring);
|
|
void (*close) (struct nfc_device *pnd);
|
|
const char *(*strerror) (const struct nfc_device *pnd);
|
|
|
|
int (*initiator_init) (struct nfc_device *pnd);
|
|
int (*initiator_select_passive_target) (struct nfc_device *pnd, const nfc_modulation nm, const uint8_t * pbtInitData, const size_t szInitData, nfc_target * pnt);
|
|
int (*initiator_poll_target) (struct nfc_device *pnd, const nfc_modulation * pnmModulations, const size_t szModulations, const uint8_t uiPollNr, const uint8_t btPeriod, nfc_target * pnt);
|
|
int (*initiator_select_dep_target) (struct nfc_device *pnd, const nfc_dep_mode ndm, const nfc_baud_rate nbr, const nfc_dep_info * pndiInitiator, nfc_target * pnt, const int timeout);
|
|
int (*initiator_deselect_target) (struct nfc_device *pnd);
|
|
int (*initiator_transceive_bytes) (struct nfc_device *pnd, const uint8_t * pbtTx, const size_t szTx, uint8_t * pbtRx, size_t * pszRx, int timeout);
|
|
int (*initiator_transceive_bits) (struct nfc_device *pnd, const uint8_t * pbtTx, const size_t szTxBits, const uint8_t * pbtTxPar, uint8_t * pbtRx, uint8_t * pbtRxPar);
|
|
int (*initiator_transceive_bytes_timed) (struct nfc_device *pnd, const uint8_t * pbtTx, const size_t szTx, uint8_t * pbtRx, uint32_t * cycles);
|
|
int (*initiator_transceive_bits_timed) (struct nfc_device *pnd, const uint8_t * pbtTx, const size_t szTxBits, const uint8_t * pbtTxPar, uint8_t * pbtRx, uint8_t * pbtRxPar, uint32_t * cycles);
|
|
|
|
int (*target_init) (struct nfc_device *pnd, nfc_target * pnt, uint8_t * pbtRx, const size_t szRx, int timeout);
|
|
int (*target_send_bytes) (struct nfc_device *pnd, const uint8_t * pbtTx, const size_t szTx, int timeout);
|
|
int (*target_receive_bytes) (struct nfc_device *pnd, uint8_t * pbtRx, const size_t szRxLen, int timeout);
|
|
int (*target_send_bits) (struct nfc_device *pnd, const uint8_t * pbtTx, const size_t szTxBits, const uint8_t * pbtTxPar);
|
|
int (*target_receive_bits) (struct nfc_device *pnd, uint8_t * pbtRx, const size_t szRxLen, uint8_t * pbtRxPar);
|
|
|
|
int (*device_set_property_bool) (struct nfc_device *pnd, const nfc_property property, const bool bEnable);
|
|
int (*device_set_property_int) (struct nfc_device *pnd, const nfc_property property, const int value);
|
|
int (*get_supported_modulation) (struct nfc_device *pnd, const nfc_mode mode, const nfc_modulation_type **const supported_mt);
|
|
int (*get_supported_baud_rate) (struct nfc_device *pnd, const nfc_modulation_type nmt, const nfc_baud_rate **const supported_br);
|
|
|
|
int (*abort_command) (struct nfc_device *pnd);
|
|
int (*idle) (struct nfc_device *pnd);
|
|
};
|
|
|
|
# define DEVICE_NAME_LENGTH 256
|
|
# define DEVICE_PORT_LENGTH 64
|
|
|
|
/**
|
|
* @struct nfc_device
|
|
* @brief NFC device information
|
|
*/
|
|
struct nfc_device {
|
|
const struct nfc_driver *driver;
|
|
void *driver_data;
|
|
void *chip_data;
|
|
|
|
/** Device name string, including device wrapper firmware */
|
|
char name[DEVICE_NAME_LENGTH];
|
|
/** Device connection string */
|
|
nfc_connstring connstring;
|
|
/** Is the CRC automaticly added, checked and removed from the frames */
|
|
bool bCrc;
|
|
/** Does the chip handle parity bits, all parities are handled as data */
|
|
bool bPar;
|
|
/** Should the chip handle frames encapsulation and chaining */
|
|
bool bEasyFraming;
|
|
/** Should the chip switch automatically activate ISO14443-4 when
|
|
selecting tags supporting it? */
|
|
bool bAutoIso14443_4;
|
|
/** Supported modulation encoded in a byte */
|
|
uint8_t btSupportByte;
|
|
/** Last reported error */
|
|
int last_error;
|
|
};
|
|
|
|
nfc_device *nfc_device_new (const nfc_connstring connstring);
|
|
void nfc_device_free (nfc_device *dev);
|
|
|
|
void iso14443_cascade_uid (const uint8_t abtUID[], const size_t szUID, uint8_t * pbtCascadedUID, size_t * pszCascadedUID);
|
|
|
|
void prepare_initiator_data (const nfc_modulation nm, uint8_t **ppbtInitiatorData, size_t * pszInitiatorData);
|
|
|
|
#endif // __NFC_INTERNAL_H__
|