cocoon/server.c
xfy 7df6ada99e refactor(server): 使用跨平台 API 替代 POSIX 依赖
- int fd → cocoon_socket_t 类型统一
- fcntl O_NONBLOCK → cocoon_socket_nonblock()
- close(fd) → cocoon_socket_close()
- 信号处理 → cocoon_signal_setup()
- 文件元数据 → cocoon_file_stat()
- 路径处理 → cocoon_path_join()
- CPU 核心数 → cocoon_cpu_count()
2026-06-05 00:50:34 +08:00

773 lines
25 KiB
C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/**
*
* 基于 coco 协程库实现高并发静态资源服务器。
* 每个客户端连接由一个独立的协程处理,主线程负责 accept。
*
* 架构:
* 主线程: socket() → bind() → listen() → accept() → 创建协程
* 协程: 读取请求 → 解析 HTTP → 服务静态资源 → 关闭连接
*
* 新增功能2026-06-03:
* - 连接空闲超时管理(自动清理僵尸连接)
* - 最大并发连接数限制(防止资源耗尽)
* - 分级日志输出(替代 printf
*
* @author xfy
*/
#include "server.h"
#include "http.h"
#include "static.h"
#include "cocoon.h"
#include "log.h"
#include "multipart.h"
#include "platform.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdatomic.h>
#include "coco.h"
/* 单个连接缓冲区大小 */
#define CONN_BUF_SIZE 8192
/* 默认连接超时(毫秒) */
#define CONN_TIMEOUT_MS 30000
/**
* connection_t - 单个客户端连接上下文
*
* 包含 socket fd、接收缓冲区、解析状态、超时管理。
*/
typedef struct {
cocoon_socket_t fd; /**< 客户端 socket */
char buf[CONN_BUF_SIZE]; /**< 接收缓冲区 */
size_t buf_len; /**< 缓冲区已用长度 */
bool keep_alive; /**< 当前连接是否保持 */
bool closed; /**< 连接是否已关闭 */
const char *root_dir; /**< 静态资源根目录(引用,不拥有) */
uint32_t timeout_ms; /**< 连接空闲超时毫秒(从配置复制) */
coco_timer_t *timer; /**< 空闲超时定时器 */
coco_coro_t *coro; /**< 当前处理协程 */
bool gzip_enabled; /**< 是否启用 gzip 压缩 */
bool brotli_enabled; /**< 是否启用 brotli 压缩 */
} connection_t;
struct server_context {
cocoon_socket_t listen_fd; /**< 监听 socket */
cocoon_config_t config; /**< 配置副本 */
volatile int running; /**< 运行标志 */
coco_sched_t *sched; /**< 协程调度器 */
};
/* 全局活跃连接计数器(线程安全) */
static atomic_int g_active_connections = 0;
/**
* set_nonblocking - 设置 socket 为非阻塞模式
*
* @param fd socket 文件描述符
*/
static void set_nonblocking(cocoon_socket_t fd) {
cocoon_socket_nonblock(fd);
}
/**
* close_connection - 安全关闭连接
*
* 关闭 socket递减活跃连接计数。
*
* @param conn 连接上下文
*/
static void close_connection(connection_t *conn) {
if (conn && conn->fd != COCOON_INVALID_SOCKET) {
cocoon_socket_close(conn->fd);
conn->fd = COCOON_INVALID_SOCKET;
conn->closed = true;
atomic_fetch_sub(&g_active_connections, 1);
}
}
/**
* conn_read - 从连接读取数据(协程安全)
*
* 使用 coco 的 I/O API 进行非阻塞读取,协程自动 yield 等待数据就绪。
* 如果协程调度器不可用(多线程模式),回退到普通 read。
*
* @param conn 连接上下文
* @return 读取的字节数0 表示对端关闭,-1 表示错误
*/
static ssize_t conn_read(connection_t *conn) {
if (!conn || conn->fd == COCOON_INVALID_SOCKET || conn->closed) return -1;
size_t space = CONN_BUF_SIZE - conn->buf_len;
if (space == 0) return -1; /* 缓冲区满 */
ssize_t n;
/* 尝试使用 coco 的异步 I/O */
if (coco_sched_get_current() != NULL) {
n = coco_read(conn->fd, conn->buf + conn->buf_len, space);
} else {
/* 无调度器时直接 read */
n = read(conn->fd, conn->buf + conn->buf_len, space);
}
if (n > 0) {
conn->buf_len += (size_t)n;
}
return n;
}
/**
* conn_read_body - 读取请求体
*
* 从连接缓冲区或 socket 读取剩余请求体数据。
* 如果缓冲区中已有部分数据,优先使用。
*
* @param conn 连接上下文
* @param req HTTP 请求
* @param need 需要读取的字节数
* @return 0 成功,-1 错误
*/
static int conn_read_body(connection_t *conn, http_request_t *req, size_t need) {
if (need == 0) return 0;
if (need > HTTP_MAX_BODY) {
log_warn("请求体过大 (%zu > %d),拒绝", need, HTTP_MAX_BODY);
return -1;
}
req->body = (char *)malloc(need + 1);
if (!req->body) return -1;
req->body[need] = '\0';
size_t got = 0;
/* 先消费缓冲区中的数据 */
if (conn->buf_len > 0) {
size_t from_buf = conn->buf_len < need ? conn->buf_len : need;
memcpy(req->body, conn->buf, from_buf);
got = from_buf;
if (from_buf < conn->buf_len) {
memmove(conn->buf, conn->buf + from_buf, conn->buf_len - from_buf);
}
conn->buf_len -= from_buf;
}
/* 从 socket 读取剩余数据 */
while (got < need) {
ssize_t n;
if (coco_sched_get_current() != NULL) {
n = coco_read(conn->fd, req->body + got, need - got);
} else {
n = cocoon_socket_recv(conn->fd, req->body + got, need - got);
}
if (n > 0) {
got += (size_t)n;
} else if (n < 0) {
int err = cocoon_get_last_error();
if (err == EAGAIN || err == EWOULDBLOCK || err == EINTR) continue;
free(req->body);
req->body = NULL;
return -1;
} else {
/* 对端关闭 */
free(req->body);
req->body = NULL;
return -1;
}
}
req->body_len = got;
return 0;
}
/**
* handle_post_request - 处理 POST 请求
*
* 支持 multipart/form-data 文件上传、JSON 回显和表单回显。
*
* @param fd 客户端 socket
* @param req HTTP 请求
* @param root_dir 静态资源根目录(用于保存上传文件)
* @return true 保持连接
*/
static bool handle_post_request(int fd, const http_request_t *req, const char *root_dir) {
char response[4096];
int n = 0;
/* multipart/form-data 文件上传 */
if (strstr(req->content_type, "multipart/form-data") != NULL) {
char boundary[256];
if (!multipart_extract_boundary(req->content_type, boundary, sizeof(boundary))) {
static_send_error(fd, 400, req->keep_alive);
return req->keep_alive;
}
multipart_part_t *parts = NULL;
int num_parts = 0;
if (multipart_parse(req->body, req->body_len, boundary, &parts, &num_parts) != 0) {
static_send_error(fd, 400, req->keep_alive);
return req->keep_alive;
}
/* 构建 JSON 响应 */
n += snprintf(response + n, sizeof(response) - n,
"{\"method\":\"%s\",\"path\":\"%s\",\"uploaded\":%d,\"files\":[",
http_method_str(req->method), req->path, num_parts);
int files_saved = 0;
for (int i = 0; i < num_parts; i++) {
if (parts[i].filename && parts[i].filename[0] && parts[i].data_len > 0) {
/* 保存文件到 root_dir/uploads/ */
char upload_dir[4096];
int r = snprintf(upload_dir, sizeof(upload_dir), "%s/uploads", root_dir);
if (r > 0 && r < (int)sizeof(upload_dir)) {
/* 创建目录(忽略已存在错误) */
cocoon_mkdir(upload_dir);
char file_path[4096];
r = snprintf(file_path, sizeof(file_path), "%s/%s", upload_dir, parts[i].filename);
if (r > 0 && r < (int)sizeof(file_path)) {
FILE *fp = fopen(file_path, "wb");
if (fp) {
fwrite(parts[i].data, 1, parts[i].data_len, fp);
fclose(fp);
files_saved++;
if (files_saved > 1) {
n += snprintf(response + n, sizeof(response) - n, ",");
}
n += snprintf(response + n, sizeof(response) - n,
"{\"field\":\"%s\",\"filename\":\"%s\",\"size\":%zu,\"path\":\"%s\"}",
parts[i].name ? parts[i].name : "",
parts[i].filename,
parts[i].data_len,
file_path);
}
}
}
}
}
n += snprintf(response + n, sizeof(response) - n, "]}");
multipart_parts_free(parts, num_parts);
char header[512];
int header_len = snprintf(header, sizeof(header),
"HTTP/1.1 200 OK\r\n"
"Content-Type: application/json\r\n"
"Content-Length: %d\r\n"
"Connection: %s\r\n"
"Server: Cocoon/1.0\r\n"
"\r\n",
n, req->keep_alive ? "keep-alive" : "close");
send_all(fd, header, (size_t)header_len);
send_all(fd, response, (size_t)n);
return req->keep_alive;
}
n += snprintf(response + n, sizeof(response) - n,
"{\"method\":\"%s\",\"path\":\"%s\",\"content_type\":\"%s\",\"body_length\":%zu",
http_method_str(req->method), req->path, req->content_type, req->body_len);
if (req->body_len > 0) {
/* 对于 JSON 类型,尝试回显 body */
if (strstr(req->content_type, "application/json") != NULL) {
n += snprintf(response + n, sizeof(response) - n, ",\"body\": ");
/* 直接拼接 JSON body假设客户端发送的是合法 JSON */
size_t body_copy = req->body_len;
if (body_copy > sizeof(response) - n - 64) {
body_copy = sizeof(response) - n - 64;
}
memcpy(response + n, req->body, body_copy);
n += (int)body_copy;
n += snprintf(response + n, sizeof(response) - n, "}");
} else if (strstr(req->content_type, "x-www-form-urlencoded") != NULL) {
n += snprintf(response + n, sizeof(response) - n, ",\"body\":\"");
size_t body_copy = req->body_len;
if (body_copy > sizeof(response) - n - 64) {
body_copy = sizeof(response) - n - 64;
}
memcpy(response + n, req->body, body_copy);
n += (int)body_copy;
n += snprintf(response + n, sizeof(response) - n, "\"}");
} else {
n += snprintf(response + n, sizeof(response) - n, "}");
}
} else {
n += snprintf(response + n, sizeof(response) - n, "}");
}
char header[512];
int header_len = snprintf(header, sizeof(header),
"HTTP/1.1 200 OK\r\n"
"Content-Type: application/json\r\n"
"Content-Length: %d\r\n"
"Connection: %s\r\n"
"Server: Cocoon/1.0\r\n"
"\r\n",
n, req->keep_alive ? "keep-alive" : "close");
send_all(fd, header, (size_t)header_len);
send_all(fd, response, (size_t)n);
return req->keep_alive;
}
/**
* handle_request - 处理单个 HTTP 请求
*
* 从缓冲区解析请求,判断是文件还是目录,调用对应的服务函数。
* 新增:支持 POST 请求体读取和简单回显。
*
* @param conn 连接上下文
* @param root_dir 静态资源根目录
* @return true 保持连接false 关闭连接
*/
static bool handle_request(connection_t *conn, const char *root_dir) {
http_request_t req;
int parsed = http_parse_request(conn->buf, conn->buf_len, &req);
if (parsed < 0) {
if (parsed == -1) {
/* 数据不完整,等待更多数据 */
return true;
}
/* 格式错误 */
static_send_error(conn->fd, 400, false);
return false;
}
/* 消费已解析的数据 */
if ((size_t)parsed < conn->buf_len) {
memmove(conn->buf, conn->buf + parsed, conn->buf_len - (size_t)parsed);
}
conn->buf_len -= (size_t)parsed;
/* 读取请求体(如果需要) */
if (req.content_length > 0) {
size_t need = (size_t)req.content_length;
if (conn_read_body(conn, &req, need) != 0) {
static_send_error(conn->fd, 413, req.keep_alive); /* Payload Too Large */
return req.keep_alive;
}
}
/* 处理 POST */
if (req.method == HTTP_POST) {
bool keep = handle_post_request(conn->fd, &req, conn->root_dir);
http_request_free(&req);
return keep;
}
/* 只支持 GET 和 HEAD */
if (req.method != HTTP_GET && req.method != HTTP_HEAD) {
static_send_error(conn->fd, 405, req.keep_alive);
http_request_free(&req);
return req.keep_alive;
}
/* 安全路径拼接 */
char real_path[4096];
char root_normalized[4096];
if (!cocoon_realpath(root_dir, root_normalized, sizeof(root_normalized))) {
strncpy(root_normalized, root_dir, sizeof(root_normalized) - 1);
root_normalized[sizeof(root_normalized) - 1] = '\0';
}
int n = snprintf(real_path, sizeof(real_path), "%s%s", root_normalized, req.path);
if (n < 0 || (size_t)n >= sizeof(real_path)) {
static_send_error(conn->fd, 400, req.keep_alive);
http_request_free(&req);
return req.keep_alive;
}
/* 路径遍历检查 */
if (strstr(req.path, "..") != NULL) {
char resolved[4096];
if (!cocoon_realpath(real_path, resolved, sizeof(resolved)) ||
strncmp(resolved, root_normalized, strlen(root_normalized)) != 0) {
static_send_error(conn->fd, 403, req.keep_alive);
http_request_free(&req);
return req.keep_alive;
}
snprintf(real_path, sizeof(real_path), "%s", resolved);
}
/* 判断文件类型 */
cocoon_stat_t st;
if (cocoon_file_stat(real_path, &st) != 0) {
static_send_error(conn->fd, 404, req.keep_alive);
http_request_free(&req);
return req.keep_alive;
}
if (cocoon_stat_isdir(&st)) {
/* 目录:尝试 index.html */
char index_path[4096];
if (snprintf(index_path, sizeof(index_path), "%s/index.html", real_path) >= (int)sizeof(index_path)) {
static_send_error(conn->fd, 400, req.keep_alive);
http_request_free(&req);
return req.keep_alive;
}
cocoon_stat_t index_st;
if (cocoon_file_stat(index_path, &index_st) == 0 && cocoon_stat_isreg(&index_st)) {
/* 有 index.html作为文件服务 */
http_request_t index_req = req;
if (snprintf(index_req.path, sizeof(index_req.path), "%s/index.html", req.path) >= (int)sizeof(index_req.path)) {
static_send_error(conn->fd, 400, req.keep_alive);
http_request_free(&req);
return req.keep_alive;
}
static_serve_file(conn->fd, &index_req, root_dir, conn->gzip_enabled, conn->brotli_enabled);
} else {
/* 无 index.html生成目录列表 */
static_serve_directory(conn->fd, &req, root_dir, real_path);
}
} else if (cocoon_stat_isreg(&st)) {
/* 普通文件 */
static_serve_file(conn->fd, &req, root_dir, conn->gzip_enabled, conn->brotli_enabled);
} else {
static_send_error(conn->fd, 403, req.keep_alive);
}
http_request_free(&req);
return req.keep_alive;
}
/**
* conn_timeout_handler - 连接空闲超时回调
*
* 定时器触发时关闭 socket唤醒阻塞在 coco_read 的协程,
* 并发起协程取消请求。
*
* @param arg 连接上下文指针
*/
static void conn_timeout_handler(void *arg) {
connection_t *conn = (connection_t *)arg;
if (!conn) return;
conn->timer = NULL; /* 定时器已触发,自动释放 */
if (conn->fd != COCOON_INVALID_SOCKET) {
log_debug("连接 fd=%llu 空闲超时,强制关闭", (unsigned long long)conn->fd);
conn->closed = true;
/* shutdown 唤醒阻塞在 coco_read 的协程 */
cocoon_socket_shutdown(conn->fd);
}
if (conn->coro) {
coco_cancel(conn->coro);
}
}
/**
* conn_reset_timer - 重置连接空闲定时器
*
* 每次收到数据时调用,取消旧定时器并创建新定时器。
*
* @param conn 连接上下文
* @param timeout_ms 超时毫秒数
*/
static void conn_reset_timer(connection_t *conn, uint32_t timeout_ms) {
if (conn->timer) {
coco_timer_cancel(conn->timer);
}
conn->timer = coco_timer(timeout_ms, conn_timeout_handler, conn);
}
/**
* conn_cancel_timer - 取消连接定时器
*
* @param conn 连接上下文
*/
static void conn_cancel_timer(connection_t *conn) {
if (conn->timer) {
coco_timer_cancel(conn->timer);
conn->timer = NULL;
}
}
/**
* client_handler - 客户端连接协程入口
*
* 每个连接一个协程,循环读取请求并处理,直到连接关闭或超时。
*
* @param arg 连接上下文指针connection_t*
*/
static void client_handler(void *arg) {
connection_t *conn = (connection_t *)arg;
if (!conn) return;
conn->coro = coco_self();
/* 启动空闲定时器 */
uint32_t timeout_ms = conn->timeout_ms > 0 ? conn->timeout_ms : CONN_TIMEOUT_MS;
conn->timer = coco_timer(timeout_ms, conn_timeout_handler, conn);
while (!conn->closed) {
/* 读取数据 */
ssize_t n = conn_read(conn);
if (n < 0) {
if (errno == EAGAIN || errno == EWOULDBLOCK) {
/* 数据不足,继续等待 */
continue;
}
/* coco_read 返回负值错误码(如 COCO_ERROR_CANCELLED或系统错误 */
break;
}
if (n == 0) {
break; /* 对端关闭 */
}
/* 有数据读取,重置定时器 */
conn_reset_timer(conn, timeout_ms);
/* 尝试处理请求 */
bool keep = handle_request(conn, conn->root_dir);
if (!keep) {
break;
}
}
conn_cancel_timer(conn);
close_connection(conn);
free(conn);
}
/**
* accept_loop - 主 accept 循环
*
* 在单线程模式下直接运行,在多线程模式下作为协程运行。
* 循环 accept 新连接,为每个连接创建处理协程。
*
* @param arg 服务器上下文指针
*/
static void accept_loop(void *arg) {
server_context_t *ctx = (server_context_t *)arg;
if (!ctx) return;
uint32_t num_workers = ctx->config.num_workers;
if (num_workers == 0) {
num_workers = cocoon_cpu_count();
if (num_workers == 0) num_workers = 4;
}
log_info("服务器启动于端口 %d", ctx->config.port);
if (ctx->config.threaded) {
log_info("多线程模式: %d 个工作线程", num_workers);
} else {
log_info("单线程模式");
}
log_info("静态资源根目录: %s", ctx->config.root_dir);
if (ctx->config.max_connections > 0) {
log_info("最大并发连接数: %u", ctx->config.max_connections);
}
log_info("连接空闲超时: %u ms", ctx->config.timeout_ms > 0 ? ctx->config.timeout_ms : CONN_TIMEOUT_MS);
while (ctx->running) {
struct sockaddr_in client_addr;
socklen_t addr_len = sizeof(client_addr);
cocoon_socket_t client_fd = accept(ctx->listen_fd,
(struct sockaddr *)&client_addr, &addr_len);
if (client_fd == COCOON_INVALID_SOCKET) {
int err = cocoon_get_last_error();
if (err == EAGAIN || err == EWOULDBLOCK || err == EINTR) {
continue;
}
log_error("accept 失败: %s", cocoon_strerror(err));
break;
}
/* 检查最大连接数限制 */
if (ctx->config.max_connections > 0) {
int current = atomic_load(&g_active_connections);
if (current >= (int)ctx->config.max_connections) {
log_warn("连接数已达上限 (%d/%u),拒绝新连接 fd=%d",
current, ctx->config.max_connections, client_fd);
/* 发送 503 后关闭 */
const char *resp = "HTTP/1.1 503 Service Unavailable\r\n"
"Content-Length: 0\r\n"
"Connection: close\r\n\r\n";
cocoon_socket_send(client_fd, resp, strlen(resp));
cocoon_socket_close(client_fd);
continue;
}
}
/* 设置 TCP_NODELAY 减少延迟 */
int opt = 1;
setsockopt(client_fd, IPPROTO_TCP, TCP_NODELAY, (const char *)&opt, sizeof(opt));
/* 创建连接上下文 */
connection_t *conn = (connection_t *)calloc(1, sizeof(connection_t));
if (!conn) {
close(client_fd);
continue;
}
conn->fd = client_fd;
conn->keep_alive = true;
conn->closed = false;
conn->root_dir = ctx->config.root_dir;
conn->timeout_ms = ctx->config.timeout_ms > 0 ? ctx->config.timeout_ms : CONN_TIMEOUT_MS;
conn->gzip_enabled = ctx->config.gzip_enabled;
conn->brotli_enabled = ctx->config.brotli_enabled;
atomic_fetch_add(&g_active_connections, 1);
log_debug("新连接 fd=%d当前活跃连接: %d", client_fd,
atomic_load(&g_active_connections));
if (ctx->config.threaded && coco_sched_get_current()) {
/* 多线程协程模式:创建协程处理连接 */
coco_coro_t *coro = coco_create(coco_sched_get_current(),
client_handler, conn, 0);
if (!coro) {
log_error("创建协程失败,关闭连接 fd=%d", client_fd);
atomic_fetch_sub(&g_active_connections, 1);
close_connection(conn);
free(conn);
}
} else {
/* 单线程模式:直接调用处理函数(阻塞) */
client_handler(conn);
}
}
}
/**
* server_create - 创建服务器上下文
*
* 初始化监听 socket、配置副本。
*
* @param config 配置指针
* @return 服务器上下文,失败返回 NULL
*/
server_context_t *server_create(const cocoon_config_t *config) {
if (!config || !config->root_dir) return NULL;
server_context_t *ctx = (server_context_t *)calloc(1, sizeof(server_context_t));
if (!ctx) return NULL;
/* 复制配置 */
ctx->config = *config;
ctx->config.root_dir = strdup(config->root_dir);
ctx->running = 1;
/* 创建监听 socket */
ctx->listen_fd = socket(AF_INET, SOCK_STREAM, 0);
if (ctx->listen_fd == COCOON_INVALID_SOCKET) {
free(ctx);
return NULL;
}
/* 允许端口复用 */
int opt = 1;
setsockopt(ctx->listen_fd, SOL_SOCKET, SO_REUSEADDR, &opt, sizeof(opt));
/* 绑定地址 */
struct sockaddr_in addr;
memset(&addr, 0, sizeof(addr));
addr.sin_family = AF_INET;
addr.sin_addr.s_addr = INADDR_ANY;
addr.sin_port = htons(config->port);
if (bind(ctx->listen_fd, (struct sockaddr *)&addr, sizeof(addr)) < 0) {
cocoon_socket_close(ctx->listen_fd);
free(ctx);
return NULL;
}
/* 开始监听 */
if (listen(ctx->listen_fd, 128) < 0) {
cocoon_socket_close(ctx->listen_fd);
free(ctx);
return NULL;
}
/* 非阻塞模式 */
set_nonblocking(ctx->listen_fd);
return ctx;
}
/**
* server_start - 启动服务器(阻塞)
*
* 根据配置选择单线程或多线程模式运行。
*
* @param ctx 服务器上下文
* @return COCOON_OK 成功,负值错误码
*/
int server_start(server_context_t *ctx) {
if (!ctx) return COCOON_ERROR;
if (ctx->config.threaded) {
/* 多线程协程模式 */
uint32_t num_workers = ctx->config.num_workers;
if (num_workers == 0) {
num_workers = cocoon_cpu_count();
if (num_workers == 0) num_workers = 4;
}
/* 启动全局调度器 */
int ret = coco_global_sched_start(num_workers);
if (ret != COCO_OK) {
log_error("启动多线程调度器失败: %d", ret);
return COCOON_ERROR;
}
/* 在调度器上运行 accept 循环 */
/* 注意:当前实现使用主线程直接 accept多线程仅用于工作协程 */
accept_loop(ctx);
coco_global_sched_wait();
coco_global_sched_stop();
} else {
/* 单线程模式 */
accept_loop(ctx);
}
return COCOON_OK;
}
/**
* server_stop - 请求服务器停止
*
* 设置停止标志accept 循环将在下一次迭代时退出。
*
* @param ctx 服务器上下文
*/
void server_stop(server_context_t *ctx) {
if (ctx) {
ctx->running = 0;
}
}
/**
* server_destroy - 销毁服务器上下文
*
* 关闭监听 socket释放配置内存。
*
* @param ctx 服务器上下文
*/
void server_destroy(server_context_t *ctx) {
if (!ctx) return;
if (ctx->listen_fd != COCOON_INVALID_SOCKET) {
cocoon_socket_close(ctx->listen_fd);
ctx->listen_fd = COCOON_INVALID_SOCKET;
}
if (ctx->config.root_dir) {
free((void *)ctx->config.root_dir);
ctx->config.root_dir = NULL;
}
free(ctx);
}