Radish alpha
H
rad:z3QDZAW2FAfuLvihrhiyDC9fAD8G9
HardenedBSD Package Manager
Radicle
Git
HardenedBSD-pkg libpkg pkgsign.c
/*-
 * Copyright (c) 2021 Kyle Evans <kevans@FreeBSD.org>
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer
 *    in this position and unchanged.
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 *
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS OR
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
 * IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT,
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */

#include <assert.h>
#include <errno.h>
#include <stdlib.h>
#include <string.h>

#include "private/pkg.h"
#include "private/pkgsign.h"
#include "pkghash.h"
#include "xmalloc.h"

/* Other parts of libpkg should use pkgsign instead of rsa directly. */
extern const struct pkgsign_ops	pkgsign_ossl;
extern const struct pkgsign_ops	pkgsign_ecc;

static pkghash *pkgsign_verifiers;

/*
 * The eventual goal is to allow plugins to register their own pkgsign
 * implementations as needed.  The initial sketch was to add a constructor
 * to register the builtin pkgsign implementations since there should only be
 * a couple of them, but this is saved for later work.
 */
static struct pkgsign_impl {
	const char			*pi_name;
	const struct pkgsign_ops	*pi_ops;
	int				 pi_refs; /* XXX */
} pkgsign_builtins[] = {
	{
		.pi_name = "rsa",
		.pi_ops = &pkgsign_ossl,
	},
	{
		.pi_name = "ecc",
		.pi_ops = &pkgsign_ecc,
	},
	{
		.pi_name = "ecdsa",
		.pi_ops = &pkgsign_ecc,
	},
	{
		.pi_name = "eddsa",
		.pi_ops = &pkgsign_ecc,
	},
};

static int
pkgsign_new(const char *name, struct pkgsign_ctx **ctx)
{
	struct pkgsign_impl *impl;
	const struct pkgsign_ops *ops;
	struct pkgsign_ctx *nctx;
	size_t ctx_size;
	int ret;

	assert(*ctx == NULL);

	ops = NULL;
	for (size_t i = 0; i < NELEM(pkgsign_builtins); i++) {
		impl = &pkgsign_builtins[i];
		if (STREQ(name, impl->pi_name)) {
			ops = impl->pi_ops;
			break;
		}
	}

	if (ops == NULL)
		return (EPKG_FATAL);

	ctx_size = ops->pkgsign_ctx_size;
	assert(ctx_size == 0 || ctx_size >= sizeof(struct pkgsign_ctx));
	if (ctx_size == 0)
		ctx_size = sizeof(struct pkgsign_ctx);

	nctx = xcalloc(1, ctx_size);
	nctx->impl = impl;

	ret = EPKG_OK;
	if (ops->pkgsign_new != NULL)
		ret = (*ops->pkgsign_new)(name, nctx);

	if (ret != EPKG_OK) {
		free(nctx);
		return (ret);
	}

	impl->pi_refs++;
	*ctx = nctx;
	return (EPKG_OK);
}

int
pkgsign_new_verify(const char *name, const struct pkgsign_ctx **octx)
{
	struct pkgsign_ctx *ctx;
	pkghash_entry *entry;
	int ret;

	entry = pkghash_get(pkgsign_verifiers, name);
	if (entry != NULL) {
		*octx = entry->value;
		return (EPKG_OK);
	}

	ctx = NULL;
	if ((ret = pkgsign_new(name, &ctx)) != EPKG_OK)
		return (ret);

	pkghash_safe_add(pkgsign_verifiers, name, ctx, NULL);
	*octx = ctx;
	return (EPKG_OK);
}

int
pkgsign_new_sign(const char *name, struct pkgsign_ctx **ctx)
{

	return (pkgsign_new(name, ctx));
}

void
pkgsign_set(struct pkgsign_ctx *sctx, pkg_password_cb *cb, const char *keyfile)
{

	sctx->pw_cb = cb;
	sctx->path = keyfile;
}

void
pkgsign_free(struct pkgsign_ctx *ctx)
{
	struct pkgsign_impl *impl;
	const struct pkgsign_ops *ops;

	if (ctx == NULL)
		return;
	impl = ctx->impl;
	ops = impl->pi_ops;
	if (ops->pkgsign_free != NULL)
		(*ops->pkgsign_free)(ctx);

	impl->pi_refs--;
	free(ctx);
}

int
pkgsign_sign(struct pkgsign_ctx *ctx, const char *path, unsigned char **sigret,
    size_t *siglen)
{

	return (*ctx->impl->pi_ops->pkgsign_sign)(ctx, path, sigret, siglen);
}

int
pkgsign_verify(const struct pkgsign_ctx *ctx, const char *key,
    unsigned char *sig, size_t siglen, int fd)
{

	return (*ctx->impl->pi_ops->pkgsign_verify)(ctx, key, sig, siglen, fd);
}

int
pkgsign_verify_cert(const struct pkgsign_ctx *ctx, unsigned char *key, size_t keylen,
    unsigned char *sig, size_t siglen, int fd)
{

	return (*ctx->impl->pi_ops->pkgsign_verify_cert)(ctx, key, keylen, sig,
	    siglen, fd);
}

const char *
pkgsign_impl_name(const struct pkgsign_ctx *ctx)
{

	return (ctx->impl->pi_name);
}

int
pkgsign_generate(struct pkgsign_ctx *ctx, const struct iovec *iov, int niov)
{

	if (ctx->impl->pi_ops->pkgsign_generate == NULL)
		return (EPKG_OPNOTSUPP);
	return (*ctx->impl->pi_ops->pkgsign_generate)(ctx, iov, niov);
}

int
pkgsign_sign_data(struct pkgsign_ctx *ctx, const unsigned char *msg, size_t msgsz,
    unsigned char **sig, size_t *siglen)
{

	if (ctx->impl->pi_ops->pkgsign_sign_data == NULL)
		return (EPKG_OPNOTSUPP);
	return (*ctx->impl->pi_ops->pkgsign_sign_data)(ctx, msg, msgsz, sig, siglen);
}

int
pkgsign_keyinfo(struct pkgsign_ctx *ctx, struct iovec **iov, int *niov)
{

	if (ctx->impl->pi_ops->pkgsign_keyinfo == NULL)
		return (EPKG_OPNOTSUPP);
	return (*ctx->impl->pi_ops->pkgsign_keyinfo)(ctx, iov, niov);
}

int
pkgsign_pubkey(struct pkgsign_ctx *ctx, char **pubkey, size_t *pubkeylen)
{

	if (ctx->impl->pi_ops->pkgsign_pubkey == NULL)
		return (EPKG_OPNOTSUPP);
	return (*ctx->impl->pi_ops->pkgsign_pubkey)(ctx, pubkey, pubkeylen);
}