forked from Uninett/fwbuilder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlist_object.cpp
272 lines (227 loc) · 7.31 KB
/
list_object.cpp
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
/*
Firewall Builder
Copyright (C) 2008 NetCitadel, LLC
Author: Vadim Kurland [email protected]
$Id: fwbedit.cpp 429 2008-07-31 07:03:39Z vadim $
This program is free software which we release under the GNU General Public
License. You may redistribute and/or modify this program under the terms
of that 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.
To get a copy of the GNU General Public License, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "../../config.h"
#include "fwbuilder/libfwbuilder-config.h"
#include "fwbuilder/Constants.h"
#include <qsettings.h>
#include <qdatetime.h>
#ifdef HAVE_LOCALE_H
#include <locale.h>
#endif
#include <fstream>
#include <sstream>
#include <iostream>
#include <algorithm>
#include <functional>
#include <deque>
#include <vector>
#include <string>
#ifndef _WIN32
# include <unistd.h>
#endif
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <ctype.h>
#include <stdio.h>
#ifdef HAVE_GETOPT_H
# include <getopt.h>
#else
# ifdef _WIN32
# include <getopt.h>
# else
# include <stdlib.h>
# endif
#endif
#include "fwbuilder/Resources.h"
#include "fwbuilder/FWObjectDatabase.h"
#include "fwbuilder/XMLTools.h"
#include "fwbuilder/FWException.h"
#include "fwbuilder/Group.h"
#include "fwbuilder/Library.h"
#include "fwbuilder/Firewall.h"
#include "fwbuilder/Host.h"
#include "fwbuilder/Network.h"
#include "fwbuilder/NetworkIPv6.h"
#include "fwbuilder/IPv4.h"
#include "fwbuilder/IPv6.h"
#include "fwbuilder/DNSName.h"
#include "fwbuilder/AddressTable.h"
#include "fwbuilder/AddressRange.h"
#include "fwbuilder/ObjectGroup.h"
#include "fwbuilder/Interface.h"
#include "fwbuilder/CustomService.h"
#include "fwbuilder/IPService.h"
#include "fwbuilder/ICMPService.h"
#include "fwbuilder/TCPService.h"
#include "fwbuilder/UDPService.h"
#include "fwbuilder/ServiceGroup.h"
#include "fwbuilder/Interval.h"
#include "fwbuilder/IntervalGroup.h"
#include "fwbuilder/TagService.h"
#include "fwbuilder/UserService.h"
#include <assert.h>
#include "fwbedit.h"
using namespace libfwbuilder;
using namespace std;
string getAttributeValue(FWObject *obj, const string &attr_name)
{
if (attr_name=="ID" || attr_name=="id")
return FWObjectDatabase::getStringId(obj->getId());
if (attr_name=="type")
return obj->getTypeName();
if (attr_name=="name")
return obj->getName();
if (attr_name=="path")
return obj->getPath();
if (attr_name=="comment")
return obj->getComment();
string objtype = obj->getTypeName();
if (attr_name=="address")
{
if (objtype==IPv4::TYPENAME ||
objtype==IPv6::TYPENAME ||
objtype==Network::TYPENAME ||
objtype==NetworkIPv6::TYPENAME)
{
return Address::cast(obj)->getAddressPtr()->toString();
}
}
if (attr_name=="netmask")
{
if (objtype==IPv4::TYPENAME || objtype==Network::TYPENAME)
{
return Address::cast(obj)->getNetmaskPtr()->toString();
}
if (objtype==IPv6::TYPENAME || objtype==NetworkIPv6::TYPENAME)
{
ostringstream str;
str << Address::cast(obj)->getNetmaskPtr()->getLength();
return str.str();
}
}
if (attr_name=="start_address" && objtype==AddressRange::TYPENAME)
{
return AddressRange::cast(obj)->getRangeStart().toString();
}
if (attr_name=="end_address" && objtype==AddressRange::TYPENAME)
{
return AddressRange::cast(obj)->getRangeEnd().toString();
}
if (attr_name=="dnsname" && objtype==DNSName::TYPENAME)
{
return DNSName::cast(obj)->getSourceName();
}
if (TCPUDPService::cast(obj)!=NULL)
{
ostringstream str;
if (attr_name=="src_range_start")
str << TCPUDPService::cast(obj)->getSrcRangeStart();
if (attr_name=="src_range_end")
str << TCPUDPService::cast(obj)->getSrcRangeEnd();
if (attr_name=="dst_range_start")
str << TCPUDPService::cast(obj)->getDstRangeStart();
if (attr_name=="dst_range_end")
str << TCPUDPService::cast(obj)->getDstRangeEnd();
if (str.tellp()>0) return str.str();
}
if (ICMPService::cast(obj)!=NULL)
{
if (attr_name=="icmp_type") return obj->getStr("type");
if (attr_name=="icmp_code") return obj->getStr("code");
}
string av = obj->getStr(attr_name);
return av;
}
/*
* find first occurrence of the %attr% macro and replace it with the
* value of corresponding attribute of the obj. Replacement is done in
* the same string in place, function returns true if it found and
* replaced at least one macro, false otherwise
*/
bool replaceFirstMacroInString(string &str, FWObject *obj)
{
string::size_type n = 0;
for (n=0; n<str.length(); ++n)
{
if (str[n]=='%')
{
string::size_type n0 = n;
string::size_type n1 = n;
n++;
while (n<str.length() && str[n]!='%')
++n;
if (n>=str.length()) return false;
n1 = n;
string attr_name = str.substr(n0+1, n1-n0-1);
string attr_value = getAttributeValue(obj, attr_name);
str.replace(n0, n1-n0+1, attr_value);
return true;
}
}
return false;
}
void listObject(FWObject *obj, bool list_children, bool recursive,
const string &list_format,
bool full_dump, int offset)
{
int off = offset;
/*
* print according to the list_format
* format macros are attribute names surrounded by %%, like
* %name% or %address%
*/
if (!list_children)
{
if (full_dump) obj->dump(recursive, false);
else
{
string format = list_format;
while (replaceFirstMacroInString(format, obj)) ;
string::size_type n;
while ( (n=format.find("\\t"))!=string::npos )
format.replace(n, 2, "\t");
while ( (n=format.find("\\n"))!=string::npos )
format.replace(n, 2, "\n");
cout << string(offset,' ') << format << endl;
off += 4;
}
}
if (recursive || list_children)
{
for (FWObject::iterator it=obj->begin(); it!=obj->end(); ++it)
listObject(*it, false, recursive,
list_format, full_dump, off);
}
}
void listObject(FWObjectDatabase *objdb,
const string &path,
bool list_children,
bool recursive,
const string &list_format,
bool full_dump)
{
list<FWObject*> objects;
findObjects(path, objdb, objects);
if (objects.size()==0)
{
cout << "Object " << path << " not found" << endl;
exit(-1);
}
for (list<FWObject*>::iterator it=objects.begin(); it!=objects.end(); ++it)
listObject(*it, list_children, recursive, list_format, full_dump, 0);
}