-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathipfixprobe.cpp
742 lines (668 loc) · 21.6 KB
/
ipfixprobe.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
/**
* \file ipfixprobe.cpp
* \brief Main exporter objects source
* \author Jiri Havranek <[email protected]>
* \date 2021
*/
/*
* Copyright (C) 2021 CESNET
*
* LICENSE TERMS
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the
* distribution.
* 3. Neither the name of the Company nor the names of its contributors
* may be used to endorse or promote products derived from this
* software without specific prior written permission.
*
*
*
*/
#include <config.h>
#include <unistd.h>
#include <string>
#include <iostream>
#include <iomanip>
#include <sstream>
#include <fstream>
#include <memory>
#include <thread>
#include <future>
#include <signal.h>
#include <poll.h>
#include "ipfixprobe.hpp"
#ifdef WITH_LIBUNWIND
#include "stacktrace.hpp"
#endif
#include "stats.hpp"
namespace ipxp {
volatile sig_atomic_t stop = 0;
volatile sig_atomic_t terminate_export = 0;
volatile sig_atomic_t terminate_input = 0;
const uint32_t DEFAULT_IQUEUE_SIZE = 64;
const uint32_t DEFAULT_OQUEUE_SIZE = 16536;
const uint32_t DEFAULT_FPS = 0; // unlimited
/**
* \brief Signal handler function.
* \param [in] sig Signal number.
*/
void signal_handler(int sig)
{
#ifdef WITH_LIBUNWIND
if (sig == SIGSEGV) {
st_dump(STDERR_FILENO, sig);
abort();
}
#endif
stop = 1;
}
void register_handlers()
{
signal(SIGTERM, signal_handler);
signal(SIGINT, signal_handler);
#ifdef WITH_LIBUNWIND
signal(SIGSEGV, signal_handler);
#endif
#ifdef WITH_NEMEA
signal(SIGPIPE, SIG_IGN);
#endif
}
void error(std::string msg)
{
std::cerr << "Error: " << msg << std::endl;
}
template<typename T>
static void print_plugins_help(std::vector<Plugin *> &plugins)
{
for (auto &it : plugins) {
if (dynamic_cast<T *>(it)) {
OptionsParser *parser = it->get_parser();
parser->usage(std::cout);
std::cout << std::endl;
delete parser;
}
}
}
void print_help(ipxp_conf_t &conf, const std::string &arg)
{
auto deleter = [&](std::vector<Plugin *> *p) {
for (auto &it : *p) {
delete it;
}
delete p;
};
auto plugins = std::unique_ptr<std::vector<Plugin *>, decltype(deleter)>(new std::vector<Plugin*>(conf.mgr.get()), deleter);
if (arg == "input") {
print_plugins_help<InputPlugin>(*plugins);
} else if (arg == "storage") {
print_plugins_help<StoragePlugin>(*plugins);
} else if (arg == "output") {
print_plugins_help<OutputPlugin>(*plugins);
} else if (arg == "process") {
print_plugins_help<ProcessPlugin>(*plugins);
} else {
Plugin *p;
try {
p = conf.mgr.get(arg);
if (p == nullptr) {
std::cout << "No help available for " << arg << std::endl;
return;
}
} catch (PluginManagerError &e) {
error(std::string("when loading plugin: ") + e.what());
return;
}
OptionsParser *parser = p->get_parser();
parser->usage(std::cout);
delete parser;
delete p;
}
}
void process_plugin_argline(const std::string &args, std::string &plugin, std::string ¶ms, std::vector<int> &affinity)
{
size_t delim;
params = args;
delim = params.find(OptionsParser::DELIM);
plugin = params.substr(0, delim);
params.erase(0, delim == std::string::npos ? delim : delim + 1);
delim = plugin.find('@');
if (delim != std::string::npos) {
try {
affinity.emplace_back(std::stoi(plugin.substr(delim + 1)));
} catch (const std::invalid_argument &ex) {
throw IPXPError("CPU affinity must be single number: " + std::string(ex.what()));
}
}
plugin = plugin.substr(0, delim);
trim_str(plugin);
trim_str(params);
}
telemetry::Content get_ipx_ring_telemetry(ipx_ring_t* ring)
{
telemetry::Dict dict;
uint64_t size = ipx_ring_size(ring);
uint64_t count = ipx_ring_cnt(ring);
double usage = 0;
if (size) {
usage = (double) count / size * 100;
}
dict["size"] = size;
dict["count"] = count;
dict["usage"] = telemetry::ScalarWithUnit {usage, "%"};
return dict;
}
void set_thread_details(pthread_t thread, const std::string &name, const std::vector<int> &affinity)
{
// Set thread name and affinity
if (name.length() > 0) {
pthread_setname_np(thread, name.substr(0, 15).c_str());
}
if (affinity.size() > 0) {
cpu_set_t cpuset;
CPU_ZERO(&cpuset);
for (auto cpu : affinity) {
CPU_SET(cpu, &cpuset);
}
int ret = pthread_setaffinity_np(thread, sizeof(cpu_set_t), &cpuset);
if (ret != 0) {
throw IPXPError(
"pthread_setaffinity_np failed, CPU(s) "
+ vec2str(affinity) + " probably cannot be set"
);
}
}
}
bool process_plugin_args(ipxp_conf_t &conf, IpfixprobeOptParser &parser)
{
auto deleter = [&](OutputPlugin::Plugins *p) {
for (auto &it : *p) {
delete it.second;
}
delete p;
};
auto process_plugins = std::unique_ptr<OutputPlugin::Plugins, decltype(deleter)>(new OutputPlugin::Plugins(), deleter);
std::string storage_name = "cache";
std::string storage_params = "";
std::string output_name = "ipfix";
std::string output_params = "";
if (parser.m_storage.size()) {
std::vector<int> affinity;
process_plugin_argline(parser.m_storage[0], storage_name, storage_params, affinity);
if (affinity.size() != 0) {
throw IPXPError("cannot set CPU affinity for storage plugin (storage plugin is invoked inside input threads)");
}
}
std::vector<int> output_worker_affinity;
if (parser.m_output.size()) {
process_plugin_argline(parser.m_output[0], output_name, output_params, output_worker_affinity);
}
// Process
for (auto &it : parser.m_process) {
ProcessPlugin *process_plugin = nullptr;
std::string process_params;
std::string process_name;
std::vector<int> affinity;
process_plugin_argline(it, process_name, process_params, affinity);
if (affinity.size() != 0) {
throw IPXPError("cannot set CPU affinity for process plugin (process plugins are invoked inside input threads)");
}
for (auto &it : *process_plugins) {
std::string plugin_name = it.first;
if (plugin_name == process_name) {
throw IPXPError(process_name + " plugin was specified multiple times");
}
}
if (process_name == BASIC_PLUGIN_NAME) {
continue;
}
try {
process_plugin = dynamic_cast<ProcessPlugin *>(conf.mgr.get(process_name));
if (process_plugin == nullptr) {
throw IPXPError("invalid processing plugin " + process_name);
}
process_plugin->init(process_params.c_str());
process_plugins->push_back(std::make_pair(process_name, process_plugin));
} catch (PluginError &e) {
delete process_plugin;
throw IPXPError(process_name + std::string(": ") + e.what());
} catch (PluginExit &e) {
delete process_plugin;
return true;
} catch (PluginManagerError &e) {
throw IPXPError(process_name + std::string(": ") + e.what());
}
}
// telemetry
conf.telemetry_root_node = telemetry::Directory::create();
// Output
auto output_dir = conf.telemetry_root_node->addDir("output");
ipx_ring_t *output_queue = ipx_ring_init(conf.oqueue_size, 1);
if (output_queue == nullptr) {
throw IPXPError("unable to initialize ring buffer");
}
auto ipxRingTelemetryDir = output_dir->addDir("ipxRing");
telemetry::FileOps statsOps = {[=]() { return get_ipx_ring_telemetry(output_queue); }, nullptr};
auto statsFile = ipxRingTelemetryDir->addFile("stats", statsOps);
conf.holder.add(statsFile);
OutputPlugin *output_plugin = nullptr;
try {
output_plugin = dynamic_cast<OutputPlugin *>(conf.mgr.get(output_name));
if (output_plugin == nullptr) {
ipx_ring_destroy(output_queue);
throw IPXPError("invalid output plugin " + output_name);
}
output_plugin->init(output_params.c_str(), *process_plugins);
conf.active.output.push_back(output_plugin);
conf.active.all.push_back(output_plugin);
} catch (PluginError &e) {
ipx_ring_destroy(output_queue);
delete output_plugin;
throw IPXPError(output_name + std::string(": ") + e.what());
} catch (PluginExit &e) {
ipx_ring_destroy(output_queue);
delete output_plugin;
return true;
} catch (PluginManagerError &e) {
throw IPXPError(output_name + std::string(": ") + e.what());
}
{
std::promise<WorkerResult> *output_res = new std::promise<WorkerResult>();
auto output_stats = new std::atomic<OutputStats>();
conf.output_stats.push_back(output_stats);
OutputWorker tmp = {
output_plugin,
new std::thread(output_worker, output_plugin, output_queue, output_res, output_stats, conf.fps),
output_res,
output_stats,
output_queue
};
set_thread_details(tmp.thread->native_handle(), "out_" + output_name, output_worker_affinity);
conf.outputs.push_back(tmp);
conf.output_fut.push_back(output_res->get_future());
}
// Input
auto input_dir = conf.telemetry_root_node->addDir("input");
auto pipeline_dir = conf.telemetry_root_node->addDir("pipeline");
auto flowcache_dir = conf.telemetry_root_node->addDir("flowcache");
size_t pipeline_idx = 0;
for (auto &it : parser.m_input) {
InputPlugin *input_plugin = nullptr;
StoragePlugin *storage_plugin = nullptr;
std::string input_params;
std::string input_name;
std::vector<int> affinity;
process_plugin_argline(it, input_name, input_params, affinity);
auto input_plugin_dir = input_dir->addDir(input_name);
auto pipeline_queue_dir = pipeline_dir->addDir("queues")->addDir(std::to_string(pipeline_idx));
try {
input_plugin = dynamic_cast<InputPlugin *>(conf.mgr.get(input_name));
if (input_plugin == nullptr) {
throw IPXPError("invalid input plugin " + input_name);
}
input_plugin->init(input_params.c_str());
input_plugin->set_telemetry_dirs(input_plugin_dir, pipeline_queue_dir);
conf.active.input.push_back(input_plugin);
conf.active.all.push_back(input_plugin);
} catch (PluginError &e) {
delete input_plugin;
throw IPXPError(input_name + std::string(": ") + e.what());
} catch (PluginExit &e) {
delete input_plugin;
return true;
} catch (PluginManagerError &e) {
throw IPXPError(input_name + std::string(": ") + e.what());
}
try {
storage_plugin = dynamic_cast<StoragePlugin *>(conf.mgr.get(storage_name));
if (storage_plugin == nullptr) {
throw IPXPError("invalid storage plugin " + storage_name);
}
storage_plugin->set_queue(output_queue);
storage_plugin->init(storage_params.c_str());
storage_plugin->set_telemetry_dir(pipeline_queue_dir);
conf.active.storage.push_back(storage_plugin);
conf.active.all.push_back(storage_plugin);
} catch (PluginError &e) {
delete storage_plugin;
throw IPXPError(storage_name + std::string(": ") + e.what());
} catch (PluginExit &e) {
delete storage_plugin;
return true;
} catch (PluginManagerError &e) {
throw IPXPError(storage_name + std::string(": ") + e.what());
}
std::vector<ProcessPlugin *> storage_process_plugins;
for (auto &it : *process_plugins) {
ProcessPlugin *tmp = it.second->copy();
storage_plugin->add_plugin(tmp);
conf.active.process.push_back(tmp);
conf.active.all.push_back(tmp);
storage_process_plugins.push_back(tmp);
}
std::promise<WorkerResult> *input_res = new std::promise<WorkerResult>();
conf.input_fut.push_back(input_res->get_future());
auto input_stats = new std::atomic<InputStats>();
conf.input_stats.push_back(input_stats);
WorkPipeline tmp = {
{
input_plugin,
new std::thread(input_storage_worker, input_plugin, storage_plugin, conf.iqueue_size,
conf.max_pkts, input_res, input_stats),
input_res,
input_stats
},
{
storage_plugin,
storage_process_plugins
}
};
set_thread_details(tmp.input.thread->native_handle(), "in_"+ std::to_string(pipeline_idx) + "_" + input_name, affinity);
conf.pipelines.push_back(tmp);
pipeline_idx++;
}
return false;
}
void finish(ipxp_conf_t &conf)
{
bool ok = true;
// Terminate all inputs
terminate_input = 1;
for (auto &it : conf.pipelines) {
it.input.thread->join();
it.input.plugin->close();
}
// Terminate all storages
for (auto &it : conf.pipelines) {
for (auto &itp : it.storage.plugins) {
itp->close();
}
}
// Terminate all outputs
terminate_export = 1;
for (auto &it : conf.outputs) {
it.thread->join();
}
for (auto &it : conf.pipelines) {
it.storage.plugin->close();
}
std::cout << "Input stats:" << std::endl <<
std::setw(3) << "#" <<
std::setw(13) << "packets" <<
std::setw(13) << "parsed" <<
std::setw(20) << "bytes" <<
std::setw(13) << "dropped" <<
std::setw(16) << "qtime" <<
std::setw(7) << "status" << std::endl;
int idx = 0;
uint64_t total_packets = 0;
uint64_t total_parsed = 0;
uint64_t total_bytes = 0;
uint64_t total_dropped = 0;
uint64_t total_qtime = 0;
for (auto &it : conf.input_fut) {
WorkerResult res = it.get();
std::string status = "ok";
if (res.error) {
ok = false;
status = res.msg;
}
InputStats stats = conf.input_stats[idx]->load();
std::cout <<
std::setw(3) << idx++ << " " <<
std::setw(12) << stats.packets << " " <<
std::setw(12) << stats.parsed << " " <<
std::setw(19) << stats.bytes << " " <<
std::setw(12) << stats.dropped << " " <<
std::setw(15) << stats.qtime << " " <<
std::setw(6) << status << std::endl;
total_packets += stats.packets;
total_parsed += stats.parsed;
total_bytes += stats.bytes;
total_dropped += stats.dropped;
total_qtime += stats.qtime;
}
std::cout <<
std::setw(3) << "SUM" <<
std::setw(13) << total_packets <<
std::setw(13) << total_parsed <<
std::setw(20) << total_bytes <<
std::setw(13) << total_dropped <<
std::setw(16) << total_qtime << std::endl;
std::cout << std::endl;
std::cout << "Output stats:" << std::endl <<
std::setw(3) << "#" <<
std::setw(13) << "biflows" <<
std::setw(13) << "packets" <<
std::setw(20) << "bytes (L4)" <<
std::setw(13) << "dropped" <<
std::setw(7) << "status" << std::endl;
idx = 0;
for (auto &it : conf.output_fut) {
WorkerResult res = it.get();
std::string status = "ok";
if (res.error) {
ok = false;
status = res.msg;
}
OutputStats stats = conf.output_stats[idx]->load();
std::cout <<
std::setw(3) << idx++ << " " <<
std::setw(12) << stats.biflows << " " <<
std::setw(12) << stats.packets << " " <<
std::setw(19) << stats.bytes << " " <<
std::setw(12) << stats.dropped << " " <<
std::setw(6) << status << std::endl;
}
if (!ok) {
throw IPXPError("one of the plugins exitted unexpectedly");
}
}
void serve_stat_clients(ipxp_conf_t &conf, struct pollfd pfds[2])
{
uint8_t buffer[100000];
size_t written = 0;
msg_header_t *hdr = (msg_header_t *) buffer;
int ret = poll(pfds, 2, 0);
if (ret <= 0) {
return;
}
if (pfds[1].fd > 0 && pfds[1].revents & POLL_IN) {
ret = recv_data(pfds[1].fd, sizeof(uint32_t), buffer);
if (ret < 0) {
// Client disconnected
close(pfds[1].fd);
pfds[1].fd = -1;
} else {
if (*((uint32_t *) buffer) != MSG_MAGIC) {
return;
}
// Received stats request from client
written += sizeof(msg_header_t);
for (auto &it : conf.input_stats) {
InputStats stats = it->load();
*(InputStats *)(buffer + written) = stats;
written += sizeof(InputStats);
}
for (auto &it : conf.output_stats) {
OutputStats stats = it->load();
*(OutputStats *)(buffer + written) = stats;
written += sizeof(OutputStats);
}
hdr->magic = MSG_MAGIC;
hdr->size = written - sizeof(msg_header_t);
hdr->inputs = conf.input_stats.size();
hdr->outputs = conf.output_stats.size();
send_data(pfds[1].fd, written, buffer);
}
}
if (pfds[0].revents & POLL_IN) {
int fd = accept(pfds[0].fd, NULL, NULL);
if (pfds[1].fd == -1) {
pfds[1].fd = fd;
} else if (fd != -1) {
// Close incoming connection
close(fd);
}
}
}
void main_loop(ipxp_conf_t &conf)
{
std::vector<std::shared_future<WorkerResult>*> futs;
for (auto &it : conf.input_fut) {
futs.push_back(&it);
}
struct pollfd pfds[2] = {
{.fd = -1, .events = POLL_IN}, // Server
{.fd = -1, .events = POLL_IN} // Client
};
std::string sock_path = create_sockpath(std::to_string(getpid()).c_str());
pfds[0].fd = create_stats_sock(sock_path.c_str());
if (pfds[0].fd < 0) {
error("Unable to create stats socket " + sock_path);
}
while (!stop && futs.size()) {
serve_stat_clients(conf, pfds);
for (auto it = futs.begin(); it != futs.end(); it++) {
std::future_status status = (*it)->wait_for(std::chrono::seconds(0));
if (status == std::future_status::ready) {
WorkerResult res = (*it)->get();
if (!res.error) {
it = futs.erase(it);
break;
}
stop = 1;
break;
}
}
for (auto &it : conf.output_fut) {
std::future_status status = it.wait_for(std::chrono::seconds(0));
if (status == std::future_status::ready) {
stop = 1;
break;
}
}
usleep(1000);
}
if (pfds[0].fd != -1) {
close(pfds[0].fd);
}
if (pfds[1].fd != -1) {
close(pfds[1].fd);
}
unlink(sock_path.c_str());
finish(conf);
}
int run(int argc, char *argv[])
{
IpfixprobeOptParser parser;
ipxp_conf_t conf;
int status = EXIT_SUCCESS;
register_handlers();
try {
parser.parse(argc - 1, const_cast<const char **>(argv) + 1);
} catch (ParserError &e) {
error(e.what());
status = EXIT_FAILURE;
goto EXIT;
}
if (parser.m_help) {
if (parser.m_help_str.empty()) {
parser.usage(std::cout, 0, PACKAGE_NAME);
} else {
print_help(conf, parser.m_help_str);
}
goto EXIT;
}
if (parser.m_version) {
std::cout << PACKAGE_VERSION << std::endl;
goto EXIT;
}
if (parser.m_storage.size() > 1 || parser.m_output.size() > 1) {
error("only one storage and output plugin can be specified");
status = EXIT_FAILURE;
goto EXIT;
}
if (parser.m_input.size() == 0) {
error("specify at least one input plugin");
status = EXIT_FAILURE;
goto EXIT;
}
if (parser.m_daemon) {
if (daemon(1, 0) == -1) {
error("failed to run as a standalone process");
status = EXIT_FAILURE;
goto EXIT;
}
}
if (!parser.m_pid.empty()) {
std::ofstream pid_file(parser.m_pid, std::ofstream::out);
if (pid_file.fail()) {
error("failed to write pid file");
status = EXIT_FAILURE;
goto EXIT;
}
pid_file << getpid();
pid_file.close();
}
if (parser.m_iqueue < 1) {
error("input queue size must be at least 1 record");
status = EXIT_FAILURE;
goto EXIT;
}
if (parser.m_oqueue < 1) {
error("output queue size must be at least 1 record");
status = EXIT_FAILURE;
goto EXIT;
}
conf.worker_cnt = parser.m_input.size();
conf.iqueue_size = parser.m_iqueue;
conf.oqueue_size = parser.m_oqueue;
conf.fps = parser.m_fps;
conf.pkt_bufsize = parser.m_pkt_bufsize;
conf.max_pkts = parser.m_max_pkts;
set_thread_details(pthread_self(), "", parser.m_cpu_mask);
try {
if (process_plugin_args(conf, parser)) {
goto EXIT;
}
if (!parser.m_appfs_mount_point.empty()) {
bool unmount_on_start = true;
bool create_directory = true;
conf.appFs = std::make_unique<telemetry::appFs::AppFsFuse>(
conf.telemetry_root_node,
parser.m_appfs_mount_point,
unmount_on_start,
create_directory);
conf.appFs->start();
}
main_loop(conf);
if (!parser.m_appfs_mount_point.empty()) {
conf.appFs->stop();
}
} catch (std::system_error &e) {
error(e.what());
status = EXIT_FAILURE;
goto EXIT;
} catch (std::bad_alloc &e) {
error("not enough memory");
status = EXIT_FAILURE;
goto EXIT;
} catch (IPXPError &e) {
error(e.what());
status = EXIT_FAILURE;
goto EXIT;
}
EXIT:
if (!parser.m_pid.empty()) {
unlink(parser.m_pid.c_str());
}
return status;
}
}