mirror of
https://git.sr.ht/~sircmpwn/gmnisrv
synced 2024-11-03 06:07:17 -05:00
Free up resources throughout
This commit is contained in:
parent
e9641dbf1e
commit
50d21c03f5
@ -3,8 +3,9 @@
|
||||
|
||||
struct gmnisrv_config;
|
||||
|
||||
int gmnisrv_tls_init(struct gmnisrv_config *conf);
|
||||
SSL *gmnisrv_tls_get_ssl(struct gmnisrv_config *conf, int fd);
|
||||
void gmnisrv_tls_set_host(SSL *ssl, struct gmnisrv_host *host);
|
||||
int tls_init(struct gmnisrv_config *conf);
|
||||
void tls_finish(struct gmnisrv_config *conf);
|
||||
SSL *tls_get_ssl(struct gmnisrv_config *conf, int fd);
|
||||
void tls_set_host(SSL *ssl, struct gmnisrv_host *host);
|
||||
|
||||
#endif
|
||||
|
@ -236,6 +236,7 @@ config_finish(struct gmnisrv_config *conf)
|
||||
struct gmnisrv_host *next = host->next;
|
||||
free(host->hostname);
|
||||
free(host->root);
|
||||
free(host->index);
|
||||
free(host);
|
||||
host = next;
|
||||
}
|
||||
|
10
src/main.c
10
src/main.c
@ -40,10 +40,10 @@ main(int argc, char **argv)
|
||||
int r = load_config(&conf, confpath);
|
||||
if (r != 0) {
|
||||
server_error("Config load failed");
|
||||
goto exit_conf;
|
||||
goto exit;
|
||||
}
|
||||
|
||||
r = gmnisrv_tls_init(&conf);
|
||||
r = tls_init(&conf);
|
||||
if (r != 0) {
|
||||
server_error("TLS initialization failed");
|
||||
goto exit_conf;
|
||||
@ -52,13 +52,15 @@ main(int argc, char **argv)
|
||||
struct gmnisrv_server server = {0};
|
||||
r = server_init(&server, &conf);
|
||||
if (r != 0) {
|
||||
goto exit;
|
||||
goto exit_tls;
|
||||
}
|
||||
server_run(&server);
|
||||
|
||||
exit:
|
||||
server_finish(&server);
|
||||
exit_tls:
|
||||
tls_finish(&conf);
|
||||
exit_conf:
|
||||
config_finish(&conf);
|
||||
exit:
|
||||
return 0;
|
||||
}
|
||||
|
18
src/server.c
18
src/server.c
@ -210,7 +210,7 @@ disconnect_client(struct gmnisrv_server *server, struct gmnisrv_client *client)
|
||||
static int
|
||||
client_init_ssl(struct gmnisrv_server *server, struct gmnisrv_client *client)
|
||||
{
|
||||
client->ssl = gmnisrv_tls_get_ssl(server->conf, client->sockfd);
|
||||
client->ssl = tls_get_ssl(server->conf, client->sockfd);
|
||||
if (!client->ssl) {
|
||||
client_error(&client->addr,
|
||||
"unable to initialize SSL, disconnecting");
|
||||
@ -377,6 +377,10 @@ sni_callback(SSL *ssl, int *al, void *arg)
|
||||
|
||||
const char *hostname = SSL_get_servername(client->ssl,
|
||||
SSL_get_servername_type(client->ssl));
|
||||
if (!hostname) {
|
||||
return SSL_TLSEXT_ERR_NOACK;
|
||||
}
|
||||
|
||||
struct gmnisrv_host *host = gmnisrv_config_get_host(
|
||||
server->conf, hostname);
|
||||
if (!host) {
|
||||
@ -384,7 +388,7 @@ sni_callback(SSL *ssl, int *al, void *arg)
|
||||
}
|
||||
|
||||
client->host = host;
|
||||
gmnisrv_tls_set_host(client->ssl, client->host);
|
||||
tls_set_host(client->ssl, client->host);
|
||||
return SSL_TLSEXT_ERR_OK;
|
||||
}
|
||||
|
||||
@ -461,6 +465,12 @@ server_run(struct gmnisrv_server *server)
|
||||
void
|
||||
server_finish(struct gmnisrv_server *server)
|
||||
{
|
||||
// TODO
|
||||
(void)server;
|
||||
while (server->nclients) {
|
||||
disconnect_client(server, &server->clients[0]);
|
||||
}
|
||||
for (size_t i = 0; i < server->nfds; ++i) {
|
||||
close(server->fds[i].fd);
|
||||
}
|
||||
free(server->fds);
|
||||
free(server->clients);
|
||||
}
|
||||
|
16
src/tls.c
16
src/tls.c
@ -156,7 +156,7 @@ generate:
|
||||
}
|
||||
|
||||
int
|
||||
gmnisrv_tls_init(struct gmnisrv_config *conf)
|
||||
tls_init(struct gmnisrv_config *conf)
|
||||
{
|
||||
SSL_load_error_strings();
|
||||
ERR_load_crypto_strings();
|
||||
@ -177,8 +177,18 @@ gmnisrv_tls_init(struct gmnisrv_config *conf)
|
||||
return 0;
|
||||
}
|
||||
|
||||
void
|
||||
tls_finish(struct gmnisrv_config *conf)
|
||||
{
|
||||
SSL_CTX_free(conf->tls.ssl_ctx);
|
||||
for (struct gmnisrv_host *host = conf->hosts; host; host = host->next) {
|
||||
X509_free(host->x509);
|
||||
EVP_PKEY_free(host->pkey);
|
||||
}
|
||||
}
|
||||
|
||||
SSL *
|
||||
gmnisrv_tls_get_ssl(struct gmnisrv_config *conf, int fd)
|
||||
tls_get_ssl(struct gmnisrv_config *conf, int fd)
|
||||
{
|
||||
SSL *ssl = SSL_new(conf->tls.ssl_ctx);
|
||||
if (!ssl) {
|
||||
@ -190,7 +200,7 @@ gmnisrv_tls_get_ssl(struct gmnisrv_config *conf, int fd)
|
||||
}
|
||||
|
||||
void
|
||||
gmnisrv_tls_set_host(SSL *ssl, struct gmnisrv_host *host)
|
||||
tls_set_host(SSL *ssl, struct gmnisrv_host *host)
|
||||
{
|
||||
SSL_use_certificate(ssl, host->x509);
|
||||
SSL_use_PrivateKey(ssl, host->pkey);
|
||||
|
Loading…
Reference in New Issue
Block a user