1
0
mirror of https://github.com/lxsang/ant-http synced 2024-07-01 12:59:47 +02:00

Use blocking select to monitor ports, no need to use a thread for each port

This commit is contained in:
lxsang 2020-09-23 13:10:54 +02:00
parent 9da33124bc
commit 708e492c49
4 changed files with 113 additions and 80 deletions

View File

@ -1,5 +1,5 @@
# initialise autoconf and set up some basic information about the program were packaging # initialise autoconf and set up some basic information about the program were packaging
AC_INIT([antd], [1.0.5b], [xsang.le@gmail.com]) AC_INIT([antd], [1.0.6b], [xsang.le@gmail.com])
# Were going to use automake for this project # Were going to use automake for this project
AM_INIT_AUTOMAKE([subdir-objects]) AM_INIT_AUTOMAKE([subdir-objects])

BIN
dist/antd-1.0.6b.tar.gz vendored Normal file

Binary file not shown.

View File

@ -104,6 +104,8 @@ static int config_handler(void *conf, const char *section, const char *name,
//char * ppath = NULL; //char * ppath = NULL;
if (MATCH("SERVER", "plugins")) if (MATCH("SERVER", "plugins"))
{ {
if (pconfig->plugins_dir)
free(pconfig->plugins_dir);
pconfig->plugins_dir = strdup(value); pconfig->plugins_dir = strdup(value);
if (stat(pconfig->plugins_dir, &st) == -1) if (stat(pconfig->plugins_dir, &st) == -1)
mkdirp(pconfig->plugins_dir, 0755); mkdirp(pconfig->plugins_dir, 0755);

189
httpd.c
View File

@ -8,6 +8,7 @@
#include <netinet/in.h> #include <netinet/in.h>
#include <arpa/inet.h> #include <arpa/inet.h>
#include <sys/socket.h> #include <sys/socket.h>
#include <errno.h>
#include "http_server.h" #include "http_server.h"
#include "lib/ini.h" #include "lib/ini.h"
#include "lib/scheduler.h" #include "lib/scheduler.h"
@ -163,96 +164,85 @@ static void stop_serve(int dummy)
sigprocmask(SIG_UNBLOCK, &mask, NULL); sigprocmask(SIG_UNBLOCK, &mask, NULL);
} }
static void *antd_monitor(port_config_t *pcnf) static void antd_monitor(port_config_t *pcnf)
{ {
antd_task_t *task = NULL; antd_task_t *task = NULL;
struct timeval timeout;
int client_sock = -1; int client_sock = -1;
struct sockaddr_in client_name; struct sockaddr_in client_name;
socklen_t client_name_len = sizeof(client_name); socklen_t client_name_len = sizeof(client_name);
char *client_ip = NULL; char *client_ip = NULL;
config_t *conf = config(); config_t *conf = config();
LOG("Listening on port %d", pcnf->port); if (pcnf->sock > 0)
while (scheduler.status)
{ {
if (conf->connection > conf->maxcon) client_sock = accept(pcnf->sock, (struct sockaddr *)&client_name, &client_name_len);
if (client_sock > 0)
{ {
//ERROR("Reach max connection %d", conf->connection); // just dump the scheduler when we have a connection
timeout.tv_sec = 0; antd_client_t *client = (antd_client_t *)malloc(sizeof(antd_client_t));
timeout.tv_usec = 10000; // 5 ms antd_request_t *request = (antd_request_t *)malloc(sizeof(*request));
select(0, NULL, NULL, NULL, &timeout); request->client = client;
continue; request->request = dict();
} client->zstream = NULL;
if (pcnf->sock > 0) client->z_level = ANTD_CNONE;
{
client_sock = accept(pcnf->sock, (struct sockaddr *)&client_name, &client_name_len);
if (client_sock > 0)
{
// just dump the scheduler when we have a connection
antd_client_t *client = (antd_client_t *)malloc(sizeof(antd_client_t));
antd_request_t *request = (antd_request_t *)malloc(sizeof(*request));
request->client = client;
request->request = dict();
client->zstream = NULL;
client->z_level = ANTD_CNONE;
dictionary_t xheader = dict(); dictionary_t xheader = dict();
dput(request->request, "REQUEST_HEADER", xheader); dput(request->request, "REQUEST_HEADER", xheader);
dput(request->request, "REQUEST_DATA", dict()); dput(request->request, "REQUEST_DATA", dict());
dput(xheader, "SERVER_PORT", (void *)__s("%d", pcnf->port)); dput(xheader, "SERVER_PORT", (void *)__s("%d", pcnf->port));
dput(xheader, "SERVER_WWW_ROOT", (void *)strdup(pcnf->htdocs)); dput(xheader, "SERVER_WWW_ROOT", (void *)strdup(pcnf->htdocs));
/* /*
get the remote IP get the remote IP
*/ */
if (client_name.sin_family == AF_INET) if (client_name.sin_family == AF_INET)
{ {
client_ip = inet_ntoa(client_name.sin_addr); client_ip = inet_ntoa(client_name.sin_addr);
LOG("Connect to client IP: %s on port:%d (%d)", client_ip, pcnf->port, client_sock); LOG("Connect to client IP: %s on port:%d (%d)", client_ip, pcnf->port, client_sock);
// ip address // ip address
dput(xheader, "REMOTE_ADDR", (void *)strdup(client_ip)); dput(xheader, "REMOTE_ADDR", (void *)strdup(client_ip));
//LOG("socket: %d\n", client_sock); //LOG("socket: %d\n", client_sock);
} }
// set timeout to socket // set timeout to socket
set_nonblock(client_sock); set_nonblock(client_sock);
client->sock = client_sock; client->sock = client_sock;
time(&client->last_io); time(&client->last_io);
client->ssl = NULL; client->ssl = NULL;
client->state = ANTD_CLIENT_ACCEPT; client->state = ANTD_CLIENT_ACCEPT;
client->z_status = 0; client->z_status = 0;
#ifdef USE_OPENSSL #ifdef USE_OPENSSL
if (pcnf->usessl == 1) if (pcnf->usessl == 1)
{
client->ssl = (void *)SSL_new(ctx);
if (!client->ssl)
{ {
client->ssl = (void *)SSL_new(ctx); finish_request(request);
if (!client->ssl) return;
continue; }
SSL_set_fd((SSL *)client->ssl, client->sock); SSL_set_fd((SSL *)client->ssl, client->sock);
// this can be used in the protocol select callback to // this can be used in the protocol select callback to
// set the protocol selected by the server // set the protocol selected by the server
if (!SSL_set_ex_data((SSL *)client->ssl, client->sock, client)) if (!SSL_set_ex_data((SSL *)client->ssl, client->sock, client))
{ {
ERROR("Cannot set ex data to ssl client:%d", client->sock); ERROR("Cannot set ex data to ssl client:%d", client->sock);
} }
/*if (SSL_accept((SSL*)client->ssl) <= 0) { /*if (SSL_accept((SSL*)client->ssl) <= 0) {
LOG("EROOR accept\n"); LOG("EROOR accept\n");
ERR_print_errors_fp(stderr); ERR_print_errors_fp(stderr);
antd_close(client); antd_close(client);
continue; continue;
}*/ }*/
}
#endif
pthread_mutex_lock(&scheduler.scheduler_lock);
conf->connection++;
pthread_mutex_unlock(&scheduler.scheduler_lock);
// create callback for the server
task = antd_create_task(accept_request, (void *)request, finish_request, client->last_io);
//task->type = LIGHT;
antd_add_task(&scheduler, task);
} }
#endif
pthread_mutex_lock(&scheduler.scheduler_lock);
conf->connection++;
pthread_mutex_unlock(&scheduler.scheduler_lock);
// create callback for the server
task = antd_create_task(accept_request, (void *)request, finish_request, client->last_io);
//task->type = LIGHT;
antd_add_task(&scheduler, task);
} }
} }
return NULL;
} }
static void client_statistic(int fd, void *user_data) static void client_statistic(int fd, void *user_data)
@ -305,10 +295,13 @@ static void client_statistic(int fd, void *user_data)
int main(int argc, char *argv[]) int main(int argc, char *argv[])
{ {
pthread_t monitor_th; pthread_t sched_th;
// startup port // startup port
chain_t it; chain_t it;
struct timeval timeout;
port_config_t *pcnf; port_config_t *pcnf;
fd_set master_set, working_set;
int status, maxfd = 0;
int nlisten = 0; int nlisten = 0;
// load the config first // load the config first
if (argc == 1) if (argc == 1)
@ -348,6 +341,7 @@ int main(int argc, char *argv[])
stop_serve(0); stop_serve(0);
exit(1); exit(1);
} }
FD_ZERO(&master_set);
for_each_assoc(it, conf->ports) for_each_assoc(it, conf->ports)
{ {
pcnf = (port_config_t *)it->value; pcnf = (port_config_t *)it->value;
@ -356,17 +350,10 @@ int main(int argc, char *argv[])
pcnf->sock = startup(&pcnf->port); pcnf->sock = startup(&pcnf->port);
if (pcnf->sock > 0) if (pcnf->sock > 0)
{ {
if (pthread_create(&monitor_th, NULL, (void *(*)(void *))antd_monitor, (void *)pcnf) != 0) set_nonblock(pcnf->sock);
{ FD_SET(pcnf->sock, &master_set);
ERROR("pthread_create: cannot create worker"); LOG("Listening on port %d", pcnf->port);
stop_serve(0); maxfd = pcnf->sock > maxfd ? pcnf->sock : maxfd;
exit(1);
}
else
{
// reclaim data when exit
pthread_detach(monitor_th);
}
nlisten++; nlisten++;
} }
else else
@ -381,7 +368,51 @@ int main(int argc, char *argv[])
stop_serve(0); stop_serve(0);
exit(1); exit(1);
} }
antd_wait(&scheduler); // Start scheduler
if (pthread_create(&sched_th, NULL, (void *(*)(void *))antd_wait, (void *)&scheduler) != 0)
{
ERROR("pthread_create: cannot start scheduler thread");
stop_serve(0);
exit(1);
}
else
{
// reclaim data when exit
pthread_detach(sched_th);
}
while (scheduler.status)
{
if (conf->connection > conf->maxcon)
{
//ERROR("Reach max connection %d", conf->connection);
timeout.tv_sec = 0;
timeout.tv_usec = 10000; // 5 ms
select(0, NULL, NULL, NULL, &timeout);
continue;
}
FD_ZERO(&working_set);
memcpy(&working_set, &master_set, sizeof(master_set));
// blocking select
status = select(maxfd + 1, &working_set, NULL, NULL, NULL);
if (status < 0)
{
ERROR("select() error: %s", strerror(errno));
break;
}
if (status == 0)
{
continue;
}
for_each_assoc(it, conf->ports)
{
pcnf = (port_config_t *)it->value;
if (pcnf && pcnf->sock > 0 && FD_ISSET(pcnf->sock, &working_set))
{
antd_monitor(pcnf);
}
}
}
stop_serve(0); stop_serve(0);
return (0); return (0);
} }