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
|
/*
* eth-linux.c
*
* Copyright (c) 2000 Dug Song <dugsong@monkey.org>
*
* $Id: eth-linux.c 547 2005-01-25 21:30:40Z dugsong $
*/
#include "config.h"
#include <sys/types.h>
#include <sys/ioctl.h>
#include <sys/socket.h>
#include <net/if.h>
#include <features.h>
#if __GLIBC__ >= 2 && __GLIBC_MINOR >= 1
#include <netpacket/packet.h>
#include <net/ethernet.h>
#else
#include <asm/types.h>
#include <linux/if_packet.h>
#include <linux/if_ether.h>
#endif /* __GLIBC__ */
#include <netinet/in.h>
#include <assert.h>
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include "dnet.h"
struct eth_handle {
int fd;
struct ifreq ifr;
struct sockaddr_ll sll;
};
eth_t *
eth_open(const char *device)
{
eth_t *e;
int n;
if ((e = calloc(1, sizeof(*e))) != NULL) {
if ((e->fd = socket(PF_PACKET, SOCK_RAW,
htons(ETH_P_ALL))) < 0)
return (eth_close(e));
#ifdef SO_BROADCAST
n = 1;
if (setsockopt(e->fd, SOL_SOCKET, SO_BROADCAST, &n,
sizeof(n)) < 0)
return (eth_close(e));
#endif
strlcpy(e->ifr.ifr_name, device, sizeof(e->ifr.ifr_name));
if (ioctl(e->fd, SIOCGIFINDEX, &e->ifr) < 0)
return (eth_close(e));
e->sll.sll_family = AF_PACKET;
e->sll.sll_ifindex = e->ifr.ifr_ifindex;
}
return (e);
}
ssize_t
eth_send(eth_t *e, const void *buf, size_t len)
{
struct eth_hdr *eth = (struct eth_hdr *)buf;
e->sll.sll_protocol = eth->eth_type;
return (sendto(e->fd, buf, len, 0, (struct sockaddr *)&e->sll,
sizeof(e->sll)));
}
eth_t *
eth_close(eth_t *e)
{
if (e != NULL) {
if (e->fd >= 0)
close(e->fd);
free(e);
}
return (NULL);
}
int
eth_get(eth_t *e, eth_addr_t *ea)
{
struct addr ha;
if (ioctl(e->fd, SIOCGIFHWADDR, &e->ifr) < 0)
return (-1);
if (addr_ston(&e->ifr.ifr_hwaddr, &ha) < 0)
return (-1);
memcpy(ea, &ha.addr_eth, sizeof(*ea));
return (0);
}
int
eth_set(eth_t *e, const eth_addr_t *ea)
{
struct addr ha;
ha.addr_type = ADDR_TYPE_ETH;
ha.addr_bits = ETH_ADDR_BITS;
memcpy(&ha.addr_eth, ea, ETH_ADDR_LEN);
addr_ntos(&ha, &e->ifr.ifr_hwaddr);
return (ioctl(e->fd, SIOCSIFHWADDR, &e->ifr));
}
|