/*
* $Id: nemesis-rip.c,v 1.2 2004/03/06 22:13:30 jnathan Exp $
*
* THE NEMESIS PROJECT
* Copyright (C) 1999, 2000 Mark Grimes <mark@stateful.net>
* Copyright (C) 2001 - 2003 Jeff Nathan <jeff@snort.org>
*
* nemesis-rip.c (RIP Packet Injector)
*
*/
#include "nemesis-rip.h"
#include "nemesis.h"
#if defined(WIN32)
#include <pcap.h>
#endif
static ETHERhdr etherhdr;
static IPhdr iphdr;
static UDPhdr udphdr;
static RIPhdr riphdr;
static FileData pd, ipod;
static int got_payload, got_domain;
static char *payloadfile = NULL; /* payload file name */
static char *ipoptionsfile = NULL; /* IP options file name */
static char *device = NULL; /* Ethernet device */
#if defined(WIN32)
static char *ifacetmp = NULL;
#endif
static void rip_cmdline(int, char **);
static int rip_exit(int);
static void rip_initdata(void);
static void rip_usage(char *);
static void rip_validatedata(void);
static void rip_verbose(void);
void nemesis_rip(int argc, char **argv)
{
const char *module = "RIP Packet Injection";
nemesis_maketitle(title, module, version);
if (argc > 1 && !strncmp(argv[1], "help", 4))
rip_usage(argv[0]);
if (nemesis_seedrand() < 0)
fprintf(stderr, "ERROR: Unable to seed random number generator.\n");
rip_initdata();
rip_cmdline(argc, argv);
rip_validatedata();
rip_verbose();
if (got_payload)
{
#if defined(WIN32)
if (builddatafromfile(RIP_LINKBUFFSIZE, &pd,
(const char *)payloadfile, (const u_int32_t)PAYLOADMODE) < 0)
#else
if (builddatafromfile(((got_link == 1) ? RIP_LINKBUFFSIZE :
RIP_RAWBUFFSIZE), &pd, (const char *)payloadfile,
(const u_int32_t)PAYLOADMODE) < 0)
#endif
rip_exit(1);
}
if (got_ipoptions)
{
if (builddatafromfile(OPTIONSBUFFSIZE, &ipod,
(const char *)ipoptionsfile, (const u_int32_t)OPTIONSMODE) < 0)
rip_exit(1);
}
if (buildrip(ðerhdr, &iphdr, &udphdr, &riphdr, &pd, &ipod, device) < 0)
{
puts("\nRIP Injection Failure");
rip_exit(1);
}
else
{
puts("\nRIP Packet Injected");
rip_exit(0);
}
}
static void rip_initdata(void)
{
/* defaults */
etherhdr.ether_type = ETHERTYPE_IP; /* Ethernet type IP */
memset(etherhdr.ether_shost, 0, 6); /* Ethernet source address */
memset(etherhdr.ether_dhost, 0xff, 6); /* Ethernet destination address */
memset(&iphdr.ip_src.s_addr, 0, 4); /* IP source address */
memset(&iphdr.ip_dst.s_addr, 0, 4); /* IP destination address */
iphdr.ip_tos = IPTOS_RELIABILITY; /* IP type of service */
iphdr.ip_id = (u_int16_t)libnet_get_prand(PRu16); /* IP ID */
iphdr.ip_p = IPPROTO_UDP; /* IP protocol UDP */
iphdr.ip_off = 0; /* IP fragmentation offset */
iphdr.ip_ttl = 255; /* IP TTL */
udphdr.uh_sport = 520; /* UDP source port */
udphdr.uh_dport = 520; /* UDP destination port */
riphdr.cmd = RIPCMD_REQUEST; /* RIP command */
riphdr.ver = 2; /* RIP version */
riphdr.rd = 0; /* RIP routing domain */
riphdr.af = 2; /* RIP address family */
riphdr.rt = (u_int16_t)libnet_get_prand(PRu16);
/* RIP route tag */
riphdr.addr = 0; /* RIP address */
riphdr.mask = 0; /* RIP subnet mask */
riphdr.next_hop = 0; /* RIP next-hop IP address */
riphdr.metric = 1; /* RIP metric */
pd.file_mem = NULL;
pd.file_s = 0;
ipod.file_mem = NULL;
ipod.file_s = 0;
return;
}
static void rip_validatedata(void)
{
struct sockaddr_in sin;
u_int32_t tmp;
/* validation tests */
if (riphdr.ver == 2)
{
/* allow routing domain 0 in RIP2 if specified by the user */
if (riphdr.rd == 0 && got_domain == 0)
riphdr.rd = (u_int16_t)libnet_get_prand(PRu16);
if (riphdr.mask == 0)
nemesis_name_resolve("255.255.255.0", (u_int32_t *)&riphdr.mask);
}
if (iphdr.ip_src.s_addr == 0)
iphdr.ip_src.s_addr = (u_int32_t)libnet_get_prand(PRu32);
if (iphdr.ip_dst.s_addr == 0)
{
switch(riphdr.ver)
{
case 1:
tmp = (u_int32_t)libnet_get_prand(PRu32);
iphdr.ip_dst.s_addr = (htonl(tmp) | 0xFF000000);
break;
case 2:
/* The multicast address for RIP2 is RIP2-ROUTERS.MCAST.NET */
nemesis_name_resolve("224.0.0.9",
(u_int32_t *)&iphdr.ip_dst.s_addr);
break;
default:
iphdr.ip_dst.s_addr = (u_int32_t)libnet_get_prand(PRu32);
break;
}
}
if (riphdr.addr == 0)
riphdr.addr = (u_int32_t)libnet_get_prand(PRu32);
/* if the user has supplied a source hardware addess but not a device
* try to select a device automatically
*/
if (memcmp(etherhdr.ether_shost, zero, 6) && !got_link && !device)
{
if (libnet_select_device(&sin, &device, (char *)&errbuf) < 0)
{
fprintf(stderr, "ERROR: Device not specified and unable to "
"automatically select a device.\n");
rip_exit(1);
}
else
{
#ifdef DEBUG
printf("DEBUG: automatically selected device: "
" %s\n", device);
#endif
got_link = 1;
}
}
/* if a device was specified and the user has not specified a source
* hardware address, try to determine the source address automatically
*/
if (got_link)
{
if ((nemesis_check_link(ðerhdr, device)) < 0)
{
fprintf(stderr, "ERROR: cannot retrieve hardware address of %s.\n",
device);
rip_exit(1);
}
}
/* Attempt to send valid packets if the user hasn't decided to craft an
* anomolous packet
*/
return;
}
static void rip_usage(char *arg)
{
nemesis_printtitle((const char *)title);
printf("RIP usage:\n %s [-v (verbose)] [options]\n\n", arg);
printf("RIP options: \n"
" -c <RIP command>\n"
" -V <RIP version>\n"
" -r <RIP routing domain>\n"
" -a <RIP address family>\n"
" -R <RIP route tag>\n"
" -i <RIP route address>\n"
" -k <RIP network address mask>\n"
" -h <RIP next hop address>\n"
" -m <RIP metric>\n"
" -P <Payload file>\n\n");
printf("UDP options:\n"
" -x <Source port>\n"
" -y <Destination port>\n\n");
printf("IP options: \n"
" -S <Source IP address>\n"
" -D <Destination IP address>\n"
" -I <IP ID>\n"
" -T <IP TTL>\n"
" -t <IP TOS>\n"
" -F <IP fragmentation options>\n"
" -F[D],[M],[R],[offset]\n"
" -O <IP options file>\n\n");
printf("Data Link Options: \n"
#if defined(WIN32)
" -d <Ethernet device number>\n"
#else
" -d <Ethernet device name>\n"
#endif
" -H <Source MAC address>\n"
" -M <Destination MAC address>\n");
#if defined(WIN32)
printf(" -Z (List available network interfaces by number)\n");
#endif
putchar('\n');
rip_exit(1);
}
static void rip_cmdline(int argc, char **argv)
{
int opt, i;
u_int32_t addr_tmp[6];
char *rip_options;
extern char *optarg;
extern int optind;
#if defined(ENABLE_PCAPOUTPUT)
#if defined(WIN32)
rip_options = "a:c:d:D:F:h:H:i:I:k:m:M:O:P:r:R:S:t:T:V:x:y:vWZ?";
#else
rip_options = "a:c:d:D:F:h:H:i:I:k:m:M:O:P:r:R:S:t:T:V:x:y:vW?";
#endif
#else
#if defined(WIN32)
rip_options = "a:c:d:D:F:h:H:i:I:k:m:M:O:P:r:R:S:t:T:V:x:y:vZ?";
#else
rip_options = "a:c:d:D:F:h:H:i:I:k:m:M:O:P:r:R:S:t:T:V:x:y:v?";
#endif
#endif
while ((opt = getopt(argc, argv, rip_options)) != -1)
{
switch (opt)
{
case 'a': /* RIP address family */
riphdr.af = xgetint16(optarg);
break;
case 'c': /* RIP command */
riphdr.cmd = xgetint8(optarg);
break;
case 'd': /* Ethernet device */
#if defined(WIN32)
if (nemesis_getdev(atoi(optarg), &device) < 0)
{
fprintf(stderr, "ERROR: Unable to lookup device: '%d'.\n",
atoi(optarg));
rip_exit(1);
}
#else
if (strlen(optarg) < 256)
{
device = strdup(optarg);
got_link = 1;
}
else
{
fprintf(stderr, "ERROR: device %s > 256 characters.\n",
optarg);
rip_exit(1);
}
#endif
break;
case 'D': /* destination IP address */
if ((nemesis_name_resolve(optarg,
(u_int32_t *)&iphdr.ip_dst.s_addr)) < 0)
{
fprintf(stderr, "ERROR: Invalid destination IP address: "
"\"%s\".\n", optarg);
rip_exit(1);
}
break;
case 'F': /* IP fragmentation options */
if (parsefragoptions(&iphdr, optarg) < 0)
rip_exit(1);
break;
case 'h': /* RIP next hop address */
if ((nemesis_name_resolve(optarg,
(u_int32_t *)&riphdr.next_hop)) < 0)
{
fprintf(stderr, "ERROR: Invalid next hop IP address: "
"\"%s\".\n", optarg);
rip_exit(1);
}
break;
case 'H': /* Ethernet source address */
memset(addr_tmp, 0, sizeof(addr_tmp));
sscanf(optarg, "%02X:%02X:%02X:%02X:%02X:%02X", &addr_tmp[0],
&addr_tmp[1], &addr_tmp[2], &addr_tmp[3], &addr_tmp[4],
&addr_tmp[5]);
for (i = 0; i < 6; i++)
etherhdr.ether_shost[i] = (u_int8_t)addr_tmp[i];
break;
case 'i': /* RIP route address */
if ((nemesis_name_resolve(optarg,
(u_int32_t *)&riphdr.addr)) < 0)
{
fprintf(stderr, "ERROR: Invalid destination IP address: "
"\"%s\".\n", optarg);
rip_exit(1);
}
break;
case 'I': /* IP ID */
iphdr.ip_id = xgetint16(optarg);
break;
case 'k': /* RIP netmask address */
if ((nemesis_name_resolve(optarg,
(u_int32_t *)&riphdr.mask)) < 0)
{
fprintf(stderr, "ERROR: Invalid RIP mask IP address: "
"\"%s\".\n", optarg);
rip_exit(1);
}
break;
case 'm': /* RIP metric */
riphdr.metric = xgetint32(optarg);
break;
case 'M': /* Ethernet destination address */
memset(addr_tmp, 0, sizeof(addr_tmp));
sscanf(optarg, "%02X:%02X:%02X:%02X:%02X:%02X", &addr_tmp[0],
&addr_tmp[1], &addr_tmp[2], &addr_tmp[3], &addr_tmp[4],
&addr_tmp[5]);
for (i = 0; i < 6; i++)
etherhdr.ether_dhost[i] = (u_int8_t)addr_tmp[i];
break;
case 'O': /* IP options file */
if (strlen(optarg) < 256)
{
ipoptionsfile = strdup(optarg);
got_ipoptions = 1;
}
else
{
fprintf(stderr, "ERROR: IP options file %s > 256 "
"characters.\n", optarg);
rip_exit(1);
}
break;
case 'P': /* payload file */
if (strlen(optarg) < 256)
{
payloadfile = strdup(optarg);
got_payload = 1;
}
else
{
fprintf(stderr, "ERROR: payload file %s > 256 "
"characters.\n", optarg);
rip_exit(1);
}
break;
case 'r': /* RIP routing domain */
riphdr.rd = xgetint16(optarg);
got_domain = 1;
break;
case 'R': /* RIP route tag */
riphdr.rt = xgetint16(optarg);
break;
case 'S': /* source IP address */
if ((nemesis_name_resolve(optarg,
(u_int32_t *)&iphdr.ip_src.s_addr)) < 0)
{
fprintf(stderr, "ERROR: Invalid source IP address: \"%s\"."
"\n", optarg);
rip_exit(1);
}
break;
case 't': /* IP type of service */
iphdr.ip_tos = xgetint8(optarg);
break;
case 'T': /* IP time to live */
iphdr.ip_ttl = xgetint8(optarg);
break;
case 'v':
verbose++;
if (verbose == 1)
nemesis_printtitle((const char *)title);
break;
case 'V': /* RIP version */
riphdr.ver = xgetint8(optarg);
break;
case 'x': /* UDP source port */
udphdr.uh_sport = xgetint16(optarg);
break;
case 'y': /* UDP destination port */
udphdr.uh_dport = xgetint16(optarg);
break;
#if defined(WIN32)
case 'Z':
if ((ifacetmp = pcap_lookupdev(errbuf)) == NULL)
perror(errbuf);
PrintDeviceList(ifacetmp);
rip_exit(1);
#endif
case '?': /* FALLTHROUGH */
default:
rip_usage(argv[0]);
break;
}
}
argc -= optind;
argv += optind;
return;
}
static int rip_exit(int code)
{
if (got_payload)
free(pd.file_mem);
if (got_ipoptions)
free(ipod.file_mem);
if (device != NULL)
free(device);
if (ipoptionsfile != NULL)
free(ipoptionsfile);
if (payloadfile != NULL)
free(payloadfile);
#if defined(WIN32)
if (ifacetmp != NULL)
free(ifacetmp);
#endif
exit(code);
}
static void rip_verbose(void)
{
if (verbose)
{
if (got_link)
nemesis_printeth(ðerhdr);
nemesis_printip(&iphdr);
nemesis_printudp(&udphdr);
nemesis_printrip(&riphdr);
}
return;
}
syntax highlighted by Code2HTML, v. 0.9.1