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
|
/*
* eth-snoop.c
*
* Copyright (c) 2000 Dug Song <dugsong@monkey.org>
*
* $Id: eth-snoop.c 548 2005-01-30 06:01:57Z dugsong $
*/
#include "config.h"
#include <sys/types.h>
#include <sys/ioctl.h>
#include <sys/socket.h>
#include <net/if.h>
#include <net/raw.h>
#include <assert.h>
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include "dnet.h"
struct eth_handle {
int fd;
struct ifreq ifr;
};
eth_t *
eth_open(const char *device)
{
struct sockaddr_raw sr;
eth_t *e;
int n;
if ((e = calloc(1, sizeof(*e))) == NULL)
return (NULL);
if ((e->fd = socket(PF_RAW, SOCK_RAW, RAWPROTO_SNOOP)) < 0)
return (eth_close(e));
memset(&sr, 0, sizeof(sr));
sr.sr_family = AF_RAW;
strlcpy(sr.sr_ifname, device, sizeof(sr.sr_ifname));
if (bind(e->fd, (struct sockaddr *)&sr, sizeof(sr)) < 0)
return (eth_close(e));
n = 60000;
if (setsockopt(e->fd, SOL_SOCKET, SO_SNDBUF, &n, sizeof(n)) < 0)
return (eth_close(e));
strlcpy(e->ifr.ifr_name, device, sizeof(e->ifr.ifr_name));
return (e);
}
int
eth_get(eth_t *e, eth_addr_t *ea)
{
struct addr ha;
if (ioctl(e->fd, SIOCGIFADDR, &e->ifr) < 0)
return (-1);
if (addr_ston(&e->ifr.ifr_addr, &ha) < 0)
return (-1);
if (ha.addr_type != ADDR_TYPE_ETH) {
errno = EINVAL;
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);
if (addr_ntos(&ha, &e->ifr.ifr_addr) < 0)
return (-1);
return (ioctl(e->fd, SIOCSIFADDR, &e->ifr));
}
ssize_t
eth_send(eth_t *e, const void *buf, size_t len)
{
return (write(e->fd, buf, len));
}
eth_t *
eth_close(eth_t *e)
{
if (e != NULL) {
if (e->fd >= 0)
close(e->fd);
free(e);
}
return (NULL);
}
|