-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmcquery.c
405 lines (355 loc) · 9.3 KB
/
mcquery.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
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
#include <getopt.h>
#include <stdio.h>
#include <string.h>
#include <poll.h>
#include <arpa/inet.h>
#include "logger.h"
#include "mcquery.h"
struct mcq_opts {
struct igmp_query_params *mc_igmp;
struct mld_query_params *mc_mld;
char mc_send;
char mc_recv;
char mc_raw;
};
void igmp_exit(void);
int igmp_init(void);
void igmp_bind(struct query_interface *qi);
void igmp_handle(void);
int igmp_emit(struct query_interface *qi, struct igmp_query_params *qp);
void rawigmp_exit(void);
int rawigmp_init(void);
void rawigmp_bind(struct query_interface *qi);
void rawigmp_handle(void);
int rawigmp_emit(struct query_interface *qi, struct igmp_query_params *qp);
void mld_exit(void);
int mld_init(void);
void mld_bind(struct query_interface *qi);
void mld_handle(void);
int mld_emit(struct query_interface *qi, struct mld_query_params *qp);
void rawmld_exit(void);
int rawmld_init(void);
void rawmld_bind(struct query_interface *qi);
void rawmld_handle(void);
int rawmld_emit(struct query_interface *qi, struct mld_query_params *qp);
int log_verbose = 0;
static char *program = NULL;
static char *progname(char *arg0)
{
char *nm;
nm = strrchr(arg0, '/');
if (nm)
nm++;
else
nm = arg0;
return nm;
}
static int usage(int code)
{
printf("Usage: %s [-i INTERFACE] [-u] [-n] [-l|-s] [igmp[:<version>[,<key>:<value>...]]] [mld[:<version>[,<key>:<value>...]]]\n"
"\n"
"Options:\n"
" -h, --help Show this help text\n"
" -v, --verbose Perform verbose operation\n"
" -s, --submit Send multicast query (default)\n"
" -l, --listen Listen for multicast queries/reports\n"
" -i, --interface <name> Interface to use for sending/receiving multicast\n"
" -u, --unbound Do not bind to interface\n"
" -n, --noraw Use IP socket instead fo RAW socket\n"
"\n"
"Parameters:\n"
" * igmp:<version> IGMP version, allowed values: 1, 2, 3, default: 2\n"
" * mld:<version> MLD version, allowed values: 1, 2, default: 1\n"
" * rt|respond:<time> Maximal response time, default: 10 seconds\n"
" * gr|group:<address> Specific group to query, default: no group\n"
" * rs|suppress:<state> Router suppresion, allowed values 'y', 'n', default: n\n"
" * qr|robust:<value> Querier robustness value, default: 2\n"
" * qi|interval:<value> Querier interval value, default: 125 sec\n"
, program);
return code;
}
static struct igmp_query_params * parse_igmp_params(const char *arg)
{
static struct igmp_query_params igmp_params;
char *tmp, *key, *val;
memset(&igmp_params, 0, sizeof(igmp_params));
if (!arg)
return &igmp_params;
errno = EINVAL;
tmp = strdup(arg);
key = strtok(tmp, ":");
while (key && (val = strtok(NULL, ";,"))) {
if (!strcmp(key, "igmp")) {
igmp_params.version = atoi(val);
if (igmp_params.version < 1 || igmp_params.version > 3)
die("Invalid IGMP version provided: %s", val);
} else if (!strcmp(key, "rt") || !strcmp(key, "respond")) {
igmp_params.response_time = atoi(val);
} else if (!strcmp(key, "gr") || !strcmp(key, "group")) {
if (!inet_aton(val, &igmp_params.group) ||
!IN_MULTICAST(htonl(igmp_params.group.s_addr)))
die("Invalid IGMP group address: %s", val);
} else if (!strcmp(key, "rs") || !strcmp(key, "suppress")) {
igmp_params.router_suppress = *val == 'y';
} else if (!strcmp(key, "qr") || !strcmp(key, "robust")) {
igmp_params.querier_robust = atoi(val);
} else if (!strcmp(key, "qi") || !strcmp(key, "interval")) {
igmp_params.querier_interval = atoi(val);
}
key = strtok(NULL, ":");
}
free(tmp);
return &igmp_params;
}
static struct mld_query_params *parse_mld_params(const char *arg)
{
static struct mld_query_params mld_params;
char *tmp, *key, *val;
memset(&mld_params, 0, sizeof(mld_params));
if (!arg)
return &mld_params;
errno = EINVAL;
tmp = strdup(arg);
key = strtok(tmp, ":");
while (key && (val = strtok(NULL, ";,"))) {
if (!strcmp(key, "mld")) {
mld_params.version = atoi(val);
if (mld_params.version < 1 || mld_params.version > 2)
die("Invalid MLD version provided: %s", val);
} else if (!strcmp(key, "rt") || !strcmp(key, "respond")) {
mld_params.response_time = atoi(val);
} else if (!strcmp(key, "gr") || !strcmp(key, "group")) {
if (inet_pton(AF_INET6, val, &mld_params.group) < 1 ||
!IN6_IS_ADDR_MULTICAST(mld_params.group.s6_addr))
die("Invalid MLD group address: %s", val);
} else if (!strcmp(key, "rs") || !strcmp(key, "suppress")) {
mld_params.router_suppress = *val == 'y';
} else if (!strcmp(key, "qr") || !strcmp(key, "robust")) {
mld_params.querier_robust = atoi(val);
} else if (!strcmp(key, "qi") || !strcmp(key, "interval")) {
mld_params.querier_interval = atoi(val);
}
key = strtok(NULL, ":");
}
free(tmp);
return &mld_params;
}
static void mcq_dump_opts(struct mcq_opts *o)
{
if (o->mc_igmp) {
log_debug("IGMP set"
"; version %i"
"; respond time %i"
"; group address %s"
"; router suppress %i"
"; querier robustness %i"
"; querier interval %i",
o->mc_igmp->version,
o->mc_igmp->response_time,
inet_ntoa(o->mc_igmp->group),
o->mc_igmp->router_suppress,
o->mc_igmp->querier_robust,
o->mc_igmp->querier_interval);
} else {
log_debug("IGMP not set");
}
if (o->mc_mld) {
char group_address[48];
inet_ntop(AF_INET6, &o->mc_mld->group, group_address, sizeof(group_address));
log_debug("MLD set"
"; version %i"
"; respond time %i"
"; group address %s"
"; router suppress %i"
"; querier robustness %i"
"; querier interval %i",
o->mc_mld->version,
o->mc_mld->response_time,
group_address,
o->mc_mld->router_suppress,
o->mc_mld->querier_robust,
o->mc_mld->querier_interval);
} else {
log_debug("MLD not set");
}
}
static void mcq_recv(struct query_interface *qi, struct mcq_opts *o)
{
struct pollfd pfd[2];
int igmp_fd = -1;
int mld_fd = -1;
int n;
if (o->mc_raw) {
if (o->mc_igmp) {
igmp_fd = rawigmp_init();
if (qi)
rawigmp_bind(qi);
}
if (o->mc_mld) {
mld_fd = rawmld_init();
if (qi)
rawmld_bind(qi);
}
} else {
if (o->mc_igmp) {
igmp_fd = igmp_init();
if (qi)
igmp_bind(qi);
}
if (o->mc_mld) {
mld_fd = mld_init();
if (qi)
mld_bind(qi);
}
}
pfd[0].fd = igmp_fd;
pfd[0].events = POLLIN;
pfd[1].fd = mld_fd;
pfd[1].events = POLLIN;
while (1) {
n = poll(pfd, 2, -1);
if (n < 0) {
if (errno != EINTR)
die("poll() failed");
continue;
}
if (n == 0)
continue;
if (pfd[0].revents & POLLIN) {
if (o->mc_raw)
rawigmp_handle();
else
igmp_handle();
}
if (pfd[1].revents & POLLIN) {
if (o->mc_raw)
rawmld_handle();
else
mld_handle();
}
}
if (o->mc_raw) {
if (o->mc_igmp) {
rawigmp_exit();
}
if (o->mc_mld) {
rawmld_exit();
}
} else {
if (o->mc_igmp) {
igmp_exit();
}
if (o->mc_mld) {
mld_exit();
}
}
}
void mcq_send(struct query_interface *qi, struct mcq_opts *o)
{
if (o->mc_raw) {
if (o->mc_igmp) {
rawigmp_init();
rawigmp_emit(qi, o->mc_igmp);
rawigmp_exit();
}
if (o->mc_mld) {
rawmld_init();
rawmld_emit(qi, o->mc_mld);
rawmld_exit();
}
} else {
if (o->mc_igmp) {
igmp_init();
igmp_emit(qi, o->mc_igmp);
igmp_exit();
}
if (o->mc_mld) {
mld_init();
mld_emit(qi, o->mc_mld);
mld_exit();
}
}
}
int main(int argc, char *argv[])
{
int ch, i;
int opt_unbound = 0;
char *opt_ifname = NULL;
struct mcq_opts opts = { 0 };
struct query_interface *qi = NULL;
struct option long_options[] = {
{ "help", no_argument, NULL, 'h' },
{ "verbose", no_argument, NULL, 'v' },
{ "submit", no_argument, NULL, 's' },
{ "listen", no_argument, NULL, 'l' },
{ "interface", required_argument, NULL, 'i' },
{ "unbound", no_argument, NULL, 'u' },
{ "noraw", no_argument, NULL, 'n' },
{ NULL, 0, NULL, 0 }
};
setlinebuf(stderr);
opts.mc_raw = 1;
program = progname(argv[0]);
while ((ch = getopt_long(argc, argv, "hvsli:un", long_options, NULL)) != EOF) {
switch (ch) {
case 'h':
return usage(0);
case 'v':
log_verbose++;
break;
case 's':
if (opts.mc_recv)
return usage(1);
opts.mc_send = 1;
break;
case 'l':
if (opts.mc_send)
return usage(1);
opts.mc_recv = 1;
break;
case 'i':
opt_ifname = optarg;
break;
case 'u':
opt_unbound = 1;
break;
case 'n':
opts.mc_raw = 0;
break;
default:
return usage(1);
}
}
for (i = optind; i < argc; i++) {
if (!strncmp(argv[i], "igmp", 4))
opts.mc_igmp = parse_igmp_params(argv[i]);
else if (!strncmp(argv[i], "mld", 3))
opts.mc_mld = parse_mld_params(argv[i]);
else
return usage(1);
}
if (!opts.mc_igmp && !opts.mc_mld) {
opts.mc_igmp = parse_igmp_params(NULL);
opts.mc_mld = parse_mld_params(NULL);
}
if (!opts.mc_send && !opts.mc_recv)
opts.mc_send = 1;
if (opt_ifname) {
qi = iface_get(opt_ifname);
if (!qi)
die("Failed to find %s network interface", opt_ifname);
} else if (!opt_unbound) {
qi = iface_first();
if (!qi)
die("Failed to get network interface");
}
mcq_dump_opts(&opts);
if (opts.mc_send) {
if (!qi)
die("Send operation requres interface");
mcq_send(qi, &opts);
} else if (opts.mc_recv) {
mcq_recv(qi, &opts);
}
return 0;
}