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
|
// -*- c-basic-offset: 4; tab-width: 8; indent-tabs-mode: t -*-
// Copyright (c) 2001-2009 XORP, Inc.
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License, Version 2, June
// 1991 as published by the Free Software Foundation. Redistribution
// and/or modification of this program under the terms of any other
// version of the GNU General Public License is not permitted.
//
// This program 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. For more details,
// see the GNU General Public License, Version 2, a copy of which can be
// found in the XORP LICENSE.gpl file.
//
// XORP Inc, 2953 Bunker Hill Lane, Suite 204, Santa Clara, CA 95054, USA;
// http://xorp.net
#ident "$XORP: xorp/pim/pim_proto_assert.cc,v 1.33 2009/01/05 18:31:02 jtc Exp $"
//
// PIM PIM_ASSERT messages processing.
//
#include "pim_module.h"
#include "libxorp/xorp.h"
#include "libxorp/xlog.h"
#include "libxorp/debug.h"
#include "libxorp/ipvx.hh"
#include "pim_mre.hh"
#include "pim_mrt.hh"
#include "pim_proto_assert.hh"
#include "pim_vif.hh"
//
// Exported variables
//
//
// Local constants definitions
//
//
// Local structures/classes, typedefs and macros
//
//
// Local variables
//
//
// Local functions prototypes
//
/**
* PimVif::pim_assert_recv:
* @pim_nbr: The PIM neighbor message originator (or NULL if not a neighbor).
* @src: The message source address.
* @dst: The message destination address.
* @buffer: The buffer with the message.
*
* Receive PIM_ASSERT message.
*
* Return value: %XORP_OK on success, otherwise %XORP_ERROR.
**/
int
PimVif::pim_assert_recv(PimNbr *pim_nbr,
const IPvX& src,
const IPvX& dst,
buffer_t *buffer)
{
int rcvd_family;
uint8_t group_mask_len;
uint8_t group_addr_reserved_flags;
IPvX assert_source_addr(family());
IPvX assert_group_addr(family());
uint32_t metric_preference, metric;
AssertMetric assert_metric(src);
bool rpt_bit;
//
// Parse the message
//
GET_ENCODED_GROUP_ADDR(rcvd_family, assert_group_addr, group_mask_len,
group_addr_reserved_flags, buffer);
GET_ENCODED_UNICAST_ADDR(rcvd_family, assert_source_addr, buffer);
BUFFER_GET_HOST_32(metric_preference, buffer);
BUFFER_GET_HOST_32(metric, buffer);
// The RPTbit
if (metric_preference & PIM_ASSERT_RPT_BIT)
rpt_bit = true;
else
rpt_bit = false;
metric_preference &= ~PIM_ASSERT_RPT_BIT;
// The assert metrics
assert_metric.set_rpt_bit_flag(rpt_bit);
assert_metric.set_metric_preference(metric_preference);
assert_metric.set_metric(metric);
assert_metric.set_addr(src);
//
// Process the assert data
//
pim_assert_process(pim_nbr, src, dst,
assert_source_addr, assert_group_addr,
group_mask_len, &assert_metric);
// UNUSED(dst);
return (XORP_OK);
// Various error processing
rcvlen_error:
XLOG_WARNING("RX %s from %s to %s: "
"invalid message length",
PIMTYPE2ASCII(PIM_ASSERT),
cstring(src), cstring(dst));
++_pimstat_rx_malformed_packet;
return (XORP_ERROR);
rcvd_mask_len_error:
XLOG_WARNING("RX %s from %s to %s: "
"invalid group mask length = %d",
PIMTYPE2ASCII(PIM_ASSERT),
cstring(src), cstring(dst), group_mask_len);
return (XORP_ERROR);
rcvd_family_error:
XLOG_WARNING("RX %s from %s to %s: "
"invalid address family inside = %d",
PIMTYPE2ASCII(PIM_ASSERT),
cstring(src), cstring(dst), rcvd_family);
return (XORP_ERROR);
}
int
PimVif::pim_assert_process(PimNbr *pim_nbr,
const IPvX& src, const IPvX& dst,
const IPvX& assert_source_addr,
const IPvX& assert_group_addr,
uint8_t group_mask_len, AssertMetric *assert_metric)
{
PimMre *pim_mre_sg, *pim_mre_wc;
int ret_value;
if (group_mask_len != IPvX::addr_bitlen(family())) {
XLOG_WARNING("RX %s from %s to %s: "
"invalid group mask length = %d "
"instead of %u",
PIMTYPE2ASCII(PIM_ASSERT),
cstring(src), cstring(dst),
group_mask_len,
XORP_UINT_CAST(IPvX::addr_bitlen(family())));
return (XORP_ERROR);
}
if (! assert_group_addr.is_multicast()) {
XLOG_WARNING("RX %s from %s to %s: "
"invalid assert group address = %s",
PIMTYPE2ASCII(PIM_ASSERT),
cstring(src), cstring(dst),
cstring(assert_group_addr));
return (XORP_ERROR);
}
if (! ((assert_source_addr == IPvX::ZERO(family()))
|| assert_source_addr.is_unicast())) {
XLOG_WARNING("RX %s from %s to %s: "
"invalid assert source address = %s",
PIMTYPE2ASCII(PIM_ASSERT),
cstring(src), cstring(dst),
cstring(assert_source_addr));
return (XORP_ERROR);
}
if (! assert_metric->rpt_bit_flag()) {
// (S,G) Assert received. The assert source address must be unicast.
if (! assert_source_addr.is_unicast()) {
XLOG_WARNING("RX %s from %s to %s: "
"invalid unicast assert source address = %s",
PIMTYPE2ASCII(PIM_ASSERT),
cstring(src), cstring(dst),
cstring(assert_source_addr));
return (XORP_ERROR);
}
}
if (assert_metric->rpt_bit_flag()) {
//
// (*,G) Assert received
//
// If the source address is not zero, then first try to apply
// this assert to the (S,G) assert state machine.
// Only if the (S,G) assert state machine is in NoInfo state before
// and after consideration of the received message, then apply the
// message to the (*,G) assert state machine.
//
do {
bool is_sg_noinfo_old, is_sg_noinfo_new;
if (assert_source_addr == IPvX::ZERO(family())) {
//
// Assert source address is zero, hence don't try to apply
// it to the (S,G) assert state machine.
//
break;
}
//
// XXX: strictly speaking, we should try to create
// the (S,G) state, and explicitly test the old
// and new (S,G) assert state.
// However, we use the observation that if there is no (S,G)
// routing state, then the (*,G) assert message will not change
// the (S,G) assert state mchine. Note that this observation is
// based on the specific details of the (S,G) assert state machine.
// In particular, the action in NoInfo state when
// "Receive Assert with RPTbit set and CouldAssert(S,G,I)".
// If there is no (S,G) routing state, then the SPTbit cannot
// be true, and therefore CouldAssert(S,G,I) also cannot be true.
//
pim_mre_sg = pim_mrt().pim_mre_find(assert_source_addr,
assert_group_addr,
PIM_MRE_SG, 0);
if (pim_mre_sg == NULL)
break; // XXX: see the above comment about not
// creating the (S,G) routing state.
// Compute the old and new (S,G) assert state.
is_sg_noinfo_old = pim_mre_sg->is_assert_noinfo_state(vif_index());
ret_value = pim_mre_sg->assert_process(this, assert_metric);
is_sg_noinfo_new = pim_mre_sg->is_assert_noinfo_state(vif_index());
//
// Only if both the old and new state in the (S,G) assert state
// machine are in the NoInfo state, then we apply the (*,G) assert
// message to the (*,G) assert state machine.
//
if (is_sg_noinfo_old && is_sg_noinfo_new)
break;
return (ret_value);
} while (false);
//
// No transaction occured in the (S,G) assert state machine, and
// it is in NoInfo state.
// Apply the assert to the (*,G) assert state machine.
//
pim_mre_wc = pim_mrt().pim_mre_find(assert_source_addr,
assert_group_addr,
PIM_MRE_WC, PIM_MRE_WC);
if (pim_mre_wc == NULL) {
XLOG_ERROR("Internal error lookup/creating PIM multicast routing "
"entry for source = %s group = %s",
cstring(assert_source_addr),
cstring(assert_group_addr));
return (XORP_ERROR);
}
ret_value = pim_mre_wc->assert_process(this, assert_metric);
// Try to remove the entry in case we don't need it
pim_mre_wc->entry_try_remove();
return (ret_value);
}
//
// (S,G) Assert received
//
pim_mre_sg = pim_mrt().pim_mre_find(assert_source_addr, assert_group_addr,
PIM_MRE_SG, PIM_MRE_SG);
if (pim_mre_sg == NULL) {
XLOG_ERROR("Internal error lookup/creating PIM multicast routing "
"entry for source = %s group = %s",
cstring(assert_source_addr), cstring(assert_group_addr));
return (XORP_ERROR);
}
ret_value = pim_mre_sg->assert_process(this, assert_metric);
// Try to remove the entry in case we don't need it.
pim_mre_sg->entry_try_remove();
return (ret_value);
UNUSED(pim_nbr);
}
//
// XXX: @assert_source_addr is the source address inside the assert message
// XXX: applies only for (S,G) and (*,G)
//
int
PimVif::pim_assert_mre_send(PimMre *pim_mre, const IPvX& assert_source_addr,
string& error_msg)
{
IPvX assert_group_addr(family());
uint32_t metric_preference, metric;
bool rpt_bit = true;
int ret_value;
if (! (pim_mre->is_sg() || pim_mre->is_wc()))
return (XORP_ERROR);
// Prepare the Assert data
assert_group_addr = pim_mre->group_addr();
if (pim_mre->is_spt()) {
rpt_bit = false;
metric_preference = pim_mre->metric_preference_s();
metric = pim_mre->metric_s();
} else {
rpt_bit = true;
metric_preference = pim_mre->metric_preference_rp();
metric = pim_mre->metric_rp();
}
ret_value = pim_assert_send(assert_source_addr, assert_group_addr, rpt_bit,
metric_preference, metric, error_msg);
return (ret_value);
}
// XXX: applies only for (S,G) and (*,G)
int
PimVif::pim_assert_cancel_send(PimMre *pim_mre, string& error_msg)
{
IPvX assert_source_addr(family());
IPvX assert_group_addr(family());
uint32_t metric_preference, metric;
int ret_value;
bool rpt_bit = false;
if (! (pim_mre->is_sg() || pim_mre->is_wc())) {
error_msg = c_format("Invalid PimMre entry type");
return (XORP_ERROR);
}
// Prepare the Assert data
if (pim_mre->is_sg()) {
// AssertCancel(S,G)
assert_source_addr = pim_mre->source_addr();
} else {
// AssertCancel(*,G)
assert_source_addr = IPvX::ZERO(family());
}
assert_group_addr = pim_mre->group_addr();
rpt_bit = true;
metric_preference = PIM_ASSERT_MAX_METRIC_PREFERENCE;
metric = PIM_ASSERT_MAX_METRIC;
ret_value = pim_assert_send(assert_source_addr, assert_group_addr, rpt_bit,
metric_preference, metric, error_msg);
return (ret_value);
}
int
PimVif::pim_assert_send(const IPvX& assert_source_addr,
const IPvX& assert_group_addr,
bool rpt_bit,
uint32_t metric_preference,
uint32_t metric,
string& error_msg)
{
buffer_t *buffer = buffer_send_prepare();
uint8_t group_addr_reserved_flags = 0;
uint8_t group_mask_len = IPvX::addr_bitlen(family());
if (rpt_bit)
metric_preference |= PIM_ASSERT_RPT_BIT;
else
metric_preference &= ~PIM_ASSERT_RPT_BIT;
// Write all data to the buffer
PUT_ENCODED_GROUP_ADDR(family(), assert_group_addr, group_mask_len,
group_addr_reserved_flags, buffer);
PUT_ENCODED_UNICAST_ADDR(family(), assert_source_addr, buffer);
BUFFER_PUT_HOST_32(metric_preference, buffer);
BUFFER_PUT_HOST_32(metric, buffer);
return (pim_send(primary_addr(), IPvX::PIM_ROUTERS(family()),
PIM_ASSERT, buffer, error_msg));
invalid_addr_family_error:
XLOG_UNREACHABLE();
error_msg = c_format("TX %s from %s to %s: "
"invalid address family error = %d",
PIMTYPE2ASCII(PIM_ASSERT),
cstring(primary_addr()),
cstring(IPvX::PIM_ROUTERS(family())),
family());
XLOG_ERROR("%s", error_msg.c_str());
return (XORP_ERROR);
buflen_error:
XLOG_UNREACHABLE();
error_msg = c_format("TX %s from %s to %s: "
"packet cannot fit into sending buffer",
PIMTYPE2ASCII(PIM_ASSERT),
cstring(primary_addr()),
cstring(IPvX::PIM_ROUTERS(family())));
XLOG_ERROR("%s", error_msg.c_str());
return (XORP_ERROR);
}
// Return true if I am better metric
bool
AssertMetric::operator>(const AssertMetric& other) const
{
// The RPT flag: smaller is better
if ( (! rpt_bit_flag()) && other.rpt_bit_flag())
return (true);
if (rpt_bit_flag() && (! other.rpt_bit_flag()))
return (false);
// The metric preference: smaller is better
if (metric_preference() < other.metric_preference())
return (true);
if (metric_preference() > other.metric_preference())
return (false);
// The route metric: smaller is better
if (metric() < other.metric())
return (true);
if (metric() > other.metric())
return (false);
// The IP address: bigger is better
if (addr() > other.addr())
return (true);
return (false);
}
// Return true if contains infinite metric sent by AssertCancel message
bool
AssertMetric::is_assert_cancel_metric() const
{
//
// XXX: note that we don't check whether the address is zero.
// We need to ignore the address, because it won't be zero for
// AssertCancel messages.
//
return (_rpt_bit_flag
&& (_metric_preference == PIM_ASSERT_MAX_METRIC_PREFERENCE)
&& (_metric == PIM_ASSERT_MAX_METRIC));
}
|