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
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
|
/*
Mac-Telnet - Connect to RouterOS or mactelnetd devices via MAC address
Copyright (C) 2010, Håkon Nessjøen <haakon.nessjoen@gmail.com>
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.
*/
#if defined(__FreeBSD__)
#define __USE_BSD
#define __FAVOR_BSD
#endif
#include <libintl.h>
#include <locale.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <sys/socket.h>
#include <sys/types.h>
#include <ifaddrs.h>
#if defined(__FreeBSD__)
#include <netinet/in.h>
#endif
#include <netinet/ip.h>
#include <netinet/udp.h>
#if defined(__FreeBSD__)
#include <net/ethernet.h>
#define ETH_FRAME_LEN (ETHER_MAX_LEN - ETHER_CRC_LEN)
#define ETH_ALEN ETHER_ADDR_LEN
#else
#include <netinet/ether.h>
#endif
#include <arpa/inet.h>
#include <net/if.h>
#include <sys/ioctl.h>
#ifndef __linux__
#include <net/if_dl.h>
#include <net/bpf.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#else
#include <linux/if_packet.h>
#endif
#include "protocol.h"
#include "interfaces.h"
#define _(String) gettext (String)
struct net_interface *net_get_interface_ptr(struct net_interface *interfaces, int max_devices, char *name, int create) {
int i;
for (i = 0; i < max_devices; ++i) {
if (!interfaces[i].in_use)
break;
if (strncmp(interfaces[i].name, name, 254) == 0) {
return interfaces + i;
}
}
if (create && i < max_devices) {
interfaces[i].in_use = 1;
strncpy(interfaces[i].name, name, 254);
interfaces[i].name[254] = '\0';
return interfaces + i;
}
return NULL;
}
#ifdef __linux__
static void net_update_mac(struct net_interface *interfaces, int max_devices) {
unsigned char emptymac[] = {0, 0, 0, 0, 0, 0};
struct ifreq ifr;
int i,tmpsock;
tmpsock = socket(PF_INET, SOCK_DGRAM, 0);
if (tmpsock < 0) {
perror("net_update_mac");
exit(1);
}
for (i = 0; i < max_devices; ++i) {
if (!interfaces[i].in_use)
continue;
/* Find interface hardware address from device_name */
strncpy(ifr.ifr_name, interfaces[i].name, 16);
if (ioctl(tmpsock, SIOCGIFHWADDR, &ifr) == 0) {
/* Fetch mac address */
memcpy(interfaces[i].mac_addr, ifr.ifr_hwaddr.sa_data, ETH_ALEN);
if (memcmp(interfaces[i].mac_addr, &emptymac, ETH_ALEN) != 0) {
interfaces[i].has_mac = 1;
}
}
}
close(tmpsock);
}
static int get_device_index(char *device_name) {
struct ifreq ifr;
int tmpsock;
tmpsock = socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP);
/* Find interface index from device_name */
strncpy(ifr.ifr_name, device_name, 16);
if (ioctl(tmpsock, SIOCGIFINDEX, &ifr) != 0) {
return -1;
}
/* Return interface index */
return ifr.ifr_ifindex;
}
#endif
int net_get_interfaces(struct net_interface *interfaces, int max_devices) {
static struct ifaddrs *int_addrs;
static const struct ifaddrs *ifaddrsp;
const struct sockaddr_in *dl_addr;
int found = 0;
if (getifaddrs(&int_addrs) < 0) {
perror("getifaddrs");
exit(1);
}
for (ifaddrsp = int_addrs; ifaddrsp; ifaddrsp = ifaddrsp->ifa_next) {
dl_addr = (const struct sockaddr_in *) ifaddrsp->ifa_addr;
if (ifaddrsp->ifa_addr == NULL)
continue;
if (ifaddrsp->ifa_addr->sa_family == AF_INET) {
struct net_interface *interface =
net_get_interface_ptr(interfaces, max_devices,
ifaddrsp->ifa_name, 1);
if (interface != NULL) {
found++;
memcpy(interface->ipv4_addr, &dl_addr->sin_addr, IPV4_ALEN);
}
#ifdef __linux__
interface->ifindex = get_device_index(interface->name);
#endif
}
#ifndef __linux__
{
unsigned char emptymac[] = {0, 0, 0, 0, 0, 0};
struct sockaddr_dl *sdl = (struct sockaddr_dl *)ifaddrsp->ifa_addr;
if (sdl->sdl_alen == ETH_ALEN) {
struct net_interface *interface =
net_get_interface_ptr(interfaces, max_devices,
ifaddrsp->ifa_name, 1);
memcpy(interface->mac_addr, LLADDR(sdl), ETH_ALEN);
if (interface != NULL &&
memcmp(interface->mac_addr, &emptymac, ETH_ALEN) != 0) {
interface->has_mac = 1;
}
}
}
#endif
}
freeifaddrs(int_addrs);
#ifdef __linux__
net_update_mac(interfaces, max_devices);
#endif
#if 0
{
int i;
for (i = 0; i < max_devices; ++i) {
if (interfaces[i].in_use) {
struct in_addr *addr =
(struct in_addr *)interfaces[i].ipv4_addr;
printf("Interface %s:\n", interfaces[i].name);
printf("\tIP: %s\n", inet_ntoa(*addr));
printf("\tMAC: %s\n",
ether_ntoa((struct ether_addr *)interfaces[i].mac_addr));
#ifdef __linux__
printf("\tIfIndex: %d\n", interfaces[i].ifindex);
#endif
printf("\n");
}
}
}
#endif
return found;
}
unsigned short in_cksum(unsigned short *addr, int len)
{
int nleft = len;
int sum = 0;
unsigned short *w = addr;
unsigned short answer = 0;
while (nleft > 1) {
sum += *w++;
nleft -= 2;
}
if (nleft == 1) {
*(unsigned char *) (&answer) = *(unsigned char *) w;
sum += answer;
}
sum = (sum >> 16) + (sum & 0xFFFF);
sum += (sum >> 16);
answer = ~sum;
return (answer);
}
unsigned short udp_sum_calc(unsigned char *src_addr,unsigned char *dst_addr, unsigned char *data, unsigned short len) {
unsigned short prot_udp=17;
unsigned short padd=0;
unsigned short word16;
unsigned int sum = 0;
int i;
/* Padding ? */
padd = (len % 2);
if (padd) {
data[len] = 0;
}
/* header+data */
for (i = 0; i < len + padd; i += 2){
word16 = ((data[i] << 8) & 0xFF00) + (data[i + 1] & 0xFF);
sum += word16;
}
/* source ip */
for (i = 0; i < IPV4_ALEN; i += 2){
word16 = ((src_addr[i] << 8) & 0xFF00) + (src_addr[i + 1] & 0xFF);
sum += word16;
}
/* dest ip */
for (i = 0; i < IPV4_ALEN; i += 2){
word16 = ((dst_addr[i] << 8) & 0xFF00) + (dst_addr[i + 1] & 0xFF);
sum += word16;
}
sum += prot_udp + len;
while (sum>>16)
sum = (sum & 0xFFFF) + (sum >> 16);
sum = ~sum;
if (sum == 0)
sum = 0xFFFF;
return (unsigned short) sum;
}
int net_init_raw_socket(struct net_interface *interface) {
int fd;
#ifdef __linux__
/* Transmit raw packets with this socket */
fd = socket(AF_PACKET, SOCK_RAW, htons(ETH_P_ALL));
if (fd < 0) {
perror("raw_socket");
exit(1);
}
#else
/* Transmit raw packets with bpf */
fd = open("/dev/bpf0", O_RDWR);
if (fd <= 0) {
perror("open_bpf");
exit(1);
}
#endif
return fd;
}
int net_send_udp(const int fd, struct net_interface *interface, const unsigned char *sourcemac, const unsigned char *destmac, const struct in_addr *sourceip, const int sourceport, const struct in_addr *destip, const int destport, const unsigned char *data, const int datalen) {
#ifdef __linux__
struct sockaddr_ll socket_address;
#endif
/*
* Create a buffer for the full ethernet frame
* and align header pointers to the correct positions.
*/
static unsigned char stackbuf[ETH_FRAME_LEN];
void* buffer = (void*)&stackbuf;
#if defined(__FreeBSD__)
struct ether_header *eh = (struct ether_header *)buffer;
struct ip *ip = (struct ip *)(buffer + 14);
#else
struct ethhdr *eh = (struct ethhdr *)buffer;
struct iphdr *ip = (struct iphdr *)(buffer + 14);
#endif
struct udphdr *udp = (struct udphdr *)(buffer + 14 + 20);
unsigned char *rest =
(unsigned char *)(buffer + 20 + 14 + sizeof(struct udphdr));
if (((void *)rest - (void*)buffer) + datalen > ETH_FRAME_LEN) {
fprintf(stderr, _("packet size too large\n"));
return 0;
}
static unsigned int id = 1;
int send_result = 0;
/* Abort if we couldn't allocate enough memory */
if (buffer == NULL) {
perror("malloc");
exit(1);
}
/* Init ethernet header */
#if defined(__FreeBSD__)
memcpy(eh->ether_shost, sourcemac, ETH_ALEN);
memcpy(eh->ether_dhost, destmac, ETH_ALEN);
eh->ether_type = htons(ETHERTYPE_IP);
#else
memcpy(eh->h_source, sourcemac, ETH_ALEN);
memcpy(eh->h_dest, destmac, ETH_ALEN);
eh->h_proto = htons(ETH_P_IP);
#endif
#ifdef __linux__
/* Init SendTo struct */
socket_address.sll_family = AF_PACKET;
socket_address.sll_protocol = htons(ETH_P_IP);
socket_address.sll_ifindex = interface->ifindex;
socket_address.sll_hatype = ARPHRD_ETHER;
socket_address.sll_pkttype = PACKET_OTHERHOST;
socket_address.sll_halen = ETH_ALEN;
memcpy(socket_address.sll_addr, eh->h_source, ETH_ALEN);
socket_address.sll_addr[6] = 0x00;/*not used*/
socket_address.sll_addr[7] = 0x00;/*not used*/
#endif
/* Init IP Header */
#if defined(__FreeBSD__)
ip->ip_v = 4;
ip->ip_hl = 5;
ip->ip_tos = 0x10;
ip->ip_len = htons(datalen + 8 + 20);
ip->ip_id = htons(id++);
ip->ip_off = htons(0x4000);
ip->ip_ttl = 64;
ip->ip_p = 17; /* UDP */
ip->ip_sum = 0;
ip->ip_src.s_addr = sourceip->s_addr;
ip->ip_dst.s_addr = destip->s_addr;
#else
ip->version = 4;
ip->ihl = 5;
ip->tos = 0x10;
ip->tot_len = htons(datalen + 8 + 20);
ip->id = htons(id++);
ip->frag_off = htons(0x4000);
ip->ttl = 64;
ip->protocol = 17; /* UDP */
ip->check = 0x0000;
ip->saddr = sourceip->s_addr;
ip->daddr = destip->s_addr;
#endif
/* Calculate checksum for IP header */
#if defined(__FreeBSD__)
ip->ip_sum = in_cksum((unsigned short *)ip, sizeof(struct ip));
#else
ip->check = in_cksum((unsigned short *)ip, sizeof(struct iphdr));
#endif
/* Init UDP Header */
#if defined(__FreeBSD__)
udp->uh_sport = htons(sourceport);
udp->uh_dport = htons(destport);
udp->uh_ulen = htons(sizeof(struct udphdr) + datalen);
udp->uh_sum = 0;
#else
udp->source = htons(sourceport);
udp->dest = htons(destport);
udp->len = htons(sizeof(struct udphdr) + datalen);
udp->check = 0;
#endif
/* Insert actual data */
memcpy(rest, data, datalen);
/* Add UDP checksum */
#if defined(__FreeBSD__)
udp->uh_sum = udp_sum_calc((unsigned char *)&(ip->ip_src.s_addr),
(unsigned char *)&(ip->ip_dst.s_addr),
(unsigned char *)udp,
sizeof(struct udphdr) + datalen);
udp->uh_sum = htons(udp->uh_sum);
#else
udp->check = udp_sum_calc((unsigned char *)&(ip->saddr),
(unsigned char *)&(ip->daddr),
(unsigned char *)udp,
sizeof(struct udphdr) + datalen);
udp->check = htons(udp->check);
#endif
#ifdef __linux__
/* Send the packet */
send_result = sendto(fd, buffer, datalen + 8 + 14 + 20, 0,
(struct sockaddr*)&socket_address, sizeof(socket_address));
if (send_result == -1)
perror("sendto");
#else
{
struct ifreq req_if;
/* Pick device to send through */
strcpy(req_if.ifr_name, interface->name);
if (ioctl(fd, BIOCSETIF, &req_if) > 0) {
perror("ioctl_BIOCSETIF");
exit(1);
}
}
send_result = write(fd, buffer, datalen + 8 + 14 + 20);
if (send_result == -1)
perror("bpf_write");
#endif
/* Return amount of _data_ bytes sent */
if (send_result - 8 - 14 - 20 < 0) {
return 0;
}
return send_result - 8 - 14 - 20;
}
|