redict/src/connection.c
Drew DeVault 50ee0f5be8 all: let's go LGPL over GPL
Based on feedback from interested parties
2024-03-21 20:11:44 +01:00

190 lines
4.6 KiB
C

// Copyright (C) 2022 zhenwei pi
// SPDX-FileCopyrightText: 2024 Redict Contributors
// SPDX-FileCopyrightText: 2024 Salvatore Sanfilippo <antirez at gmail dot com>
//
// SPDX-License-Identifier: BSD-3-Clause
// SPDX-License-Identifier: LGPL-3.0-only
#include "server.h"
#include "connection.h"
static ConnectionType *connTypes[CONN_TYPE_MAX];
int connTypeRegister(ConnectionType *ct) {
const char *typename = ct->get_type(NULL);
ConnectionType *tmpct;
int type;
/* find an empty slot to store the new connection type */
for (type = 0; type < CONN_TYPE_MAX; type++) {
tmpct = connTypes[type];
if (!tmpct)
break;
/* ignore case, we really don't care "tls"/"TLS" */
if (!strcasecmp(typename, tmpct->get_type(NULL))) {
serverLog(LL_WARNING, "Connection types %s already registered", typename);
return C_ERR;
}
}
serverLog(LL_VERBOSE, "Connection type %s registered", typename);
connTypes[type] = ct;
if (ct->init) {
ct->init();
}
return C_OK;
}
int connTypeInitialize(void) {
/* currently socket connection type is necessary */
serverAssert(RedictRegisterConnectionTypeSocket() == C_OK);
/* currently unix socket connection type is necessary */
serverAssert(RedictRegisterConnectionTypeUnix() == C_OK);
/* may fail if without BUILD_TLS=yes */
RedictRegisterConnectionTypeTLS();
return C_OK;
}
ConnectionType *connectionByType(const char *typename) {
ConnectionType *ct;
for (int type = 0; type < CONN_TYPE_MAX; type++) {
ct = connTypes[type];
if (!ct)
break;
if (!strcasecmp(typename, ct->get_type(NULL)))
return ct;
}
serverLog(LL_WARNING, "Missing implement of connection type %s", typename);
return NULL;
}
/* Cache TCP connection type, query it by string once */
ConnectionType *connectionTypeTcp(void) {
static ConnectionType *ct_tcp = NULL;
if (ct_tcp != NULL)
return ct_tcp;
ct_tcp = connectionByType(CONN_TYPE_SOCKET);
serverAssert(ct_tcp != NULL);
return ct_tcp;
}
/* Cache TLS connection type, query it by string once */
ConnectionType *connectionTypeTls(void) {
static ConnectionType *ct_tls = NULL;
static int cached = 0;
/* Unlike the TCP and Unix connections, the TLS one can be missing
* So we need the cached pointer to handle NULL correctly too. */
if (!cached) {
cached = 1;
ct_tls = connectionByType(CONN_TYPE_TLS);
}
return ct_tls;
}
/* Cache Unix connection type, query it by string once */
ConnectionType *connectionTypeUnix(void) {
static ConnectionType *ct_unix = NULL;
if (ct_unix != NULL)
return ct_unix;
ct_unix = connectionByType(CONN_TYPE_UNIX);
return ct_unix;
}
int connectionIndexByType(const char *typename) {
ConnectionType *ct;
for (int type = 0; type < CONN_TYPE_MAX; type++) {
ct = connTypes[type];
if (!ct)
break;
if (!strcasecmp(typename, ct->get_type(NULL)))
return type;
}
return -1;
}
void connTypeCleanupAll(void) {
ConnectionType *ct;
int type;
for (type = 0; type < CONN_TYPE_MAX; type++) {
ct = connTypes[type];
if (!ct)
break;
if (ct->cleanup)
ct->cleanup();
}
}
/* walk all the connection types until has pending data */
int connTypeHasPendingData(void) {
ConnectionType *ct;
int type;
int ret = 0;
for (type = 0; type < CONN_TYPE_MAX; type++) {
ct = connTypes[type];
if (ct && ct->has_pending_data && (ret = ct->has_pending_data())) {
return ret;
}
}
return ret;
}
/* walk all the connection types and process pending data for each connection type */
int connTypeProcessPendingData(void) {
ConnectionType *ct;
int type;
int ret = 0;
for (type = 0; type < CONN_TYPE_MAX; type++) {
ct = connTypes[type];
if (ct && ct->process_pending_data) {
ret += ct->process_pending_data();
}
}
return ret;
}
sds getListensInfoString(sds info) {
for (int j = 0; j < CONN_TYPE_MAX; j++) {
connListener *listener = &server.listeners[j];
if (listener->ct == NULL)
continue;
info = sdscatfmt(info, "listener%i:name=%s", j, listener->ct->get_type(NULL));
for (int i = 0; i < listener->count; i++) {
info = sdscatfmt(info, ",bind=%s", listener->bindaddr[i]);
}
if (listener->port)
info = sdscatfmt(info, ",port=%i", listener->port);
info = sdscatfmt(info, "\r\n");
}
return info;
}