-
Notifications
You must be signed in to change notification settings - Fork 17
/
ifinfo.c
125 lines (95 loc) · 3.15 KB
/
ifinfo.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
/* cSploit - a simple penetration testing suite
* Copyright (C) 2014 Massimo Dragano aka tux_mind <[email protected]>
*
* cSploit 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.
*
* cSploit 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 cSploit. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef _GNU_SOURCE
#define _GNU_SOURCE
#endif
#include <string.h>
#include <errno.h>
#include <limits.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/ioctl.h>
#include <unistd.h>
#include <csploit/logger.h>
#include "ifinfo.h"
#include "netdefs.h"
struct if_info ifinfo;
/**
* @brief get info about an interface and store them into ::ifinfo .
*
* @param ifname name of the interface
* @returns 0 on success, -1 on error.
*/
int get_ifinfo(char *ifname) {
struct ifreq ifr;
int fd;
memset(&ifinfo, 0, sizeof(ifinfo));
fd = socket(AF_INET, SOCK_DGRAM, IPPROTO_IP);
if(fd == -1) {
print( WARNING, "socket: %s", strerror(errno));
return -1;
}
memset(&ifr, 0, sizeof(struct ifreq));
strncpy(ifr.ifr_name, ifname, IFNAMSIZ-1);
ifr.ifr_name[IFNAMSIZ] = '\0';
if (ioctl(fd, SIOCGIFHWADDR, &ifr) == -1) {
print( WARNING, "ioctl: %s", strerror(errno));
print( ERROR, "unable to get link layer address");
goto error;
}
if(ifr.ifr_hwaddr.sa_family != ARPHRD_ETHER) {
print( ERROR, "for the moment only Ethernet devices are supported");
goto error;
}
memcpy(ifinfo.eth_addr, ifr.ifr_hwaddr.sa_data, ETH_ALEN);
memset(&(ifr.ifr_addr), 0, sizeof(ifr.ifr_addr));
ifr.ifr_addr.sa_family = AF_INET;
if(ioctl(fd, SIOCGIFADDR, &ifr) == -1) {
print( WARNING, "ioctl: %s", strerror(errno));
print( ERROR, "unable to get network address");
goto error;
}
ifinfo.ip_addr = ((struct sockaddr_in *) &(ifr.ifr_addr))->sin_addr.s_addr;
if(ioctl(fd, SIOCGIFNETMASK, &ifr) == -1) {
print( WARNING, "ioctl: %s", strerror(errno));
print( ERROR, "unable to get network mask");
goto error;
}
ifinfo.ip_mask = ((struct sockaddr_in *) &(ifr.ifr_addr))->sin_addr.s_addr;
ifinfo.ip_subnet = ifinfo.ip_addr & ifinfo.ip_mask;
ifinfo.ip_broadcast = ifinfo.ip_addr | ~(ifinfo.ip_mask);
if(ioctl(fd, SIOCGIFMTU, &ifr) == -1) {
print( WARNING, "ioctl: %s", strerror(errno));
print( ERROR, "unable to get MTU");
goto error;
}
ifinfo.mtu = ifr.ifr_mtu;
#ifndef HAVE_LIBPCAP
if(ioctl(fd, SIOCGIFINDEX, &ifr) == -1) {
print( WARNING, "ioctl: %s", strerror(errno));
print( ERROR, "unable to get interface index");
goto error;
}
ifinfo.index = ifr.ifr_ifindex;
#endif
close(fd);
memcpy(ifinfo.name, ifr.ifr_name, IFNAMSIZ);
return 0;
error:
close(fd);
return -1;
}