-
Notifications
You must be signed in to change notification settings - Fork 64
/
Copy pathunix.c
119 lines (108 loc) · 3.34 KB
/
unix.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
/* arping/src/unix.c
*
* Copyright (C) 2000-2011 Thomas Habets <thomas@habets.se>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public 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.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#define _GNU_SOURCE
#if HAVE_CONFIG_H
#include "config.h"
#endif
#include <errno.h>
#include <signal.h>
#include <string.h>
#if HAVE_SYS_SOCKET_H
#include <sys/socket.h>
#endif
#if HAVE_NETINET_IN_H
#include <netinet/in.h>
#endif
#include <pcap.h>
#include "arping.h"
#define UNUSED(x) (void)(x)
/**
* Fall back on getting device name from pcap.
*/
const char *
arping_lookupdev_default(uint32_t srcip, uint32_t dstip, char *ebuf)
{
#ifdef HAVE_PCAP_FINDALLDEVS
UNUSED(srcip);
pcap_if_t *ifs = NULL;
int rc = pcap_findalldevs(&ifs, ebuf);
if (rc) {
return NULL;
}
pcap_if_t *t;
char* ifname = NULL;
for (t = ifs; !ifname && t; t = t->next) {
#ifdef PCAP_IF_LOOPBACK
if (t->flags & PCAP_IF_LOOPBACK) {
continue;
}
#endif
#ifdef PCAP_IF_UP
if (!(t->flags & PCAP_IF_UP)) {
continue;
}
#endif
// This code is only called when using -F, which is "don't try
// to be smart". If we wanted to be smart we would have used
// findif_*.c.
if (1) {
ifname = strdup(t->name); // Memory leak.
break;
}
// UNREACHABLE
pcap_addr_t *a;
for (a = t->addresses; !ifname && a; a = a->next) {
if (a->addr->sa_family != AF_INET) {
continue;
}
const struct sockaddr_in* sa = (struct sockaddr_in*)a->addr;
const struct sockaddr_in* smask = (struct sockaddr_in*)a->netmask;
const uint32_t addr = sa->sin_addr.s_addr;
const uint32_t mask = smask->sin_addr.s_addr;
if ((addr & mask) != (dstip & mask)) {
// Not optimal: memory leak.
ifname = strdup(t->name);
}
}
}
pcap_freealldevs(ifs);
return ifname;
#else
UNUSED(srcip);
UNUSED(dstip);
return pcap_lookupdev(ebuf);
#endif
}
/**
*
*/
void
do_signal_init()
{
if (SIG_ERR == signal(SIGINT, sigint)) {
fprintf(stderr, "arping: failed to set SIGINT handler: %s\n",
strerror(errno));
}
}
/* ---- Emacs Variables ----
* Local Variables:
* c-basic-offset: 8
* indent-tabs-mode: nil
* End:
*/