gmid/utils.c

282 lines
5.3 KiB
C
Raw Normal View History

2021-01-27 16:35:09 +01:00
/*
2021-01-28 17:24:03 +01:00
* Copyright (c) 2021 Omar Polo <op@omarpolo.com>
2021-01-27 16:35:09 +01:00
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include "gmid.h"
2021-01-27 16:35:09 +01:00
#include <errno.h>
#include <string.h>
#include <openssl/bn.h>
2021-02-07 16:30:28 +01:00
#include <openssl/pem.h>
#include <openssl/x509_vfy.h>
#include <openssl/x509v3.h>
2021-02-07 16:30:28 +01:00
2023-06-06 13:46:40 +02:00
#include "log.h"
2021-01-27 16:35:09 +01:00
int
starts_with(const char *str, const char *prefix)
{
size_t i;
if (prefix == NULL)
return 0;
for (i = 0; prefix[i] != '\0'; ++i)
if (str[i] != prefix[i])
return 0;
return 1;
}
int
ends_with(const char *str, const char *sufx)
{
size_t i, j;
i = strlen(str);
j = strlen(sufx);
if (j > i)
return 0;
i -= j;
for (j = 0; str[i] != '\0'; i++, j++)
if (str[i] != sufx[j])
return 0;
return 1;
}
ssize_t
filesize(int fd)
{
ssize_t len;
if ((len = lseek(fd, 0, SEEK_END)) == -1)
return -1;
if (lseek(fd, 0, SEEK_SET) == -1)
return -1;
return len;
}
char *
absolutify_path(const char *path)
{
char *wd, *r;
if (*path == '/') {
if ((r = strdup(path)) == NULL)
fatal("strdup");
return r;
}
wd = getcwd(NULL, 0);
if (asprintf(&r, "%s/%s", wd, path) == -1)
fatal("asprintf");
free(wd);
return r;
}
2021-02-04 14:23:15 +01:00
char *
xstrdup(const char *s)
{
char *d;
if ((d = strdup(s)) == NULL)
fatal("strdup");
2021-02-04 14:23:15 +01:00
return d;
}
2021-02-07 16:30:28 +01:00
void *
xcalloc(size_t nmemb, size_t size)
{
void *d;
if ((d = calloc(nmemb, size)) == NULL)
fatal("calloc");
return d;
}
2021-02-07 16:30:28 +01:00
void
gen_certificate(const char *hostname, const char *certpath, const char *keypath)
2021-02-07 16:30:28 +01:00
{
BIGNUM *e;
2021-02-07 16:30:28 +01:00
EVP_PKEY *pkey;
RSA *rsa;
X509 *x509;
X509_NAME *name;
FILE *f;
const unsigned char *host = (const unsigned char*)hostname;
2021-02-07 16:30:28 +01:00
2023-06-06 13:46:40 +02:00
log_info("generating new certificate for %s (it could take a while)",
2021-02-07 16:30:28 +01:00
host);
if ((pkey = EVP_PKEY_new()) == NULL)
fatalx("couldn't create a new private key");
2021-02-07 16:30:28 +01:00
if ((rsa = RSA_new()) == NULL)
fatalx("couldn't generate rsa");
2021-02-07 16:30:28 +01:00
if ((e = BN_new()) == NULL)
fatalx("couldn't allocate a bignum");
BN_set_word(e, RSA_F4);
if (!RSA_generate_key_ex(rsa, 4096, e, NULL))
fatalx("couldn't generate a rsa key");
2021-02-07 16:30:28 +01:00
if (!EVP_PKEY_assign_RSA(pkey, rsa))
fatalx("couldn't assign the key");
2021-02-07 16:30:28 +01:00
if ((x509 = X509_new()) == NULL)
fatalx("couldn't generate the X509 certificate");
2021-02-07 16:30:28 +01:00
ASN1_INTEGER_set(X509_get_serialNumber(x509), 0);
2021-02-07 16:30:28 +01:00
X509_gmtime_adj(X509_get_notBefore(x509), 0);
X509_gmtime_adj(X509_get_notAfter(x509), 315360000L); /* 10 years */
X509_set_version(x509, 3);
2021-02-07 16:30:28 +01:00
if (!X509_set_pubkey(x509, pkey))
fatalx("couldn't set the public key");
2021-02-07 16:30:28 +01:00
name = X509_get_subject_name(x509);
if (!X509_NAME_add_entry_by_txt(name, "CN", MBSTRING_ASC, host, -1, -1, 0))
fatalx("couldn't add CN to cert");
2021-02-07 16:30:28 +01:00
X509_set_issuer_name(x509, name);
if (!X509_sign(x509, pkey, EVP_sha256()))
fatalx("couldn't sign the certificate");
2021-02-07 16:30:28 +01:00
if ((f = fopen(keypath, "w")) == NULL)
fatal("can't open %s", keypath);
2021-02-07 16:30:28 +01:00
if (!PEM_write_PrivateKey(f, pkey, NULL, NULL, 0, NULL, NULL))
fatalx("couldn't write private key");
2021-02-07 16:30:28 +01:00
fclose(f);
if ((f = fopen(certpath, "w")) == NULL)
fatal("can't open %s", certpath);
2021-02-07 16:30:28 +01:00
if (!PEM_write_X509(f, x509))
fatalx("couldn't write cert");
2021-02-07 16:30:28 +01:00
fclose(f);
BN_free(e);
2021-02-07 16:30:28 +01:00
X509_free(x509);
RSA_free(rsa);
2023-06-06 13:46:40 +02:00
log_info("certificate successfully generated");
2021-02-07 16:30:28 +01:00
}
X509_STORE *
load_ca(int fd)
{
FILE *f = NULL;
X509 *x = NULL;
X509_STORE *store;
if ((store = X509_STORE_new()) == NULL) {
close(fd);
return NULL;
}
if ((f = fdopen(fd, "r")) == NULL) {
close(fd);
goto err;
}
if ((x = PEM_read_X509(f, NULL, NULL, NULL)) == NULL)
goto err;
if (X509_check_ca(x) == 0)
goto err;
if (!X509_STORE_add_cert(store, x))
goto err;
X509_free(x);
fclose(f);
return store;
err:
X509_STORE_free(store);
if (x != NULL)
X509_free(x);
if (f != NULL)
fclose(f);
return NULL;
}
int
validate_against_ca(X509_STORE *ca, const uint8_t *chain, size_t len)
{
X509 *client;
BIO *m;
X509_STORE_CTX *ctx = NULL;
int ret = 0;
if ((m = BIO_new_mem_buf(chain, len)) == NULL)
return 0;
if ((client = PEM_read_bio_X509(m, NULL, NULL, NULL)) == NULL)
goto end;
if ((ctx = X509_STORE_CTX_new()) == NULL)
goto end;
if (!X509_STORE_CTX_init(ctx, ca, client, NULL))
goto end;
ret = X509_verify_cert(ctx);
end:
BIO_free(m);
if (client != NULL)
X509_free(client);
if (ctx != NULL)
X509_STORE_CTX_free(ctx);
return ret;
}
struct vhost *
new_vhost(void)
{
struct vhost *h;
h = xcalloc(1, sizeof(*h));
TAILQ_INIT(&h->locations);
TAILQ_INIT(&h->params);
TAILQ_INIT(&h->aliases);
TAILQ_INIT(&h->proxies);
return h;
}
struct location *
new_location(void)
{
struct location *l;
l = xcalloc(1, sizeof(*l));
l->dirfd = -1;
l->fcgi = -1;
return l;
}
struct proxy *
new_proxy(void)
{
struct proxy *p;
p = xcalloc(1, sizeof(*p));
p->protocols = TLS_PROTOCOLS_DEFAULT;
return p;
}