forked from ffainelli/faifa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
faifa.c
362 lines (290 loc) · 8.72 KB
/
faifa.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
/*
* Core library functions
*
* Copyright (C) 2007-2009 Xavier Carcelle <[email protected]>
* Florian Fainelli <[email protected]>
* Nicolas Thill <[email protected]>
*
* The BSD License
* ===============
* 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 OpenLink Software Inc. nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL OPENLINK OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/*
* In addition, as a special exception, the copyright holders give
* permission to link the code of portions of this program with the
* OpenSSL library under certain conditions as described in each
* individual source file, and distribute linked combinations
* including the two.
* You must obey the GNU General Public License in all respects
* for all of the code used other than OpenSSL. If you modify
* file(s) with this exception, you may extend this exception to your
* version of the file(s), but you are not obligated to do so. If you
* do not wish to do so, delete this exception statement from your
* version. If you delete this exception statement from all source
* files in the program, then also delete it here.
*/
#include <sys/types.h>
#ifndef __CYGWIN__
#include <net/ethernet.h>
#endif
#include <errno.h>
#include <stdarg.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <sys/types.h>
#include "faifa.h"
#include "faifa_compat.h"
#include "faifa_priv.h"
#include "homeplug_av.h"
void faifa_set_error(faifa_t *faifa, char *format, ...)
{
va_list ap;
if (!faifa)
return;
va_start(ap, format);
vsnprintf(faifa->error, sizeof(faifa->error), format, ap);
va_end(ap);
}
faifa_t *faifa_init(void)
{
faifa_t *faifa;
faifa = calloc(1, sizeof(faifa_t));
if (faifa == NULL)
goto __error_malloc;
return faifa;
free(faifa);
__error_malloc:
return NULL;
}
void faifa_free(faifa_t *faifa)
{
free(faifa);
}
char *faifa_error(faifa_t *faifa)
{
if (faifa)
return faifa->error;
else
return NULL;
}
int faifa_open(faifa_t *faifa, char *name)
{
char pcap_errbuf[PCAP_ERRBUF_SIZE];
int pcap_snaplen = ETHER_MAX_LEN;
#ifndef __CYGWIN__
if (getuid() > 0) {
faifa_set_error(faifa, "Must be root to execute this program");
goto __error_pcap_lookupdev;
}
if (!pcap_lookupdev(pcap_errbuf)) {
faifa_set_error(faifa, "pcap_lookupdev: can't find device %s", name);
goto __error_pcap_lookupdev;
}
/* Use open_live on Unixes */
faifa->pcap = pcap_open_live(name, pcap_snaplen, 1, 100, pcap_errbuf);
#else
pcap_if_t *alldevs;
pcap_if_t *d;
pcap_addr_t *a;
int i = 0;
int inum;
if (pcap_findalldevs_ex(PCAP_SRC_IF_STRING, NULL, &alldevs, pcap_errbuf) == -1) {
faifa_set_error(faifa, "Could not get interface list");
goto __error_pcap_lookupdev;
}
for (d = alldevs; d != NULL; d = d->next) {
if (d->flags & PCAP_IF_LOOPBACK)
continue;
printf("%d. %s", ++i, d->name);
if (d->description)
printf(" (%s)\n", d->description);
else
printf(" No description\n");
for (a = d->addresses; a; a = a->next)
if (a->addr->sa_family != AF_INET)
continue;
}
if (!i) {
faifa_set_error(faifa, "No interfaces found");
goto __error_pcap_lookupdev;
}
__ask_inum:
//TODO : remove this user input to an external function to enumerate interfaces rather then inside a library
printf("Enter interface number (1-%d):", i);
scanf("%d", &inum);
if (inum < 1 || inum > i) {
printf("Interface index out of range !\n");
goto __ask_inum;
}
/* Jump to the selected adapter */
for (d = alldevs, i = 0; i < inum-1; d = d->next, i++);
strcpy(name, d->name);
pcap_snaplen = 65536;
printf("Using: %s\n", name);
faifa->pcap = pcap_open(name, pcap_snaplen, 1, 1000, NULL, pcap_errbuf);
#endif
if (faifa->pcap == NULL) {
faifa_set_error(faifa, "pcap_open_live: %s", pcap_errbuf);
goto __error_pcap_open_live;
}
if (pcap_datalink(faifa->pcap) != DLT_EN10MB) {
faifa_set_error(faifa, "pcap: device %s is not Ethernet", name);
goto __error_device_not_ethernet;
}
/* TODO: Check FreeBSD pcap BIOCIMMEDIATE behavior and compatibility */
#ifdef DARWIN
u_int arg = 1;
if (ioctl(pcap_fileno(faifa->pcap), BIOCIMMEDIATE, &arg) < 0)
faifa_set_error(faifa,"Can not set ioctl BIOCIMMEDIATE in %s", name);
#endif
strncpy(faifa->ifname, name, sizeof(faifa->ifname));
#ifdef __CYGWIN__
pcap_freealldevs(alldevs);
#endif
return 0;
__error_device_not_ethernet:
pcap_close(faifa->pcap);
__error_pcap_open_live:
__error_pcap_lookupdev:
return -1;
}
int faifa_recv(faifa_t *faifa, void *buf, int len)
{
struct pcap_pkthdr *pcap_header;
u_char *pcap_data;
int n;
n = pcap_next_ex(faifa->pcap, &pcap_header, (const u_char **)&pcap_data);
if (n < 0) {
faifa_set_error(faifa, "pcap_next_ex: %s", pcap_geterr(faifa->pcap));
return -1;
}
if (n == 0 )
return 0;
if ((u_int32_t)len > (u_int32_t)(pcap_header->caplen))
len = pcap_header->caplen;
memcpy(buf, pcap_data, len);
return len;
}
int faifa_send(faifa_t *faifa, void *buf, int len)
{
int n;
n = pcap_sendpacket(faifa->pcap, buf, len);
if (n == -1) {
faifa_set_error(faifa, "pcap_inject: %s", pcap_geterr(faifa->pcap));
}
return n;
}
typedef struct faifa_loop_data {
faifa_t *faifa;
faifa_loop_handler_t handler;
void *user;
} faifa_loop_data_t;
void faifa_loop_handler(faifa_loop_data_t *loop_data, struct pcap_pkthdr *pcap_header, void *pcap_data)
{
loop_data->handler(loop_data->faifa, pcap_data, pcap_header->caplen, loop_data->user);
}
int faifa_loop(faifa_t *faifa, faifa_loop_handler_t handler, void *user)
{
faifa_loop_data_t loop_data = { faifa, handler, user };
int n;
n = pcap_loop(faifa->pcap, -1, (void *)faifa_loop_handler, (u_char *)&loop_data);
if (n == -1) {
faifa_set_error(faifa, "pcap_loop: %s", pcap_geterr(faifa->pcap));
}
return n;
}
int faifa_close(faifa_t *faifa)
{
pcap_close(faifa->pcap);
memset(faifa->ifname, '\0', sizeof(faifa->ifname));
return 0;
}
int faifa_sprint_hex(char *str, void *buf, int len, char *sep)
{
int avail = len;
u_int8_t *pbuf = buf;
char *pstr = str;
while (avail > 0) {
pstr += sprintf((char *)pstr, "%02hX%s", (unsigned short int)*pbuf, (avail > 1) ? sep : "");
pbuf++;
avail--;
}
return (pstr - str);
}
#ifdef __IS_THIS_REALLY_NEEDED__
int faifa_get_hwaddr(faifa_t *faifa, u_int8_t *hwaddr)
{
int fd;
struct ifreq ifr;
fd = socket(AF_INET, SOCK_DRAM, 0);
if (fd == -1) {
faifa_set_error(faifa, "socket: %s", strerror(errno));
goto __error_socket;
}
strncpy(ifr.ifr_name, faifa->ifname, sizeof(ifr.ifr_name) - 1);
ifr.ifr_name[sizeof(ifr.ifr_name) - 1] = '\0';
if (ioctl(fd, SIOCGIFHWADDR, &ifr) == -1) {
faifa_set_error(faifa, "ioctl: %s", strerror(errno));
goto __error_ioctl;
}
memcpy(hwaddr, &(ifr.ifr_hwaddr), ETHER_ADDR_LEN);
close(fd);
return 0;
__error_ioctl:
close(fd);
__error_socket:
return -1;
}
#endif /* __IS_THIS_REALLY_NEEDED__ */
int faifa_parse_mac_addr(faifa_t *faifa, const char *mac, u_int8_t *addr)
{
int i;
long val;
if (strlen(mac) != 17) {
faifa_set_error(faifa, "macaddr: invalid address length");
return -1;
}
if (mac[2] != ':' || mac[5] != ':' || mac[8] != ':' ||
mac[11] != ':' || mac[14] != ':') {
faifa_set_error(faifa, "macaddr: invalid format");
return -1;
}
for (i = 0; i < ETHER_ADDR_LEN; i++) {
val = strtol(mac + (3 * i), NULL, 16);
addr[i] = val;
}
return 0;
}
void faifa_set_dst_addr(faifa_t *faifa, const u_int8_t *addr)
{
memcpy(faifa->dst_addr, addr, ETHER_ADDR_LEN);
}
void faifa_set_verbose(faifa_t *faifa, int verbose)
{
faifa->verbose = verbose;
}