-
Notifications
You must be signed in to change notification settings - Fork 7
/
main.c
154 lines (128 loc) · 2.68 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
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
/*
* Copyright (C) 2014 John Crispin <blogic@openwrt.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License version 2.1
* as published by the Free Software Foundation
*
* 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.
*/
#include <sys/stat.h>
#include <sys/types.h>
#include <time.h>
#include <stdio.h>
#include <fcntl.h>
#include <getopt.h>
#include <resolv.h>
#include <unistd.h>
#include <sys/types.h>
#include <arpa/inet.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/nameser.h>
#include <udebug.h>
#include <libubus.h>
#include <libubox/uloop.h>
#include "dns.h"
#include "ubus.h"
#include "util.h"
#include "cache.h"
#include "service.h"
#include "announce.h"
#include "interface.h"
int cfg_proto = 0;
int cfg_no_subnet = 0;
static struct udebug ud;
static struct udebug_buf udb;
static bool udebug_enabled;
static void
umdns_udebug_vprintf(const char *format, va_list ap)
{
if (!udebug_enabled)
return;
udebug_entry_init(&udb);
udebug_entry_vprintf(&udb, format, ap);
udebug_entry_add(&udb);
}
void umdns_udebug_printf(const char *format, ...)
{
va_list ap;
va_start(ap, format);
umdns_udebug_vprintf(format, ap);
va_end(ap);
}
void umdns_udebug_set_enabled(bool val)
{
static const struct udebug_buf_meta meta = {
.name = "umdns_log",
.format = UDEBUG_FORMAT_STRING,
};
if (udebug_enabled == val)
return;
udebug_enabled = val;
if (!val) {
udebug_buf_free(&udb);
udebug_free(&ud);
return;
}
udebug_init(&ud);
udebug_auto_connect(&ud, NULL);
udebug_buf_init(&udb, 1024, 64 * 1024);
udebug_buf_add(&ud, &udb, &meta);
}
static void
signal_shutdown(int signal)
{
uloop_end();
}
int
main(int argc, char **argv)
{
int ch, ttl;
uloop_init();
while ((ch = getopt(argc, argv, "t:i:d46n")) != -1) {
switch (ch) {
case 't':
ttl = atoi(optarg);
if (ttl > 0)
announce_ttl = ttl;
else
fprintf(stderr, "invalid ttl\n");
break;
case 'd':
debug++;
break;
case 'i':
interface_add(optarg);
break;
case '4':
cfg_proto = 4;
break;
case '6':
cfg_proto = 6;
break;
case 'n':
cfg_no_subnet = 1;
break;
default:
return -1;
}
}
signal(SIGPIPE, SIG_IGN);
signal(SIGTERM, signal_shutdown);
signal(SIGKILL, signal_shutdown);
if (cache_init())
return -1;
ubus_startup();
service_init(0);
uloop_run();
uloop_done();
interface_shutdown();
cache_cleanup(NULL);
service_cleanup();
vlist_flush(&interfaces);
return 0;
}