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 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423
|
/* Copyright (c) 2007-2009, UNINETT AS
* Copyright (c) 2012, NORDUnet A/S
* Copyright (c) 2023, SWITCH */
/* See LICENSE for licensing information. */
#include <limits.h>
#include <netdb.h>
#include <netinet/in.h>
#include <signal.h>
#include <string.h>
#include <sys/socket.h>
#include <unistd.h>
#ifdef SYS_SOLARIS
#include <fcntl.h>
#endif
#include "hostport.h"
#include "list.h"
#include "radsecproxy.h"
#include <arpa/inet.h>
#include <ctype.h>
#include <poll.h>
#include <pthread.h>
#include <regex.h>
#include <sys/time.h>
#include <sys/types.h>
#include <sys/wait.h>
#ifdef RADPROT_TCP
#include "debug.h"
#include "util.h"
static void setprotoopts(struct commonprotoopts *opts);
static char **getlistenerargs(void);
void *tcplistener(void *arg);
int tcpconnect(struct server *server, int timeout, int reconnect);
void *tcpclientrd(void *arg);
int clientradputtcp(struct server *server, unsigned char *rad, int radlen);
void tcpsetsrcres(void);
static const struct protodefs protodefs = {
"tcp",
NULL, /* secretdefault */
SOCK_STREAM, /* socktype */
"1812", /* portdefault */
0, /* retrycountdefault */
0, /* retrycountmax */
REQUEST_RETRY_INTERVAL *REQUEST_RETRY_COUNT, /* retryintervaldefault */
60, /* retryintervalmax */
DUPLICATE_INTERVAL, /* duplicateintervaldefault */
setprotoopts, /* setprotoopts */
getlistenerargs, /* getlistenerargs */
tcplistener, /* listener */
tcpconnect, /* connecter */
tcpclientrd, /* clientconnreader */
clientradputtcp, /* clientradput */
NULL, /* addclient */
NULL, /* addserverextra */
tcpsetsrcres, /* setsrcres */
NULL /* initextra */
};
static struct addrinfo *srcres = NULL;
static uint8_t handle;
static struct commonprotoopts *protoopts = NULL;
const struct protodefs *tcpinit(uint8_t h) {
handle = h;
return &protodefs;
}
static void setprotoopts(struct commonprotoopts *opts) {
protoopts = opts;
}
static char **getlistenerargs(void) {
return protoopts ? protoopts->listenargs : NULL;
}
void tcpsetsrcres(void) {
if (!srcres)
srcres =
resolvepassiveaddrinfo(protoopts ? protoopts->sourcearg : NULL,
AF_UNSPEC, NULL, protodefs.socktype);
}
int tcpconnect(struct server *server, int timeout, int reconnect) {
struct timeval now, start;
int firsttry = 1;
uint32_t wait;
struct addrinfo *source = NULL;
struct list_node *entry;
struct hostportres *hp;
debug(DBG_DBG, "tcpconnect: %s to %s", reconnect ? "reconnecting" : "initial connection", server->conf->name);
pthread_mutex_lock(&server->lock);
if (server->state == RSP_SERVER_STATE_CONNECTED)
server->state = RSP_SERVER_STATE_RECONNECTING;
pthread_mutex_unlock(&server->lock);
if (server->conf->source) {
source = resolvepassiveaddrinfo(server->conf->source, AF_UNSPEC, NULL, protodefs.socktype);
if (!source)
debug(DBG_WARN, "tcpconnect: could not resolve source address to bind for server %s, using default", server->conf->name);
}
gettimeofday(&start, NULL);
for (;;) {
if (server->sock >= 0)
close(server->sock);
server->sock = -1;
wait = connect_wait(start, server->connecttime, firsttry);
gettimeofday(&now, NULL);
if (timeout && (now.tv_sec - start.tv_sec) + wait > timeout) {
debug(DBG_DBG, "tcpconnect: timeout");
if (source)
freeaddrinfo(source);
return 0;
}
if (wait)
debug(DBG_INFO, "Next connection attempt to %s in %lds", server->conf->name, wait);
sleep(wait);
firsttry = 0;
for (entry = list_first(server->conf->hostports); entry; entry = list_next(entry)) {
hp = (struct hostportres *)entry->data;
debug(DBG_INFO, "tcpconnect: trying to open TCP connection to server %s (%s port %s)", server->conf->name, hp->host, hp->port);
if ((server->sock = connecttcp(hp->addrinfo, source ? source : srcres, list_count(server->conf->hostports) > 1 ? 5 : 30)) >= 0) {
debug(DBG_WARN, "tcpconnect: TCP connection to server %s (%s port %s) up", server->conf->name, hp->host, hp->port);
break;
}
}
if (server->sock < 0) {
debug(DBG_ERR, "tcpconnect: TCP connection to server %s failed", server->conf->name);
continue;
}
if (server->conf->keepalive)
enable_keepalive(server->sock);
break;
}
gettimeofday(&server->connecttime, NULL);
pthread_mutex_lock(&server->lock);
server->state = RSP_SERVER_STATE_CONNECTED;
server->lostrqs = 0;
pthread_mutex_unlock(&server->lock);
pthread_mutex_lock(&server->newrq_mutex);
server->conreset = reconnect;
pthread_cond_signal(&server->newrq_cond);
pthread_mutex_unlock(&server->newrq_mutex);
if (source)
freeaddrinfo(source);
return 1;
}
/* timeout in seconds, 0 means no timeout (blocking), returns when num bytes have been read, or timeout */
/* returns 0 on timeout, -1 on error and num if ok */
int tcpreadtimeout(int s, unsigned char *buf, int num, int timeout) {
int ndesc, cnt, len;
struct pollfd fds[1];
if (s < 0)
return -1;
/* make socket non-blocking? */
for (len = 0; len < num; len += cnt) {
fds[0].fd = s;
fds[0].events = POLLIN;
ndesc = poll(fds, 1, timeout ? timeout * 1000 : -1);
if (ndesc < 1)
return ndesc;
if (fds[0].revents & (POLLERR | POLLHUP | POLLNVAL)) {
return -1;
}
cnt = read(s, buf + len, num - len);
if (cnt <= 0)
return -1;
}
return num;
}
/* timeout in seconds, 0 means no timeout (blocking)
return 0 on timeout, <0 on error */
int radtcpget(int s, int timeout, uint8_t **buf) {
int cnt, len;
unsigned char init_buf[4];
cnt = tcpreadtimeout(s, init_buf, 4, timeout);
if (cnt < 1) {
debug(DBG_DBG, cnt ? "radtcpget: connection lost" : "radtcpget: timeout");
return cnt;
}
len = get_checked_rad_length(init_buf);
if (len <= 0) {
debug(DBG_ERR, "radtcpget: invalid message length (%d)! closing connection!", -len);
return len;
}
*buf = malloc(len);
if (!*buf) {
debug(DBG_ERR, "radtcpget: malloc failed! closing connection!");
return -1;
}
memcpy(*buf, init_buf, 4);
cnt = tcpreadtimeout(s, *buf + 4, len - 4, timeout);
if (cnt < 1) {
debug(DBG_DBG, cnt ? "radtcpget: connection lost" : "radtcpget: timeout");
free(*buf);
*buf = NULL;
return cnt;
}
debug(DBG_DBG, "radtcpget: got %d bytes", len);
return len;
}
int clientradputtcp(struct server *server, unsigned char *rad, int radlen) {
int cnt;
struct clsrvconf *conf = server->conf;
if (radlen <= 0) {
debug(DBG_ERR, "clientradputtcp: invalid buffer (length)");
return 0;
}
pthread_mutex_lock(&server->lock);
if (server->state != RSP_SERVER_STATE_CONNECTED) {
pthread_mutex_unlock(&server->lock);
return 0;
}
if ((cnt = write(server->sock, rad, radlen)) <= 0) {
debug(DBG_ERR, "clientradputtcp: write error");
pthread_mutex_unlock(&server->lock);
return 0;
}
debug(DBG_DBG, "clientradputtcp: Sent %d bytes, Radius packet of length %zu to TCP peer %s", cnt, radlen, conf->name);
pthread_mutex_unlock(&server->lock);
return 1;
}
void *tcpclientrd(void *arg) {
struct server *server = (struct server *)arg;
unsigned char *buf;
int len = 0;
for (;;) {
len = radtcpget(server->sock, server->conf->retryinterval * (server->conf->retrycount + 1), &buf);
if (buf && len > 0) {
if (!replyh(server, buf, len))
if (closeh(server))
break;
buf = NULL;
} else if (len == 0) {
if (timeouth(server))
break;
} else {
if (closeh(server))
break;
}
}
shutdown(server->sock, SHUT_RDWR);
close(server->sock);
server->clientrdgone = 1;
pthread_mutex_lock(&server->newrq_mutex);
pthread_cond_signal(&server->newrq_cond);
pthread_mutex_unlock(&server->newrq_mutex);
return NULL;
}
void *tcpserverwr(void *arg) {
int cnt;
struct client *client = (struct client *)arg;
struct gqueue *replyq;
struct request *reply;
char tmp[INET6_ADDRSTRLEN];
debug(DBG_DBG, "tcpserverwr: starting for %s", addr2string(client->addr, tmp, sizeof(tmp)));
replyq = client->replyq;
for (;;) {
pthread_mutex_lock(&replyq->mutex);
while (!list_first(replyq->entries)) {
if (client->sock >= 0) {
debug(DBG_DBG, "tcpserverwr: waiting for signal");
pthread_cond_wait(&replyq->cond, &replyq->mutex);
debug(DBG_DBG, "tcpserverwr: got signal");
}
if (client->sock < 0) {
/* s might have changed while waiting */
pthread_mutex_unlock(&replyq->mutex);
debug(DBG_DBG, "tcpserverwr: exiting as requested");
pthread_exit(NULL);
}
}
reply = (struct request *)list_shift(replyq->entries);
pthread_mutex_unlock(&replyq->mutex);
cnt = write(client->sock, reply->replybuf, reply->replybuflen);
if (cnt > 0)
debug(DBG_DBG, "tcpserverwr: sent %d bytes, Radius packet of length %d to %s",
cnt, reply->replybuflen, addr2string(client->addr, tmp, sizeof(tmp)));
else
debug(DBG_ERR, "tcpserverwr: write error for %s", addr2string(client->addr, tmp, sizeof(tmp)));
freerq(reply);
}
}
void tcpserverrd(struct client *client) {
struct request *rq;
uint8_t *buf = NULL;
pthread_t tcpserverwrth;
char tmp[INET6_ADDRSTRLEN];
int len = 0;
debug(DBG_DBG, "tcpserverrd: starting for %s", addr2string(client->addr, tmp, sizeof(tmp)));
if (pthread_create(&tcpserverwrth, &pthread_attr, tcpserverwr, (void *)client)) {
debug(DBG_ERR, "tcpserverrd: pthread_create failed");
return;
}
for (;;) {
len = radtcpget(client->sock, 0, &buf);
if (!buf || !len) {
debug(DBG_ERR, "tcpserverrd: connection from %s lost", addr2string(client->addr, tmp, sizeof(tmp)));
break;
}
debug(DBG_DBG, "tcpserverrd: got Radius message from %s", addr2string(client->addr, tmp, sizeof(tmp)));
rq = newrequest();
if (!rq) {
free(buf);
buf = NULL;
continue;
}
rq->buf = buf;
rq->buflen = len;
rq->from = client;
if (!radsrv(rq)) {
debug(DBG_ERR, "tcpserverrd: message authentication/validation failed, closing connection from %s", addr2string(client->addr, tmp, sizeof(tmp)));
break;
}
buf = NULL;
}
/* stop writer by setting s to -1 and give signal in case waiting for data */
client->sock = -1;
pthread_mutex_lock(&client->replyq->mutex);
pthread_cond_signal(&client->replyq->cond);
pthread_mutex_unlock(&client->replyq->mutex);
debug(DBG_DBG, "tcpserverrd: waiting for writer to end");
pthread_join(tcpserverwrth, NULL);
debug(DBG_DBG, "tcpserverrd: reader for %s exiting", addr2string(client->addr, tmp, sizeof(tmp)));
}
void *tcpservernew(void *arg) {
int s;
struct sockaddr_storage from;
socklen_t fromlen = sizeof(from);
struct clsrvconf *conf;
struct client *client;
char tmp[INET6_ADDRSTRLEN];
s = *(int *)arg;
free(arg);
if (getpeername(s, (struct sockaddr *)&from, &fromlen)) {
debug(DBG_DBG, "tcpservernew: getpeername failed, exiting");
goto exit;
}
debug(DBG_WARN, "tcpservernew: incoming TCP connection from %s", addr2string((struct sockaddr *)&from, tmp, sizeof(tmp)));
conf = find_clconf(handle, (struct sockaddr *)&from, NULL, NULL);
if (conf) {
client = addclient(conf, 1);
if (client) {
if (conf->keepalive)
enable_keepalive(s);
client->sock = s;
client->addr = addr_copy((struct sockaddr *)&from);
tcpserverrd(client);
removeclient(client);
} else
debug(DBG_WARN, "tcpservernew: failed to create new client instance");
} else
debug(DBG_WARN, "tcpservernew: ignoring request, no matching TCP client");
exit:
shutdown(s, SHUT_RDWR);
close(s);
pthread_exit(NULL);
}
void tcpaccept(int s) {
int *s_arg;
pthread_t tcpserverth;
s_arg = malloc(sizeof(s));
if (!s_arg) {
debug(DBG_ERR, "tcpaccept: malloc failed");
return;
}
*s_arg = s;
if (pthread_create(&tcpserverth, &pthread_attr, tcpservernew, (void *)s_arg)) {
debug(DBG_ERR, "tcpaccept: pthread_create failed");
free(s_arg);
shutdown(s, SHUT_RDWR);
close(s);
return;
}
pthread_detach(tcpserverth);
}
void *tcplistener(void *arg) {
accepttcp(*(int *)arg, tcpaccept);
free(arg);
return NULL;
}
#else
const struct protodefs *tcpinit(uint8_t h) {
return NULL;
}
#endif
/* Local Variables: */
/* c-file-style: "stroustrup" */
/* End: */
|