-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.c
104 lines (86 loc) · 2.91 KB
/
main.c
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
/*
* main.c
*
* Created on: 04.05.2016
* Author: marc
*/
#include <getopt.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <curl/curl.h>
#include <pthread.h>
#include "flow.h"
#include "globals.h"
#include "handle_packet.h"
#include "main.h"
void print_usage() {
printf("netprobe %s ( https://github.com/mlasch/netprobe )\n"
"Usage:\n"
"\t-i, --interface\t\tNetwork interface\n"
"\t-u, --url\t\tURL containing server, port, database and token\n"
"\t-m, --measurement\tMeasurement Name\n"
"\t --nop\t\tNo actual insert (no operation)\n"
"\t --verbose\n"
"\t --version\t\tPrint program version\n",
NETPROBE_VERSION);
}
int main(int argc, char *argv[]) {
bool interface = 1, url = 1, path = 1;
pcap_arg_t pcap_arg;
inserter_arg_t inserter_arg;
static struct option long_options[] = {/* flags */
{"verbose", no_argument, &verbose_flag, 1},
{"nop", no_argument, &nop_flag, 1},
/* arguments */
{"interface", required_argument, NULL, 'i'},
{"url", required_argument, NULL, 'u'},
{"measurement", required_argument, NULL, 'm'},
{"version", no_argument, NULL, 'v'},
{NULL, 0, NULL, 0}};
for (int option_index = 0, c = 0; c != -1; c = getopt_long(argc, argv, "i:u:m:v", long_options, &option_index)) {
switch (c) {
case 'i':
pcap_arg.dev = optarg;
interface = 0;
break;
case 'u':
inserter_arg.url = optarg;
url = 0;
break;
case 'm':
inserter_arg.measurement = optarg;
path = 0;
break;
case 'v':
printf("netprobe %s\n", NETPROBE_VERSION);
exit(EXIT_SUCCESS);
case 0:
/* first loop run */
break;
default:
print_usage();
exit(EXIT_FAILURE);
}
}
if (interface || url || path) {
print_usage();
exit(EXIT_FAILURE);
}
pthread_t pcap_id, inserter_id;
int ret;
inserter_arg.curl_handle = curl_easy_init();
ret = pthread_create(&pcap_id, NULL, &pcap_thread, &pcap_arg);
if (ret != 0) {
fprintf(stderr, "Failed to create pcap thread\n");
}
ret = pthread_create(&inserter_id, NULL, &inserter_thread, &inserter_arg);
if (ret != 0) {
fprintf(stderr, "Failed to create inserter thread\n");
}
printf("Started, waiting for threads to end\n");
pthread_join(pcap_id, NULL);
pthread_join(inserter_id, NULL);
return EXIT_SUCCESS;
}