-
Notifications
You must be signed in to change notification settings - Fork 0
/
nf2util.c
297 lines (257 loc) · 6.09 KB
/
nf2util.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
/* ****************************************************************************
* $Id: nf2util.c 6008 2010-03-14 08:17:15Z grg $
*
* Module: nf2util.c
* Project: NetFPGA 2 Linux Kernel Driver
* Description: Utility functions for user mode programs
*
* Change history:
*
*/
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/socket.h>
#include <sys/ioctl.h>
#include <net/if.h>
#include <arpa/inet.h>
#include "nf2.h"
#include "nf2util.h"
#include "reg_defines.h"
/* Function declarations */
static int readRegNet(struct nf2device *nf2, unsigned reg, unsigned *val);
static int readRegFile(struct nf2device *nf2, unsigned reg, unsigned *val);
static int writeRegNet(struct nf2device *nf2, unsigned reg, unsigned val);
static int writeRegFile(struct nf2device *nf2, unsigned reg, unsigned val);
static void readStr(struct nf2device *nf2, unsigned regStart, unsigned len, char *dst);
/*
* readReg - read a register
*/
int readReg(struct nf2device *nf2, unsigned reg, unsigned *val)
{
if (nf2->net_iface)
{
return readRegNet(nf2, reg, val);
}
else
{
return readRegFile(nf2, reg, val);
}
}
/*
* readRegNet - read a register, using a network socket
*/
static int readRegNet(struct nf2device *nf2, unsigned reg, unsigned *val)
{
struct ifreq ifreq;
struct nf2reg nf2reg;
int ret;
nf2reg.reg = reg;
/* Set up the ifreq structure */
ifreq.ifr_data = (char *)&nf2reg;
strncpy(ifreq.ifr_ifrn.ifrn_name, nf2->device_name, IFNAMSIZ);
/*if (setsockopt(nf2->fd, SOL_SOCKET, SO_BINDTODEVICE,
(char *)&ifreq, sizeof(ifreq)) < 0) {
perror("sendpacket: setting SO_BINDTODEVICE");
return -1;
} */
/* Call the ioctl */
if ((ret = ioctl(nf2->fd, SIOCREGREAD, &ifreq)) == 0)
{
*val = nf2reg.val;
return 0;
}
else
{
perror("sendpacket: ioctl failed");
return -1;
}
}
/*
* readRegFile - read a register, using a file descriptor
*/
static int readRegFile(struct nf2device *nf2, unsigned reg, unsigned *val)
{
struct ifreq ifreq;
struct nf2reg nf2reg;
int ret;
nf2reg.reg = reg;
/* Call the ioctl */
if ((ret = ioctl(nf2->fd, SIOCREGREAD, &nf2reg)) == 0)
{
*val = nf2reg.val;
return 0;
}
else
{
perror("sendpacket: ioctl failed");
return -1;
}
}
/*
* writeReg - write a register
*/
int writeReg(struct nf2device *nf2, unsigned reg, unsigned val)
{
if (nf2->net_iface)
{
return writeRegNet(nf2, reg, val);
}
else
{
return writeRegFile(nf2, reg, val);
}
}
/*
* writeRegNet - write a register, using a network socket
*/
static int writeRegNet(struct nf2device *nf2, unsigned reg, unsigned val)
{
struct ifreq ifreq;
struct nf2reg nf2reg;
int ret;
nf2reg.reg = reg;
nf2reg.val = val;
/* Set up the ifreq structure */
ifreq.ifr_data = (char *)&nf2reg;
strncpy(ifreq.ifr_ifrn.ifrn_name, nf2->device_name, IFNAMSIZ);
/*if (setsockopt(nf2->fd, SOL_SOCKET, SO_BINDTODEVICE,
(char *)&ifreq, sizeof(ifreq)) < 0) {
perror("sendpacket: setting SO_BINDTODEVICE");
return -1;
} */
/* Call the ioctl */
if ((ret = ioctl(nf2->fd, SIOCREGWRITE, &ifreq)) == 0)
{
return 0;
}
else
{
perror("sendpacket: ioctl failed");
return -1;
}
}
/*
* writeRegFile - write a register, using a file descriptor
*/
static int writeRegFile(struct nf2device *nf2, unsigned reg, unsigned val)
{
struct ifreq ifreq;
struct nf2reg nf2reg;
int ret;
nf2reg.reg = reg;
nf2reg.val = val;
/* Call the ioctl */
if ((ret = ioctl(nf2->fd, SIOCREGWRITE, &nf2reg)) == 0)
{
return 0;
}
else
{
perror("sendpacket: ioctl failed");
return -1;
}
}
/*
* Check the iface name to make sure we can find the interface
*/
int check_iface(struct nf2device *nf2)
{
struct stat buf;
char filename[PATHLEN];
/* See if we can find the interface name as a network device */
/* Test the length first of all */
if (strlen(nf2->device_name) > IFNAMSIZ)
{
fprintf(stderr, "Interface name is too long: %s\n", nf2->device_name);
return -1;
}
/* Check for /sys/class/net/iface_name */
strcpy(filename, "/sys/class/net/");
strcat(filename, nf2->device_name);
if (stat(filename, &buf) == 0)
{
fprintf(stderr, "Found net device: %s\n", nf2->device_name);
nf2->net_iface = 1;
return 0;
}
/* Check for /dev/iface_name */
strcpy(filename, "/dev/");
strcat(filename, nf2->device_name);
if (stat(filename, &buf) == 0)
{
fprintf(stderr, "Found dev device: %s\n", nf2->device_name);
nf2->net_iface = 0;
return 0;
}
fprintf(stderr, "Can't find device: %s\n", nf2->device_name);
return -1;
}
/*
* Open the descriptor associated with the device name
*/
int openDescriptor(struct nf2device *nf2)
{
struct ifreq ifreq;
char filename[PATHLEN];
struct sockaddr_in address;
int i;
struct sockaddr_in *sin = (struct sockaddr_in *) &ifreq.ifr_addr;
int found = 0;
if (nf2->net_iface)
{
/* Open a network socket */
nf2->fd = socket(AF_INET, SOCK_DGRAM, 0);
if (nf2->fd == -1)
{
perror("socket: creating socket");
return -1;
}
else
{
/* Root can bind to a network interface.
Non-root has to bind to a network address. */
if (geteuid() == 0)
{
strncpy(ifreq.ifr_ifrn.ifrn_name, nf2->device_name, IFNAMSIZ);
if (setsockopt(nf2->fd, SOL_SOCKET, SO_BINDTODEVICE,
(char *)&ifreq, sizeof(ifreq)) < 0) {
perror("setsockopt: setting SO_BINDTODEVICE");
return -1;
}
}
}
}
else
{
strcpy(filename, "/dev/");
strcat(filename, nf2->device_name);
nf2->fd = fileno(fopen(filename, "w+"));
if (nf2->fd == -1)
{
perror("fileno: creating descriptor");
return -1;
}
}
return 0;
}
/*
* Close the descriptor associated with the device name
*/
int closeDescriptor(struct nf2device *nf2)
{
struct ifreq ifreq;
char filename[PATHLEN];
if (nf2->net_iface)
{
close(nf2->fd);
}
else
{
close(nf2->fd);
}
return 0;
}