telodendria/src/HttpServer.c

418 lines
8.1 KiB
C
Raw Normal View History

/*
* Copyright (C) 2022 Jordan Bancino <@jordan:bancino.net>
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation files
* (the "Software"), to deal in the Software without restriction,
* including without limitation the rights to use, copy, modify, merge,
* publish, distribute, sublicense, and/or sell copies of the Software,
* and to permit persons to whom the Software is furnished to do so,
* subject to the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
* BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
* ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
2022-08-13 01:30:03 +00:00
#include <NonPosix.h>
#include <HttpServer.h>
2022-08-24 14:06:14 +00:00
#include <Queue.h>
#include <Array.h>
#include <Util.h>
#include <pthread.h>
2022-08-24 14:06:14 +00:00
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
2022-08-12 01:19:52 +00:00
#include <errno.h>
#include <poll.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
struct HttpServer
{
int sd;
unsigned int nThreads;
2022-08-21 16:35:16 +00:00
unsigned int maxConnections;
pthread_t socketThread;
volatile unsigned int stop:1;
volatile unsigned int isRunning:1;
2022-08-12 01:19:52 +00:00
HttpHandler *requestHandler;
void *handlerArgs;
2022-08-24 14:06:14 +00:00
Queue *connQueue;
pthread_mutex_t connQueueMutex;
Array *threadPool;
};
2022-08-26 15:07:54 +00:00
struct HttpServerContext
{
HashMap *requestHeaders;
HttpRequestMethod requestMethod;
char *requestPath;
HashMap *responseHeaders;
HttpStatus responseStatus;
FILE *stream;
};
2022-08-27 01:02:53 +00:00
static HttpServerContext *
HttpServerContextCreate(HttpRequestMethod requestMethod,
char *requestPath, FILE *stream)
{
HttpServerContext *c;
c = malloc(sizeof(HttpServerContext));
if (!c)
{
return NULL;
}
c->requestHeaders = HashMapCreate();
if (!c->requestHeaders)
{
free(c);
return NULL;
}
c->responseHeaders = HashMapCreate();
if (!c->responseHeaders)
{
free(c->requestHeaders);
free(c);
return NULL;
}
c->requestMethod = requestMethod;
c->requestPath = requestPath;
c->stream = stream;
return c;
}
static void
HttpServerContextFree(HttpServerContext *c)
{
if (!c)
{
return;
}
HashMapFree(c->requestHeaders);
HashMapFree(c->responseHeaders);
free(c->requestPath);
fclose(c->stream);
2022-08-24 14:06:14 +00:00
static int
QueueConnection(HttpServer * server, int fd)
{
FILE *fp;
int result;
if (!server)
{
return 0;
}
2022-08-24 20:28:50 +00:00
fp = fdopen(fd, "r+");
2022-08-24 14:06:14 +00:00
if (!fp)
{
return 0;
}
pthread_mutex_lock(&server->connQueueMutex);
result = QueuePush(server->connQueue, fp);
pthread_mutex_unlock(&server->connQueueMutex);
return result;
}
static FILE *
DequeueConnection(HttpServer * server)
{
FILE *fp;
if (!server)
{
return NULL;
}
pthread_mutex_lock(&server->connQueueMutex);
fp = QueuePop(server->connQueue);
pthread_mutex_unlock(&server->connQueueMutex);
return fp;
}
HttpServer *
2022-08-21 16:35:16 +00:00
HttpServerCreate(unsigned short port, unsigned int nThreads, unsigned int maxConnections,
2022-08-12 01:19:52 +00:00
HttpHandler * requestHandler, void *handlerArgs)
{
2022-08-12 01:19:52 +00:00
HttpServer *server;
struct sockaddr_in sa = {0};
2022-08-12 01:19:52 +00:00
if (!requestHandler)
{
return NULL;
}
server = calloc(1, sizeof(HttpServer));
if (!server)
{
goto error;
}
server->threadPool = ArrayCreate();
if (!server->threadPool)
{
goto error;
}
2022-08-24 14:06:14 +00:00
server->connQueue = QueueCreate(maxConnections);
if (!server->connQueue)
{
goto error;
}
if (pthread_mutex_init(&server->connQueueMutex, NULL) != 0)
{
goto error;
2022-08-24 14:06:14 +00:00
}
2022-08-13 01:30:03 +00:00
server->sd = socket(AF_INET, SOCK_STREAM | SOCK_NONBLOCK, 0);
if (server->sd < 0)
{
goto error;
}
sa.sin_family = AF_INET;
2022-08-24 18:37:32 +00:00
sa.sin_port = htons(port);
sa.sin_addr.s_addr = htonl(INADDR_ANY);
if (bind(server->sd, (struct sockaddr *) & sa, sizeof(sa)) < 0)
{
goto error;
}
2022-08-21 16:35:16 +00:00
if (listen(server->sd, maxConnections) < 0)
{
goto error;
}
server->nThreads = nThreads;
2022-08-21 16:35:16 +00:00
server->maxConnections = maxConnections;
server->requestHandler = requestHandler;
server->handlerArgs = handlerArgs;
server->stop = 0;
server->isRunning = 0;
return server;
error:
if (server)
{
if (server->connQueue)
{
QueueFree(server->connQueue);
}
if (server->connQueueMutex)
{
pthread_mutex_destroy(&server->connQueueMutex);
}
if (server->threadPool)
{
ArrayFree(server->threadPool);
}
if (server->sd)
{
close(server->sd);
}
free(server);
}
return NULL;
}
void
HttpServerFree(HttpServer * server)
{
if (!server)
{
return;
}
close(server->sd);
QueueFree(server->connQueue);
pthread_mutex_destroy(&server->connQueueMutex);
ArrayFree(server->threadPool);
free(server);
}
static void *
HttpServerWorkerThread(void *args)
{
HttpServer *server = (HttpServer *) args;
while (!server->stop)
{
FILE *fp = DequeueConnection(server);
if (!fp)
{
/* Block for 1 millisecond before continuting so we don't
* murder the CPU */
UtilSleepMillis(1);
continue;
}
fprintf(fp, "HTTP/1.1 500 Internal Server Error\n");
fprintf(fp, "Server: Telodendria v" TELODENDRIA_VERSION "\n");
fprintf(fp, "Content-Type: application/json\n");
fprintf(fp, "\n");
fprintf(fp, "{}\n");
fclose(fp);
}
return NULL;
}
static void *
HttpServerEventThread(void *args)
{
HttpServer *server = (HttpServer *) args;
2022-08-12 01:19:52 +00:00
struct pollfd pollFds[1];
2022-08-24 14:06:14 +00:00
FILE *fp;
size_t i;
server->isRunning = 1;
server->stop = 0;
2022-08-12 01:19:52 +00:00
pollFds[0].fd = server->sd;
pollFds[0].events = POLLIN;
for (i = 0; i < server->nThreads; i++)
{
pthread_t *workerThread = malloc(sizeof(pthread_t));
if (!workerThread)
{
/* TODO: Make the event thread return an error to the main
* thread */
return NULL;
}
if (pthread_create(workerThread, NULL, HttpServerWorkerThread, server) != 0)
{
/* TODO: Make the event thread return an error to the main
* thread */
return NULL;
}
ArrayAdd(server->threadPool, workerThread);
}
while (!server->stop)
{
2022-08-12 01:19:52 +00:00
struct sockaddr_storage addr;
socklen_t addrLen = sizeof(addr);
int connFd;
int pollResult;
pollResult = poll(pollFds, 1, 500);
2022-08-12 01:19:52 +00:00
if (pollResult < 0)
{
/* The poll either timed out, or was interrupted. */
continue;
}
connFd = accept(server->sd, (struct sockaddr *) & addr, &addrLen);
if (connFd < 0)
{
continue;
}
2022-08-24 14:06:14 +00:00
QueueConnection(server, connFd);
}
for (i = 0; i < server->nThreads; i++)
{
pthread_t *workerThread = ArrayGet(server->threadPool, i);
pthread_join(*workerThread, NULL);
free(workerThread);
}
2022-08-24 14:06:14 +00:00
while ((fp = DequeueConnection(server)))
{
fclose(fp);
}
server->isRunning = 0;
return NULL;
}
int
HttpServerStart(HttpServer * server)
{
if (!server)
{
return 0;
}
if (server->isRunning)
{
return 1;
}
if (pthread_create(&server->socketThread, NULL, HttpServerEventThread, server) != 0)
{
return 0;
}
return 1;
}
void
HttpServerJoin(HttpServer * server)
{
if (!server)
{
return;
}
pthread_join(server->socketThread, NULL);
}
void
HttpServerStop(HttpServer * server)
{
if (!server)
{
return;
}
server->stop = 1;
}