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 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557
|
/*
** Portions Copyright (C) 1998-2013 Sourcefire, Inc.
**
** This program 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 2 of the License, or
** (at your option) any later version.
**
** This program 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 this program; if not, write to the Free Software
** Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>
#include <sys/time.h>
#include <sys/unistd.h>
#include <netinet/ip.h>
#ifdef HAVE_DUMBNET_H
#include <dumbnet.h>
#else
#include <dnet.h>
#endif
#include <linux/netfilter.h>
#include <libipq.h>
#include "daq_api.h"
#include "sfbpf.h"
#define DAQ_MOD_VERSION 6
#define DAQ_TYPE (DAQ_TYPE_INTF_CAPABLE | DAQ_TYPE_INLINE_CAPABLE | \
DAQ_TYPE_MULTI_INSTANCE | DAQ_TYPE_NO_UNPRIV)
#define MSG_BUF_SIZE (sizeof(ipq_packet_msg_t) + IP_MAXPACKET)
typedef struct {
int proto;
char* device;
struct ipq_handle* ipqh;
ip_t* net;
eth_t* link;
char* filter;
struct sfbpf_program fcode;
uint8_t* buf;
char error[DAQ_ERRBUF_SIZE];
volatile int count;
int passive;
uint32_t snaplen;
unsigned timeout;
DAQ_State state;
DAQ_Stats_t stats;
} IpqImpl;
static void ipq_daq_shutdown(void* handle);
//-------------------------------------------------------------------------
// FIXTHIS ip6 yields "ipq_set_mode error Failed to send netlink message"
static int ipq_daq_get_proto (const char* s)
{
if ( s && !strcasecmp(s, "ip4") )
return PF_INET;
if ( s && !strcasecmp(s, "ip6") )
return PF_INET6;
return 0;
}
static int ipq_daq_get_setup (
IpqImpl* impl, const DAQ_Config_t* cfg, char* errBuf, size_t errMax)
{
DAQ_Dict* entry;
impl->proto = PF_INET;
for ( entry = cfg->values; entry; entry = entry->next)
{
if ( !entry->value || !*entry->value )
{
snprintf(errBuf, errMax,
"%s: variable needs value (%s)\n", __FUNCTION__, entry->key);
return DAQ_ERROR;
}
else if ( !strcmp(entry->key, "proto") )
{
impl->proto = ipq_daq_get_proto(entry->value);
if ( !impl->proto )
{
snprintf(errBuf, errMax, "%s: bad proto (%s)\n",
__FUNCTION__, entry->value);
return DAQ_ERROR;
}
}
else if ( !strcmp(entry->key, "device") )
{
impl->device = strdup(entry->value);
if ( !impl->device )
{
snprintf(errBuf, errMax,
"%s: can't allocate memory for device (%s)\n",
__FUNCTION__, entry->value);
return DAQ_ERROR;
}
}
else
{
snprintf(errBuf, errMax,
"%s: unsupported variable (%s=%s)\n",
__FUNCTION__, entry->key, entry->value);
return DAQ_ERROR;
}
}
impl->snaplen = cfg->snaplen ? cfg->snaplen : IP_MAXPACKET;
impl->timeout = cfg->timeout * 1000; // cfg is ms, ipq is us
impl->passive = ( cfg->mode == DAQ_MODE_PASSIVE );
return DAQ_SUCCESS;
}
//-------------------------------------------------------------------------
// initialization and clean up
static int ipq_daq_initialize (
const DAQ_Config_t* cfg, void** handle, char* errBuf, size_t errMax)
{
int status;
if(cfg->name && *(cfg->name))
{
snprintf(errBuf, errMax, "The ipq DAQ module does not support interface or readback mode!");
return DAQ_ERROR_INVAL;
}
IpqImpl* impl = calloc(1, sizeof(*impl));
if ( !impl )
{
snprintf(errBuf, errMax, "%s: failed to allocate the ipq context!",
__FUNCTION__);
return DAQ_ERROR_NOMEM;
}
if ( ipq_daq_get_setup(impl, cfg, errBuf, errMax) != DAQ_SUCCESS )
{
ipq_daq_shutdown(impl);
return DAQ_ERROR;
}
impl->buf = malloc(MSG_BUF_SIZE);
if ( !impl->buf )
{
snprintf(errBuf, errMax, "%s: failed to allocate the ipq buffer!",
__FUNCTION__);
ipq_daq_shutdown(impl);
return DAQ_ERROR_NOMEM;
}
// remember to also link in, eg:
// iptables -A OUTPUT -p icmp -j QUEUE
impl->ipqh = ipq_create_handle(0, impl->proto);
if ( !impl->ipqh )
{
snprintf(errBuf, errMax, "%s: ipq_create_handle error %s\n",
__FUNCTION__, ipq_errstr());
ipq_daq_shutdown(impl);
return DAQ_ERROR;
}
// copy both packet metadata and packet payload
// paket payload is limited to IP_MAXPACKET
status = ipq_set_mode(impl->ipqh, IPQ_COPY_PACKET, IP_MAXPACKET);
if ( status < 0 )
{
snprintf(errBuf, errMax, "%s: ipq_set_mode error %s\n",
__FUNCTION__, ipq_errstr());
ipq_daq_shutdown(impl);
return DAQ_ERROR;
}
if ( impl->device && strcasecmp(impl->device, "ip") )
{
impl->link = eth_open(impl->device);
if ( !impl->link )
{
snprintf(errBuf, errMax, "%s: can't open %s!\n",
__FUNCTION__, impl->device);
ipq_daq_shutdown(impl);
return DAQ_ERROR;
}
}
else
{
impl->net = ip_open();
if ( !impl->net )
{
snprintf(errBuf, errMax, "%s: can't open ip!\n", __FUNCTION__);
ipq_daq_shutdown(impl);
return DAQ_ERROR;
}
}
impl->state = DAQ_STATE_INITIALIZED;
*handle = impl;
return DAQ_SUCCESS;
}
static void ipq_daq_shutdown (void* handle)
{
IpqImpl* impl = (IpqImpl*)handle;
if ( impl->ipqh )
ipq_destroy_handle(impl->ipqh);
if ( impl->device )
free(impl->device);
if ( impl->link )
eth_close(impl->link);
if ( impl->net )
ip_close(impl->net);
if ( impl->filter )
free(impl->filter);
if ( impl->buf )
free(impl->buf);
free(impl);
}
//-------------------------------------------------------------------------
static void SetPktHdr(
IpqImpl* impl, ipq_packet_msg_t* m, DAQ_PktHdr_t* phdr)
{
// if ipq fails to provide a timestamp, we fall back on tod
if ( m->timestamp_sec && (m->timestamp_sec != 0) )
{
phdr->ts.tv_sec = m->timestamp_sec;
phdr->ts.tv_usec = m->timestamp_usec;
}
else
{
struct timeval t;
gettimeofday(&t, NULL);
phdr->ts.tv_sec = t.tv_sec;
phdr->ts.tv_usec = t.tv_usec;
}
phdr->caplen = (m->data_len <= impl->snaplen) ? m->data_len : impl->snaplen;
phdr->pktlen = m->data_len;
}
//-------------------------------------------------------------------------
// public packet processing
static int ipq_daq_acquire (
void* handle, int cnt, DAQ_Analysis_Func_t callback, DAQ_Meta_Func_t metaback, void* user)
{
IpqImpl* impl = (IpqImpl*)handle;
int n = 0;
DAQ_PktHdr_t hdr;
// If cnt is <= 0, don't limit the packets acquired. However,
// impl->count = 0 has a special meaning, so interpret accordingly.
impl->count = (cnt == 0) ? -1 : cnt;
hdr.ingress_index = -1;
hdr.egress_index = -1;
hdr.ingress_group = -1;
hdr.egress_group = -1;
hdr.flags = 0;
hdr.address_space_id = 0;
while ( impl->count < 0 || n < impl->count )
{
int ipqt, status = ipq_read(
impl->ipqh, impl->buf, MSG_BUF_SIZE, impl->timeout);
if ( status <= 0 )
{
if ( status < 0 )
{
DPE(impl->error, "%s: ipq_read=%d error %s",
__FUNCTION__, status, ipq_errstr());
return DAQ_ERROR;
}
return 0;
}
ipqt = ipq_message_type(impl->buf);
if ( ipqt == IPQM_PACKET )
{
DAQ_Verdict verdict;
ipq_packet_msg_t* ipqm = ipq_get_packet(impl->buf);
SetPktHdr(impl, ipqm, &hdr);
impl->stats.hw_packets_received++;
if (
impl->fcode.bf_insns &&
sfbpf_filter(impl->fcode.bf_insns, ipqm->payload,
hdr.caplen, hdr.caplen) == 0
) {
verdict = DAQ_VERDICT_PASS;
impl->stats.packets_filtered++;
}
else
{
verdict = callback(user, &hdr, (uint8_t*)ipqm->payload);
if ( verdict >= MAX_DAQ_VERDICT )
verdict = DAQ_VERDICT_BLOCK;
impl->stats.verdicts[verdict]++;
impl->stats.packets_received++;
}
if ( impl->passive ) verdict = DAQ_VERDICT_PASS;
switch ( verdict ) {
case DAQ_VERDICT_BLOCK:
case DAQ_VERDICT_RETRY:
case DAQ_VERDICT_BLACKLIST:
status = ipq_set_verdict(
impl->ipqh, ipqm->packet_id, NF_DROP, 0, NULL);
break;
case DAQ_VERDICT_REPLACE:
status = ipq_set_verdict(
impl->ipqh, ipqm->packet_id, NF_ACCEPT,
hdr.pktlen, ipqm->payload);
break;
case DAQ_VERDICT_PASS:
case DAQ_VERDICT_WHITELIST:
case DAQ_VERDICT_IGNORE:
default:
status = ipq_set_verdict(
impl->ipqh, ipqm->packet_id, NF_ACCEPT, 0, NULL);
break;
}
if ( status < 0 )
{
DPE(impl->error, "%s: ipq_set_verdict=%d error %s",
__FUNCTION__, status, ipq_errstr());
return DAQ_ERROR;
}
n++;
}
else
{
// NLMSG_ERROR is supposed to be the only other valid type
status = ipq_get_msgerr(impl->buf);
DPE(impl->error, "%s: ipq_message_type=%d error=%d %s",
__FUNCTION__, ipqt, status, ipq_errstr());
// ipq_message_type=2 error=1 Timeout
// keep looping upon timeout or other errors
}
}
return 0;
}
//-------------------------------------------------------------------------
static int ipq_daq_inject (
void* handle, const DAQ_PktHdr_t* hdr, const uint8_t* buf, uint32_t len,
int reverse)
{
IpqImpl* impl = (IpqImpl*)handle;
ssize_t sent = 0;
if ( impl->link )
sent = eth_send(impl->link, buf, len);
else if ( impl->net )
sent = ip_send(impl->net, buf, len);
if ( (uint32_t)sent != len )
{
DPE(impl->error, "%s: failed to send",
__FUNCTION__);
return DAQ_ERROR;
}
impl->stats.packets_injected++;
return DAQ_SUCCESS;
}
//-------------------------------------------------------------------------
static int ipq_daq_set_filter (void* handle, const char* filter)
{
IpqImpl* impl = (IpqImpl*)handle;
struct sfbpf_program fcode;
int dlt = (impl->proto == PF_INET) ? DLT_IPV4 : DLT_IPV6;
if (sfbpf_compile(impl->snaplen, dlt, &fcode, filter, 1, 0) < 0)
{
DPE(impl->error, "%s: failed to compile '%s'",
__FUNCTION__, filter);
return DAQ_ERROR;
}
if ( impl->filter )
free((void *)impl->filter);
if ( impl->fcode.bf_insns )
free(impl->fcode.bf_insns);
impl->filter = strdup(filter);
impl->fcode = fcode;
return DAQ_SUCCESS;
}
//-------------------------------------------------------------------------
static int ipq_daq_start (void* handle)
{
IpqImpl* impl = (IpqImpl*)handle;
impl->state = DAQ_STATE_STARTED;
return DAQ_SUCCESS;
}
static int ipq_daq_breakloop (void* handle)
{
IpqImpl* impl = (IpqImpl*)handle;
impl->count = 0;
return DAQ_SUCCESS;
}
static int ipq_daq_stop (void* handle)
{
IpqImpl* impl = (IpqImpl*)handle;
impl->state = DAQ_STATE_STOPPED;
return DAQ_SUCCESS;
}
static DAQ_State ipq_daq_check_status (void* handle)
{
IpqImpl* impl = (IpqImpl*)handle;
return impl->state;
}
static int ipq_daq_get_stats (void* handle, DAQ_Stats_t* stats)
{
IpqImpl* impl = (IpqImpl*)handle;
*stats = impl->stats;
return DAQ_SUCCESS;
}
static void ipq_daq_reset_stats (void* handle)
{
IpqImpl* impl = (IpqImpl*)handle;
memset(&impl->stats, 0, sizeof(impl->stats));
}
static int ipq_daq_get_snaplen (void* handle)
{
IpqImpl* impl = (IpqImpl*)handle;
return impl->snaplen;
}
static uint32_t ipq_daq_get_capabilities (void* handle)
{
IpqImpl* impl = (IpqImpl*)handle;
uint32_t caps = DAQ_CAPA_BLOCK | DAQ_CAPA_REPLACE | DAQ_CAPA_INJECT
| DAQ_CAPA_BREAKLOOP | DAQ_CAPA_UNPRIV_START | DAQ_CAPA_BPF;
if ( impl->net ) caps |= DAQ_CAPA_INJECT_RAW;
return caps;
}
static int ipq_daq_get_datalink_type(void *handle)
{
IpqImpl* impl = (IpqImpl*)handle;
int dlt = (impl->proto == PF_INET) ? DLT_IPV4 : DLT_IPV6;
return dlt;
}
static const char* ipq_daq_get_errbuf (void* handle)
{
IpqImpl* impl = (IpqImpl*)handle;
return impl->error;
}
static void ipq_daq_set_errbuf (void* handle, const char* s)
{
IpqImpl* impl = (IpqImpl*)handle;
DPE(impl->error, "%s", s ? s : "");
}
static int ipq_daq_get_device_index(void* handle, const char* device)
{
return DAQ_ERROR_NOTSUP;
}
//-------------------------------------------------------------------------
#ifdef BUILDING_SO
DAQ_SO_PUBLIC DAQ_Module_t DAQ_MODULE_DATA =
#else
DAQ_Module_t ipq_daq_module_data =
#endif
{
.api_version = DAQ_API_VERSION,
.module_version = DAQ_MOD_VERSION,
.name = "ipq",
.type = DAQ_TYPE,
.initialize = ipq_daq_initialize,
.set_filter = ipq_daq_set_filter,
.start = ipq_daq_start,
.acquire = ipq_daq_acquire,
.inject = ipq_daq_inject,
.breakloop = ipq_daq_breakloop,
.stop = ipq_daq_stop,
.shutdown = ipq_daq_shutdown,
.check_status = ipq_daq_check_status,
.get_stats = ipq_daq_get_stats,
.reset_stats = ipq_daq_reset_stats,
.get_snaplen = ipq_daq_get_snaplen,
.get_capabilities = ipq_daq_get_capabilities,
.get_datalink_type = ipq_daq_get_datalink_type,
.get_errbuf = ipq_daq_get_errbuf,
.set_errbuf = ipq_daq_set_errbuf,
.get_device_index = ipq_daq_get_device_index,
.modify_flow = NULL,
.hup_prep = NULL,
.hup_apply = NULL,
.hup_post = NULL,
};
|