-
Notifications
You must be signed in to change notification settings - Fork 8
/
clif.c
433 lines (374 loc) · 10.2 KB
/
clif.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
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
/*******************************************************************************
LLDP Agent Daemon (LLDPAD) Software
Copyright(c) 2007-2010 Intel Corporation.
Substantially modified from:
hostapd-0.5.7
Copyright (c) 2002-2007, Jouni Malinen <[email protected]> and
contributors
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.
The full GNU General Public License is included in this distribution in
the file called "COPYING".
Contact Information:
open-lldp Mailing List <[email protected]>
*******************************************************************************/
#include <stdlib.h>
#include <stdio.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/socket.h>
#include "clif.h"
#include "clif_msgs.h"
#if defined(CONFIG_CLIF_IFACE_UNIX) || defined(CONFIG_CLIF_IFACE_UDP)
#define CLIF_IFACE_SOCKET
#endif /* CONFIG_CLIF_IFACE_UNIX || CONFIG_CLIF_IFACE_UDP */
struct clif *clif_open()
{
struct clif *clif;
socklen_t addrlen;
clif = malloc(sizeof(*clif));
if (clif == NULL)
return NULL;
memset(clif, 0, sizeof(*clif));
clif->s = socket(AF_LOCAL, SOCK_DGRAM, 0);
if (clif->s < 0) {
perror("socket");
free(clif);
return NULL;
}
clif->local.sun_family = AF_LOCAL;
clif->local.sun_path[0] = '\0';
snprintf(&clif->local.sun_path[1], sizeof(clif->local.sun_path) - 1,
"%s/%d", LLDP_CLIF_SOCK, getpid());
addrlen = sizeof(sa_family_t) + strlen(clif->local.sun_path + 1) + 1;
if (bind(clif->s, (struct sockaddr *) &clif->local, addrlen) < 0) {
perror("bind");
close(clif->s);
free(clif);
return NULL;
}
clif->dest.sun_family = AF_LOCAL;
clif->dest.sun_path[0] = '\0';
snprintf(&clif->dest.sun_path[1], sizeof(clif->dest.sun_path) - 1,
"%s", LLDP_CLIF_SOCK);
addrlen = sizeof(sa_family_t) + strlen(clif->dest.sun_path + 1) + 1;
if (connect(clif->s, (struct sockaddr *) &clif->dest, addrlen) < 0) {
perror("connect");
close(clif->s);
free(clif);
return NULL;
}
return clif;
}
void clif_close(struct clif *clif)
{
close(clif->s);
free(clif);
}
int clif_request(struct clif *clif, const char *cmd, size_t cmd_len,
char *reply, size_t *reply_len,
void (*msg_cb)(char *msg, size_t len))
{
struct timeval tv;
int res;
fd_set rfds;
const char *_cmd;
size_t _cmd_len;
_cmd = cmd;
_cmd_len = cmd_len;
if (send(clif->s, _cmd, _cmd_len, 0) < 0)
return -1;
for (;;) {
tv.tv_sec = CMD_RESPONSE_TIMEOUT;
tv.tv_usec = 0;
FD_ZERO(&rfds);
FD_SET(clif->s, &rfds);
res = select(clif->s + 1, &rfds, NULL, NULL, &tv);
if (FD_ISSET(clif->s, &rfds)) {
res = recv(clif->s, reply, *reply_len, 0);
if (res < 0) {
printf("less then zero\n");
return res;
}
if ((res > 0 && reply[MSG_TYPE] == EVENT_MSG) ||
((reply[MSG_TYPE] == MOD_CMD) &&
(res > MOD_MSG_TYPE) &&
(reply[MOD_MSG_TYPE] == EVENT_MSG))) {
/* This is an unsolicited message from
* lldpad, not the reply to the
* request. Use msg_cb to report this to the
* caller. */
if (msg_cb) {
/* Make sure the message is nul
* terminated. */
if ((size_t) res == *reply_len)
res = (*reply_len) - 1;
reply[res] = '\0';
msg_cb(reply, res);
}
continue;
}
*reply_len = res;
break;
} else {
printf("timeout\n");
return -2;
}
}
return 0;
}
static int clif_attach_helper(struct clif *clif, char *tlvs_hex, int attach)
{
char *buf;
char rbuf[10];
int ret;
size_t len = 10;
/* Allocate maximum buffer usage */
if (tlvs_hex && attach) {
buf = malloc(sizeof(char)*(strlen(tlvs_hex) + 2));
if (!buf)
return -1;
sprintf(buf, "%s%s","A",tlvs_hex);
} else if (attach) {
buf = malloc(sizeof(char) * 2);
if (!buf)
return -1;
sprintf(buf, "A");
} else {
buf = malloc(sizeof(char) * 2);
if (!buf)
return -1;
sprintf(buf, "D");
}
ret = clif_request(clif, buf, strlen(buf), rbuf, &len, NULL);
free(buf);
if (ret < 0)
return ret;
if (len == 4 && memcmp(rbuf, "R00", 3) == 0)
return 0;
return -1;
}
int clif_attach(struct clif *clif, char *tlvs_hex)
{
return clif_attach_helper(clif, tlvs_hex, 1);
}
int clif_detach(struct clif *clif)
{
return clif_attach_helper(clif, NULL, 0);
}
int clif_recv(struct clif *clif, char *reply, size_t *reply_len)
{
int res;
res = recv(clif->s, reply, *reply_len, 0);
if (res < 0)
return res;
*reply_len = res;
return 0;
}
int clif_pending_wait(struct clif *clif, int waittime)
{
struct timeval tv;
fd_set rfds;
tv.tv_sec = waittime;
tv.tv_usec = 0;
FD_ZERO(&rfds);
FD_SET(clif->s, &rfds);
select(clif->s + 1, &rfds, NULL, NULL, &tv);
return FD_ISSET(clif->s, &rfds);
}
int clif_pending(struct clif *clif)
{
return clif_pending_wait(clif, 0);
}
int clif_get_fd(struct clif *clif)
{
return clif->s;
}
/*
* Get PID of lldpad from 'ping' command
*/
pid_t clif_getpid(void)
{
struct clif *clif_conn;
char buf[MAX_CLIF_MSGBUF];
size_t len = sizeof(buf);
char *ppong;
int ret;
pid_t lldpad = 0; /* LLDPAD process identifier */
clif_conn = clif_open();
if (!clif_conn) {
fprintf(stderr, "couldn't connect to lldpad\n");
return 0;
}
if (clif_attach(clif_conn, NULL)) {
fprintf(stderr, "failed to attach to lldpad\n");
clif_close(clif_conn);
return 0;
}
ret = clif_request(clif_conn, "P", 1, buf, &len, NULL);
if (ret == -2) {
fprintf(stderr, "connection to lldpad timed out\n");
goto out;
}
if (ret < 0) {
fprintf(stderr, "ping command failed\n");
goto out;
}
buf[len] = '\0';
ppong = strstr(buf, "PPONG"); /* Ignore leading chars */
if (!ppong || sscanf(ppong, "PPONG%d", &lldpad) != 1) {
fprintf(stderr, "error parsing pid of lldpad\n");
lldpad = 0;
}
out:
clif_detach(clif_conn);
clif_close(clif_conn);
return lldpad;
}
/*
* Command line interface for vdp22 module.
* Includes for lldptool like access to lldpad
*/
#include <stdbool.h>
#include <ctype.h>
#include <errno.h>
#include "include/qbg22.h"
#include "include/qbg_vdp22_clif.h" /* Defines op_XXXX */
#include <sys/queue.h> /* Needed by agent.h */
#include "lldp/agent.h" /* Nearest customer bridge define */
/*
* Send a command via clif_xxx to lldpad.
* Return negavite numbers when a send/reply error occurs.
* Lldpad returns cmd_success for success and cmd_xxx for failure.
*/
static int tool_send(struct clif *connp, char *cmd, size_t cmd_len,
char *reply, size_t *reply_len, int *lldpad_rc)
{
int rc;
*lldpad_rc = 0;
rc = clif_request(connp, cmd, cmd_len, reply, reply_len, NULL);
if (!rc) {
if (1 != sscanf(reply, "R%02x", lldpad_rc))
rc = -3;
}
return rc;
}
/*
* Prepend the lldpad fan out information in front of the command.
* We use the vsi parameter.
*/
static int hdr_set(char *ifname, char *s, size_t sz, unsigned int tlvid,
char *cmd, size_t cmd_len)
{
int rc;
/* All command messages begin this way */
rc = snprintf(s, sz, "%c%08x%c%1x%02x%08x%02zx%s%02x%08x03vsi%04zx%s",
MOD_CMD, LLDP_MOD_VDP22, CMD_REQUEST, CLIF_MSG_VERSION,
cmd_settlv, op_arg | op_argval | op_config,
strlen(ifname), ifname, NEAREST_CUSTOMER_BRIDGE, tlvid,
cmd_len, cmd);
return (rc < 0 || rc > (int)sz) ? -EFBIG : 0;
}
/*
* Remove all whitespace and nonprintable characters from string.
*/
static void kill_white(char *s)
{
char *cp = s;
for (; *s != '\0'; ++s) {
if (isspace(*s))
continue;
if (isprint(*s))
*cp++ = *s;
}
*cp = '\0';
}
/*
* Send a VSI command to the vdp22 module and expect a reply. The reply can be
* an aknowledgement (error code 0) or an error code != 0 which means the
* command contained an error and was not accepted.
*/
int clif_vsi(struct clif *connp, char *ifname, unsigned int tlvid,
char *cmd, char *reply, size_t *reply_len)
{
int rc, resp;
char cmd2[MAX_CLIF_MSGBUF];
kill_white(cmd);
rc = hdr_set(ifname, cmd2, sizeof(cmd2), tlvid, cmd, strlen(cmd));
if (rc)
return rc;
rc = tool_send(connp, cmd2, strlen(cmd2), reply, reply_len, &resp);
if (!rc)
rc = resp;
return rc;
}
/*
* Test if this is an event message from vdp22 module.
*/
static bool test_evt(char *msg, size_t *msg_len)
{
bool is_evt = true;
unsigned int module;
if (*msg_len < 12 || msg[MSG_TYPE] != MOD_CMD
|| msg[MOD_MSG_TYPE] != EVENT_MSG
|| sscanf(&msg[MSG_TYPE + 1], "%08x", &module) != 1
|| module != LLDP_MOD_VDP22)
is_evt = false;
return is_evt;
}
/*
* Wait for an event message from lldpad module. After checking for the correct
* event message, the header of the event message is removed.
*
* Returns
* <0 on error or time out.
* =0 number of bytes on successful message reception (in reply_len parameter).
*/
#define EVTHEADER 12 /* # of bytes in event message as hdr */
int clif_vsievt(struct clif *clif, char *reply, size_t *reply_len, int wait)
{
if (clif == NULL || wait < 0)
return -EINVAL;
if (clif_pending_wait(clif, wait)) {
if (clif_recv(clif, reply, reply_len) == 0) {
if (test_evt(reply, reply_len)) {
*reply_len -= EVTHEADER;
memmove(reply, reply + EVTHEADER, *reply_len);
reply[*reply_len] = '\0';
return 0;
} else
return -EBADF;
} else
return -EIO;
}
return -EAGAIN;
}
/*
* Send a VSI command to the vdp22 mode and expect a reply. The reply can
* an aknowledgement (error code 0) or an error code != 0 which means the
* command contained an error and was not accepted.
*
* Wait for the event message from lldpad to return the VSI association data
* from the switch
*/
int clif_vsiwait(struct clif *connp, char *ifname, unsigned int tlvid,
char *cmd, char *reply, size_t *reply_len, int wait)
{
int rc;
size_t reply_len2 = *reply_len;
rc = clif_vsi(connp, ifname, tlvid, cmd, reply, reply_len);
if (!rc) {
rc = clif_vsievt(connp, reply, &reply_len2, wait);
if (!rc)
*reply_len = reply_len2;
}
return rc;
}