-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathlibopenfcoe.c
276 lines (217 loc) · 6.77 KB
/
libopenfcoe.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
/*
* Copyright(c) 2012-2013 Intel Corporation. All rights reserved.
*
* This program is free software; you can redistribute it and/or modify it
* under the terms and conditions of the GNU General Public License,
* version 2, as published by the Free Software Foundation.
*
* This program is distributed in the hope 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
* this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
*
* Maintained at www.Open-FCoE.org
*/
#include "libopenfcoe.h"
#define SYSFS_HOST_DIR "/sys/class/fc_host"
#define SYSFS_HBA_DIR "/sys/class/net"
int mac2str(const u_int8_t *mac, char *dst, size_t size)
{
if (dst && size > MAC_ADDR_STRLEN) {
snprintf(dst, size, "%02X:%02X:%02X:%02X:%02X:%02X",
mac[0], mac[1], mac[2], mac[3], mac[4], mac[5]);
return 0;
}
return -1;
}
int str2mac(const char *src, u_int8_t *mac, size_t size)
{
int i = 0;
int rc = -1;
if (size < 6)
goto out_err;
if (!src)
goto out_err;
if (strlen(src) != MAC_ADDR_STRLEN)
goto out_err;
memset(mac, 0, size);
for (i = 0; i < 6; i++, mac++)
if (1 != sscanf(&src[i * 3], "%02hhX", mac))
goto out_err;
rc = 0;
out_err:
return rc;
}
static char *safe_makepath(char *path, size_t path_sz,
char *dname, char *fname)
{
size_t dsz = strlen(dname);
size_t fsz = strlen(fname);
char *cp = path;
if ((dsz + fsz + 2) > path_sz) {
fprintf(stderr,
"error: no room to expand pathname (%d+%d > %d)\n",
(int)dsz, (int)fsz, (int)path_sz);
return NULL;
}
memcpy(cp, dname, dsz);
cp += dsz;
*cp++ = '/';
memcpy(cp, fname, fsz);
cp += fsz;
*cp = '\0';
return path;
}
static int add_fcoe_fcf_device(struct dirent *dp, void *arg)
{
struct fcoe_ctlr_device *ctlr = (struct fcoe_ctlr_device *)arg;
struct fcoe_fcf_device *fcf;
if (!strstr(dp->d_name, "fcf") ||
(!strcmp(dp->d_name, "fcf_dev_loss_tmo")))
return 0;
fcf = malloc(sizeof(struct fcoe_fcf_device));
if (!fcf)
return -ENOMEM;
memset(fcf, 0, sizeof(struct fcoe_fcf_device));
/* Save the path */
if (safe_makepath(fcf->path, sizeof(fcf->path),
ctlr->path, dp->d_name) == NULL)
goto fail;
/* Use the index from the logical enumeration */
fcf->index = atoi(dp->d_name + sizeof("fcf_") - 1);
/* Save the fcf in the fcport's table */
if (sa_table_insert(&ctlr->fcfs, fcf->index,
fcf) < 0) {
fprintf(stderr, "%s: insert of fcf %d failed\n",
__func__, fcf->index);
goto fail;
}
return 0;
fail:
free(fcf);
return -ENOENT;
}
static void read_fcoe_fcf_device(void *ep, UNUSED void *arg)
{
struct fcoe_fcf_device *fcf = (struct fcoe_fcf_device *)ep;
char buf[MAX_STR_LEN];
sa_sys_read_line(fcf->path, "state", buf, sizeof(buf));
sa_enum_encode(fcf_state_table, buf, &fcf->state);
sa_sys_read_u32(fcf->path, "dev_loss_tmo", &fcf->dev_loss_tmo);
sa_sys_read_u64(fcf->path, "fabric_name", &fcf->fabric_name);
sa_sys_read_u64(fcf->path, "switch_name", &fcf->switch_name);
sa_sys_read_u32(fcf->path, "fc_map", &fcf->fc_map);
sa_sys_read_u32(fcf->path, "vfid", &fcf->vfid);
sa_sys_read_line(fcf->path, "mac", buf, MAX_STR_LEN);
str2mac(buf, &fcf->mac[0], MAC_ADDR_LEN);
sa_sys_read_u32(fcf->path, "priority", &fcf->priority);
sa_sys_read_u32(fcf->path, "fka_period", &fcf->fka_period);
sa_sys_read_u32(fcf->path, "selected", &fcf->selected);
sa_sys_read_u32(fcf->path, "vlan_id", &fcf->vlan_id);
}
static void read_fcoe_fcf(void *ep, UNUSED void *arg)
{
struct fcoe_ctlr_device *ctlr = (struct fcoe_ctlr_device *)ep;
/* Iterate through the ctlr and add any fcfs */
sa_dir_read(ctlr->path, add_fcoe_fcf_device, ctlr);
/* Populate each fabric */
sa_table_iterate(&ctlr->fcfs, read_fcoe_fcf_device, NULL);
}
static void free_fcoe_fcf_device(void *ep, UNUSED void *arg)
{
struct fcoe_fcf_device *fcf = (struct fcoe_fcf_device *)ep;
free(fcf);
}
#define SYSFS_MOUNT "/sys"
#define FCOE_CTLR_DEVICE_DIR SYSFS_MOUNT "/bus/fcoe/devices/"
static int find_fchost(struct dirent *dp, void *arg)
{
char *fchost = arg;
if (strstr(dp->d_name, "host")) {
strncpy(fchost, dp->d_name, MAX_STR_LEN);
return 1;
}
return 0;
}
static int read_fcoe_ctlr_device(struct dirent *dp, void *arg)
{
struct sa_table *ctlrs = arg;
struct fcoe_ctlr_device *ctlr;
char buf[MAX_STR_LEN];
char lesb_path[MAX_STR_LEN];
char hpath[MAX_STR_LEN];
char fchost[MAX_STR_LEN];
char *cp, *ifname;
int rc;
if (strncmp(dp->d_name, "ctlr_", 5))
return 0;
ctlr = malloc(sizeof(struct fcoe_ctlr_device));
if (!ctlr)
return 0; /* Must return 0 or loop will break */
memset(ctlr, 0, sizeof(struct fcoe_ctlr_device));
sa_table_init(&ctlr->fcfs);
/* Save the path */
snprintf(ctlr->path, sizeof(ctlr->path),
FCOE_CTLR_DEVICE_DIR "%s", dp->d_name);
/* Use the index from the logical enumeration */
ctlr->index = atoi(dp->d_name + sizeof("ctlr_") - 1);
rc = sa_dir_read(ctlr->path, find_fchost, fchost);
if (!rc)
goto fail;
rc = snprintf(hpath, MAX_STR_LEN, "%s/%s/", SYSFS_FCHOST, fchost);
if (rc < 0 || rc >= MAX_STR_LEN)
goto fail;
rc = sa_sys_read_line(hpath, "symbolic_name", buf, sizeof(buf));
/* Skip the HBA if it isn't Open-FCoE */
cp = strstr(buf, " over ");
if (!cp)
goto fail;
ifname = get_ifname_from_symbolic_name(buf);
strncpy(ctlr->ifname, ifname, IFNAMSIZ-1);
/* Get fcf device loss timeout */
sa_sys_read_u32(ctlr->path, "fcf_dev_loss_tmo",
&ctlr->fcf_dev_loss_tmo);
sa_sys_read_line(ctlr->path, "mode", buf, sizeof(buf));
sa_enum_encode(fip_conn_type_table, buf, &ctlr->mode);
if (safe_makepath(lesb_path, sizeof(lesb_path),
ctlr->path, "lesb") == NULL)
goto fail;
/* Get LESB statistics */
sa_sys_read_u32(lesb_path, "link_fail",
&ctlr->lesb_link_fail);
sa_sys_read_u32(lesb_path, "vlink_fail",
&ctlr->lesb_vlink_fail);
sa_sys_read_u32(lesb_path, "miss_fka",
&ctlr->lesb_miss_fka);
sa_sys_read_u32(lesb_path, "symb_err",
&ctlr->lesb_symb_err);
sa_sys_read_u32(lesb_path, "err_block",
&ctlr->lesb_err_block);
sa_sys_read_u32(lesb_path, "fcs_error",
&ctlr->lesb_fcs_error);
/* Save the ctlr in the supplied table */
if (sa_table_insert(ctlrs, ctlr->index, ctlr) < 0) {
fprintf(stderr, "%s: insert of ctlr %d failed\n",
__func__, ctlr->index);
goto fail;
}
return 0;
fail:
free(ctlr);
return -ENOENT;
}
void read_fcoe_ctlr(struct sa_table *ctlrs)
{
sa_dir_read(FCOE_CTLR_DEVICE_DIR, read_fcoe_ctlr_device, ctlrs);
sa_table_iterate(ctlrs, read_fcoe_fcf, NULL);
}
void free_fcoe_ctlr_device(void *ep, UNUSED void *arg)
{
struct fcoe_ctlr_device *ctlr = (struct fcoe_ctlr_device *)ep;
sa_table_iterate(&ctlr->fcfs, free_fcoe_fcf_device, NULL);
free(ctlr);
}