-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharp.c
372 lines (304 loc) · 12.1 KB
/
arp.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
/* Copyright (C) 2011-2013 P.D. Buchan ([email protected])
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 3 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, see <http://www.gnu.org/licenses/>.
*/
// Send an IPv4 ARP packet via raw socket at the link layer (ethernet frame).
// Values set for ARP request.
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h> // close()
#include <string.h> // strcpy, memset(), and memcpy()
#include <netdb.h> // struct addrinfo
#include <sys/types.h> // needed for socket(), uint8_t, uint16_t
#include <sys/socket.h> // needed for socket()
#include <netinet/in.h> // IPPROTO_RAW, INET_ADDRSTRLEN
#include <netinet/ip.h> // IP_MAXPACKET (which is 65535)
#include <arpa/inet.h> // inet_pton() and inet_ntop()
#include <sys/ioctl.h> // macro ioctl is defined
#include <bits/ioctls.h> // defines values for argument "request" of ioctl.
#include <net/if.h> // struct ifreq
#include <linux/if_ether.h> // ETH_P_ARP = 0x0806
#include <linux/if_packet.h> // struct sockaddr_ll (see man 7 packet)
#include <net/ethernet.h>
#include <errno.h> // errno, perror()
// ARP header
typedef struct _arp_hdr arp_hdr;
struct _arp_hdr {
uint16_t htype;
uint16_t ptype;
uint8_t hlen;
uint8_t plen;
uint16_t opcode;
uint8_t sender_mac[6];
uint8_t sender_ip[4];
uint8_t target_mac[6];
uint8_t target_ip[4];
};
#define ETH_HDRLEN 14 // Ethernet header length
#define IP4_HDRLEN 20 // IPv4 header length
#define ARP_HDRLEN 28 // ARP header length
#define ARPOP_REQUEST 1 // Taken from <linux/if_arp.h>
#define ARPOP_REPLY 2
char *allocate_strmem (int);
uint8_t *allocate_ustrmem (int);
int interface_lookup(char*, char*, struct ifreq*, uint8_t *, struct sockaddr_ll*);
int listen_ARP(int, uint8_t *, arp_hdr *);
int fill_ARPhdr(arp_hdr *, uint8_t *);
int main (int argc, char **argv)
{
printf("Starting\n");
int sd;
char *interface, *target, *src_ip;
arp_hdr arphdr_out;
uint8_t *src_mac, *dst_mac, *ether_frame;
struct addrinfo hints, *res;
struct sockaddr_ll device;
struct ifreq ifr;
// Allocate memory for various arrays.
src_mac = allocate_ustrmem(6);
dst_mac = allocate_ustrmem(6);
ether_frame = allocate_ustrmem(IP_MAXPACKET);
interface = allocate_strmem(40);
target = allocate_strmem(40);
src_ip = allocate_strmem(INET_ADDRSTRLEN);
// Look-up interface
interface_lookup(interface, "wlan0", &ifr, src_mac, &device);
// Set destination MAC address: broadcast address
memset (dst_mac, 0xff, 6 * sizeof (uint8_t));
// Resolve ipv4 url if needed
config_ipv4(src_ip, "86.67.83.71", target, "64.233.160.50", src_mac, &hints, res, &arphdr_out, &device);
// Fill out ARP packet
fill_ARPhdr(&arphdr_out, src_mac);
sd = fill_send_ETHhdr(ether_frame, dst_mac, src_mac, &arphdr_out, &device);
listen_ARP(sd, ether_frame, &arphdr_out);
// Close socket descriptor.
close (sd);
// Free allocated memory.
free (src_mac);
free (dst_mac);
free (ether_frame);
free (interface);
free (target);
free (src_ip);
return (EXIT_SUCCESS);
}
int fill_ARPhdr(arp_hdr *arphdr_out, uint8_t *src_mac)
{
// Hardware type (16 bits): 1 for ethernet
arphdr_out->htype = htons (1);
// Protocol type (16 bits): 2048 for IP
arphdr_out->ptype = htons (ETH_P_IP);
// Hardware address length (8 bits): 6 bytes for MAC address
arphdr_out->hlen = 6;
// Protocol address length (8 bits): 4 bytes for IPv4 address
arphdr_out->plen = 4;
// OpCode: 1 for ARP request
arphdr_out->opcode = htons (ARPOP_REQUEST);
// Sender hardware address (48 bits): MAC address
memcpy (&arphdr_out->sender_mac, src_mac, 6 * sizeof (uint8_t));
// Sender protocol address (32 bits)
// See getaddrinfo() resolution of src_ip.
// Target hardware address (48 bits): zero, since we don't know it yet.
memset (&arphdr_out->target_mac, 0, 6 * sizeof (uint8_t));
// Target protocol address (32 bits)
// See getaddrinfo() resolution of target.
return 0;
}
int fill_send_ETHhdr(uint8_t *ether_frame, uint8_t *dst_mac, uint8_t *src_mac, arp_hdr *arphdr_out, struct sockaddr_ll *device)
{
int sd, frame_length, bytes;
// Fill out ethernet frame header.
// Ethernet frame length = ethernet header (MAC + MAC + ethernet type) + ethernet data (ARP header)
frame_length = 6 + 6 + 2 + ARP_HDRLEN;
// Destination and Source MAC addresses
memcpy (ether_frame, dst_mac, 6 * sizeof (uint8_t));
memcpy (ether_frame + 6, src_mac, 6 * sizeof (uint8_t));
// Next is ethernet type code (ETH_P_ARP for ARP).
// http://www.iana.org/assignments/ethernet-numbers
ether_frame[12] = ETH_P_ARP / 256;
ether_frame[13] = ETH_P_ARP % 256;
// Next is ethernet frame data (ARP header).
// ARP header
memcpy (ether_frame + ETH_HDRLEN, arphdr_out, ARP_HDRLEN * sizeof (uint8_t));
// Submit request for a raw socket descriptor.
if ((sd = socket (PF_PACKET, SOCK_RAW, htons (ETH_P_ALL))) < 0) {
perror ("socket() failed ");
exit (EXIT_FAILURE);
}
// Send ethernet frame to socket.
if ((bytes = sendto (sd, ether_frame, frame_length, 0, (struct sockaddr *) device, sizeof (struct sockaddr_ll))) <= 0) {
perror ("sendto() failed");
exit (EXIT_FAILURE);
}
return sd;
}
int config_ipv4(char* src_ip, char* src_ip_addr, char* target, char* trg_ip_addr, uint8_t *src_mac, struct addrinfo *hints, struct addrinfo *res, arp_hdr *arphdr_out, struct sockaddr_ll *device)
{
int status;
struct sockaddr_in *ipv4;
// Source IPv4 address: you need to fill this out
strcpy (src_ip, src_ip_addr);
// Destination URL or IPv4 address (must be a link-local node): you need to fill this out
strcpy (target, trg_ip_addr);
// Fill out hints for getaddrinfo().
memset (hints, 0, sizeof (struct addrinfo));
hints->ai_family = AF_INET;
hints->ai_socktype = SOCK_STREAM;
hints->ai_flags = hints->ai_flags | AI_CANONNAME;
// Source IP address
if ((status = inet_pton (AF_INET, src_ip, arphdr_out->sender_ip)) != 1) {
fprintf (stderr, "inet_pton() source IP address.\nError message: %s", strerror (status));
exit (EXIT_FAILURE);
}
// Resolve target using getaddrinfo().
if ((status = getaddrinfo (target, NULL, hints, &res)) != 0) {
fprintf (stderr, "getaddrinfo() failed: %s\n", gai_strerror (status));
exit (EXIT_FAILURE);
}
ipv4 = (struct sockaddr_in *) res->ai_addr;
memcpy (arphdr_out->target_ip, &ipv4->sin_addr, 4 * sizeof (uint8_t));
freeaddrinfo (res);
// Fill out sockaddr_ll.
device->sll_family = AF_PACKET;
memcpy (device->sll_addr, src_mac, 6 * sizeof (uint8_t));
device->sll_halen = htons (6);
return 0;
}
int listen_ARP(int sd, uint8_t *ether_frame, arp_hdr *arphrd_out)
{
// Listen for incoming ethernet frame from socket sd.
// We expect an ARP ethernet frame of the form:
// MAC (6 bytes) + MAC (6 bytes) + ethernet type (2 bytes)
// + ethernet data (ARP header) (28 bytes)
// Keep at it until we get an ARP reply.
printf("Receiving ... \n");
int status, i;
arp_hdr *arp_pt_in;
arp_pt_in = (arp_hdr *) (ether_frame + 6 + 6 + 2);
while (((((ether_frame[12]) << 8) + ether_frame[13]) != ETH_P_ARP) || (ntohs (arp_pt_in->opcode) != ARPOP_REPLY)) {
if ((status = recv (sd, ether_frame, IP_MAXPACKET, 0)) < 0) {
if (errno == EINTR) {
memset (ether_frame, 0, IP_MAXPACKET * sizeof (uint8_t));
continue; // Something weird happened, but let's try again.
} else {
perror ("recv() failed:");
exit (EXIT_FAILURE);
}
}
}
// Print out contents of received ethernet frame.
printf ("\nEthernet frame header:\n");
printf ("Destination MAC (this node): ");
for (i=0; i<5; i++) {
printf ("%02x:", ether_frame[i]);
}
printf ("%02x\n", ether_frame[5]);
printf ("Source MAC: ");
for (i=0; i<5; i++) {
printf ("%02x:", ether_frame[i+6]);
}
printf ("%02x\n", ether_frame[11]);
// Next is ethernet type code (ETH_P_ARP for ARP).
// http://www.iana.org/assignments/ethernet-numbers
printf ("Ethernet type code (2054 = ARP): %u\n", ((ether_frame[12]) << 8) + ether_frame[13]);
printf ("\nEthernet data (ARP header):\n");
printf ("Hardware type (1 = ethernet (10 Mb)): %u\n", ntohs (arp_pt_in->htype));
printf ("Protocol type (2048 for IPv4 addresses): %u\n", ntohs (arp_pt_in->ptype));
printf ("Hardware (MAC) address length (bytes): %u\n", arp_pt_in->hlen);
printf ("Protocol (IPv4) address length (bytes): %u\n", arp_pt_in->plen);
printf ("Opcode (2 = ARP reply): %u\n", ntohs (arp_pt_in->opcode));
printf ("Sender hardware (MAC) address: ");
for (i=0; i<5; i++) {
printf ("%02x:", arp_pt_in->sender_mac[i]);
}
printf ("%02x\n", arp_pt_in->sender_mac[5]);
printf ("Sender protocol (IPv4) address: %u.%u.%u.%u\n",
arp_pt_in->sender_ip[0], arp_pt_in->sender_ip[1], arp_pt_in->sender_ip[2], arp_pt_in->sender_ip[3]);
printf ("Target (this node) hardware (MAC) address: ");
for (i=0; i<5; i++) {
printf ("%02x:", arp_pt_in->target_mac[i]);
}
printf ("%02x\n", arp_pt_in->target_mac[5]);
printf ("Target (this node) protocol (IPv4) address: %u.%u.%u.%u\n",
arp_pt_in->target_ip[0], arp_pt_in->target_ip[1], arp_pt_in->target_ip[2], arp_pt_in->target_ip[3]);
return 0;
}
// Allocate memory for an array of chars.
char *allocate_strmem (int len)
{
void *tmp;
if (len <= 0) {
fprintf (stderr, "ERROR: Cannot allocate memory because len = %i in allocate_strmem().\n", len);
exit (EXIT_FAILURE);
}
tmp = (char *) malloc (len * sizeof (char));
if (tmp != NULL) {
memset (tmp, 0, len * sizeof (char));
return (tmp);
} else {
fprintf (stderr, "ERROR: Cannot allocate memory for array allocate_strmem().\n");
exit (EXIT_FAILURE);
}
}
// Allocate memory for an array of unsigned chars.
uint8_t *allocate_ustrmem (int len)
{
void *tmp;
if (len <= 0) {
fprintf (stderr, "ERROR: Cannot allocate memory because len = %i in allocate_ustrmem().\n", len);
exit (EXIT_FAILURE);
}
tmp = (uint8_t *) malloc (len * sizeof (uint8_t));
if (tmp != NULL) {
memset (tmp, 0, len * sizeof (uint8_t));
return (tmp);
} else {
fprintf (stderr, "ERROR: Cannot allocate memory for array allocate_ustrmem().\n");
exit (EXIT_FAILURE);
}
}
int interface_lookup(char *interface, char *name, struct ifreq *ifr, uint8_t *src_mac, struct sockaddr_ll *device)
{
int sd;
printf("Looking up interface\n");
strcpy(interface, name);
// Submit request for a socket descriptor to look up interface.
if ((sd = socket (AF_INET, SOCK_RAW, IPPROTO_RAW)) < 0) {
perror ("socket() failed to get socket descriptor for using ioctl() ");
exit (EXIT_FAILURE);
}
// Use ioctl() to look up interface name and get its MAC address.
memset (ifr, 0, sizeof (*ifr));
snprintf (ifr->ifr_name, sizeof (ifr->ifr_name), "%s", interface);
if (ioctl (sd, SIOCGIFHWADDR, ifr) < 0) {
perror ("ioctl() failed to get source MAC address ");
return (EXIT_FAILURE);
}
close (sd);
// Copy source MAC address.
memcpy (src_mac, ifr->ifr_hwaddr.sa_data, 6 * sizeof (uint8_t));
// Report source MAC address to stdout.
int i;
printf ("MAC address for interface %s is ", interface);
for (i=0; i<5; i++) {
printf ("%02x:", src_mac[i]);
}
printf ("%02x\n", src_mac[5]);
// Find interface index from interface name and store index in
// struct sockaddr_ll device, which will be used as an argument of sendto().
memset (device, 0, sizeof (device));
if ((device->sll_ifindex = if_nametoindex (interface)) == 0) {
perror ("if_nametoindex() failed to obtain interface index ");
exit (EXIT_FAILURE);
}
printf ("Index for interface %s is %i\n", interface, device->sll_ifindex);
return 0;
}