forked from Uninett/fwbuilder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfwbedit.cpp
901 lines (768 loc) · 23.9 KB
/
fwbedit.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
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
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
/*
Firewall Builder
Copyright (C) 2003 NetCitadel, LLC
Author: Vadim Kurland [email protected]
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>
#ifndef _WIN32
# include <unistd.h>
#endif
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <ctype.h>
#include <stdio.h>
#include <errno.h>
#ifndef errno
extern int errno;
#endif
#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/XMLTools.h"
#include "fwbuilder/FWException.h"
#include "fwbuilder/Group.h"
#include "fwbuilder/Library.h"
#include "fwbuilder/Firewall.h"
#include "fwbuilder/Cluster.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/Interface.h"
#include "fwbuilder/ServiceGroup.h"
#include "fwbuilder/CustomService.h"
#include "fwbuilder/IPService.h"
#include "fwbuilder/ICMPService.h"
#include "fwbuilder/TCPService.h"
#include "fwbuilder/UDPService.h"
#include "fwbuilder/Interval.h"
#include "fwbuilder/TagService.h"
#include "fwbuilder/UserService.h"
#include "fwbuilder/Constants.h"
#include "../common/init.cpp"
#include "fwbedit.h"
#include "upgradePredicate.h"
#include "FWWindow.h"
#include "FWBSettings.h"
#include "FWBApplication.h"
#include <QStringList>
#include <QFile>
using namespace libfwbuilder;
using namespace std;
FWWindow *mw = NULL;
FWBSettings *st = NULL;
FWBApplication *app = NULL;
int sig = FWB_SIG;
string cmd_str = "";
command cmd = NONE;
bool autoupgrade_flag = false;
string filename = "";
string filemerge = "";
int conflict_res = 1;
vector<string> platforms;
FWObjectDatabase *objdb = NULL;
int fwbdebug = 0;
void list_attributes()
{
cout << "Attributes for the new objects, by type:" << endl;
cout << endl;
cout << " "
<< " -t " <<Firewall::TYPENAME
<< " -a platform, host OS" << endl;
cout << " "
<< " -t " <<Cluster::TYPENAME
<< " -a platform, host OS" << endl;
cout << " "
<< " -t " <<IPv4::TYPENAME
<< " -a IP address [,netmask]" << endl;
cout << " "
<< " -t " <<IPv6::TYPENAME
<< " -a IPv6 address [,masklen]" << endl;
cout << " "
<< " -t " <<DNSName::TYPENAME
<< " -a DNS record,run time" << endl;
cout << " "
<< " -t " <<AddressRange::TYPENAME
<< " -a start address, end address" << endl;
cout << " "
<< " -t " <<ObjectGroup::TYPENAME
<< endl;
cout << " "
<< " -t " <<Network::TYPENAME
<< " -a address,netmask" << endl;
cout << " "
<< " -t " <<NetworkIPv6::TYPENAME
<< " -a ipv6_address,netmask_length" << endl;
cout << " "
<< " -t " <<Interval::TYPENAME
<< " -a start time,start date,start day,end time, end date, end day" << endl;
cout << " "
<< " -t " <<Interface::TYPENAME
<< " -a security level,address type "
"(dynamic or unnumbered),management" << endl;
cout << " "
<< " -t " <<Host::TYPENAME
<< endl;
cout << " "
<< " -t " <<ServiceGroup::TYPENAME
<< endl;
cout << " "
<< " -t " <<TCPService::TYPENAME
<< " -a source port range start,end,destination port range start,end,UAPRSF,UAPRSF" << endl;
cout << " "
<< " -t " <<UDPService::TYPENAME
<< " -a source port range start,end,Destination port range start,end" << endl;
cout << " "
<< " -t " <<ICMPService::TYPENAME
<< " -a ICMP type,ICMP code" << endl;
cout << " "
<< " -t " <<IPService::TYPENAME
<< " -a protocol "
"number,lsrr/ssrr/rr/ts/fragm/short_fragm" << endl;
}
void usage()
{
cout << "Firewall Builder: general purpose object tree editing tool"
<< endl;
cout << "Version " << VERSION << endl;
cout << endl;
cout << "Usage: fwbedit command [options]" << endl;
cout << endl;
cout << "Command is one of:" << endl;
cout << " new create new object" << endl;
cout << " delete delete object" << endl;
cout << " modify modify object" << endl;
cout << " list print object" << endl;
cout << " add add object to a group" << endl;
cout << " remove remove object from a group" << endl;
cout << " upgrade upgrade data file" << endl;
cout << " checktree check object tree and repair if necessary" << endl;
cout << " merge merge one data file into another" << endl;
cout << " import import firewall configuration (iptables, CIsco IOS," << endl;
cout << " Cisco PIX, ASA and FWSM)" << endl;
cout << endl;
cout << "Type 'fwbedit command' to get summary of options for the command"
<< endl;
cout << endl;
}
void usage_new()
{
cout << "Options:" << endl;
cout << endl;
cout <<
" new -f file.fwb -t objtype -n name -c comment "
"-p parent [-a attrs]\n"
"\n"
" -f file.fwb: data file\n"
" -t objtype: create a new object of this type\n"
" -n name: the name of the new object\n"
" -c txt: specify comment for the new object\n"
" -a attribute1[,attribute2...] : specify attributes that\n"
" define parameters of the new object (see below)\n";
cout << endl;
list_attributes();
}
void usage_delete()
{
cout <<
" delete -f file.fwb -o object\n"
"\n"
" -f file.fwb: data file\n"
" -o object: object to be deleted, full path or ID\n";
cout << endl;
}
void usage_modify()
{
cout <<
" modify -f file.fwb -o object -c comment [-a attrs]\n"
"\n"
" -f file.fwb: data file\n"
" -o object: object to be modified, full path or ID\n"
" -c txt: specify comment for the new object\n"
" -a attribute1[,attribute2...] : specify attributes that\n"
" define parameters of the new object (see below)\n";
cout << endl;
}
void usage_list()
{
cout <<
" list -f file.fwb -o object [-r|-c] [-d|-Fformat]\n"
"\n"
" -f file.fwb: data file\n"
" -o object: object to print, full path or ID\n"
" -r print given object and all object below it in the tree\n"
" -c print all children of given object but not the object\n"
" itself\n"
" -d print full dump of all object's attributes including\n"
" internal debugging information if available\n"
" -F format_string print according to the format; see\n"
" man fwbedit(1) for the list of macros and examples\n";
cout << endl;
}
void usage_add()
{
cout <<
" add -f file.fwb -g group -o object\n"
"\n"
" -f file.fwb: data file\n"
" -g group: group the object should be added to, \n"
" full path or ID\n"
" -o object: object to be added, full path or ID\n";
cout << endl;
}
void usage_remove()
{
cout <<
" remove -f file.fwb -g group -o object\n"
"\n"
" -f file.fwb: data file\n"
" -g group: group the object should be removed from,\n"
" full path or ID\n"
" -o object: object to be removed, full path or ID\n";
cout << endl;
}
void usage_upgrade()
{
cout <<
" upgrade -f file.fwb\n"
"\n"
" -f file.fwb: data file\n";
cout << endl;
}
void usage_checktree()
{
cout <<
" checktree -f file.fwb\n"
"\n"
" -f file.fwb: data file\n";
cout << endl;
}
void usage_merge()
{
cout <<
" merge -f file1.fwb -i file2.fwb -c[1|2]\n"
"\n"
" -f file1.fwb: data file #1\n"
" -i file2.fwb: data file #2\n"
" -cN in case of conflict (the same object is found in both files),\n"
" keep the object from the file N (can be '1' or '2').\n"
" Default is '1'.\n"
" Objects from the file2.fwb are merged with objects in file1\n"
" and combined object tree saved in file1.fwb\n";
cout << endl;
}
void usage_import()
{
cout <<
" import -f file1.fwb -i firewall_config.txt -o firewall_object_path [-d]\n"
"\n"
" -f file1.fwb: data file #1\n"
" -i firewall_config.txt: firewall configuration file that\n"
" should be imported #2\n"
" -o firewall_object_path: a full path to the firewall object\n"
" to be created, e.g. '/User/Firewalls/my_new_firewall'\n"
" Note that path must start with the library name\n"
" -d reuse address and service objects created in the process\n"
" of import\n";
cout << endl;
}
void _findObjects(const string &obj_path, FWObject *obj, list<FWObject*> &res)
{
string path = fixPath(obj_path);
if (obj->getPath()==path) res.push_back(obj);
for (FWObject::iterator it=obj->begin(); it!=obj->end(); ++it)
{
if (FWReference::cast(*it)) continue;
_findObjects(path, *it, res);
}
}
string fixPath(const string &obj_path)
{
string res = obj_path;
// add leading "/" if it is not there
if (res[0]!='/') res = string("/") + res;
// strip trailing "/"
if (res[res.length()-1] == '/')
res = res.substr(0, res.length()-1);
if (res.find("/FWObjectDatabase")!=0)
res = string("/FWObjectDatabase") + res;
return res;
}
void findObjects(const string &obj_path, FWObject *obj, list<FWObject*> &res)
{
if (obj_path.find('/')==string::npos)
{
int id = FWObjectDatabase::getIntId(obj_path);
if (id>=0)
{
FWObject *o = obj->getRoot()->findInIndex(id);
if (o)
{
res.push_back(o);
return;
}
}
}
string path = fixPath(obj_path);
_findObjects(path, obj, res);
}
int splitStr(char ch,string s, operands * ops)
{
int res=0;
string::size_type pos;
ops->clear();
if (s.length()>0)
{
while((pos=s.find_first_of(ch))!=string::npos)
{
ops->push_back(s.substr(0,pos));
s=s.substr(pos+1);
res++;
}
ops->push_back(s);
res++;
}
return res;
}
string getNextOpt(operands &ops)
{
operands::iterator it = ops.begin();
if (it == ops.end())
throw OperandsError();
string s = *it;
ops.pop_front();
return s;
}
bool getBool(string s)
{
return (s.find("y")!=string::npos) || (s.find("Y")!=string::npos) || (s.find("1")!=string::npos);
}
int main(int argc, char * const *argv)
{
operands ops;
string objtype;
string name;
string object;
string group;
string parent;
string comment_txt;
bool list_children = false;
bool recursive = false;
string list_format = "%path%";
bool full_dump = false;
string import_config;
bool deduplicate = false;
if (argc<=1)
{
usage();
exit(1);
}
/*
* Command line format:
* fwbedit command [options]
*
* argv[1] is always command
*/
cmd_str = string(argv[1]);
cmd = NONE;
if (cmd_str=="new") cmd = NEWOBJECT;
if (cmd_str=="delete") cmd = DELOBJECT;
if (cmd_str=="modify") cmd = MODOBJECT;
if (cmd_str=="add") cmd = ADDGRP;
if (cmd_str=="remove") cmd = REMGRP;
if (cmd_str=="list") cmd = LIST;
if (cmd_str=="upgrade") cmd = UPGRADE;
if (cmd_str=="checktree") cmd = STRUCT;
if (cmd_str=="merge") cmd = MERGE;
if (cmd_str=="import") cmd = IMPORT;
char * const *args = argv;
args++;
argc--;
int opt;
switch (cmd)
{
case NEWOBJECT:
{
// -f file.fwb -t objtype -n name -c comment -p parent [-a attrs]
while( (opt=getopt(argc, args, "f:t:n:c:p:a:")) != EOF )
{
switch(opt)
{
case 'f': filename = optarg; break;
case 't': objtype = optarg; break;
case 'n': name = optarg; break;
case 'c': comment_txt = optarg; break;
case 'p': parent = optarg; break;
case 'a':
int num=0;
Q_UNUSED(num);
if (optarg!=NULL)
{
string str = optarg;
num = splitStr(',', str, &ops);
}
break;
}
}
if (filename=="")
{
usage_new();
exit(1);
}
break;
}
case DELOBJECT:
// -f file.fwb -o object_def
// object_def can be either full path or object ID
while( (opt=getopt(argc, args, "f:o:")) != EOF )
{
switch(opt)
{
case 'f': filename = optarg; break;
case 'o': object = optarg; break;
}
}
if (filename.empty() || object.empty())
{
usage_delete();
exit(1);
}
break;
case MODOBJECT:
{
// -f file.fwb -o object -c comment [-a attrs]
while( (opt=getopt(argc, args, "f:o:c:a:")) != EOF )
{
switch(opt)
{
case 'f': filename = optarg; break;
case 'o': object = optarg; break;
case 'c': comment_txt = optarg; break;
case 'a':
int num=0;
Q_UNUSED(num);
if (optarg!=NULL)
{
string str = optarg;
num = splitStr(',', str, &ops);
}
break;
}
}
if (filename.empty() || object.empty())
{
usage_modify();
exit(1);
}
break;
}
case ADDGRP:
case REMGRP:
// -f file.fwb -p group -o object
// Add/remove object to group
// both group and object can be either path or ID
while( (opt=getopt(argc, args, "f:g:o:")) != EOF )
{
switch(opt)
{
case 'f': filename = optarg; break;
case 'g': group = optarg; break;
case 'o': object = optarg; break;
}
}
if (filename.empty() || group.empty() || object.empty())
{
if (cmd == ADDGRP) usage_add();
if (cmd == REMGRP) usage_remove();
exit(1);
}
break;
case LIST:
// -f file.fwb -o object [-r] [-Fformat_string] [-d]
// object can be either path or ID
while( (opt=getopt(argc, args, "f:o:crdF:")) != EOF )
{
switch(opt)
{
case 'f': filename = optarg; break;
case 'o': object = optarg; break;
case 'c': list_children = true; break;
case 'r': recursive = true; break;
case 'F': list_format = optarg; break;
case 'd': full_dump = true; break;
}
}
if (filename.empty() || object.empty())
{
usage_list();
exit(1);
}
break;
case UPGRADE:
// -f file.fwb
autoupgrade_flag = true;
while( (opt=getopt(argc, args, "f:")) != EOF )
{
switch(opt)
{
case 'f': filename = optarg; break;
}
}
if (filename.empty())
{
usage_upgrade();
exit(1);
}
break;
case STRUCT:
// -f file.fwb
while( (opt=getopt(argc, args, "f:")) != EOF )
{
switch(opt)
{
case 'f': filename = optarg; break;
}
}
if (filename.empty())
{
usage_checktree();
exit(1);
}
break;
case MERGE:
// -f file1.fwb -i file2.fwb
while( (opt=getopt(argc, args, "f:i:c:")) != EOF )
{
switch(opt)
{
case 'f': filename = optarg; break;
case 'i': filemerge = optarg; break;
case 'c': conflict_res = atoi(optarg); break;
}
}
if (filename.empty() || filemerge.empty())
{
usage_merge();
exit(1);
}
break;
case IMPORT:
// -f file.fwb -i config.txt -o /User/Firewalls/new_firewall
while( (opt=getopt(argc, args, "f:i:o:d")) != EOF )
{
switch(opt)
{
case 'f': filename = optarg; break;
case 'i': import_config = optarg; break;
case 'o': object = optarg; break;
case 'd': deduplicate = true; break;
}
}
if (filename.empty() || import_config.empty() || object.empty())
{
usage_import();
exit(1);
}
break;
case NONE:
break;
}
if (cmd==NONE || filename=="")
{
usage();
exit(1);
}
init(argv);
try
{
new Resources(Constants::getResourcesFilePath());
/* create database */
objdb = new FWObjectDatabase();
/* load the data file */
UpgradePredicate upgrade_predicate(autoupgrade_flag);
objdb->load(filename, &upgrade_predicate, Constants::getDTDDirectory());
if (cmd == MERGE)
{
if (filemerge.empty())
{
cerr << "The name of the file that should be merged is missing"
<< endl;
usage_merge();
exit(1);
}
mergeTree(objdb, filemerge, conflict_res);
}
else if (cmd == IMPORT)
{
if (import_config.empty() || object.empty())
{
cerr << "Configuration file name and path to the new firewall "
"object are mandatory options for import" << endl;
usage_import();
exit(1);
}
QStringList components = QString::fromUtf8(object.c_str())
.split("/", QString::SkipEmptyParts);
string fw_name = components.last().toUtf8().constData();
Library *library = NULL;
while (library == NULL)
{
components.pop_back();
string library_path = components.join("/").toUtf8().constData();
list<FWObject*> objects;
findObjects(library_path, objdb, objects);
if (objects.size() == 0)
{
cerr << "Library or folder '"
<< library_path << "' not found" << endl;
usage_import();
exit(1);
}
library = Library::cast(objects.front());
}
cout << "Import firewall configuration from file "
<< import_config
<< endl;
cout << "New firewall object '"
<< fw_name
<< "' will be created in library '"
<< library->getName()
<< "'"
<< endl;
importConfig(import_config, library, fw_name, deduplicate);
}
else if (cmd == STRUCT)
{
checkAndRepairTree(objdb);
}
else if (cmd == LIST)
{
listObject(objdb, object, list_children, recursive,
list_format, full_dump);
return(0);
}
else if (cmd == UPGRADE)
{
cout << "File upgraded; current data format version: "
<< libfwbuilder::Constants::getDataFormatVersion() << endl;
}
else if (cmd == NEWOBJECT)
{
newObject(objdb, objtype, name, comment_txt, parent, ops);
}
else if (cmd == DELOBJECT)
{
delObject(objdb, object);
}
else if (cmd == MODOBJECT)
{
modObject(objdb, object, comment_txt, ops);
}
else
{
list<FWObject*> objects;
findObjects(object, objdb, objects);
if (objects.size()==0)
{
cout << "Object " << object << " not found" << endl;
exit(-1);
}
for (list<FWObject*>::iterator it=objects.begin();
it!=objects.end(); ++it)
{
FWObject *obj = *it;
if (cmd==ADDGRP)
{
list<FWObject*> groups;
findObjects(group, objdb, groups);
if (groups.size()==0)
{
cout << "Group " << group << " not found" << endl;
exit(-1);
}
FWObject *grp = groups.front();
cout << "Adding object '" << obj->getName()
<< "' to the group '" << grp->getName()
<< "'" << endl;
grp->addRef(obj);
}
if (cmd==REMGRP)
{
list<FWObject*> groups;
findObjects(group, objdb, groups);
if (groups.size()==0)
{
cout << "Group " << group << " not found" << endl;
exit(-1);
}
FWObject *grp = groups.front();
cout << "Removing object '" << obj->getName()
<< "' from the group '" << grp->getName()
<< "'" << endl;
grp->removeRef(obj);
}
}
}
QString filename_qstr = QString::fromUtf8(filename.c_str());
QString bakfile = filename_qstr + ".bak";
QFile bakf(bakfile);
if (bakf.exists()) bakf.remove();
QFile dataf(filename_qstr);
if (dataf.rename(bakfile))
{
objdb->saveFile(filename);
} else
{
cout << "Could not rename data file, abroting operation" << endl;
cout << dataf.errorString().toStdString() << endl;
exit(-1);
}
} catch(FWException &ex) {
cerr << ex.toString() << endl;
exit(1);
} catch (std::string s) {
cerr << s;
exit(1);
} catch (std::exception ex) {
cerr << ex.what();
exit(1);
} catch (...) {
cerr << "Unsupported exception";
exit(1);
}
return(0);
}