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
|
/*----------------------------------------------------------------------------*/
/* Xymon monitor library. */
/* */
/* This is a library module, part of libxymon. */
/* It contains routines for parsing the protocols.cfg file. */
/* */
/* Copyright (C) 2002-2011 Henrik Storner <henrik@storner.dk> */
/* */
/* This program is released under the GNU General Public License (GPL), */
/* version 2. See the file "COPYING" for details. */
/* */
/*----------------------------------------------------------------------------*/
static char rcsid[] = "$Id: netservices.c 8069 2019-07-23 15:29:06Z jccleaver $";
#include <ctype.h>
#include <string.h>
#include <stdlib.h>
#include <unistd.h>
#include <stdio.h>
#include <limits.h>
#include <sys/types.h>
#include <sys/stat.h>
#include "libxymon.h"
/*
* Services we know how to handle:
* This defines what to send to them to shut down the
* session nicely, and whether we want to grab the
* banner or not.
*/
static svcinfo_t default_svcinfo[] = {
/* ------------- data to send ------ ---- green data ------ flags */
/* name databytes length databytes offset len */
{ "ftp", "quit\r\n", 0, "220", 0, 0, (TCP_GET_BANNER), 21 },
{ "ssh", NULL, 0, "SSH", 0, 0, (TCP_GET_BANNER), 22 },
{ "ssh1", NULL, 0, "SSH", 0, 0, (TCP_GET_BANNER), 22 },
{ "ssh2", NULL, 0, "SSH", 0, 0, (TCP_GET_BANNER), 22 },
{ "telnet", NULL, 0, NULL, 0, 0, (TCP_GET_BANNER|TCP_TELNET), 23 },
{ "smtp", "mail\r\nquit\r\n", 0, "220", 0, 0, (TCP_GET_BANNER), 25 }, /* Send "MAIL" to avoid sendmail NOQUEUE logs */
{ "pop", "quit\r\n", 0, "+OK", 0, 0, (TCP_GET_BANNER), 110 },
{ "pop2", "quit\r\n", 0, "+OK", 0, 0, (TCP_GET_BANNER), 109 },
{ "pop-2", "quit\r\n", 0, "+OK", 0, 0, (TCP_GET_BANNER), 109 },
{ "pop3", "quit\r\n", 0, "+OK", 0, 0, (TCP_GET_BANNER), 110 },
{ "pop-3", "quit\r\n", 0, "+OK", 0, 0, (TCP_GET_BANNER), 110 },
{ "imap", "ABC123 LOGOUT\r\n", 0, "* OK", 0, 0, (TCP_GET_BANNER), 143 },
{ "imap2", "ABC123 LOGOUT\r\n", 0, "* OK", 0, 0, (TCP_GET_BANNER), 143 },
{ "imap3", "ABC123 LOGOUT\r\n", 0, "* OK", 0, 0, (TCP_GET_BANNER), 220 },
{ "imap4", "ABC123 LOGOUT\r\n", 0, "* OK", 0, 0, (TCP_GET_BANNER), 143 },
{ "nntp", "quit\r\n", 0, "200", 0, 0, (TCP_GET_BANNER), 119 },
{ "ldap", NULL, 0, NULL, 0, 0, (0), 389 },
{ "rsync", NULL, 0, "@RSYNCD",0, 0, (TCP_GET_BANNER), 873 },
{ "bbd", "dummy", 0, NULL, 0, 0, (0), 1984 },
{ "ftps", "quit\r\n", 0, "220", 0, 0, (TCP_GET_BANNER|TCP_SSL), 990 },
{ "telnets", NULL, 0, NULL, 0, 0, (TCP_GET_BANNER|TCP_TELNET|TCP_SSL), 992 },
{ "smtps", "mail\r\nquit\r\n", 0, "220", 0, 0, (TCP_GET_BANNER|TCP_SSL), 0 }, /* Non-standard - IANA */
{ "pop3s", "quit\r\n", 0, "+OK", 0, 0, (TCP_GET_BANNER|TCP_SSL), 995 },
{ "imaps", "ABC123 LOGOUT\r\n", 0, "* OK", 0, 0, (TCP_GET_BANNER|TCP_SSL), 993 },
{ "nntps", "quit\r\n", 0, "200", 0, 0, (TCP_GET_BANNER|TCP_SSL), 563 },
{ "ldaps", NULL, 0, NULL, 0, 0, (TCP_SSL), 636 },
{ "clamd", "PING\r\n", 0, "PONG", 0, 0, (0), 3310 },
{ "vnc", "RFB 000.000\r\n", 0, "RFB ", 0, 0, (TCP_GET_BANNER), 5900 },
{ NULL, NULL, 0, NULL, 0, 0, (0), 0 } /* Default behaviour: Just try a connect */
};
static svcinfo_t *svcinfo = default_svcinfo;
typedef struct svclist_t {
struct svcinfo_t *rec;
struct svclist_t *next;
} svclist_t;
static char *binview(unsigned char *buf, int buflen)
{
/* Encode a string with possibly binary data into an ascii-printable form */
static char hexchars[16] = "0123456789ABCDEF";
static char *result = NULL;
unsigned char *inp, *outp;
int i;
if (result) xfree(result);
if (!buf) { result = strdup("[null]"); return result; }
if (buf && (buflen == 0)) buflen = strlen(buf);
result = (char *)malloc(4*buflen + 1); /* Worst case: All binary */
for (inp=buf, i=0, outp=result; (i<buflen); i++,inp++) {
if (isprint(*inp)) {
*outp = *inp;
outp++;
}
else if (*inp == '\r') {
*outp = '\\'; outp++;
*outp = 'r'; outp++;
}
else if (*inp == '\n') {
*outp = '\\'; outp++;
*outp = 'n'; outp++;
}
else if (*inp == '\t') {
*outp = '\\'; outp++;
*outp = 't'; outp++;
}
else {
*outp = '\\'; outp++;
*outp = 'x'; outp++;
*outp = hexchars[*inp / 16]; outp++;
*outp = hexchars[*inp % 16]; outp++;
}
}
*outp = '\0';
return result;
}
char *init_tcp_services(void)
{
STATIC_SBUF_DEFINE(xymonnetsvcs);
static void *svcflist = NULL;
char filename[PATH_MAX];
struct stat st;
FILE *fd = NULL;
strbuffer_t *inbuf;
svclist_t *head, *tail, *first, *walk;
SBUF_DEFINE(searchstring);
int svcnamebytes = 0;
int svccount = 0;
int i;
MEMDEFINE(filename);
filename[0] = '\0';
if (xgetenv("XYMONHOME")) {
snprintf(filename, sizeof(filename), "%s/etc/", xgetenv("XYMONHOME"));
}
strncat(filename, "protocols.cfg", (sizeof(filename) - strlen(filename)));
if ((stat(filename, &st) == 0) && xymonnetsvcs) {
/* See if we have already run and the file is unchanged - if so just pickup the result */
if (svcflist && !stackfmodified(svcflist)) {
return xymonnetsvcs;
}
/* File has changed - reload configuration. But clean up first so we don't leak memory. */
if (svcinfo != default_svcinfo) {
for (i=0; (svcinfo[i].svcname); i++) {
if (svcinfo[i].svcname) xfree(svcinfo[i].svcname);
if (svcinfo[i].sendtxt) xfree(svcinfo[i].sendtxt);
if (svcinfo[i].exptext) xfree(svcinfo[i].exptext);
}
xfree(svcinfo);
svcinfo = default_svcinfo;
}
xfree(xymonnetsvcs); xymonnetsvcs = NULL;
}
if (xgetenv("XYMONNETSVCS") == NULL) {
putenv("XYMONNETSVCS=smtp telnet ftp pop pop3 pop-3 ssh imap ssh1 ssh2 imap2 imap3 imap4 pop2 pop-2 nntp");
}
fd = stackfopen(filename, "r", &svcflist);
if (fd == NULL) {
errprintf("Cannot open TCP service-definitions file %s - using defaults\n", filename);
xymonnetsvcs = strdup(xgetenv("XYMONNETSVCS"));
xymonnetsvcs_buflen = strlen(xymonnetsvcs)+1;
MEMUNDEFINE(filename);
return xymonnetsvcs;
}
head = tail = first = NULL;
inbuf = newstrbuffer(0);
while (stackfgets(inbuf, NULL)) {
char *l, *eol;
sanitize_input(inbuf, 1, 0);
l = STRBUF(inbuf);
if (*l == '[') {
char *svcname;
eol = strchr(l, ']'); if (eol) *eol = '\0';
l = skipwhitespace(l+1);
svcname = strtok(l, "|"); first = NULL;
while (svcname) {
svclist_t *newitem;
svccount++;
svcnamebytes += (strlen(svcname) + 1);
newitem = (svclist_t *) malloc(sizeof(svclist_t));
newitem->rec = (svcinfo_t *)calloc(1, sizeof(svcinfo_t));
newitem->rec->svcname = strdup(svcname);
newitem->next = NULL;
if (first == NULL) first = newitem;
if (head == NULL) {
head = tail = newitem;
}
else {
tail->next = newitem;
tail = newitem;
}
svcname = strtok(NULL, "|");
}
}
else if (strncmp(l, "send ", 5) == 0) {
if (first) {
getescapestring(skipwhitespace(l+4), &first->rec->sendtxt, &first->rec->sendlen);
for (walk = first->next; (walk); walk = walk->next) {
walk->rec->sendtxt = strdup(first->rec->sendtxt);
walk->rec->sendlen = first->rec->sendlen;
}
}
}
else if (strncmp(l, "expect ", 7) == 0) {
if (first) {
getescapestring(skipwhitespace(l+6), &first->rec->exptext, &first->rec->explen);
for (walk = first->next; (walk); walk = walk->next) {
walk->rec->exptext = strdup(first->rec->exptext);
walk->rec->explen = first->rec->explen;
walk->rec->expofs = 0; /* HACK - not used right now */
}
}
}
else if (strncmp(l, "options ", 8) == 0) {
if (first) {
char *opt;
first->rec->flags = 0;
l = skipwhitespace(l+7);
opt = strtok(l, ",");
while (opt) {
if (strcmp(opt, "ssl") == 0) first->rec->flags |= TCP_SSL;
else if (strcmp(opt, "banner") == 0) first->rec->flags |= TCP_GET_BANNER;
else if (strcmp(opt, "telnet") == 0) first->rec->flags |= TCP_TELNET;
else errprintf("Unknown option: %s\n", opt);
opt = strtok(NULL, ",");
}
for (walk = first->next; (walk); walk = walk->next) {
walk->rec->flags = first->rec->flags;
}
}
}
else if (strncmp(l, "port ", 5) == 0) {
if (first) {
first->rec->port = atoi(skipwhitespace(l+4));
for (walk = first->next; (walk); walk = walk->next) {
walk->rec->port = first->rec->port;
}
}
}
}
if (fd) stackfclose(fd);
freestrbuffer(inbuf);
/* Copy from the svclist to svcinfo table */
svcinfo = (svcinfo_t *) malloc((svccount+1) * sizeof(svcinfo_t));
for (walk=head, i=0; (walk && (i < svccount)); walk = walk->next, i++) {
svcinfo[i].svcname = walk->rec->svcname;
svcinfo[i].sendtxt = walk->rec->sendtxt;
svcinfo[i].sendlen = walk->rec->sendlen;
svcinfo[i].exptext = walk->rec->exptext;
svcinfo[i].explen = walk->rec->explen;
svcinfo[i].expofs = walk->rec->expofs;
svcinfo[i].flags = walk->rec->flags;
svcinfo[i].port = walk->rec->port;
}
memset(&svcinfo[svccount], 0, sizeof(svcinfo_t));
/* This should not happen */
if (walk) {
errprintf("Whoa - didn't copy all services! svccount=%d, next service '%s'\n",
svccount, walk->rec->svcname);
}
/* Free the temp. svclist list */
while (head) {
/*
* Note: Don't free the strings inside the records,
* as they are now owned by the svcinfo records.
*/
walk = head;
head = head->next;
xfree(walk);
}
searchstring = strdup(xgetenv("XYMONNETSVCS"));
searchstring_buflen = strlen(searchstring) + 1;
SBUF_MALLOC(xymonnetsvcs, strlen(xgetenv("XYMONNETSVCS")) + svcnamebytes + 1);
strncpy(xymonnetsvcs, xgetenv("XYMONNETSVCS"), xymonnetsvcs_buflen);
for (i=0; (svcinfo[i].svcname); i++) {
char *p;
strncpy(searchstring, xgetenv("XYMONNETSVCS"), searchstring_buflen);
p = strtok(searchstring, " ");
while (p && (strcmp(p, svcinfo[i].svcname) != 0)) p = strtok(NULL, " ");
if (p == NULL) {
char *eos = xymonnetsvcs + strlen(xymonnetsvcs);
snprintf(eos, (xymonnetsvcs_buflen - (eos - xymonnetsvcs)), " %s", svcinfo[i].svcname);
}
}
xfree(searchstring);
if (debug) {
dump_tcp_services();
dbgprintf("XYMONNETSVCS set to : %s\n", xymonnetsvcs);
}
MEMUNDEFINE(filename);
return xymonnetsvcs;
}
void dump_tcp_services(void)
{
int i;
dbgprintf("Service list dump\n");
for (i=0; (svcinfo[i].svcname); i++) {
dbgprintf(" Name : %s\n", svcinfo[i].svcname);
dbgprintf(" Sendtext: %s\n", binview(svcinfo[i].sendtxt, svcinfo[i].sendlen));
dbgprintf(" Sendlen : %d\n", svcinfo[i].sendlen);
dbgprintf(" Exp.text: %s\n", binview(svcinfo[i].exptext, svcinfo[i].explen));
dbgprintf(" Exp.len : %d\n", svcinfo[i].explen);
dbgprintf(" Exp.ofs : %d\n", svcinfo[i].expofs);
dbgprintf(" Flags : %d\n", svcinfo[i].flags);
dbgprintf(" Port : %d\n", svcinfo[i].port);
}
dbgprintf("\n");
}
int default_tcp_port(char *svcname)
{
int svcidx;
int result = 0;
for (svcidx=0; (svcinfo[svcidx].svcname && (strcmp(svcname, svcinfo[svcidx].svcname) != 0)); svcidx++) ;
if (svcinfo[svcidx].svcname) result = svcinfo[svcidx].port;
return result;
}
svcinfo_t *find_tcp_service(char *svcname)
{
int svcidx;
for (svcidx=0; (svcinfo[svcidx].svcname && (strcmp(svcname, svcinfo[svcidx].svcname) != 0)); svcidx++) ;
if (svcinfo[svcidx].svcname)
return &svcinfo[svcidx];
else
return NULL;
}
|