1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258
|
#include "server.h"
#include "worker.h"
#include "client.h"
#include "conf.h"
#include "version.h"
#include <stdlib.h>
#include <stdio.h>
#include <unistd.h>
#include <signal.h>
#include <string.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <fcntl.h>
#include <errno.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/ioctl.h>
/**
* Sets up a non-blocking socket
*/
static int
socket_setup(struct server *s, const char *ip, int port) {
int reuse = 1;
struct sockaddr_in addr;
socklen_t len = sizeof(addr);
int fd, ret;
memset(&addr, 0, sizeof(addr));
#if defined __BSD__
addr.sin_len = sizeof(struct sockaddr_in);
#endif
addr.sin_family = AF_INET;
addr.sin_port = htons(port);
addr.sin_addr.s_addr = inet_addr(ip);
/* this sad list of tests could use a Maybe monad... */
/* create socket */
fd = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
if (-1 == fd) {
slog(s, WEBDIS_ERROR, strerror(errno), 0);
return -1;
}
/* reuse address if we've bound to it before. */
if (setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &reuse,
sizeof(reuse)) < 0) {
slog(s, WEBDIS_ERROR, strerror(errno), 0);
return -1;
}
/* set socket as non-blocking. */
ret = fcntl(fd, F_SETFD, O_NONBLOCK);
if (0 != ret) {
slog(s, WEBDIS_ERROR, strerror(errno), 0);
return -1;
}
/* bind */
ret = bind(fd, (struct sockaddr*)&addr, len);
if (0 != ret) {
slog(s, WEBDIS_ERROR, strerror(errno), 0);
return -1;
}
/* listen */
ret = listen(fd, SOMAXCONN);
if (0 != ret) {
slog(s, WEBDIS_ERROR, strerror(errno), 0);
return -1;
}
if (getsockname(fd, (struct sockaddr *)&addr, &len) != -1) {
const char* comment = "Webdis listening on port %d";
int port_num = ntohs(addr.sin_port);
char* buffer = malloc(strlen(comment) -2 + strlen("65535") + 1);
sprintf(buffer, comment, port_num);
slog(s, WEBDIS_INFO, buffer , 0);
free(buffer);
}
/* there you go, ready to accept! */
return fd;
}
struct server *
server_new(const char *cfg_file) {
int i;
struct server *s = calloc(1, sizeof(struct server));
s->log.fd = -1;
s->cfg = conf_read(cfg_file);
/* workers */
s->w = calloc(s->cfg->http_threads, sizeof(struct worker*));
for(i = 0; i < s->cfg->http_threads; ++i) {
s->w[i] = worker_new(s);
}
return s;
}
static void
server_can_accept(int fd, short event, void *ptr) {
struct server *s = ptr;
struct worker *w;
struct http_client *c;
int client_fd;
struct sockaddr_in addr;
socklen_t addr_sz = sizeof(addr);
char on = 1;
(void)event;
/* select worker to send the client to */
w = s->w[s->next_worker];
/* accept client */
client_fd = accept(fd, (struct sockaddr*)&addr, &addr_sz);
/* make non-blocking */
ioctl(client_fd, (int)FIONBIO, (char *)&on);
/* create client and send to worker. */
if(client_fd > 0) {
c = http_client_new(w, client_fd, addr.sin_addr.s_addr);
worker_add_client(w, c);
/* loop over ring of workers */
s->next_worker = (s->next_worker + 1) % s->cfg->http_threads;
} else { /* too many connections */
slog(s, WEBDIS_NOTICE, "Too many connections", 0);
}
}
/**
* Daemonize server.
* (taken from Redis)
*/
static void
server_daemonize(const char *pidfile) {
int fd;
if (fork() != 0) exit(0); /* parent exits */
setsid(); /* create a new session */
/* Every output goes to /dev/null. */
if ((fd = open("/dev/null", O_RDWR, 0)) != -1) {
dup2(fd, STDIN_FILENO);
dup2(fd, STDOUT_FILENO);
dup2(fd, STDERR_FILENO);
if (fd > STDERR_FILENO) close(fd);
}
/* write pidfile */
if (pidfile) {
FILE *f = fopen(pidfile, "w");
if (f) {
fprintf(f, "%d\n", (int)getpid());
fclose(f);
}
}
}
/* global pointer to the server object, used in signal handlers */
static struct server *__server;
static void
server_handle_signal(int id) {
switch(id) {
case SIGHUP:
slog_init(__server);
break;
case SIGTERM:
case SIGINT:
slog(__server, WEBDIS_INFO, "Webdis terminating", 0);
exit(0);
break;
default:
break;
}
}
static void
server_install_signal_handlers(struct server *s) {
__server = s;
signal(SIGHUP, server_handle_signal);
signal(SIGTERM, server_handle_signal);
signal(SIGINT, server_handle_signal);
}
int
server_start(struct server *s) {
int i, ret;
/* initialize libevent */
s->base = event_base_new();
if(s->cfg->daemonize) {
server_daemonize(s->cfg->pidfile);
/* sometimes event mech gets lost on fork */
if(event_reinit(s->base) != 0) {
fprintf(stderr, "Error: event_reinit failed after fork");
}
}
/* ignore sigpipe */
#ifdef SIGPIPE
signal(SIGPIPE, SIG_IGN);
#endif
slog_init(s);
/* install signal handlers */
server_install_signal_handlers(s);
/* start worker threads */
for(i = 0; i < s->cfg->http_threads; ++i) {
worker_start(s->w[i]);
}
/* create socket */
s->fd = socket_setup(s, s->cfg->http_host, s->cfg->http_port);
if(s->fd < 0) {
return -1;
}
/*set keepalive socket option to do with half connection*/
int keep_alive = 1;
setsockopt(s->fd , SOL_SOCKET, SO_KEEPALIVE, (void*)&keep_alive, sizeof(keep_alive));
/* start http server */
event_set(&s->ev, s->fd, EV_READ | EV_PERSIST, server_can_accept, s);
event_base_set(s->base, &s->ev);
ret = event_add(&s->ev, NULL);
if(ret < 0) {
slog(s, WEBDIS_ERROR, "Error calling event_add on socket", 0);
return -1;
}
slog(s, WEBDIS_INFO, "Webdis " WEBDIS_VERSION " up and running", 0);
event_base_dispatch(s->base);
return 0;
}
|