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 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519
|
/*******************************************************************************
LLDP Agent Daemon (LLDPAD) Software
Copyright(c) 2007-2012 Intel Corporation.
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 <lldp-devel@open-lldp.org>
*******************************************************************************/
#include <stdlib.h>
#include <assert.h>
#include "ports.h"
#include "l2_packet.h"
#include "states.h"
#include "messages.h"
#include "lldpad.h"
#include "lldp_tlv.h"
#include "lldp_mod.h"
#include "lldp_mand.h"
#include "config.h"
#include "lldp_mand_clif.h"
bool mibConstrInfoLLDPDU(struct port *port, struct lldp_agent *agent)
{
struct l2_ethhdr eth;
u8 own_addr[ETH_ALEN];
u32 fb_offset = 0;
u32 datasize = 0;
struct packed_tlv *ptlv = NULL;
struct lldp_module *np;
char macstring[30];
if (agent->tx.frameout) {
free(agent->tx.frameout);
agent->tx.frameout = NULL;
}
mac2str(agent->mac_addr, macstring, 30);
LLDPAD_DBG("%s: port %s mac %s type %i.\n", __func__, port->ifname,
macstring, agent->type);
memcpy(eth.h_dest, agent->mac_addr, ETH_ALEN);
l2_packet_get_own_src_addr(port->l2,(u8 *)&own_addr);
memcpy(eth.h_source, &own_addr, ETH_ALEN);
eth.h_proto = htons(ETH_P_LLDP);
agent->tx.frameout = (u8 *)malloc(ETH_FRAME_LEN);
if (agent->tx.frameout == NULL) {
LLDPAD_DBG("InfoLLDPDU: Failed to malloc frame buffer \n");
return false;
}
memset(agent->tx.frameout, 0, ETH_FRAME_LEN);
memcpy(agent->tx.frameout, (void *)ð, sizeof(struct l2_ethhdr));
fb_offset += sizeof(struct l2_ethhdr);
/* Generic TLV Pack */
LIST_FOREACH(np, &lldp_mod_head, lldp) {
if (!np->ops || !np->ops->lldp_mod_gettlv)
continue;
ptlv = np->ops->lldp_mod_gettlv(port, agent);
if (ptlv) {
if ((ptlv->size+fb_offset) > ETH_DATA_LEN)
goto error;
memcpy(agent->tx.frameout+fb_offset,
ptlv->tlv, ptlv->size);
datasize += ptlv->size;
fb_offset += ptlv->size;
free_pkd_tlv(ptlv);
}
}
/* The End TLV marks the end of the LLDP PDU */
ptlv = pack_end_tlv();
if (!ptlv || ((ptlv->size + fb_offset) > ETH_DATA_LEN))
goto error;
memcpy(agent->tx.frameout + fb_offset, ptlv->tlv, ptlv->size);
datasize += ptlv->size;
fb_offset += ptlv->size;
free_pkd_tlv(ptlv);
if (datasize < ETH_MIN_DATA_LEN) {
memset(agent->tx.frameout + fb_offset, 0, ETH_ZLEN - fb_offset);
agent->tx.sizeout = ETH_ZLEN;
} else
agent->tx.sizeout = fb_offset;
return true;
error:
free_pkd_tlv(ptlv);
if (agent->tx.frameout)
free(agent->tx.frameout);
agent->tx.frameout = NULL;
LLDPAD_DBG("InfoLLDPDU: packed TLV too large for tx frame\n");
return false;
}
static u16 get_ttl_init_val(char *ifname, struct lldp_agent *agent)
{
u16 ttl;
int config_ttl;
int read_config_err;
char arg_path[512] = { 0 };
snprintf(arg_path, sizeof(arg_path), "%s%08x.%s",
TLVID_PREFIX,
TLVID_NOUI(TIME_TO_LIVE_TLV),
ARG_TTL_VALUE);
read_config_err = get_config_setting(ifname, agent->type,
arg_path, &config_ttl, CONFIG_TYPE_INT);
if (read_config_err)
ttl = DEFAULT_TX_HOLD * DEFAULT_TX_INTERVAL;
else
ttl = (u16)(config_ttl);
return ttl;
}
void txInitializeLLDP(struct port *port, struct lldp_agent *agent)
{
if (agent->tx.frameout) {
free(agent->tx.frameout);
agent->tx.frameout = NULL;
}
agent->tx.state = TX_LLDP_INITIALIZE;
agent->tx.localChange = false;
agent->stats.statsFramesOutTotal = 0;
agent->timers.reinitDelay = REINIT_DELAY;
agent->timers.msgTxHold = DEFAULT_TX_HOLD;
agent->timers.msgTxInterval = DEFAULT_TX_INTERVAL;
agent->timers.msgFastTx = FAST_TX_INTERVAL;
agent->tx.txTTL = get_ttl_init_val(port->ifname, agent);
agent->msap.length1 = 0;
agent->msap.msap1 = NULL;
agent->msap.length2 = 0;
agent->msap.msap2 = NULL;
agent->lldpdu = false;
return;
}
void txInitializeTimers(struct lldp_agent *agent)
{
agent->timers.txTick = false;
agent->tx.txNow = false;
agent->tx.localChange = false;
agent->timers.txTTR = 0;
agent->tx.txFast = 0;
agent->timers.txShutdownWhile = 0;
agent->rx.newNeighbor = false;
agent->timers.txMaxCredit = TX_CREDIT_MAX;
agent->timers.txCredit = TX_CREDIT_MAX;
agent->timers.txFastInit = TX_FAST_INIT;
agent->timers.state = TX_TIMER_BEGIN;
return;
}
bool mibConstrShutdownLLDPDU(struct port *port, struct lldp_agent *agent)
{
struct l2_ethhdr eth;
u8 own_addr[ETH_ALEN];
u32 fb_offset = 0;
u32 datasize = 0;
struct packed_tlv *ptlv = NULL;
struct lldp_module *np;
char macstring[30];
if (agent->tx.frameout) {
free(agent->tx.frameout);
agent->tx.frameout = NULL;
}
mac2str(agent->mac_addr, macstring, 30);
LLDPAD_DBG("%s: mac %s.\n", __func__, macstring);
memcpy(eth.h_dest, agent->mac_addr, ETH_ALEN);
l2_packet_get_own_src_addr(port->l2,(u8 *)&own_addr);
memcpy(eth.h_source, &own_addr, ETH_ALEN);
eth.h_proto = htons(ETH_P_LLDP);
agent->tx.frameout = (u8 *)malloc(ETH_FRAME_LEN);
if (agent->tx.frameout == NULL) {
LLDPAD_DBG("ShutdownLLDPDU: Failed to malloc frame buffer \n");
return false;
}
memset(agent->tx.frameout,0,ETH_FRAME_LEN);
memcpy(agent->tx.frameout, (void *)ð, sizeof(struct l2_ethhdr));
fb_offset += sizeof(struct l2_ethhdr);
np = find_module_by_id(&lldp_mod_head, LLDP_MOD_MAND);
if (!np)
goto error;
if (!np->ops || !np->ops->lldp_mod_gettlv)
goto error;
ptlv = np->ops->lldp_mod_gettlv(port, agent);
if (ptlv) {
if ((ptlv->size + fb_offset) > ETH_DATA_LEN)
goto error;
/* set the TTL to be 0 TTL TLV */
memset(&ptlv->tlv[ptlv->size - 2], 0, 2);
memcpy(agent->tx.frameout + fb_offset, ptlv->tlv, ptlv->size);
datasize += ptlv->size;
fb_offset += ptlv->size;
free_pkd_tlv(ptlv);
}
/* The End TLV marks the end of the LLDP PDU */
ptlv = pack_end_tlv();
if (!ptlv || ((ptlv->size + fb_offset) > ETH_DATA_LEN))
goto error;
memcpy(agent->tx.frameout + fb_offset, ptlv->tlv, ptlv->size);
datasize += ptlv->size;
fb_offset += ptlv->size;
free_pkd_tlv(ptlv);
if (datasize < ETH_MIN_DATA_LEN) {
memset(agent->tx.frameout + fb_offset, 0, ETH_ZLEN - fb_offset);
agent->tx.sizeout = ETH_ZLEN;
} else
agent->tx.sizeout = fb_offset;
return true;
error:
free_pkd_tlv(ptlv);
if (agent->tx.frameout)
free(agent->tx.frameout);
agent->tx.frameout = NULL;
LLDPAD_DBG("InfoLLDPDU: packed TLV too large for tx frame\n");
return false;
}
u8 txFrame(struct port *port, struct lldp_agent *agent)
{
l2_packet_send(port->l2, agent->mac_addr,
htons(ETH_P_LLDP), agent->tx.frameout, agent->tx.sizeout);
agent->stats.statsFramesOutTotal++;
return 0;
}
void run_tx_sm(struct port *port, struct lldp_agent *agent)
{
set_tx_state(port, agent);
do {
switch(agent->tx.state) {
case TX_LLDP_INITIALIZE:
txInitializeLLDP(port, agent);
break;
case TX_IDLE:
process_tx_idle(agent);
break;
case TX_SHUTDOWN_FRAME:
process_tx_shutdown_frame(port, agent, true);
break;
case TX_INFO_FRAME:
process_tx_info_frame(port, agent);
break;
default:
LLDPAD_DBG("ERROR The TX State Machine is broken!\n");
}
} while (set_tx_state(port, agent) == true);
return;
}
bool set_tx_state(struct port *port, struct lldp_agent *agent)
{
if ((port->portEnabled == false) && (port->prevPortEnabled == true)) {
LLDPAD_DBG("set_tx_state: port was disabled\n");
tx_change_state(port, agent, TX_LLDP_INITIALIZE);
}
port->prevPortEnabled = port->portEnabled;
switch (agent->tx.state) {
case TX_LLDP_INITIALIZE:
if (port->portEnabled && ((agent->adminStatus == enabledRxTx) ||
(agent->adminStatus == enabledTxOnly))) {
tx_change_state(port, agent, TX_IDLE);
return true;
}
return false;
case TX_IDLE:
if ((agent->adminStatus == disabled) ||
(agent->adminStatus == enabledRxOnly)) {
tx_change_state(port, agent, TX_SHUTDOWN_FRAME);
return true;
}
if ((agent->tx.txNow) && ((agent->timers.txCredit > 0))) {
tx_change_state(port, agent, TX_INFO_FRAME);
return true;
}
return false;
case TX_SHUTDOWN_FRAME:
if (agent->timers.txShutdownWhile == 0) {
tx_change_state(port, agent, TX_LLDP_INITIALIZE);
return true;
}
return false;
case TX_INFO_FRAME:
tx_change_state(port, agent, TX_IDLE);
return true;
default:
LLDPAD_DBG("ERROR: The TX State Machine is broken!\n");
return false;
}
}
void process_tx_idle(UNUSED struct lldp_agent *agent)
{
return;
}
/* we ignore 'adminStatus' in the case that we have recently transitioned
* to the shutdown state (in the case of the 'tx' state change) to allow
* for transmitting the ttl==0 as required by the IEEE standard. */
void process_tx_shutdown_frame(struct port *port, struct lldp_agent *agent,
bool ignoreStatus)
{
if (agent->adminStatus != enabledRxTx &&
agent->adminStatus != enabledTxOnly) {
if (!ignoreStatus) {
return;
}
}
if (agent->timers.txShutdownWhile == 0) {
if (mibConstrShutdownLLDPDU(port, agent))
txFrame(port, agent);
agent->timers.txShutdownWhile = agent->timers.reinitDelay;
}
return;
}
void process_tx_info_frame(struct port *port, struct lldp_agent *agent)
{
mibConstrInfoLLDPDU(port, agent);
txFrame(port, agent);
if (agent->timers.txCredit > 0)
agent->timers.txCredit--;
agent->tx.txNow = false;
return;
}
void update_tx_timers(struct lldp_agent *agent)
{
if (agent->timers.txTTR)
agent->timers.txTTR--;
agent->timers.txTick = true;
return;
}
void tx_timer_change_state(struct lldp_agent *agent, u8 newstate)
{
switch(newstate) {
case TX_TIMER_INITIALIZE:
break;
case TX_TIMER_IDLE:
break;
case TX_TIMER_EXPIRES:
break;
case TX_TICK:
break;
case SIGNAL_TX:
break;
case TX_FAST_START:
break;
default:
LLDPAD_DBG("ERROR: tx_timer_change_state: default\n");
}
agent->timers.state = newstate;
return;
}
bool set_tx_timers_state(struct port *port, struct lldp_agent *agent)
{
if ((agent->timers.state == TX_TIMER_BEGIN) ||
(port->portEnabled == false) || (agent->adminStatus == disabled) ||
(agent->adminStatus == enabledRxOnly)) {
tx_timer_change_state(agent, TX_TIMER_INITIALIZE);
}
switch (agent->timers.state) {
case TX_TIMER_INITIALIZE:
if (port->portEnabled && ((agent->adminStatus == enabledRxTx) ||
(agent->adminStatus == enabledTxOnly))) {
tx_timer_change_state(agent, TX_TIMER_IDLE);
return true;
}
return false;
case TX_TIMER_IDLE:
if (agent->tx.localChange) {
tx_timer_change_state(agent, SIGNAL_TX);
return true;
}
if (agent->timers.txTTR == 0) {
tx_timer_change_state(agent, TX_TIMER_EXPIRES);
return true;
}
if (agent->rx.newNeighbor) {
tx_timer_change_state(agent, TX_FAST_START);
return true;
}
if (agent->timers.txTick) {
tx_timer_change_state(agent, TX_TICK);
return true;
}
return false;
case TX_TIMER_EXPIRES:
tx_timer_change_state(agent, SIGNAL_TX);
return true;
case SIGNAL_TX:
case TX_TICK:
tx_timer_change_state(agent, TX_TIMER_IDLE);
return true;
case TX_FAST_START:
tx_timer_change_state(agent, TX_TIMER_EXPIRES);
return true;
default:
LLDPAD_DBG("ERROR: The TX State Machine is broken!\n");
return false;
}
}
void run_tx_timers_sm(struct port *port, struct lldp_agent *agent)
{
set_tx_timers_state(port, agent);
do {
switch(agent->timers.state) {
case TX_TIMER_INITIALIZE:
txInitializeTimers(agent);
break;
case TX_TIMER_IDLE:
break;
case TX_TIMER_EXPIRES:
if (agent->tx.txFast)
agent->tx.txFast--;
break;
case TX_TICK:
agent->timers.txTick = false;
if (agent->timers.txCredit < agent->timers.txMaxCredit)
agent->timers.txCredit++;
break;
case SIGNAL_TX:
agent->tx.txNow = true;
agent->tx.localChange = false;
if (agent->tx.txFast)
agent->timers.txTTR = agent->timers.msgFastTx;
else
agent->timers.txTTR = agent->timers.msgTxInterval;
break;
case TX_FAST_START:
agent->rx.newNeighbor = false;
if (agent->tx.txFast == 0)
agent->tx.txFast = agent->timers.txFastInit;
break;
default:
LLDPAD_DBG("ERROR The TX Timer State Machine "
"is broken!\n");
}
} while (set_tx_timers_state(port, agent) == true);
return;
}
void tx_change_state(struct port *port, struct lldp_agent *agent, u8 newstate)
{
switch(newstate) {
case TX_LLDP_INITIALIZE:
if ((agent->tx.state != TX_SHUTDOWN_FRAME) &&
port->portEnabled) {
assert(port->portEnabled);
}
break;
case TX_IDLE:
if (!(agent->tx.state == TX_LLDP_INITIALIZE ||
agent->tx.state == TX_INFO_FRAME)) {
assert(agent->tx.state == TX_LLDP_INITIALIZE);
assert(agent->tx.state == TX_INFO_FRAME);
}
break;
case TX_SHUTDOWN_FRAME:
case TX_INFO_FRAME:
assert(agent->tx.state == TX_IDLE);
break;
default:
LLDPAD_DBG("ERROR: tx_change_state: default\n");
}
agent->tx.state = newstate;
return;
}
|