2019-03-05 13:14:47 +00:00
|
|
|
#include <stddef.h>
|
|
|
|
#include <stdint.h>
|
2019-01-16 09:15:18 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
2019-03-05 13:14:47 +00:00
|
|
|
#include "api.h"
|
|
|
|
#include "randombytes.h"
|
|
|
|
|
2019-01-16 09:15:18 +00:00
|
|
|
#define NTESTS 15
|
|
|
|
#define MLEN 32
|
|
|
|
|
2019-03-05 13:14:47 +00:00
|
|
|
const uint8_t canary[8] = {
|
2019-02-13 16:45:09 +00:00
|
|
|
0x01, 0x23, 0x45, 0x67, 0x89, 0xAB, 0xCD, 0xEF
|
|
|
|
};
|
2019-02-09 00:59:13 +00:00
|
|
|
|
2019-01-16 09:15:18 +00:00
|
|
|
/* allocate a bit more for all keys and messages and
|
|
|
|
* make sure it is not touched by the implementations.
|
|
|
|
*/
|
2019-03-05 13:14:47 +00:00
|
|
|
static void write_canary(uint8_t *d) {
|
2019-02-11 08:41:32 +00:00
|
|
|
for (int i = 0; i < 8; i++) {
|
|
|
|
d[i] = canary[i];
|
|
|
|
}
|
2019-01-16 09:15:18 +00:00
|
|
|
}
|
|
|
|
|
2019-03-05 13:14:47 +00:00
|
|
|
static int check_canary(const uint8_t *d) {
|
2019-02-11 08:41:32 +00:00
|
|
|
for (int i = 0; i < 8; i++) {
|
2019-03-05 13:14:47 +00:00
|
|
|
if (d[i] != canary[i]) {
|
2019-02-11 08:41:32 +00:00
|
|
|
return -1;
|
2019-03-05 13:14:47 +00:00
|
|
|
}
|
2019-01-16 12:02:35 +00:00
|
|
|
}
|
|
|
|
return 0;
|
2019-01-16 09:15:18 +00:00
|
|
|
}
|
2019-01-22 16:37:58 +00:00
|
|
|
|
|
|
|
// https://stackoverflow.com/a/1489985/1711232
|
|
|
|
#define PASTER(x, y) x##_##y
|
|
|
|
#define EVALUATOR(x, y) PASTER(x, y)
|
|
|
|
#define NAMESPACE(fun) EVALUATOR(PQCLEAN_NAMESPACE, fun)
|
|
|
|
|
|
|
|
#define crypto_sign_keypair NAMESPACE(crypto_sign_keypair)
|
|
|
|
#define crypto_sign NAMESPACE(crypto_sign)
|
|
|
|
#define crypto_sign_open NAMESPACE(crypto_sign_open)
|
|
|
|
|
2019-02-13 16:45:09 +00:00
|
|
|
#define RETURNS_ZERO(f) \
|
|
|
|
if ((f) != 0) { \
|
|
|
|
puts("(f) returned non-zero returncode"); \
|
|
|
|
return -1; \
|
2019-01-23 12:09:18 +00:00
|
|
|
}
|
|
|
|
|
2019-01-16 09:15:18 +00:00
|
|
|
static int test_sign(void) {
|
2019-02-27 15:28:20 +00:00
|
|
|
/*
|
|
|
|
* This is most likely going to be aligned by the compiler.
|
|
|
|
* 16 extra bytes for canary
|
|
|
|
* 1 extra byte for unalignment
|
|
|
|
*/
|
2019-03-05 13:14:47 +00:00
|
|
|
uint8_t pk_aligned[CRYPTO_PUBLICKEYBYTES + 16 + 1];
|
|
|
|
uint8_t sk_aligned[CRYPTO_SECRETKEYBYTES + 16 + 1];
|
|
|
|
uint8_t sm_aligned[MLEN + CRYPTO_BYTES + 16 + 1];
|
|
|
|
uint8_t m_aligned[MLEN + 16 + 1];
|
2019-02-27 15:28:20 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Make sure all pointers are odd.
|
|
|
|
* This ensures that the implementation does not assume anything about the
|
|
|
|
* data alignment. For example this would catch if an implementation
|
|
|
|
* directly uses these pointers to load into vector registers using movdqa.
|
|
|
|
*/
|
2019-03-05 13:14:47 +00:00
|
|
|
uint8_t *pk = (uint8_t *) ((uintptr_t) pk_aligned|(uintptr_t) 1);
|
|
|
|
uint8_t *sk = (uint8_t *) ((uintptr_t) sk_aligned|(uintptr_t) 1);
|
|
|
|
uint8_t *sm = (uint8_t *) ((uintptr_t) sm_aligned|(uintptr_t) 1);
|
|
|
|
uint8_t *m = (uint8_t *) ((uintptr_t) m_aligned|(uintptr_t) 1);
|
2019-01-16 10:02:32 +00:00
|
|
|
|
2019-03-05 13:14:47 +00:00
|
|
|
size_t mlen;
|
|
|
|
size_t smlen;
|
2019-01-23 12:09:18 +00:00
|
|
|
int returncode;
|
2019-01-16 10:02:32 +00:00
|
|
|
|
|
|
|
int i;
|
2019-02-27 15:28:20 +00:00
|
|
|
/*
|
|
|
|
* Write 8 byte canary before and after the actual memory regions.
|
|
|
|
* This is used to validate that the implementation does not assume
|
|
|
|
* anything about the placement of data in memory
|
|
|
|
* (e.g., assuming that the pk is always behind the sk)
|
|
|
|
*/
|
2019-01-16 10:02:32 +00:00
|
|
|
write_canary(pk);
|
2019-02-27 15:28:20 +00:00
|
|
|
write_canary(pk + CRYPTO_PUBLICKEYBYTES + 8);
|
2019-01-16 10:02:32 +00:00
|
|
|
write_canary(sk);
|
2019-02-27 15:28:20 +00:00
|
|
|
write_canary(sk + CRYPTO_SECRETKEYBYTES + 8);
|
2019-01-16 10:02:32 +00:00
|
|
|
write_canary(sm);
|
2019-02-27 15:28:20 +00:00
|
|
|
write_canary(sm + MLEN + CRYPTO_BYTES + 8);
|
2019-01-16 10:02:32 +00:00
|
|
|
write_canary(m);
|
2019-02-27 15:28:20 +00:00
|
|
|
write_canary(m + MLEN + 8);
|
2019-01-16 10:02:32 +00:00
|
|
|
|
|
|
|
for (i = 0; i < NTESTS; i++) {
|
2019-01-23 12:09:18 +00:00
|
|
|
RETURNS_ZERO(crypto_sign_keypair(pk + 8, sk + 8));
|
2019-01-16 10:02:32 +00:00
|
|
|
|
|
|
|
randombytes(m + 8, MLEN);
|
2019-01-23 12:09:18 +00:00
|
|
|
RETURNS_ZERO(crypto_sign(sm + 8, &smlen, m + 8, MLEN, sk + 8));
|
2019-01-16 10:02:32 +00:00
|
|
|
|
|
|
|
// By relying on m == sm we prevent having to allocate CRYPTO_BYTES
|
|
|
|
// twice
|
2019-02-11 09:05:54 +00:00
|
|
|
if ((returncode =
|
|
|
|
crypto_sign_open(sm + 8, &mlen, sm + 8, smlen, pk + 8)) != 0) {
|
2019-03-04 14:12:38 +00:00
|
|
|
fprintf(stderr, "ERROR Signature did not verify correctly!\n");
|
2019-01-23 12:09:18 +00:00
|
|
|
if (returncode > 0) {
|
2019-03-04 14:12:38 +00:00
|
|
|
fprintf(stderr, "ERROR return code should be < 0 on failure");
|
2019-01-23 12:09:18 +00:00
|
|
|
}
|
2019-01-16 12:02:35 +00:00
|
|
|
return 1;
|
|
|
|
}
|
2019-02-27 15:28:20 +00:00
|
|
|
// Validate that the implementation did not touch the canary
|
|
|
|
if (check_canary(pk) || check_canary(pk + CRYPTO_PUBLICKEYBYTES + 8) ||
|
|
|
|
check_canary(sk) || check_canary(sk + CRYPTO_SECRETKEYBYTES + 8) ||
|
|
|
|
check_canary(sm) || check_canary(sm + MLEN + CRYPTO_BYTES + 8) ||
|
|
|
|
check_canary(m) || check_canary(m + MLEN + 8)) {
|
2019-03-04 14:12:38 +00:00
|
|
|
fprintf(stderr, "ERROR canary overwritten\n");
|
2019-01-16 12:02:35 +00:00
|
|
|
return 1;
|
2019-01-16 10:02:32 +00:00
|
|
|
}
|
2019-01-16 09:15:18 +00:00
|
|
|
}
|
|
|
|
|
2019-01-16 10:02:32 +00:00
|
|
|
return 0;
|
2019-01-16 09:15:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int test_wrong_pk(void) {
|
2019-03-05 13:14:47 +00:00
|
|
|
uint8_t pk[CRYPTO_PUBLICKEYBYTES];
|
|
|
|
uint8_t pk2[CRYPTO_PUBLICKEYBYTES];
|
|
|
|
uint8_t sk[CRYPTO_SECRETKEYBYTES];
|
|
|
|
uint8_t sm[MLEN + CRYPTO_BYTES];
|
|
|
|
uint8_t m[MLEN];
|
|
|
|
|
|
|
|
size_t mlen;
|
|
|
|
size_t smlen;
|
2019-01-16 09:15:18 +00:00
|
|
|
|
2019-01-23 12:09:18 +00:00
|
|
|
int returncode;
|
|
|
|
|
2019-01-16 10:02:32 +00:00
|
|
|
int i;
|
2019-01-16 09:15:18 +00:00
|
|
|
|
2019-01-16 10:02:32 +00:00
|
|
|
for (i = 0; i < NTESTS; i++) {
|
2019-01-23 12:09:18 +00:00
|
|
|
RETURNS_ZERO(crypto_sign_keypair(pk2, sk));
|
2019-01-16 09:15:18 +00:00
|
|
|
|
2019-01-23 12:09:18 +00:00
|
|
|
RETURNS_ZERO(crypto_sign_keypair(pk, sk));
|
2019-01-16 09:15:18 +00:00
|
|
|
|
2019-01-16 10:02:32 +00:00
|
|
|
randombytes(m, MLEN);
|
2019-01-23 12:09:18 +00:00
|
|
|
RETURNS_ZERO(crypto_sign(sm, &smlen, m, MLEN, sk));
|
2019-01-16 09:15:18 +00:00
|
|
|
|
2019-01-16 10:02:32 +00:00
|
|
|
// By relying on m == sm we prevent having to allocate CRYPTO_BYTES
|
|
|
|
// twice
|
2019-02-27 16:08:59 +00:00
|
|
|
returncode = crypto_sign_open(sm, &mlen, sm, smlen, pk2);
|
|
|
|
if (!returncode) {
|
2019-03-04 14:12:38 +00:00
|
|
|
fprintf(stderr, "ERROR Signature did verify correctly under wrong public key!\n");
|
2019-01-23 12:09:18 +00:00
|
|
|
if (returncode > 0) {
|
2019-03-04 14:12:38 +00:00
|
|
|
fprintf(stderr, "ERROR return code should be < 0");
|
2019-01-23 12:09:18 +00:00
|
|
|
}
|
2019-01-16 12:02:35 +00:00
|
|
|
return 1;
|
2019-01-16 10:02:32 +00:00
|
|
|
}
|
2019-01-16 09:15:18 +00:00
|
|
|
}
|
|
|
|
|
2019-01-16 10:02:32 +00:00
|
|
|
return 0;
|
2019-01-16 09:15:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int main(void) {
|
2019-01-16 12:02:35 +00:00
|
|
|
int result = 0;
|
|
|
|
result += test_sign();
|
|
|
|
result += test_wrong_pk();
|
2019-01-16 09:15:18 +00:00
|
|
|
|
2019-01-16 12:02:35 +00:00
|
|
|
return result;
|
2019-01-16 09:15:18 +00:00
|
|
|
}
|