2014-03-06 13:21:39 +00:00
|
|
|
/* $Id: testobsdrdr.c,v 1.28 2014/03/06 13:02:47 nanard Exp $ */
|
2011-09-28 19:13:20 +00:00
|
|
|
/* MiniUPnP project
|
|
|
|
* http://miniupnp.free.fr/ or http://miniupnp.tuxfamily.org/
|
2014-03-06 13:21:39 +00:00
|
|
|
* (c) 2006-2014 Thomas Bernard
|
2011-09-28 19:13:20 +00:00
|
|
|
* This software is subject to the conditions detailed
|
|
|
|
* in the LICENCE file provided within the distribution */
|
|
|
|
|
2014-03-06 13:21:39 +00:00
|
|
|
#include <string.h>
|
2011-09-28 19:13:20 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <netinet/in.h>
|
|
|
|
#include <syslog.h>
|
|
|
|
|
|
|
|
#include "obsdrdr.h"
|
|
|
|
|
|
|
|
/*int logpackets = 1;*/
|
|
|
|
int runtime_flags = 0;
|
|
|
|
const char * tag = 0;
|
2012-04-18 20:53:51 +00:00
|
|
|
const char * anchor_name = "miniupnpd";
|
2014-03-06 13:21:39 +00:00
|
|
|
const char * queue = NULL;
|
2011-09-28 19:13:20 +00:00
|
|
|
|
|
|
|
void
|
|
|
|
list_rules(void);
|
|
|
|
|
|
|
|
void
|
|
|
|
list_eports_tcp(void)
|
|
|
|
{
|
|
|
|
unsigned short * port_list;
|
|
|
|
unsigned int number = 0;
|
|
|
|
unsigned int i;
|
|
|
|
port_list = get_portmappings_in_range(0, 65535, IPPROTO_TCP, &number);
|
|
|
|
printf("%u ports redirected (TCP) :", number);
|
|
|
|
for(i = 0; i < number; i++)
|
|
|
|
{
|
|
|
|
printf(" %hu", port_list[i]);
|
|
|
|
}
|
|
|
|
printf("\n");
|
|
|
|
free(port_list);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
test_index(void)
|
|
|
|
{
|
|
|
|
char ifname[16/*IFNAMSIZ*/];
|
|
|
|
char iaddr[32];
|
|
|
|
char desc[64];
|
|
|
|
char rhost[32];
|
|
|
|
unsigned short iport = 0;
|
|
|
|
unsigned short eport = 0;
|
|
|
|
int proto = 0;
|
|
|
|
unsigned int timestamp;
|
|
|
|
ifname[0] = '\0';
|
|
|
|
iaddr[0] = '\0';
|
|
|
|
rhost[0] = '\0';
|
|
|
|
if(get_redirect_rule_by_index(0, ifname, &eport, iaddr, sizeof(iaddr),
|
|
|
|
&iport, &proto, desc, sizeof(desc),
|
|
|
|
rhost, sizeof(rhost),
|
|
|
|
×tamp, 0, 0) < 0)
|
|
|
|
{
|
|
|
|
printf("get.._by_index : no rule\n");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
printf("%s %u -> %s:%u proto %d\n", ifname, (unsigned int)eport,
|
|
|
|
iaddr, (unsigned int)iport, proto);
|
|
|
|
printf("description: \"%s\"\n", desc);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2014-03-06 13:21:39 +00:00
|
|
|
main(int argc, char * * argv)
|
2011-09-28 19:13:20 +00:00
|
|
|
{
|
|
|
|
char buf[32];
|
|
|
|
char desc[64];
|
2012-04-18 20:53:51 +00:00
|
|
|
char rhost[64];
|
2011-09-28 19:13:20 +00:00
|
|
|
/*char rhost[32];*/
|
|
|
|
unsigned short iport;
|
|
|
|
unsigned int timestamp;
|
|
|
|
u_int64_t packets = 0;
|
|
|
|
u_int64_t bytes = 0;
|
2014-03-06 13:21:39 +00:00
|
|
|
int clear = 0;
|
|
|
|
|
|
|
|
if(argc > 1) {
|
|
|
|
if(0 == strcmp(argv[1], "--clear") || 0 == strcmp(argv[1], "-c"))
|
|
|
|
clear = 1;
|
|
|
|
}
|
2011-09-28 19:13:20 +00:00
|
|
|
|
|
|
|
openlog("testobsdrdr", LOG_PERROR, LOG_USER);
|
|
|
|
if(init_redirect() < 0)
|
|
|
|
{
|
|
|
|
fprintf(stderr, "init_redirect() failed\n");
|
|
|
|
return 1;
|
|
|
|
}
|
2012-04-18 20:53:51 +00:00
|
|
|
#if 0
|
|
|
|
add_redirect_rule("ep0", 12123, "192.168.1.23", 1234);
|
|
|
|
add_redirect_rule2("ep0", 12155, "192.168.1.155", 1255, IPPROTO_TCP);
|
|
|
|
#endif
|
2014-03-06 13:24:58 +00:00
|
|
|
if(add_redirect_rule2("ep0", "8.8.8.8", 12123, "192.168.1.125", 1234,
|
|
|
|
IPPROTO_UDP, "test description", 0) < 0)
|
|
|
|
printf("add_redirect_rule2() #3 failed\n");
|
|
|
|
if(add_redirect_rule2("em0", NULL, 12123, "127.1.2.3", 1234,
|
|
|
|
IPPROTO_TCP, "test description tcp", 0) < 0)
|
|
|
|
printf("add_redirect_rule2() #4 failed\n");
|
|
|
|
if(add_filter_rule2("em0", NULL, "127.1.2.3", 12123, 1234, IPPROTO_TCP,
|
|
|
|
"test description tcp") < 0)
|
|
|
|
printf("add_filter_rule2() #1 failed\n");
|
2011-09-28 19:13:20 +00:00
|
|
|
|
|
|
|
list_rules();
|
|
|
|
list_eports_tcp();
|
2012-03-01 01:44:38 +00:00
|
|
|
|
2011-09-28 19:13:20 +00:00
|
|
|
|
|
|
|
if(get_redirect_rule("xl1", 4662, IPPROTO_TCP,
|
|
|
|
buf, sizeof(buf), &iport, desc, sizeof(desc),
|
2012-04-18 20:53:51 +00:00
|
|
|
rhost, sizeof(rhost),
|
2011-09-28 19:13:20 +00:00
|
|
|
×tamp,
|
|
|
|
&packets, &bytes) < 0)
|
|
|
|
printf("get_redirect_rule() failed\n");
|
|
|
|
else
|
|
|
|
{
|
|
|
|
printf("\n%s:%d '%s' packets=%llu bytes=%llu\n", buf, (int)iport, desc,
|
|
|
|
packets, bytes);
|
|
|
|
}
|
2012-04-18 20:53:51 +00:00
|
|
|
|
2011-09-28 19:13:20 +00:00
|
|
|
if(delete_redirect_rule("ep0", 12123, IPPROTO_UDP) < 0)
|
|
|
|
printf("delete_redirect_rule() failed\n");
|
|
|
|
|
|
|
|
if(delete_redirect_rule("ep0", 12123, IPPROTO_UDP) < 0)
|
|
|
|
printf("delete_redirect_rule() failed\n");
|
2014-03-06 13:24:58 +00:00
|
|
|
|
|
|
|
if(delete_redirect_and_filter_rules("em0", 12123, IPPROTO_TCP) < 0)
|
|
|
|
printf("delete_redirect_and_filter_rules() failed\n");
|
2011-09-28 19:13:20 +00:00
|
|
|
|
2012-04-18 20:53:51 +00:00
|
|
|
test_index();
|
|
|
|
|
2014-03-06 13:21:39 +00:00
|
|
|
if(clear) {
|
|
|
|
clear_redirect_rules();
|
|
|
|
clear_filter_rules();
|
|
|
|
}
|
|
|
|
/*list_rules();*/
|
2011-09-28 19:13:20 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|