-
Notifications
You must be signed in to change notification settings - Fork 154
/
link-dlpi.c
303 lines (261 loc) · 6.97 KB
/
link-dlpi.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
/*
* arp-scan is Copyright (C) 2005-2024 Roy Hills
*
* This file is part of arp-scan.
*
* arp-scan 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.
*
* arp-scan 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 arp-scan. If not, see <http://www.gnu.org/licenses/>.
*
* link-dlpi.c -- DLPI link layer functions for arp-scan
*
* Author: Roy Hills
* Date: 22 July 2006
*
* Description:
*
* This contains the link layer functions using the DLPI (Data Link
* Provider Interface) implementation. DLPI is typically used on SysV systems
* such as Solaris.
*
* Note: The DLPI functions have been tested with Solaris 8, 9 and 10. However
* they do not work with Solaris 11. See github issue
* https://github.com/royhills/arp-scan/issues/31 for details.
*/
#include "arp-scan.h"
#ifdef HAVE_SYS_STAT_H
#include <sys/stat.h>
#endif
#ifdef HAVE_FCNTL_H
#include <fcntl.h>
#endif
#ifdef HAVE_STROPTS_H
#include <stropts.h>
#endif
#ifdef HAVE_SYS_DLPI_H
#include <sys/dlpi.h>
#endif
#ifdef HAVE_SYS_DLPIHDR_H
#include <sys/dlpihdr.h>
#endif
#ifdef HAVE_SYS_IOCTL_H
#include <sys/ioctl.h>
#endif
#ifdef HAVE_SYS_SOCKIO_H
#include <sys/sockio.h>
#endif
#ifdef HAVE_NET_IF_H
#include <net/if.h>
#endif
/* Neal Nuckolls' sample code defines MAXDLBUF as 8192 longwords, but we use
* unsigned char for our buffers and so must multiply by four */
#define MAXDLBUF 8192*4
/*
* Link layer handle structure for DLPI.
*/
typedef struct link_handle {
int fd;
int sap_first;
struct ifreq ifr;
} link_t;
#if defined(DLIOCRAW) || defined(HAVE_SYS_DLPIHDR_H)
static int
strioctl(int fd, int cmd, int len, char *dp) {
struct strioctl str;
str.ic_cmd = cmd;
str.ic_timout = INFTIM;
str.ic_len = len;
str.ic_dp = dp;
if (ioctl(fd, I_STR, &str) < 0)
return -1;
return str.ic_len;
}
#endif
#ifdef HAVE_SYS_DLPIHDR_H
#define ND_BASE ('N' << 8)
#define ND_GET (ND_BASE + 0)
static int
link_match_ppa(link_t *handle, const char *device) {
char *p;
char dev[16];
char buf[256];
int len;
int ppa;
strlcpy(buf, "dl_ifnames", sizeof(buf));
if ((len = strioctl(handle->fd, ND_GET, sizeof(buf), buf)) < 0)
return -1;
for (p = buf; p < buf + len; p += strlen(p) + 1) {
ppa = -1;
if (sscanf(p, "%s (PPA %d)\n", dev, &ppa) != 2)
break;
if (strcmp(dev, device) == 0)
break;
}
return ppa;
}
#endif
static int
dlpi_msg(int fd, union DL_primitives *dlp, int rlen, int flags, unsigned ack,
int alen, int size) {
struct strbuf ctl;
ctl.maxlen = 0;
ctl.len = rlen;
ctl.buf = (caddr_t)dlp;
if (putmsg(fd, &ctl, NULL, flags) < 0)
return -1;
ctl.maxlen = size;
ctl.len = 0;
flags = 0;
if (getmsg(fd, &ctl, NULL, &flags) < 0)
return -1;
if (dlp->dl_primitive != ack || ctl.len < alen)
return -1;
return 0;
}
/*
* link_close -- Close the link
*
* Inputs:
*
* handle The handle for the link interface
*
* Returns:
*
* None
*/
static void
link_close(link_t *handle) {
if (handle != NULL) {
if (handle->fd >= 0) {
close(handle->fd);
}
free(handle);
}
}
/*
* link_open -- Open the specified link-level device
*
* Inputs:
*
* device The name of the device to open
*
* Returns:
*
* A pointer to a link handle structure.
*/
static link_t *
link_open(const char *device) {
union DL_primitives *dlp;
unsigned char buf[MAXDLBUF];
char *p;
char dev[16];
link_t *handle;
int ppa;
handle = Malloc(sizeof(*handle));
memset(handle, '\0', sizeof(*handle));
#ifdef HAVE_SYS_DLPIHDR_H
if ((handle->fd = open("/dev/streams/dlb", O_RDWR)) < 0) {
free(handle);
return NULL;
}
if ((ppa = link_match_ppa(handle, device)) < 0) {
link_close(handle);
return NULL;
}
#else
handle->fd = -1;
snprintf(dev, sizeof(dev), "/dev/%s", device);
if ((p = strpbrk(dev, "0123456789")) == NULL) {
link_close(handle);
return NULL;
}
ppa = atoi(p);
*p = '\0';
if ((handle->fd = open(dev, O_RDWR)) < 0) {
snprintf(dev, sizeof(dev), "/dev/%s", device);
if ((handle->fd = open(dev, O_RDWR)) < 0) {
link_close(handle);
return NULL;
}
}
#endif
memset(&(handle->ifr), 0, sizeof(struct ifreq));
strlcpy(handle->ifr.ifr_name, device, sizeof(handle->ifr.ifr_name));
dlp = (union DL_primitives *)buf;
dlp->info_req.dl_primitive = DL_INFO_REQ;
if (dlpi_msg(handle->fd, dlp, DL_INFO_REQ_SIZE, RS_HIPRI, DL_INFO_ACK,
DL_INFO_ACK_SIZE, sizeof(buf)) < 0) {
link_close(handle);
return NULL;
}
handle->sap_first = (dlp->info_ack.dl_sap_length > 0);
if (dlp->info_ack.dl_provider_style == DL_STYLE2) {
dlp->attach_req.dl_primitive = DL_ATTACH_REQ;
dlp->attach_req.dl_ppa = ppa;
if (dlpi_msg(handle->fd, dlp, DL_ATTACH_REQ_SIZE, 0, DL_OK_ACK,
DL_OK_ACK_SIZE, sizeof(buf)) < 0) {
link_close(handle);
return NULL;
}
}
memset(&dlp->bind_req, 0, DL_BIND_REQ_SIZE);
dlp->bind_req.dl_primitive = DL_BIND_REQ;
#ifdef DL_HP_RAWDLS
dlp->bind_req.dl_sap = 24; /* from HP-UX DLPI programmers guide */
dlp->bind_req.dl_service_mode = DL_HP_RAWDLS;
#else
dlp->bind_req.dl_sap = DL_ETHER;
dlp->bind_req.dl_service_mode = DL_CLDLS;
#endif
if (dlpi_msg(handle->fd, dlp, DL_BIND_REQ_SIZE, 0, DL_BIND_ACK,
DL_BIND_ACK_SIZE, sizeof(buf)) < 0) {
link_close(handle);
return NULL;
}
#ifdef DLIOCRAW
if (strioctl(handle->fd, DLIOCRAW, 0, NULL) < 0) {
link_close(handle);
return NULL;
}
#endif
return (handle);
}
/*
* get_hardware_address -- Get the Ethernet MAC address associated
* with the given device.
* Inputs:
*
* if_name The name of the network interface
* hw_address (output) the Ethernet MAC address
*
* Returns:
*
* None
*/
void
get_hardware_address(const char *if_name, unsigned char hw_address[]) {
union DL_primitives *dlp;
unsigned char buf[MAXDLBUF];
link_t *handle;
handle = link_open(if_name);
if (!handle)
err_msg("ERROR: cannot open interface %s with DLPI", if_name);
dlp = (union DL_primitives*) buf;
dlp->physaddr_req.dl_primitive = DL_PHYS_ADDR_REQ;
dlp->physaddr_req.dl_addr_type = DL_CURR_PHYS_ADDR;
if (dlpi_msg(handle->fd, dlp, DL_PHYS_ADDR_REQ_SIZE, 0, DL_PHYS_ADDR_ACK,
DL_PHYS_ADDR_ACK_SIZE, sizeof(buf)) < 0) {
err_msg("dlpi_msg failed");
}
link_close(handle);
memcpy(hw_address, buf + dlp->physaddr_ack.dl_addr_offset, ETH_ALEN);
}