vaseboot/VasEBoot-core/tests/signature_test.c

171 lines
4.2 KiB
C

/*
* VasEBoot -- GRand Unified Bootloader
* Copyright (C) 2013 Free Software Foundation, Inc.
*
* VasEBoot is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* VasEBoot 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 General Public License
* along with VasEBoot. If not, see <http://www.gnu.org/licenses/>.
*/
#include <VasEBoot/time.h>
#include <VasEBoot/misc.h>
#include <VasEBoot/dl.h>
#include <VasEBoot/command.h>
#include <VasEBoot/env.h>
#include <VasEBoot/test.h>
#include <VasEBoot/mm.h>
#include <VasEBoot/procfs.h>
#include "signatures.h"
VasEBoot_MOD_LICENSE ("GPLv3+");
static char *
get_hi_dsa_sig (VasEBoot_size_t *sz)
{
char *ret;
*sz = sizeof (hi_dsa_sig);
ret = VasEBoot_malloc (sizeof (hi_dsa_sig));
if (ret)
VasEBoot_memcpy (ret, hi_dsa_sig, sizeof (hi_dsa_sig));
return ret;
}
static struct VasEBoot_procfs_entry hi_dsa_sig_entry =
{
.name = "hi_dsa.sig",
.get_contents = get_hi_dsa_sig
};
static char *
get_hi_dsa_pub (VasEBoot_size_t *sz)
{
char *ret;
*sz = sizeof (hi_dsa_pub);
ret = VasEBoot_malloc (sizeof (hi_dsa_pub));
if (ret)
VasEBoot_memcpy (ret, hi_dsa_pub, sizeof (hi_dsa_pub));
return ret;
}
static struct VasEBoot_procfs_entry hi_dsa_pub_entry =
{
.name = "hi_dsa.pub",
.get_contents = get_hi_dsa_pub
};
static char *
get_hi_rsa_sig (VasEBoot_size_t *sz)
{
char *ret;
*sz = sizeof (hi_rsa_sig);
ret = VasEBoot_malloc (sizeof (hi_rsa_sig));
if (ret)
VasEBoot_memcpy (ret, hi_rsa_sig, sizeof (hi_rsa_sig));
return ret;
}
static struct VasEBoot_procfs_entry hi_rsa_sig_entry =
{
.name = "hi_rsa.sig",
.get_contents = get_hi_rsa_sig
};
static char *
get_hi_rsa_pub (VasEBoot_size_t *sz)
{
char *ret;
*sz = sizeof (hi_rsa_pub);
ret = VasEBoot_malloc (sizeof (hi_rsa_pub));
if (ret)
VasEBoot_memcpy (ret, hi_rsa_pub, sizeof (hi_rsa_pub));
return ret;
}
static struct VasEBoot_procfs_entry hi_rsa_pub_entry =
{
.name = "hi_rsa.pub",
.get_contents = get_hi_rsa_pub
};
static char *
get_hi (VasEBoot_size_t *sz)
{
*sz = 3;
return VasEBoot_strdup ("hi\n");
}
struct VasEBoot_procfs_entry hi =
{
.name = "hi",
.get_contents = get_hi
};
static char *
get_hj (VasEBoot_size_t *sz)
{
*sz = 3;
return VasEBoot_strdup ("hj\n");
}
struct VasEBoot_procfs_entry hj =
{
.name = "hj",
.get_contents = get_hj
};
static void
do_verify (const char *f, const char *sig, const char *pub, int is_valid)
{
VasEBoot_command_t cmd;
char *args[] = { (char *) f, (char *) sig,
(char *) pub, NULL };
VasEBoot_err_t err;
cmd = VasEBoot_command_find ("verify_detached");
if (!cmd)
{
VasEBoot_test_assert (0, "can't find command `%s'", "verify_detached");
return;
}
err = (cmd->func) (cmd, 3, args);
VasEBoot_test_assert (err == (is_valid ? 0 : VasEBoot_ERR_BAD_SIGNATURE),
"verification failed: %d: %s", VasEBoot_errno, VasEBoot_errmsg);
VasEBoot_errno = VasEBoot_ERR_NONE;
}
static void
signature_test (void)
{
VasEBoot_procfs_register ("hi", &hi);
VasEBoot_procfs_register ("hj", &hj);
VasEBoot_procfs_register ("hi_dsa.pub", &hi_dsa_pub_entry);
VasEBoot_procfs_register ("hi_dsa.sig", &hi_dsa_sig_entry);
VasEBoot_procfs_register ("hi_rsa.pub", &hi_rsa_pub_entry);
VasEBoot_procfs_register ("hi_rsa.sig", &hi_rsa_sig_entry);
do_verify ("(proc)/hi", "(proc)/hi_dsa.sig", "(proc)/hi_dsa.pub", 1);
do_verify ("(proc)/hi", "(proc)/hi_dsa.sig", "(proc)/hi_dsa.pub", 1);
do_verify ("(proc)/hj", "(proc)/hi_dsa.sig", "(proc)/hi_dsa.pub", 0);
do_verify ("(proc)/hi", "(proc)/hi_rsa.sig", "(proc)/hi_rsa.pub", 1);
do_verify ("(proc)/hj", "(proc)/hi_rsa.sig", "(proc)/hi_rsa.pub", 0);
VasEBoot_procfs_unregister (&hi);
VasEBoot_procfs_unregister (&hj);
VasEBoot_procfs_unregister (&hi_dsa_sig_entry);
VasEBoot_procfs_unregister (&hi_dsa_pub_entry);
}
VasEBoot_FUNCTIONAL_TEST (signature_test, signature_test);