rsyslog/tests/diagtalker.c
2025-10-06 10:17:11 +02:00

175 lines
4.7 KiB
C

/* A yet very simple tool to talk to imdiag (this replaces the
* previous Java implementation in order to get fewer dependencies).
*
* Copyright 2010-2018 Rainer Gerhards and Adiscon GmbH.
*
* This file is part of rsyslog.
*
* Rsyslog is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Rsyslog is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Rsyslog. If not, see <http://www.gnu.org/licenses/>.
*
* A copy of the GPL can be found in the file "COPYING" in this distribution.
*/
#include "config.h"
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <arpa/inet.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netdb.h>
#if defined(__FreeBSD__)
#include <netinet/in.h>
#endif
static char *targetIP = "localhost";
static int targetPort = 13500;
/* open a single tcp connection
*/
int openConn(int *fd) {
char service[16];
struct addrinfo hints, *res = NULL, *rp = NULL;
int retries = 0;
int sock = -1;
snprintf(service, sizeof(service), "%d", targetPort);
memset(&hints, 0, sizeof(hints));
hints.ai_family = AF_UNSPEC; /* Try IPv6, then IPv4 */
hints.ai_socktype = SOCK_STREAM;
hints.ai_flags = 0;
for (;;) {
if (res == NULL) {
if (getaddrinfo(targetIP, service, &hints, &res) != 0 || res == NULL) {
/* Fallback: try explicit loopback families */
if (getaddrinfo("127.0.0.1", service, &hints, &res) != 0 || res == NULL) {
if (getaddrinfo("::1", service, &hints, &res) != 0 || res == NULL) {
fprintf(stderr, "name resolution failed for 'localhost' and loopback addresses\n");
exit(1);
}
}
}
}
for (rp = res; rp != NULL; rp = rp->ai_next) {
sock = socket(rp->ai_family, rp->ai_socktype, rp->ai_protocol);
if (sock == -1) {
continue;
}
if (connect(sock, rp->ai_addr, rp->ai_addrlen) == 0) {
*fd = sock;
if (retries > 0) {
fprintf(stderr, "[%d] connection established.\n", targetPort);
}
freeaddrinfo(res);
return 0;
}
close(sock);
sock = -1;
}
if (retries++ == 200) {
perror("connect()");
fprintf(stderr, "[%d] connect() failed\n", targetPort);
freeaddrinfo(res);
exit(1);
} else {
fprintf(stderr, "[%d] connect failed, retrying...\n", targetPort);
usleep(100000);
}
/* retry with same resolved list to keep overhead low */
}
}
/* send a string
*/
static void sendCmd(int fd, char *buf, int len) {
int lenSend;
lenSend = send(fd, buf, len, 0);
if (lenSend != len) {
perror("sending string");
exit(1);
}
}
/* wait for a response from remote system
*/
static void waitRsp(int fd, char *buf, int len) {
int ret;
ret = recv(fd, buf, len - 1, 0);
if (ret < 0) {
perror("receiving response");
exit(1);
}
/* we assume the message was complete, it may be better to wait
* for a LF...
*/
buf[ret] = '\0';
}
/* do the actual processing
*/
static void doProcessing(void) {
int fd;
int len;
char line[10 * 1024];
openConn(&fd);
while (!feof(stdin)) {
if (fgets(line, sizeof(line) - 1, stdin) == NULL) break;
len = strlen(line);
sendCmd(fd, line, len);
waitRsp(fd, line, sizeof(line));
printf("imdiag[%d]: %s", targetPort, line);
if (strstr(line, "imdiag::error") != NULL) {
exit(1);
}
}
}
/* Run the test.
* rgerhards, 2009-04-03
*/
int main(int argc, char *argv[]) {
int ret = 0;
int opt;
while ((opt = getopt(argc, argv, "t:p:")) != -1) {
switch (opt) {
case 't':
targetIP = optarg;
break;
case 'p':
targetPort = atoi(optarg);
break;
default:
printf("invalid option '%c' or value missing - terminating...\n", opt);
exit(1);
break;
}
}
doProcessing();
exit(ret);
}