2013-06-13 14:03:36 +00:00
|
|
|
/* $Id: testupnpdescgen.c,v 1.30 2013/06/13 13:21:30 nanard Exp $ */
|
2011-09-28 19:13:20 +00:00
|
|
|
/* MiniUPnP project
|
|
|
|
* http://miniupnp.free.fr/ or http://miniupnp.tuxfamily.org/
|
2013-06-13 14:03:36 +00:00
|
|
|
* (c) 2006-2013 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 */
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
/* for mkdir */
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <errno.h>
|
|
|
|
|
2012-05-01 09:47:37 +00:00
|
|
|
#include "macros.h"
|
2011-09-28 19:13:20 +00:00
|
|
|
#include "config.h"
|
|
|
|
#include "upnpdescgen.h"
|
2013-10-20 21:02:19 +00:00
|
|
|
#include "upnpdescstrings.h"
|
2013-12-13 11:35:36 +00:00
|
|
|
#include "getifaddr.h"
|
2011-09-28 19:13:20 +00:00
|
|
|
|
2013-06-13 14:03:36 +00:00
|
|
|
char uuidvalue_igd[] = "uuid:12345678-0000-0000-0000-000000abcd01";
|
|
|
|
char uuidvalue_wan[] = "uuid:12345678-0000-0000-0000-000000abcd02";
|
|
|
|
char uuidvalue_wcd[] = "uuid:12345678-0000-0000-0000-000000abcd03";
|
2011-09-28 19:13:20 +00:00
|
|
|
char serialnumber[] = "12345678";
|
|
|
|
char modelnumber[] = "1";
|
|
|
|
char presentationurl[] = "http://192.168.0.1:8080/";
|
|
|
|
/*char presentationurl[] = "";*/
|
2013-12-13 11:03:28 +00:00
|
|
|
#ifdef ENABLE_MANUFACTURER_INFO_CONFIGURATION
|
2012-02-04 23:24:13 +00:00
|
|
|
char friendly_name[] = OS_NAME " router";
|
2013-10-20 21:02:19 +00:00
|
|
|
char manufacturer_name[] = ROOTDEV_MANUFACTURER;
|
|
|
|
char manufacturer_url[] = ROOTDEV_MANUFACTURERURL;
|
|
|
|
char model_name[] = ROOTDEV_MODELNAME;
|
|
|
|
char model_description[] = ROOTDEV_MODELDESCRIPTION;
|
|
|
|
char model_url[] = ROOTDEV_MODELURL;
|
2013-12-13 11:03:28 +00:00
|
|
|
#endif
|
2011-09-28 19:13:20 +00:00
|
|
|
|
|
|
|
char * use_ext_ip_addr = NULL;
|
|
|
|
const char * ext_if_name = "eth0";
|
|
|
|
|
|
|
|
#ifdef ENABLE_6FC_SERVICE
|
|
|
|
int ipv6fc_firewall_enabled = 1;
|
|
|
|
int ipv6fc_inbound_pinhole_allowed = 1;
|
|
|
|
#endif
|
|
|
|
|
2013-12-13 11:35:36 +00:00
|
|
|
int getifaddr(const char * ifname, char * buf, int len, struct in_addr * addr, struct in_addr * mask)
|
2011-09-28 19:13:20 +00:00
|
|
|
{
|
2012-05-01 09:47:37 +00:00
|
|
|
UNUSED(ifname);
|
2013-12-13 11:35:36 +00:00
|
|
|
UNUSED(addr);
|
|
|
|
UNUSED(mask);
|
2011-09-28 19:13:20 +00:00
|
|
|
strncpy(buf, "1.2.3.4", len);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int upnp_get_portmapping_number_of_entries(void)
|
|
|
|
{
|
|
|
|
return 42;
|
|
|
|
}
|
|
|
|
|
|
|
|
int get_wan_connection_status(const char * ifname)
|
|
|
|
{
|
2012-05-01 09:47:37 +00:00
|
|
|
UNUSED(ifname);
|
2011-09-28 19:13:20 +00:00
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* To be improved */
|
|
|
|
int
|
|
|
|
xml_pretty_print(const char * s, int len, FILE * f)
|
|
|
|
{
|
|
|
|
int n = 0, i;
|
|
|
|
int elt_close = 0;
|
|
|
|
int c, indent = 0;
|
2012-05-01 09:47:37 +00:00
|
|
|
|
2011-09-28 19:13:20 +00:00
|
|
|
if(!s)
|
|
|
|
return n;
|
|
|
|
while(len > 0)
|
|
|
|
{
|
|
|
|
c = *(s++); len--;
|
|
|
|
switch(c)
|
|
|
|
{
|
|
|
|
case '<':
|
|
|
|
if(len>0 && *s == '/')
|
|
|
|
elt_close++;
|
|
|
|
else if(len>0 && *s == '?')
|
|
|
|
elt_close = 1;
|
|
|
|
else
|
|
|
|
elt_close = 0;
|
|
|
|
if(elt_close!=1)
|
|
|
|
{
|
|
|
|
if(elt_close > 1)
|
|
|
|
indent--;
|
|
|
|
fputc('\n', f); n++;
|
|
|
|
for(i=indent; i>0; i--)
|
|
|
|
fputc(' ', f);
|
|
|
|
n += indent;
|
|
|
|
}
|
|
|
|
fputc(c, f); n++;
|
|
|
|
break;
|
|
|
|
case '>':
|
|
|
|
fputc(c, f); n++;
|
|
|
|
if(elt_close==1)
|
|
|
|
{
|
|
|
|
/*fputc('\n', f); n++; */
|
2012-02-04 23:40:50 +00:00
|
|
|
/* elt_close = 0; */
|
2011-09-28 19:13:20 +00:00
|
|
|
if(indent > 0)
|
|
|
|
indent--;
|
|
|
|
}
|
|
|
|
else if(elt_close == 0)
|
|
|
|
indent++;
|
|
|
|
break;
|
|
|
|
case '\n':
|
|
|
|
/* remove existing LF */
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
fputc(c, f); n++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return n;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* stupid test */
|
|
|
|
const char * str1 = "Prefix123String";
|
|
|
|
const char * str2 = "123String";
|
|
|
|
|
|
|
|
void stupid_test(void)
|
|
|
|
{
|
|
|
|
printf("str1:'%s' str2:'%s'\n", str1, str2);
|
|
|
|
printf("str1:%p str2:%p str2-str1:%ld\n", str1, str2, (long)(str2-str1));
|
|
|
|
}
|
|
|
|
|
|
|
|
/* main */
|
|
|
|
|
|
|
|
int
|
|
|
|
main(int argc, char * * argv)
|
|
|
|
{
|
|
|
|
char * rootDesc;
|
|
|
|
int rootDescLen;
|
|
|
|
char * s;
|
|
|
|
int l;
|
|
|
|
FILE * f;
|
2012-05-01 09:47:37 +00:00
|
|
|
UNUSED(argc);
|
|
|
|
UNUSED(argv);
|
2011-09-28 19:13:20 +00:00
|
|
|
|
|
|
|
if(mkdir("testdescs", 0777) < 0) {
|
|
|
|
if(errno != EEXIST) {
|
|
|
|
perror("mkdir");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
printf("Root Description :\n");
|
|
|
|
rootDesc = genRootDesc(&rootDescLen);
|
|
|
|
xml_pretty_print(rootDesc, rootDescLen, stdout);
|
|
|
|
f = fopen("testdescs/rootdesc.xml", "w");
|
|
|
|
if(f) {
|
|
|
|
xml_pretty_print(rootDesc, rootDescLen, f);
|
|
|
|
fclose(f);
|
|
|
|
}
|
|
|
|
free(rootDesc);
|
|
|
|
printf("\n-------------\n");
|
|
|
|
printf("WANIPConnection Description :\n");
|
|
|
|
s = genWANIPCn(&l);
|
|
|
|
xml_pretty_print(s, l, stdout);
|
|
|
|
f = fopen("testdescs/wanipc_scpd.xml", "w");
|
|
|
|
if(f) {
|
|
|
|
xml_pretty_print(s, l, f);
|
|
|
|
fclose(f);
|
|
|
|
}
|
|
|
|
free(s);
|
|
|
|
printf("\n-------------\n");
|
|
|
|
printf("WANConfig Description :\n");
|
|
|
|
s = genWANCfg(&l);
|
|
|
|
xml_pretty_print(s, l, stdout);
|
|
|
|
f = fopen("testdescs/wanconfig_scpd.xml", "w");
|
|
|
|
if(f) {
|
|
|
|
xml_pretty_print(s, l, f);
|
|
|
|
fclose(f);
|
|
|
|
}
|
|
|
|
free(s);
|
|
|
|
printf("\n-------------\n");
|
|
|
|
#ifdef ENABLE_L3F_SERVICE
|
|
|
|
printf("Layer3Forwarding service :\n");
|
|
|
|
s = genL3F(&l);
|
|
|
|
xml_pretty_print(s, l, stdout);
|
|
|
|
f = fopen("testdescs/l3f_scpd.xml", "w");
|
|
|
|
if(f) {
|
|
|
|
xml_pretty_print(s, l, f);
|
|
|
|
fclose(f);
|
|
|
|
}
|
|
|
|
free(s);
|
|
|
|
printf("\n-------------\n");
|
|
|
|
#endif
|
|
|
|
#ifdef ENABLE_6FC_SERVICE
|
|
|
|
printf("WANIPv6FirewallControl service :\n");
|
|
|
|
s = gen6FC(&l);
|
|
|
|
xml_pretty_print(s, l, stdout);
|
|
|
|
f = fopen("testdescs/wanipv6fc_scpd.xml", "w");
|
|
|
|
if(f) {
|
|
|
|
xml_pretty_print(s, l, f);
|
|
|
|
fclose(f);
|
|
|
|
}
|
|
|
|
free(s);
|
|
|
|
printf("\n-------------\n");
|
|
|
|
#endif
|
|
|
|
#ifdef ENABLE_DP_SERVICE
|
|
|
|
printf("DeviceProtection service :\n");
|
|
|
|
s = genDP(&l);
|
|
|
|
xml_pretty_print(s, l, stdout);
|
|
|
|
f = fopen("testdescs/dp_scpd.xml", "w");
|
|
|
|
if(f) {
|
|
|
|
xml_pretty_print(s, l, f);
|
|
|
|
fclose(f);
|
|
|
|
}
|
|
|
|
free(s);
|
|
|
|
printf("\n-------------\n");
|
|
|
|
#endif
|
|
|
|
#ifdef ENABLE_EVENTS
|
|
|
|
s = getVarsWANIPCn(&l);
|
|
|
|
xml_pretty_print(s, l, stdout);
|
|
|
|
free(s);
|
|
|
|
printf("\n-------------\n");
|
|
|
|
s = getVarsWANCfg(&l);
|
|
|
|
xml_pretty_print(s, l, stdout);
|
|
|
|
free(s);
|
|
|
|
printf("\n-------------\n");
|
|
|
|
#ifdef ENABLE_L3F_SERVICE
|
|
|
|
s = getVarsL3F(&l);
|
|
|
|
xml_pretty_print(s, l, stdout);
|
|
|
|
free(s);
|
|
|
|
printf("\n-------------\n");
|
|
|
|
#ifdef ENABLE_6FC_SERVICE
|
|
|
|
s = getVars6FC(&l);
|
|
|
|
xml_pretty_print(s, l, stdout);
|
|
|
|
free(s);
|
|
|
|
printf("\n-------------\n");
|
|
|
|
#endif
|
|
|
|
#ifdef ENABLE_DP_SERVICE
|
|
|
|
s = getVarsDP(&l);
|
|
|
|
xml_pretty_print(s, l, stdout);
|
|
|
|
free(s);
|
|
|
|
printf("\n-------------\n");
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
/*
|
|
|
|
stupid_test();
|
|
|
|
*/
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|