2000-03-21 05:50:17 +08:00
|
|
|
/*
|
|
|
|
* BIRD -- BGP Attributes
|
|
|
|
*
|
|
|
|
* (c) 2000 Martin Mares <mj@ucw.cz>
|
|
|
|
*
|
|
|
|
* Can be freely distributed and used under the terms of the GNU GPL.
|
|
|
|
*/
|
|
|
|
|
2000-05-03 00:07:41 +08:00
|
|
|
#undef LOCAL_DEBUG
|
2000-04-01 07:21:37 +08:00
|
|
|
|
2000-04-17 19:25:15 +08:00
|
|
|
#include <stdlib.h>
|
|
|
|
|
2000-03-21 05:50:17 +08:00
|
|
|
#include "nest/bird.h"
|
|
|
|
#include "nest/iface.h"
|
|
|
|
#include "nest/protocol.h"
|
|
|
|
#include "nest/route.h"
|
2000-04-17 15:53:29 +08:00
|
|
|
#include "nest/attrs.h"
|
2000-03-21 05:50:17 +08:00
|
|
|
#include "conf/conf.h"
|
2000-04-01 07:21:37 +08:00
|
|
|
#include "lib/resource.h"
|
|
|
|
#include "lib/string.h"
|
|
|
|
#include "lib/unaligned.h"
|
2000-03-21 05:50:17 +08:00
|
|
|
|
|
|
|
#include "bgp.h"
|
2000-04-01 07:21:37 +08:00
|
|
|
|
2011-03-30 07:09:18 +08:00
|
|
|
/*
|
|
|
|
* UPDATE message error handling
|
|
|
|
*
|
|
|
|
* All checks from RFC 4271 6.3 are done as specified with these exceptions:
|
|
|
|
* - The semantic check of an IP address from NEXT_HOP attribute is missing.
|
|
|
|
* - Checks of some optional attribute values are missing.
|
|
|
|
* - Syntactic and semantic checks of NLRIs (done in DECODE_PREFIX())
|
|
|
|
* are probably inadequate.
|
|
|
|
*
|
|
|
|
* Loop detection based on AS_PATH causes updates to be withdrawn. RFC
|
|
|
|
* 4271 does not explicitly specifiy the behavior in that case.
|
|
|
|
*
|
|
|
|
* Loop detection related to route reflection (based on ORIGINATOR_ID
|
|
|
|
* and CLUSTER_LIST) causes updates to be withdrawn. RFC 4456 8
|
|
|
|
* specifies that such updates should be ignored, but that is generally
|
|
|
|
* a bad idea.
|
|
|
|
*
|
|
|
|
* Error checking of optional transitive attributes is done according to
|
|
|
|
* draft-ietf-idr-optional-transitive-03, but errors are handled always
|
|
|
|
* as withdraws.
|
|
|
|
*
|
|
|
|
* Unexpected AS_CONFED_* segments in AS_PATH are logged and removed,
|
|
|
|
* but unknown segments cause a session drop with Malformed AS_PATH
|
|
|
|
* error (see validate_path()). The behavior in such case is not
|
|
|
|
* explicitly specified by RFC 4271. RFC 5065 specifies that
|
|
|
|
* inconsistent AS_CONFED_* segments should cause a session drop, but
|
|
|
|
* implementations that pass invalid AS_CONFED_* segments are
|
|
|
|
* widespread.
|
|
|
|
*
|
2017-02-19 19:02:39 +08:00
|
|
|
* Error handling of AS4_* attributes is done as specified by RFC 6793. There
|
|
|
|
* are several possible inconsistencies between AGGREGATOR and AS4_AGGREGATOR
|
|
|
|
* that are not handled by that RFC, these are logged and ignored (see
|
2011-03-30 07:09:18 +08:00
|
|
|
* bgp_reconstruct_4b_attrs()).
|
|
|
|
*/
|
|
|
|
|
2013-11-27 05:37:24 +08:00
|
|
|
|
2000-05-04 17:03:31 +08:00
|
|
|
static byte bgp_mandatory_attrs[] = { BA_ORIGIN, BA_AS_PATH
|
|
|
|
#ifndef IPV6
|
|
|
|
,BA_NEXT_HOP
|
|
|
|
#endif
|
|
|
|
};
|
2000-04-10 20:39:51 +08:00
|
|
|
|
|
|
|
struct attr_desc {
|
2000-04-26 05:31:15 +08:00
|
|
|
char *name;
|
2000-04-10 20:39:51 +08:00
|
|
|
int expected_length;
|
|
|
|
int expected_flags;
|
|
|
|
int type;
|
2000-04-17 20:46:07 +08:00
|
|
|
int allow_in_ebgp;
|
2000-04-10 20:39:51 +08:00
|
|
|
int (*validate)(struct bgp_proto *p, byte *attr, int len);
|
2008-11-09 06:33:22 +08:00
|
|
|
void (*format)(eattr *ea, byte *buf, int buflen);
|
2000-04-10 20:39:51 +08:00
|
|
|
};
|
|
|
|
|
2011-03-30 07:09:18 +08:00
|
|
|
#define IGNORE -1
|
|
|
|
#define WITHDRAW -2
|
|
|
|
|
2000-04-17 17:37:31 +08:00
|
|
|
static int
|
2009-06-23 17:00:38 +08:00
|
|
|
bgp_check_origin(struct bgp_proto *p UNUSED, byte *a, int len UNUSED)
|
2000-04-17 17:37:31 +08:00
|
|
|
{
|
2009-06-23 17:00:38 +08:00
|
|
|
if (*a > 2)
|
2000-04-17 17:37:31 +08:00
|
|
|
return 6;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-02-21 21:34:53 +08:00
|
|
|
bgp_format_origin(eattr *a, byte *buf, int buflen UNUSED)
|
2000-04-17 17:37:31 +08:00
|
|
|
{
|
|
|
|
static char *bgp_origin_names[] = { "IGP", "EGP", "Incomplete" };
|
|
|
|
|
|
|
|
bsprintf(buf, bgp_origin_names[a->u.data]);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2009-06-23 16:50:57 +08:00
|
|
|
path_segment_contains(byte *p, int bs, u32 asn)
|
2000-04-17 17:37:31 +08:00
|
|
|
{
|
2009-06-23 16:50:57 +08:00
|
|
|
int i;
|
|
|
|
int len = p[1];
|
|
|
|
p += 2;
|
|
|
|
|
|
|
|
for(i=0; i<len; i++)
|
2000-04-17 17:37:31 +08:00
|
|
|
{
|
2009-06-23 16:50:57 +08:00
|
|
|
u32 asn2 = (bs == 4) ? get_u32(p) : get_u16(p);
|
|
|
|
if (asn2 == asn)
|
|
|
|
return 1;
|
|
|
|
p += bs;
|
2000-04-17 17:37:31 +08:00
|
|
|
}
|
2009-06-23 16:50:57 +08:00
|
|
|
|
2000-04-17 17:37:31 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-06-23 16:50:57 +08:00
|
|
|
/* Validates path attribute, removes AS_CONFED_* segments, and also returns path length */
|
2008-10-27 05:36:08 +08:00
|
|
|
static int
|
2015-05-19 14:53:34 +08:00
|
|
|
validate_path(struct bgp_proto *p, int as_path, int bs, byte *idata, uint *ilength)
|
2009-06-23 16:50:57 +08:00
|
|
|
{
|
|
|
|
int res = 0;
|
|
|
|
u8 *a, *dst;
|
2016-06-29 20:11:03 +08:00
|
|
|
int len, plen;
|
2009-06-23 16:50:57 +08:00
|
|
|
|
|
|
|
dst = a = idata;
|
|
|
|
len = *ilength;
|
|
|
|
|
|
|
|
while (len)
|
|
|
|
{
|
|
|
|
if (len < 2)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
plen = 2 + bs * a[1];
|
|
|
|
if (len < plen)
|
|
|
|
return -1;
|
|
|
|
|
2016-06-29 20:11:03 +08:00
|
|
|
if (a[1] == 0)
|
|
|
|
{
|
|
|
|
log(L_WARN "%s: %s_PATH attribute contains empty segment, skipping it",
|
|
|
|
p->p.name, as_path ? "AS" : "AS4");
|
|
|
|
goto skip;
|
|
|
|
}
|
|
|
|
|
2009-06-23 16:50:57 +08:00
|
|
|
switch (a[0])
|
|
|
|
{
|
|
|
|
case AS_PATH_SET:
|
|
|
|
res++;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case AS_PATH_SEQUENCE:
|
|
|
|
res += a[1];
|
|
|
|
break;
|
|
|
|
|
|
|
|
case AS_PATH_CONFED_SEQUENCE:
|
|
|
|
case AS_PATH_CONFED_SET:
|
|
|
|
if (as_path && path_segment_contains(a, bs, p->remote_as))
|
|
|
|
{
|
|
|
|
log(L_WARN "%s: AS_CONFED_* segment with peer ASN found, misconfigured confederation?", p->p.name);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
log(L_WARN "%s: %s_PATH attribute contains AS_CONFED_* segment, skipping segment",
|
|
|
|
p->p.name, as_path ? "AS" : "AS4");
|
2016-06-29 20:11:03 +08:00
|
|
|
goto skip;
|
2009-06-23 16:50:57 +08:00
|
|
|
|
|
|
|
default:
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2016-06-29 20:11:03 +08:00
|
|
|
if (dst != a)
|
|
|
|
memmove(dst, a, plen);
|
|
|
|
dst += plen;
|
2009-06-23 16:50:57 +08:00
|
|
|
|
2016-06-29 20:11:03 +08:00
|
|
|
skip:
|
2009-06-23 16:50:57 +08:00
|
|
|
len -= plen;
|
|
|
|
a += plen;
|
|
|
|
}
|
|
|
|
|
|
|
|
*ilength = dst - idata;
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int
|
|
|
|
validate_as_path(struct bgp_proto *p, byte *a, int *len)
|
2008-10-27 05:36:08 +08:00
|
|
|
{
|
2009-06-23 16:50:57 +08:00
|
|
|
return validate_path(p, 1, p->as4_session ? 4 : 2, a, len);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int
|
|
|
|
validate_as4_path(struct bgp_proto *p, struct adata *path)
|
|
|
|
{
|
|
|
|
return validate_path(p, 0, 4, path->data, &path->length);
|
2008-10-27 05:36:08 +08:00
|
|
|
}
|
|
|
|
|
2000-04-17 17:37:31 +08:00
|
|
|
static int
|
2016-10-14 21:37:04 +08:00
|
|
|
bgp_check_next_hop(struct bgp_proto *p UNUSED, byte *a UNUSED6, int len UNUSED6)
|
2000-04-17 17:37:31 +08:00
|
|
|
{
|
2000-05-04 17:03:31 +08:00
|
|
|
#ifdef IPV6
|
2011-03-30 07:09:18 +08:00
|
|
|
return IGNORE;
|
2000-05-04 17:03:31 +08:00
|
|
|
#else
|
2000-04-17 17:37:31 +08:00
|
|
|
ip_addr addr;
|
|
|
|
|
|
|
|
memcpy(&addr, a, len);
|
|
|
|
ipa_ntoh(addr);
|
|
|
|
if (ipa_classify(addr) & IADDR_HOST)
|
|
|
|
return 0;
|
|
|
|
else
|
|
|
|
return 8;
|
2000-05-04 17:03:31 +08:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2009-11-17 21:17:23 +08:00
|
|
|
static void
|
|
|
|
bgp_format_next_hop(eattr *a, byte *buf, int buflen UNUSED)
|
|
|
|
{
|
|
|
|
ip_addr *ipp = (ip_addr *) a->u.ptr->data;
|
|
|
|
#ifdef IPV6
|
|
|
|
/* in IPv6, we might have two addresses in NEXT HOP */
|
|
|
|
if ((a->u.ptr->length == NEXT_HOP_LENGTH) && ipa_nonzero(ipp[1]))
|
|
|
|
{
|
|
|
|
bsprintf(buf, "%I %I", ipp[0], ipp[1]);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
bsprintf(buf, "%I", ipp[0]);
|
|
|
|
}
|
|
|
|
|
2008-10-27 05:36:08 +08:00
|
|
|
static int
|
2008-11-09 06:33:22 +08:00
|
|
|
bgp_check_aggregator(struct bgp_proto *p, byte *a UNUSED, int len)
|
2008-10-27 05:36:08 +08:00
|
|
|
{
|
2008-10-27 05:48:02 +08:00
|
|
|
int exp_len = p->as4_session ? 8 : 6;
|
2008-10-27 05:36:08 +08:00
|
|
|
|
2011-03-30 07:09:18 +08:00
|
|
|
return (len == exp_len) ? 0 : WITHDRAW;
|
2008-10-27 05:36:08 +08:00
|
|
|
}
|
|
|
|
|
2009-02-22 00:47:56 +08:00
|
|
|
static void
|
|
|
|
bgp_format_aggregator(eattr *a, byte *buf, int buflen UNUSED)
|
|
|
|
{
|
|
|
|
struct adata *ad = a->u.ptr;
|
|
|
|
byte *data = ad->data;
|
|
|
|
u32 as;
|
|
|
|
|
2009-12-15 06:31:25 +08:00
|
|
|
as = get_u32(data);
|
|
|
|
data += 4;
|
2009-02-22 00:47:56 +08:00
|
|
|
|
2012-11-12 20:48:29 +08:00
|
|
|
bsprintf(buf, "%d.%d.%d.%d AS%u", data[0], data[1], data[2], data[3], as);
|
2009-02-22 00:47:56 +08:00
|
|
|
}
|
|
|
|
|
2011-03-30 07:09:18 +08:00
|
|
|
static int
|
|
|
|
bgp_check_community(struct bgp_proto *p UNUSED, byte *a UNUSED, int len)
|
|
|
|
{
|
|
|
|
return ((len % 4) == 0) ? 0 : WITHDRAW;
|
|
|
|
}
|
|
|
|
|
2008-10-27 05:45:09 +08:00
|
|
|
static int
|
2008-11-09 06:33:22 +08:00
|
|
|
bgp_check_cluster_list(struct bgp_proto *p UNUSED, byte *a UNUSED, int len)
|
2008-10-27 05:45:09 +08:00
|
|
|
{
|
|
|
|
return ((len % 4) == 0) ? 0 : 5;
|
|
|
|
}
|
|
|
|
|
2008-11-09 06:33:22 +08:00
|
|
|
static void
|
2011-07-04 01:43:30 +08:00
|
|
|
bgp_format_cluster_list(eattr *a, byte *buf, int buflen)
|
2008-11-09 06:33:22 +08:00
|
|
|
{
|
2011-07-04 01:43:30 +08:00
|
|
|
/* Truncates cluster lists larger than buflen, probably not a problem */
|
|
|
|
int_set_format(a->u.ptr, 0, -1, buf, buflen);
|
2008-11-09 06:33:22 +08:00
|
|
|
}
|
|
|
|
|
2000-05-04 17:03:31 +08:00
|
|
|
static int
|
2004-06-05 17:27:17 +08:00
|
|
|
bgp_check_reach_nlri(struct bgp_proto *p UNUSED, byte *a UNUSED, int len UNUSED)
|
2000-05-04 17:03:31 +08:00
|
|
|
{
|
|
|
|
#ifdef IPV6
|
|
|
|
p->mp_reach_start = a;
|
|
|
|
p->mp_reach_len = len;
|
|
|
|
#endif
|
2011-03-30 07:09:18 +08:00
|
|
|
return IGNORE;
|
2000-05-04 17:03:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2004-06-05 17:27:17 +08:00
|
|
|
bgp_check_unreach_nlri(struct bgp_proto *p UNUSED, byte *a UNUSED, int len UNUSED)
|
2000-05-04 17:03:31 +08:00
|
|
|
{
|
|
|
|
#ifdef IPV6
|
|
|
|
p->mp_unreach_start = a;
|
|
|
|
p->mp_unreach_len = len;
|
|
|
|
#endif
|
2011-03-30 07:09:18 +08:00
|
|
|
return IGNORE;
|
2000-04-17 17:37:31 +08:00
|
|
|
}
|
|
|
|
|
2011-08-13 03:03:43 +08:00
|
|
|
static int
|
|
|
|
bgp_check_ext_community(struct bgp_proto *p UNUSED, byte *a UNUSED, int len)
|
|
|
|
{
|
|
|
|
return ((len % 8) == 0) ? 0 : WITHDRAW;
|
|
|
|
}
|
|
|
|
|
2016-10-01 18:50:29 +08:00
|
|
|
static int
|
|
|
|
bgp_check_large_community(struct bgp_proto *p UNUSED, byte *a UNUSED, int len)
|
|
|
|
{
|
|
|
|
return ((len % 12) == 0) ? 0 : WITHDRAW;
|
|
|
|
}
|
|
|
|
|
2011-08-13 03:03:43 +08:00
|
|
|
|
2000-04-17 17:37:31 +08:00
|
|
|
static struct attr_desc bgp_attr_table[] = {
|
2000-05-04 17:03:31 +08:00
|
|
|
{ NULL, -1, 0, 0, 0, /* Undefined */
|
2000-04-17 17:37:31 +08:00
|
|
|
NULL, NULL },
|
2000-05-04 17:03:31 +08:00
|
|
|
{ "origin", 1, BAF_TRANSITIVE, EAF_TYPE_INT, 1, /* BA_ORIGIN */
|
2000-04-17 17:37:31 +08:00
|
|
|
bgp_check_origin, bgp_format_origin },
|
2000-05-04 17:03:31 +08:00
|
|
|
{ "as_path", -1, BAF_TRANSITIVE, EAF_TYPE_AS_PATH, 1, /* BA_AS_PATH */
|
2009-06-23 16:50:57 +08:00
|
|
|
NULL, NULL }, /* is checked by validate_as_path() as a special case */
|
2000-05-04 17:03:31 +08:00
|
|
|
{ "next_hop", 4, BAF_TRANSITIVE, EAF_TYPE_IP_ADDRESS, 1, /* BA_NEXT_HOP */
|
2009-11-17 21:17:23 +08:00
|
|
|
bgp_check_next_hop, bgp_format_next_hop },
|
2008-10-27 05:59:21 +08:00
|
|
|
{ "med", 4, BAF_OPTIONAL, EAF_TYPE_INT, 1, /* BA_MULTI_EXIT_DISC */
|
2000-04-17 17:37:31 +08:00
|
|
|
NULL, NULL },
|
2017-02-23 23:32:07 +08:00
|
|
|
{ "local_pref", 4, BAF_TRANSITIVE, EAF_TYPE_INT, 1, /* BA_LOCAL_PREF */
|
2000-04-17 17:37:31 +08:00
|
|
|
NULL, NULL },
|
2000-05-04 17:03:31 +08:00
|
|
|
{ "atomic_aggr", 0, BAF_TRANSITIVE, EAF_TYPE_OPAQUE, 1, /* BA_ATOMIC_AGGR */
|
2000-04-17 17:37:31 +08:00
|
|
|
NULL, NULL },
|
2008-10-27 05:36:08 +08:00
|
|
|
{ "aggregator", -1, BAF_OPTIONAL | BAF_TRANSITIVE, EAF_TYPE_OPAQUE, 1, /* BA_AGGREGATOR */
|
2009-02-22 00:47:56 +08:00
|
|
|
bgp_check_aggregator, bgp_format_aggregator },
|
2000-05-04 17:03:31 +08:00
|
|
|
{ "community", -1, BAF_OPTIONAL | BAF_TRANSITIVE, EAF_TYPE_INT_SET, 1, /* BA_COMMUNITY */
|
2011-03-30 07:09:18 +08:00
|
|
|
bgp_check_community, NULL },
|
2008-11-09 06:33:22 +08:00
|
|
|
{ "originator_id", 4, BAF_OPTIONAL, EAF_TYPE_ROUTER_ID, 0, /* BA_ORIGINATOR_ID */
|
2008-10-27 05:45:09 +08:00
|
|
|
NULL, NULL },
|
|
|
|
{ "cluster_list", -1, BAF_OPTIONAL, EAF_TYPE_INT_SET, 0, /* BA_CLUSTER_LIST */
|
2008-11-09 06:33:22 +08:00
|
|
|
bgp_check_cluster_list, bgp_format_cluster_list },
|
2010-02-21 21:34:53 +08:00
|
|
|
{ .name = NULL }, /* BA_DPA */
|
2011-03-30 07:09:18 +08:00
|
|
|
{ .name = NULL }, /* BA_ADVERTISER */
|
|
|
|
{ .name = NULL }, /* BA_RCID_PATH */
|
2000-05-04 17:03:31 +08:00
|
|
|
{ "mp_reach_nlri", -1, BAF_OPTIONAL, EAF_TYPE_OPAQUE, 1, /* BA_MP_REACH_NLRI */
|
|
|
|
bgp_check_reach_nlri, NULL },
|
|
|
|
{ "mp_unreach_nlri", -1, BAF_OPTIONAL, EAF_TYPE_OPAQUE, 1, /* BA_MP_UNREACH_NLRI */
|
|
|
|
bgp_check_unreach_nlri, NULL },
|
2011-08-13 03:03:43 +08:00
|
|
|
{ "ext_community", -1, BAF_OPTIONAL | BAF_TRANSITIVE, EAF_TYPE_EC_SET, 1, /* BA_EXT_COMMUNITY */
|
|
|
|
bgp_check_ext_community, NULL },
|
2008-10-27 05:36:08 +08:00
|
|
|
{ "as4_path", -1, BAF_OPTIONAL | BAF_TRANSITIVE, EAF_TYPE_OPAQUE, 1, /* BA_AS4_PATH */
|
2009-03-19 03:30:21 +08:00
|
|
|
NULL, NULL },
|
|
|
|
{ "as4_aggregator", -1, BAF_OPTIONAL | BAF_TRANSITIVE, EAF_TYPE_OPAQUE, 1, /* BA_AS4_PATH */
|
2016-10-01 18:50:29 +08:00
|
|
|
NULL, NULL },
|
|
|
|
[BA_LARGE_COMMUNITY] =
|
|
|
|
{ "large_community", -1, BAF_OPTIONAL | BAF_TRANSITIVE, EAF_TYPE_LC_SET, 1,
|
|
|
|
bgp_check_large_community, NULL }
|
2000-04-17 17:37:31 +08:00
|
|
|
};
|
|
|
|
|
2009-12-15 06:31:25 +08:00
|
|
|
/* BA_AS4_PATH is type EAF_TYPE_OPAQUE and not type EAF_TYPE_AS_PATH.
|
|
|
|
* It does not matter as this attribute does not appear on routes in the routing table.
|
2008-10-27 05:36:08 +08:00
|
|
|
*/
|
|
|
|
|
2000-05-02 20:51:39 +08:00
|
|
|
#define ATTR_KNOWN(code) ((code) < ARRAY_SIZE(bgp_attr_table) && bgp_attr_table[code].name)
|
|
|
|
|
2008-10-27 05:45:09 +08:00
|
|
|
static inline struct adata *
|
|
|
|
bgp_alloc_adata(struct linpool *pool, unsigned len)
|
|
|
|
{
|
|
|
|
struct adata *ad = lp_alloc(pool, sizeof(struct adata) + len);
|
|
|
|
ad->length = len;
|
|
|
|
return ad;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
bgp_set_attr(eattr *e, unsigned attr, uintptr_t val)
|
2000-05-05 04:02:56 +08:00
|
|
|
{
|
|
|
|
ASSERT(ATTR_KNOWN(attr));
|
|
|
|
e->id = EA_CODE(EAP_BGP, attr);
|
|
|
|
e->type = bgp_attr_table[attr].type;
|
|
|
|
e->flags = bgp_attr_table[attr].expected_flags;
|
|
|
|
if (e->type & EAF_EMBEDDED)
|
2008-10-27 05:45:09 +08:00
|
|
|
e->u.data = val;
|
2000-05-05 04:02:56 +08:00
|
|
|
else
|
2008-10-27 05:45:09 +08:00
|
|
|
e->u.ptr = (struct adata *) val;
|
2000-05-05 04:02:56 +08:00
|
|
|
}
|
|
|
|
|
2008-10-27 05:45:09 +08:00
|
|
|
static byte *
|
|
|
|
bgp_set_attr_wa(eattr *e, struct linpool *pool, unsigned attr, unsigned len)
|
|
|
|
{
|
|
|
|
struct adata *ad = bgp_alloc_adata(pool, len);
|
|
|
|
bgp_set_attr(e, attr, (uintptr_t) ad);
|
|
|
|
return ad->data;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
bgp_attach_attr(ea_list **to, struct linpool *pool, unsigned attr, uintptr_t val)
|
2000-05-05 04:02:56 +08:00
|
|
|
{
|
|
|
|
ea_list *a = lp_alloc(pool, sizeof(ea_list) + sizeof(eattr));
|
|
|
|
a->next = *to;
|
|
|
|
*to = a;
|
|
|
|
a->flags = EALF_SORTED;
|
|
|
|
a->count = 1;
|
2008-10-27 05:45:09 +08:00
|
|
|
bgp_set_attr(a->attrs, attr, val);
|
|
|
|
}
|
|
|
|
|
|
|
|
byte *
|
|
|
|
bgp_attach_attr_wa(ea_list **to, struct linpool *pool, unsigned attr, unsigned len)
|
|
|
|
{
|
|
|
|
struct adata *ad = bgp_alloc_adata(pool, len);
|
|
|
|
bgp_attach_attr(to, pool, attr, (uintptr_t) ad);
|
|
|
|
return ad->data;
|
2000-05-05 04:02:56 +08:00
|
|
|
}
|
|
|
|
|
2008-10-27 05:36:08 +08:00
|
|
|
static int
|
2015-05-19 14:53:34 +08:00
|
|
|
bgp_encode_attr_hdr(byte *dst, uint flags, unsigned code, int len)
|
2008-10-27 05:36:08 +08:00
|
|
|
{
|
|
|
|
int wlen;
|
|
|
|
|
|
|
|
DBG("\tAttribute %02x (%d bytes, flags %02x)\n", code, len, flags);
|
|
|
|
|
|
|
|
if (len < 256)
|
|
|
|
{
|
|
|
|
*dst++ = flags;
|
|
|
|
*dst++ = code;
|
|
|
|
*dst++ = len;
|
|
|
|
wlen = 3;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
*dst++ = flags | BAF_EXT_LEN;
|
|
|
|
*dst++ = code;
|
|
|
|
put_u16(dst, len);
|
|
|
|
wlen = 4;
|
|
|
|
}
|
|
|
|
|
|
|
|
return wlen;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
aggregator_convert_to_old(struct adata *aggr, byte *dst, int *new_used)
|
|
|
|
{
|
|
|
|
byte *src = aggr->data;
|
|
|
|
*new_used = 0;
|
|
|
|
|
|
|
|
u32 as = get_u32(src);
|
|
|
|
if (as > 0xFFFF)
|
|
|
|
{
|
|
|
|
as = AS_TRANS;
|
|
|
|
*new_used = 1;
|
|
|
|
}
|
|
|
|
put_u16(dst, as);
|
|
|
|
|
|
|
|
/* Copy IPv4 address */
|
|
|
|
memcpy(dst + 2, src + 4, 4);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
aggregator_convert_to_new(struct adata *aggr, byte *dst)
|
|
|
|
{
|
|
|
|
byte *src = aggr->data;
|
|
|
|
|
|
|
|
u32 as = get_u16(src);
|
|
|
|
put_u32(dst, as);
|
|
|
|
|
|
|
|
/* Copy IPv4 address */
|
|
|
|
memcpy(dst + 4, src + 2, 4);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
bgp_get_attr_len(eattr *a)
|
|
|
|
{
|
|
|
|
int len;
|
|
|
|
if (ATTR_KNOWN(EA_ID(a->id)))
|
|
|
|
{
|
|
|
|
int code = EA_ID(a->id);
|
|
|
|
struct attr_desc *desc = &bgp_attr_table[code];
|
|
|
|
len = desc->expected_length;
|
|
|
|
if (len < 0)
|
|
|
|
{
|
|
|
|
ASSERT(!(a->type & EAF_EMBEDDED));
|
|
|
|
len = a->u.ptr->length;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ASSERT((a->type & EAF_TYPE_MASK) == EAF_TYPE_OPAQUE);
|
|
|
|
len = a->u.ptr->length;
|
|
|
|
}
|
|
|
|
|
|
|
|
return len;
|
|
|
|
}
|
|
|
|
|
2000-06-05 01:06:18 +08:00
|
|
|
/**
|
|
|
|
* bgp_encode_attrs - encode BGP attributes
|
2008-10-27 05:36:08 +08:00
|
|
|
* @p: BGP instance
|
2000-06-05 01:06:18 +08:00
|
|
|
* @w: buffer
|
|
|
|
* @attrs: a list of extended attributes
|
|
|
|
* @remains: remaining space in the buffer
|
|
|
|
*
|
|
|
|
* The bgp_encode_attrs() function takes a list of extended attributes
|
|
|
|
* and converts it to its BGP representation (a part of an Update message).
|
|
|
|
*
|
2009-02-27 22:24:46 +08:00
|
|
|
* Result: Length of the attribute block generated or -1 if not enough space.
|
2000-06-05 01:06:18 +08:00
|
|
|
*/
|
2015-05-19 14:53:34 +08:00
|
|
|
uint
|
2008-10-27 05:36:08 +08:00
|
|
|
bgp_encode_attrs(struct bgp_proto *p, byte *w, ea_list *attrs, int remains)
|
2000-04-17 17:37:31 +08:00
|
|
|
{
|
2015-05-19 14:53:34 +08:00
|
|
|
uint i, code, type, flags;
|
2000-04-17 17:37:31 +08:00
|
|
|
byte *start = w;
|
2008-10-27 05:36:08 +08:00
|
|
|
int len, rv;
|
2000-04-17 17:37:31 +08:00
|
|
|
|
2000-05-05 04:02:56 +08:00
|
|
|
for(i=0; i<attrs->count; i++)
|
2000-04-17 17:37:31 +08:00
|
|
|
{
|
2000-05-05 04:02:56 +08:00
|
|
|
eattr *a = &attrs->attrs[i];
|
2000-04-17 17:37:31 +08:00
|
|
|
ASSERT(EA_PROTO(a->id) == EAP_BGP);
|
|
|
|
code = EA_ID(a->id);
|
2011-08-13 03:03:43 +08:00
|
|
|
|
2000-05-05 04:02:56 +08:00
|
|
|
#ifdef IPV6
|
|
|
|
/* When talking multiprotocol BGP, the NEXT_HOP attributes are used only temporarily. */
|
|
|
|
if (code == BA_NEXT_HOP)
|
|
|
|
continue;
|
|
|
|
#endif
|
2008-10-27 05:36:08 +08:00
|
|
|
|
|
|
|
/* When AS4-aware BGP speaker is talking to non-AS4-aware BGP speaker,
|
|
|
|
* we have to convert our 4B AS_PATH to 2B AS_PATH and send our AS_PATH
|
|
|
|
* as optional AS4_PATH attribute.
|
|
|
|
*/
|
2009-12-15 06:31:25 +08:00
|
|
|
if ((code == BA_AS_PATH) && (! p->as4_session))
|
2000-04-17 17:37:31 +08:00
|
|
|
{
|
|
|
|
len = a->u.ptr->length;
|
2008-10-27 05:36:08 +08:00
|
|
|
|
|
|
|
if (remains < (len + 4))
|
|
|
|
goto err_no_buffer;
|
|
|
|
|
|
|
|
/* Using temporary buffer because don't know a length of created attr
|
|
|
|
* and therefore a length of a header. Perhaps i should better always
|
|
|
|
* use BAF_EXT_LEN. */
|
|
|
|
|
|
|
|
byte buf[len];
|
|
|
|
int new_used;
|
|
|
|
int nl = as_path_convert_to_old(a->u.ptr, buf, &new_used);
|
|
|
|
|
2008-12-19 08:34:39 +08:00
|
|
|
DBG("BGP: Encoding old AS_PATH\n");
|
2008-10-27 05:36:08 +08:00
|
|
|
rv = bgp_encode_attr_hdr(w, BAF_TRANSITIVE, BA_AS_PATH, nl);
|
|
|
|
ADVANCE(w, remains, rv);
|
|
|
|
memcpy(w, buf, nl);
|
|
|
|
ADVANCE(w, remains, nl);
|
|
|
|
|
|
|
|
if (! new_used)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (remains < (len + 4))
|
|
|
|
goto err_no_buffer;
|
|
|
|
|
|
|
|
/* We should discard AS_CONFED_SEQUENCE or AS_CONFED_SET path segments
|
|
|
|
* here but we don't support confederations and such paths we already
|
|
|
|
* discarded in bgp_check_as_path().
|
|
|
|
*/
|
|
|
|
|
2008-12-19 08:34:39 +08:00
|
|
|
DBG("BGP: Encoding AS4_PATH\n");
|
2008-10-27 05:36:08 +08:00
|
|
|
rv = bgp_encode_attr_hdr(w, BAF_OPTIONAL | BAF_TRANSITIVE, BA_AS4_PATH, len);
|
|
|
|
ADVANCE(w, remains, rv);
|
|
|
|
memcpy(w, a->u.ptr->data, len);
|
|
|
|
ADVANCE(w, remains, len);
|
|
|
|
|
|
|
|
continue;
|
2000-04-17 17:37:31 +08:00
|
|
|
}
|
2008-10-27 05:36:08 +08:00
|
|
|
|
|
|
|
/* The same issue with AGGREGATOR attribute */
|
2009-12-15 06:31:25 +08:00
|
|
|
if ((code == BA_AGGREGATOR) && (! p->as4_session))
|
2000-04-17 17:37:31 +08:00
|
|
|
{
|
2008-10-27 05:36:08 +08:00
|
|
|
int new_used;
|
|
|
|
|
|
|
|
len = 6;
|
|
|
|
if (remains < (len + 3))
|
|
|
|
goto err_no_buffer;
|
|
|
|
|
|
|
|
rv = bgp_encode_attr_hdr(w, BAF_OPTIONAL | BAF_TRANSITIVE, BA_AGGREGATOR, len);
|
|
|
|
ADVANCE(w, remains, rv);
|
|
|
|
aggregator_convert_to_old(a->u.ptr, w, &new_used);
|
|
|
|
ADVANCE(w, remains, len);
|
|
|
|
|
|
|
|
if (! new_used)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
len = 8;
|
|
|
|
if (remains < (len + 3))
|
|
|
|
goto err_no_buffer;
|
|
|
|
|
|
|
|
rv = bgp_encode_attr_hdr(w, BAF_OPTIONAL | BAF_TRANSITIVE, BA_AS4_AGGREGATOR, len);
|
|
|
|
ADVANCE(w, remains, rv);
|
|
|
|
memcpy(w, a->u.ptr->data, len);
|
|
|
|
ADVANCE(w, remains, len);
|
|
|
|
|
|
|
|
continue;
|
2000-04-17 17:37:31 +08:00
|
|
|
}
|
2008-10-27 05:36:08 +08:00
|
|
|
|
|
|
|
/* Standard path continues here ... */
|
|
|
|
|
2011-08-13 03:03:43 +08:00
|
|
|
type = a->type & EAF_TYPE_MASK;
|
2008-10-27 05:36:08 +08:00
|
|
|
flags = a->flags & (BAF_OPTIONAL | BAF_TRANSITIVE | BAF_PARTIAL);
|
|
|
|
len = bgp_get_attr_len(a);
|
|
|
|
|
2011-08-13 03:03:43 +08:00
|
|
|
/* Skip empty sets */
|
2016-10-01 18:50:29 +08:00
|
|
|
if (((type == EAF_TYPE_INT_SET) || (type == EAF_TYPE_EC_SET) || (type == EAF_TYPE_LC_SET)) && (len == 0))
|
2010-04-08 23:56:56 +08:00
|
|
|
continue;
|
|
|
|
|
2008-10-27 05:36:08 +08:00
|
|
|
if (remains < len + 4)
|
|
|
|
goto err_no_buffer;
|
|
|
|
|
|
|
|
rv = bgp_encode_attr_hdr(w, flags, code, len);
|
|
|
|
ADVANCE(w, remains, rv);
|
|
|
|
|
2011-08-13 03:03:43 +08:00
|
|
|
switch (type)
|
2000-04-17 17:37:31 +08:00
|
|
|
{
|
|
|
|
case EAF_TYPE_INT:
|
|
|
|
case EAF_TYPE_ROUTER_ID:
|
|
|
|
if (len == 4)
|
|
|
|
put_u32(w, a->u.data);
|
|
|
|
else
|
|
|
|
*w = a->u.data;
|
|
|
|
break;
|
|
|
|
case EAF_TYPE_IP_ADDRESS:
|
|
|
|
{
|
|
|
|
ip_addr ip = *(ip_addr *)a->u.ptr->data;
|
|
|
|
ipa_hton(ip);
|
|
|
|
memcpy(w, &ip, len);
|
|
|
|
break;
|
|
|
|
}
|
2000-04-17 18:19:15 +08:00
|
|
|
case EAF_TYPE_INT_SET:
|
2016-10-01 18:50:29 +08:00
|
|
|
case EAF_TYPE_LC_SET:
|
2011-08-13 03:03:43 +08:00
|
|
|
case EAF_TYPE_EC_SET:
|
2000-04-17 18:19:15 +08:00
|
|
|
{
|
2011-08-13 03:03:43 +08:00
|
|
|
u32 *z = int_set_get_data(a->u.ptr);
|
2000-04-17 18:19:15 +08:00
|
|
|
int i;
|
|
|
|
for(i=0; i<len; i+=4)
|
|
|
|
put_u32(w+i, *z++);
|
|
|
|
break;
|
|
|
|
}
|
2000-04-17 17:37:31 +08:00
|
|
|
case EAF_TYPE_OPAQUE:
|
|
|
|
case EAF_TYPE_AS_PATH:
|
|
|
|
memcpy(w, a->u.ptr->data, len);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
bug("bgp_encode_attrs: unknown attribute type %02x", a->type);
|
|
|
|
}
|
2008-10-27 05:36:08 +08:00
|
|
|
ADVANCE(w, remains, len);
|
2000-04-17 17:37:31 +08:00
|
|
|
}
|
2000-05-05 04:02:56 +08:00
|
|
|
return w - start;
|
2008-10-27 05:36:08 +08:00
|
|
|
|
|
|
|
err_no_buffer:
|
2009-02-27 22:24:46 +08:00
|
|
|
return -1;
|
2000-04-17 17:37:31 +08:00
|
|
|
}
|
2000-04-10 20:39:51 +08:00
|
|
|
|
2012-08-14 22:25:22 +08:00
|
|
|
/*
|
2000-04-12 22:09:26 +08:00
|
|
|
static void
|
|
|
|
bgp_init_prefix(struct fib_node *N)
|
|
|
|
{
|
|
|
|
struct bgp_prefix *p = (struct bgp_prefix *) N;
|
2000-04-17 17:37:31 +08:00
|
|
|
p->bucket_node.next = NULL;
|
2000-04-12 22:09:26 +08:00
|
|
|
}
|
2012-08-14 22:25:22 +08:00
|
|
|
*/
|
2000-04-12 22:09:26 +08:00
|
|
|
|
2000-04-17 19:25:15 +08:00
|
|
|
static int
|
|
|
|
bgp_compare_u32(const u32 *x, const u32 *y)
|
|
|
|
{
|
|
|
|
return (*x < *y) ? -1 : (*x > *y) ? 1 : 0;
|
|
|
|
}
|
|
|
|
|
2011-08-13 03:03:43 +08:00
|
|
|
static inline void
|
|
|
|
bgp_normalize_int_set(u32 *dest, u32 *src, unsigned cnt)
|
2000-04-10 20:39:51 +08:00
|
|
|
{
|
|
|
|
memcpy(dest, src, sizeof(u32) * cnt);
|
2000-04-17 19:25:15 +08:00
|
|
|
qsort(dest, cnt, sizeof(u32), (int(*)(const void *, const void *)) bgp_compare_u32);
|
2000-04-10 20:39:51 +08:00
|
|
|
}
|
|
|
|
|
2011-08-13 03:03:43 +08:00
|
|
|
static int
|
|
|
|
bgp_compare_ec(const u32 *xp, const u32 *yp)
|
|
|
|
{
|
|
|
|
u64 x = ec_get(xp, 0);
|
|
|
|
u64 y = ec_get(yp, 0);
|
|
|
|
return (x < y) ? -1 : (x > y) ? 1 : 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void
|
|
|
|
bgp_normalize_ec_set(struct adata *ad, u32 *src, int internal)
|
|
|
|
{
|
|
|
|
u32 *dst = int_set_get_data(ad);
|
|
|
|
|
|
|
|
/* Remove non-transitive communities (EC_TBIT active) on external sessions */
|
|
|
|
if (! internal)
|
|
|
|
{
|
|
|
|
int len = int_set_get_size(ad);
|
|
|
|
u32 *t = dst;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i=0; i < len; i += 2)
|
|
|
|
{
|
|
|
|
if (src[i] & EC_TBIT)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
*t++ = src[i];
|
|
|
|
*t++ = src[i+1];
|
|
|
|
}
|
|
|
|
|
|
|
|
ad->length = (t - dst) * 4;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
memcpy(dst, src, ad->length);
|
|
|
|
|
|
|
|
qsort(dst, ad->length / 8, 8, (int(*)(const void *, const void *)) bgp_compare_ec);
|
|
|
|
}
|
|
|
|
|
2016-10-01 18:50:29 +08:00
|
|
|
static int
|
|
|
|
bgp_compare_lc(const u32 *x, const u32 *y)
|
|
|
|
{
|
|
|
|
if (x[0] != y[0])
|
|
|
|
return (x[0] > y[0]) ? 1 : -1;
|
|
|
|
if (x[1] != y[1])
|
|
|
|
return (x[1] > y[1]) ? 1 : -1;
|
|
|
|
if (x[2] != y[2])
|
|
|
|
return (x[2] > y[2]) ? 1 : -1;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void
|
|
|
|
bgp_normalize_lc_set(u32 *dest, u32 *src, unsigned cnt)
|
|
|
|
{
|
|
|
|
memcpy(dest, src, LCOMM_LENGTH * cnt);
|
|
|
|
qsort(dest, cnt, LCOMM_LENGTH, (int(*)(const void *, const void *)) bgp_compare_lc);
|
|
|
|
}
|
|
|
|
|
2000-04-10 20:39:51 +08:00
|
|
|
static void
|
|
|
|
bgp_rehash_buckets(struct bgp_proto *p)
|
|
|
|
{
|
2000-04-12 22:09:26 +08:00
|
|
|
struct bgp_bucket **old = p->bucket_hash;
|
2000-04-10 20:39:51 +08:00
|
|
|
struct bgp_bucket **new;
|
|
|
|
unsigned oldn = p->hash_size;
|
|
|
|
unsigned i, e, mask;
|
|
|
|
struct bgp_bucket *b;
|
|
|
|
|
|
|
|
p->hash_size = p->hash_limit;
|
|
|
|
DBG("BGP: Rehashing bucket table from %d to %d\n", oldn, p->hash_size);
|
|
|
|
p->hash_limit *= 4;
|
|
|
|
if (p->hash_limit >= 65536)
|
|
|
|
p->hash_limit = ~0;
|
2000-04-12 22:09:26 +08:00
|
|
|
new = p->bucket_hash = mb_allocz(p->p.pool, p->hash_size * sizeof(struct bgp_bucket *));
|
2000-04-10 20:39:51 +08:00
|
|
|
mask = p->hash_size - 1;
|
|
|
|
for (i=0; i<oldn; i++)
|
|
|
|
while (b = old[i])
|
|
|
|
{
|
2000-04-12 22:09:26 +08:00
|
|
|
old[i] = b->hash_next;
|
2000-04-10 20:39:51 +08:00
|
|
|
e = b->hash & mask;
|
2000-04-12 22:09:26 +08:00
|
|
|
b->hash_next = new[e];
|
|
|
|
if (b->hash_next)
|
|
|
|
b->hash_next->hash_prev = b;
|
|
|
|
b->hash_prev = NULL;
|
2000-04-10 20:39:51 +08:00
|
|
|
new[e] = b;
|
|
|
|
}
|
|
|
|
mb_free(old);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct bgp_bucket *
|
|
|
|
bgp_new_bucket(struct bgp_proto *p, ea_list *new, unsigned hash)
|
|
|
|
{
|
|
|
|
struct bgp_bucket *b;
|
|
|
|
unsigned ea_size = sizeof(ea_list) + new->count * sizeof(eattr);
|
2004-06-01 18:28:25 +08:00
|
|
|
unsigned ea_size_aligned = BIRD_ALIGN(ea_size, CPU_STRUCT_ALIGN);
|
2015-02-21 19:24:30 +08:00
|
|
|
unsigned size = sizeof(struct bgp_bucket) + ea_size_aligned;
|
2000-04-10 20:39:51 +08:00
|
|
|
unsigned i;
|
|
|
|
byte *dest;
|
|
|
|
unsigned index = hash & (p->hash_size - 1);
|
|
|
|
|
|
|
|
/* Gather total size of non-inline attributes */
|
|
|
|
for (i=0; i<new->count; i++)
|
|
|
|
{
|
|
|
|
eattr *a = &new->attrs[i];
|
|
|
|
if (!(a->type & EAF_EMBEDDED))
|
2004-06-01 18:28:25 +08:00
|
|
|
size += BIRD_ALIGN(sizeof(struct adata) + a->u.ptr->length, CPU_STRUCT_ALIGN);
|
2000-04-10 20:39:51 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Create the bucket and hash it */
|
|
|
|
b = mb_alloc(p->p.pool, size);
|
2000-04-12 22:09:26 +08:00
|
|
|
b->hash_next = p->bucket_hash[index];
|
|
|
|
if (b->hash_next)
|
|
|
|
b->hash_next->hash_prev = b;
|
|
|
|
p->bucket_hash[index] = b;
|
|
|
|
b->hash_prev = NULL;
|
2000-04-10 20:39:51 +08:00
|
|
|
b->hash = hash;
|
2000-04-17 17:37:31 +08:00
|
|
|
add_tail(&p->bucket_queue, &b->send_node);
|
|
|
|
init_list(&b->prefixes);
|
2000-04-10 20:39:51 +08:00
|
|
|
memcpy(b->eattrs, new, ea_size);
|
|
|
|
dest = ((byte *)b->eattrs) + ea_size_aligned;
|
|
|
|
|
|
|
|
/* Copy values of non-inline attributes */
|
|
|
|
for (i=0; i<new->count; i++)
|
|
|
|
{
|
2000-05-03 00:07:41 +08:00
|
|
|
eattr *a = &b->eattrs->attrs[i];
|
2000-04-10 20:39:51 +08:00
|
|
|
if (!(a->type & EAF_EMBEDDED))
|
|
|
|
{
|
|
|
|
struct adata *oa = a->u.ptr;
|
|
|
|
struct adata *na = (struct adata *) dest;
|
|
|
|
memcpy(na, oa, sizeof(struct adata) + oa->length);
|
|
|
|
a->u.ptr = na;
|
2004-06-01 18:28:25 +08:00
|
|
|
dest += BIRD_ALIGN(sizeof(struct adata) + na->length, CPU_STRUCT_ALIGN);
|
2000-04-10 20:39:51 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If needed, rehash */
|
|
|
|
p->hash_count++;
|
|
|
|
if (p->hash_count > p->hash_limit)
|
|
|
|
bgp_rehash_buckets(p);
|
|
|
|
|
|
|
|
return b;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct bgp_bucket *
|
2010-01-28 00:22:57 +08:00
|
|
|
bgp_get_bucket(struct bgp_proto *p, net *n, ea_list *attrs, int originate)
|
2000-04-10 20:39:51 +08:00
|
|
|
{
|
2004-06-05 17:27:17 +08:00
|
|
|
ea_list *new;
|
2000-04-17 20:46:07 +08:00
|
|
|
unsigned i, cnt, hash, code;
|
2000-04-10 20:39:51 +08:00
|
|
|
eattr *a, *d;
|
|
|
|
u32 seen = 0;
|
|
|
|
struct bgp_bucket *b;
|
|
|
|
|
2000-05-13 19:02:02 +08:00
|
|
|
/* Merge the attribute list */
|
|
|
|
new = alloca(ea_scan(attrs));
|
|
|
|
ea_merge(attrs, new);
|
2000-04-21 21:01:28 +08:00
|
|
|
ea_sort(new);
|
2000-04-10 20:39:51 +08:00
|
|
|
|
|
|
|
/* Normalize attributes */
|
|
|
|
d = new->attrs;
|
|
|
|
cnt = new->count;
|
|
|
|
new->count = 0;
|
|
|
|
for(i=0; i<cnt; i++)
|
|
|
|
{
|
|
|
|
a = &new->attrs[i];
|
|
|
|
if (EA_PROTO(a->id) != EAP_BGP)
|
|
|
|
continue;
|
2000-04-17 20:46:07 +08:00
|
|
|
code = EA_ID(a->id);
|
2000-05-02 20:51:39 +08:00
|
|
|
if (ATTR_KNOWN(code))
|
2000-04-17 20:46:07 +08:00
|
|
|
{
|
2017-02-23 23:32:07 +08:00
|
|
|
if (!p->is_internal)
|
|
|
|
{
|
|
|
|
if (!bgp_attr_table[code].allow_in_ebgp)
|
|
|
|
continue;
|
|
|
|
if ((code == BA_LOCAL_PREF) && !p->cf->allow_local_pref)
|
|
|
|
continue;
|
|
|
|
}
|
2000-04-26 05:21:52 +08:00
|
|
|
/* The flags might have been zero if the attr was added by filters */
|
|
|
|
a->flags = (a->flags & BAF_PARTIAL) | bgp_attr_table[code].expected_flags;
|
2000-05-02 20:51:39 +08:00
|
|
|
if (code < 32)
|
|
|
|
seen |= 1 << code;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Don't re-export unknown non-transitive attributes */
|
|
|
|
if (!(a->flags & BAF_TRANSITIVE))
|
|
|
|
continue;
|
2000-04-17 20:46:07 +08:00
|
|
|
}
|
2000-04-10 20:39:51 +08:00
|
|
|
*d = *a;
|
2000-04-17 19:25:15 +08:00
|
|
|
if ((d->type & EAF_ORIGINATED) && !originate && (d->flags & BAF_TRANSITIVE) && (d->flags & BAF_OPTIONAL))
|
|
|
|
d->flags |= BAF_PARTIAL;
|
2000-04-10 20:39:51 +08:00
|
|
|
switch (d->type & EAF_TYPE_MASK)
|
|
|
|
{
|
2000-04-17 19:25:15 +08:00
|
|
|
case EAF_TYPE_INT_SET:
|
2000-04-10 20:39:51 +08:00
|
|
|
{
|
|
|
|
struct adata *z = alloca(sizeof(struct adata) + d->u.ptr->length);
|
|
|
|
z->length = d->u.ptr->length;
|
2011-08-13 03:03:43 +08:00
|
|
|
bgp_normalize_int_set((u32 *) z->data, (u32 *) d->u.ptr->data, z->length / 4);
|
|
|
|
d->u.ptr = z;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case EAF_TYPE_EC_SET:
|
|
|
|
{
|
|
|
|
struct adata *z = alloca(sizeof(struct adata) + d->u.ptr->length);
|
|
|
|
z->length = d->u.ptr->length;
|
|
|
|
bgp_normalize_ec_set(z, (u32 *) d->u.ptr->data, p->is_internal);
|
2000-04-10 20:39:51 +08:00
|
|
|
d->u.ptr = z;
|
|
|
|
break;
|
|
|
|
}
|
2016-10-01 18:50:29 +08:00
|
|
|
case EAF_TYPE_LC_SET:
|
|
|
|
{
|
|
|
|
struct adata *z = alloca(sizeof(struct adata) + d->u.ptr->length);
|
|
|
|
z->length = d->u.ptr->length;
|
|
|
|
bgp_normalize_lc_set((u32 *) z->data, (u32 *) d->u.ptr->data, z->length / LCOMM_LENGTH);
|
|
|
|
d->u.ptr = z;
|
|
|
|
break;
|
|
|
|
}
|
2002-11-13 16:46:12 +08:00
|
|
|
default: ;
|
2000-04-10 20:39:51 +08:00
|
|
|
}
|
|
|
|
d++;
|
|
|
|
new->count++;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Hash */
|
|
|
|
hash = ea_hash(new);
|
2000-04-12 22:09:26 +08:00
|
|
|
for(b=p->bucket_hash[hash & (p->hash_size - 1)]; b; b=b->hash_next)
|
2000-04-10 20:39:51 +08:00
|
|
|
if (b->hash == hash && ea_same(b->eattrs, new))
|
|
|
|
{
|
|
|
|
DBG("Found bucket.\n");
|
|
|
|
return b;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Ensure that there are all mandatory attributes */
|
2000-04-12 21:21:23 +08:00
|
|
|
for(i=0; i<ARRAY_SIZE(bgp_mandatory_attrs); i++)
|
2000-04-10 20:39:51 +08:00
|
|
|
if (!(seen & (1 << bgp_mandatory_attrs[i])))
|
|
|
|
{
|
2010-01-28 00:22:57 +08:00
|
|
|
log(L_ERR "%s: Mandatory attribute %s missing in route %I/%d", p->p.name, bgp_attr_table[bgp_mandatory_attrs[i]].name, n->n.prefix, n->n.pxlen);
|
2000-04-10 20:39:51 +08:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2010-01-28 00:22:57 +08:00
|
|
|
/* Check if next hop is valid */
|
|
|
|
a = ea_find(new, EA_CODE(EAP_BGP, BA_NEXT_HOP));
|
2010-07-12 23:39:39 +08:00
|
|
|
if (!a || ipa_equal(p->cf->remote_ip, *(ip_addr *)a->u.ptr->data))
|
2010-01-28 00:22:57 +08:00
|
|
|
{
|
|
|
|
log(L_ERR "%s: Invalid NEXT_HOP attribute in route %I/%d", p->p.name, n->n.prefix, n->n.pxlen);
|
|
|
|
return NULL;
|
|
|
|
}
|
2000-04-17 17:37:31 +08:00
|
|
|
|
2000-04-10 20:39:51 +08:00
|
|
|
/* Create new bucket */
|
|
|
|
DBG("Creating bucket.\n");
|
|
|
|
return bgp_new_bucket(p, new, hash);
|
|
|
|
}
|
|
|
|
|
2000-04-17 17:37:31 +08:00
|
|
|
void
|
|
|
|
bgp_free_bucket(struct bgp_proto *p, struct bgp_bucket *buck)
|
|
|
|
{
|
|
|
|
if (buck->hash_next)
|
|
|
|
buck->hash_next->hash_prev = buck->hash_prev;
|
|
|
|
if (buck->hash_prev)
|
|
|
|
buck->hash_prev->hash_next = buck->hash_next;
|
|
|
|
else
|
|
|
|
p->bucket_hash[buck->hash & (p->hash_size-1)] = buck->hash_next;
|
|
|
|
mb_free(buck);
|
|
|
|
}
|
|
|
|
|
2012-08-14 22:25:22 +08:00
|
|
|
|
|
|
|
/* Prefix hash table */
|
|
|
|
|
2013-11-27 05:37:24 +08:00
|
|
|
#define PXH_KEY(n1) n1->n.prefix, n1->n.pxlen, n1->path_id
|
|
|
|
#define PXH_NEXT(n) n->next
|
|
|
|
#define PXH_EQ(p1,l1,i1,p2,l2,i2) ipa_equal(p1, p2) && l1 == l2 && i1 == i2
|
|
|
|
#define PXH_FN(p,l,i) ipa_hash32(p) ^ u32_hash((l << 16) ^ i)
|
|
|
|
|
|
|
|
#define PXH_REHASH bgp_pxh_rehash
|
|
|
|
#define PXH_PARAMS /8, *2, 2, 2, 8, 20
|
|
|
|
|
2012-08-14 22:25:22 +08:00
|
|
|
|
2013-11-27 05:37:24 +08:00
|
|
|
HASH_DEFINE_REHASH_FN(PXH, struct bgp_prefix)
|
2012-08-14 22:25:22 +08:00
|
|
|
|
|
|
|
void
|
|
|
|
bgp_init_prefix_table(struct bgp_proto *p, u32 order)
|
|
|
|
{
|
2013-11-27 05:37:24 +08:00
|
|
|
HASH_INIT(p->prefix_hash, p->p.pool, order);
|
2012-08-14 22:25:22 +08:00
|
|
|
|
2013-11-27 05:37:24 +08:00
|
|
|
p->prefix_slab = sl_new(p->p.pool, sizeof(struct bgp_prefix));
|
2012-08-14 22:25:22 +08:00
|
|
|
}
|
|
|
|
|
2016-11-25 18:51:38 +08:00
|
|
|
void
|
|
|
|
bgp_free_prefix_table(struct bgp_proto *p)
|
|
|
|
{
|
|
|
|
HASH_FREE(p->prefix_hash);
|
|
|
|
|
|
|
|
rfree(p->prefix_slab);
|
|
|
|
p->prefix_slab = NULL;
|
|
|
|
}
|
|
|
|
|
2012-08-14 22:25:22 +08:00
|
|
|
static struct bgp_prefix *
|
|
|
|
bgp_get_prefix(struct bgp_proto *p, ip_addr prefix, int pxlen, u32 path_id)
|
|
|
|
{
|
2013-11-27 05:37:24 +08:00
|
|
|
struct bgp_prefix *bp = HASH_FIND(p->prefix_hash, PXH, prefix, pxlen, path_id);
|
2012-08-14 22:25:22 +08:00
|
|
|
|
2013-11-27 05:37:24 +08:00
|
|
|
if (bp)
|
|
|
|
return bp;
|
2012-08-14 22:25:22 +08:00
|
|
|
|
|
|
|
bp = sl_alloc(p->prefix_slab);
|
|
|
|
bp->n.prefix = prefix;
|
|
|
|
bp->n.pxlen = pxlen;
|
|
|
|
bp->path_id = path_id;
|
|
|
|
bp->bucket_node.next = NULL;
|
|
|
|
|
2013-11-27 05:37:24 +08:00
|
|
|
HASH_INSERT2(p->prefix_hash, PXH, p->p.pool, bp);
|
2012-08-14 22:25:22 +08:00
|
|
|
|
|
|
|
return bp;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
bgp_free_prefix(struct bgp_proto *p, struct bgp_prefix *bp)
|
|
|
|
{
|
2013-11-27 05:37:24 +08:00
|
|
|
HASH_REMOVE2(p->prefix_hash, PXH, p->p.pool, bp);
|
2012-08-14 22:25:22 +08:00
|
|
|
sl_free(p->prefix_slab, bp);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-04-10 06:05:02 +08:00
|
|
|
void
|
2010-02-13 19:26:26 +08:00
|
|
|
bgp_rt_notify(struct proto *P, rtable *tbl UNUSED, net *n, rte *new, rte *old UNUSED, ea_list *attrs)
|
2000-04-10 06:05:02 +08:00
|
|
|
{
|
2000-04-10 20:39:51 +08:00
|
|
|
struct bgp_proto *p = (struct bgp_proto *) P;
|
2000-04-17 17:37:31 +08:00
|
|
|
struct bgp_bucket *buck;
|
|
|
|
struct bgp_prefix *px;
|
2012-08-14 22:25:22 +08:00
|
|
|
rte *key;
|
|
|
|
u32 path_id;
|
2000-04-10 20:39:51 +08:00
|
|
|
|
2000-04-17 17:37:31 +08:00
|
|
|
DBG("BGP: Got route %I/%d %s\n", n->n.prefix, n->n.pxlen, new ? "up" : "down");
|
2000-04-10 20:39:51 +08:00
|
|
|
|
|
|
|
if (new)
|
|
|
|
{
|
2012-08-14 22:25:22 +08:00
|
|
|
key = new;
|
2010-01-28 00:22:57 +08:00
|
|
|
buck = bgp_get_bucket(p, n, attrs, new->attrs->source != RTS_BGP);
|
2000-04-10 20:39:51 +08:00
|
|
|
if (!buck) /* Inconsistent attribute list */
|
|
|
|
return;
|
|
|
|
}
|
2000-04-17 17:37:31 +08:00
|
|
|
else
|
|
|
|
{
|
2012-08-14 22:25:22 +08:00
|
|
|
key = old;
|
2000-04-17 17:37:31 +08:00
|
|
|
if (!(buck = p->withdraw_bucket))
|
|
|
|
{
|
|
|
|
buck = p->withdraw_bucket = mb_alloc(P->pool, sizeof(struct bgp_bucket));
|
|
|
|
init_list(&buck->prefixes);
|
|
|
|
}
|
|
|
|
}
|
2012-08-14 22:25:22 +08:00
|
|
|
path_id = p->add_path_tx ? key->attrs->src->global_id : 0;
|
|
|
|
px = bgp_get_prefix(p, n->n.prefix, n->n.pxlen, path_id);
|
2000-04-17 17:37:31 +08:00
|
|
|
if (px->bucket_node.next)
|
|
|
|
{
|
|
|
|
DBG("\tRemoving old entry.\n");
|
|
|
|
rem_node(&px->bucket_node);
|
|
|
|
}
|
|
|
|
add_tail(&buck->prefixes, &px->bucket_node);
|
|
|
|
bgp_schedule_packet(p->conn, PKT_UPDATE);
|
2000-04-10 06:05:02 +08:00
|
|
|
}
|
|
|
|
|
2000-04-10 19:21:40 +08:00
|
|
|
static int
|
|
|
|
bgp_create_attrs(struct bgp_proto *p, rte *e, ea_list **attrs, struct linpool *pool)
|
2000-04-10 06:05:02 +08:00
|
|
|
{
|
2000-04-21 21:01:28 +08:00
|
|
|
ea_list *ea = lp_alloc(pool, sizeof(ea_list) + 4*sizeof(eattr));
|
2000-04-10 06:05:02 +08:00
|
|
|
rta *rta = e->attrs;
|
2000-05-05 04:02:56 +08:00
|
|
|
byte *z;
|
2000-04-10 06:05:02 +08:00
|
|
|
|
2000-04-10 19:21:40 +08:00
|
|
|
ea->next = *attrs;
|
|
|
|
*attrs = ea;
|
2000-04-10 06:05:02 +08:00
|
|
|
ea->flags = EALF_SORTED;
|
2000-04-21 21:01:28 +08:00
|
|
|
ea->count = 4;
|
2000-04-10 06:05:02 +08:00
|
|
|
|
2008-10-27 05:45:09 +08:00
|
|
|
bgp_set_attr(ea->attrs, BA_ORIGIN,
|
2004-06-26 00:39:53 +08:00
|
|
|
((rta->source == RTS_OSPF_EXT1) || (rta->source == RTS_OSPF_EXT2)) ? ORIGIN_INCOMPLETE : ORIGIN_IGP);
|
2000-04-10 06:05:02 +08:00
|
|
|
|
|
|
|
if (p->is_internal)
|
2008-10-27 05:45:09 +08:00
|
|
|
bgp_set_attr_wa(ea->attrs+1, pool, BA_AS_PATH, 0);
|
2000-04-10 06:05:02 +08:00
|
|
|
else
|
|
|
|
{
|
2009-12-15 06:31:25 +08:00
|
|
|
z = bgp_set_attr_wa(ea->attrs+1, pool, BA_AS_PATH, 6);
|
2000-04-21 21:01:28 +08:00
|
|
|
z[0] = AS_PATH_SEQUENCE;
|
2000-04-10 06:05:02 +08:00
|
|
|
z[1] = 1; /* 1 AS */
|
2009-12-15 06:31:25 +08:00
|
|
|
put_u32(z+2, p->local_as);
|
2000-04-10 06:05:02 +08:00
|
|
|
}
|
|
|
|
|
2010-07-12 23:39:39 +08:00
|
|
|
/* iBGP -> use gw, eBGP multi-hop -> use source_addr,
|
|
|
|
eBGP single-hop -> use gw if on the same iface */
|
2009-04-30 00:58:24 +08:00
|
|
|
z = bgp_set_attr_wa(ea->attrs+2, pool, BA_NEXT_HOP, NEXT_HOP_LENGTH);
|
2000-04-10 19:21:40 +08:00
|
|
|
if (p->cf->next_hop_self ||
|
2009-04-30 04:17:40 +08:00
|
|
|
rta->dest != RTD_ROUTER ||
|
2010-07-12 23:39:39 +08:00
|
|
|
ipa_equal(rta->gw, IPA_NONE) ||
|
2014-10-24 17:11:43 +08:00
|
|
|
ipa_is_link_local(rta->gw) ||
|
2013-04-16 23:27:34 +08:00
|
|
|
(!p->is_internal && !p->cf->next_hop_keep &&
|
|
|
|
(!p->neigh || (rta->iface != p->neigh->iface))))
|
2009-04-30 00:58:24 +08:00
|
|
|
set_next_hop(z, p->source_addr);
|
2000-04-10 06:05:02 +08:00
|
|
|
else
|
2009-12-15 07:30:07 +08:00
|
|
|
set_next_hop(z, rta->gw);
|
2000-04-21 21:01:28 +08:00
|
|
|
|
2009-12-21 18:50:42 +08:00
|
|
|
bgp_set_attr(ea->attrs+3, BA_LOCAL_PREF, p->cf->default_local_pref);
|
2000-04-10 06:05:02 +08:00
|
|
|
|
2000-04-10 19:21:40 +08:00
|
|
|
return 0; /* Leave decision to the filters */
|
2000-04-10 06:05:02 +08:00
|
|
|
}
|
|
|
|
|
2008-10-27 05:45:09 +08:00
|
|
|
|
|
|
|
static inline int
|
|
|
|
bgp_as_path_loopy(struct bgp_proto *p, rta *a)
|
|
|
|
{
|
2013-10-21 20:58:32 +08:00
|
|
|
int num = p->cf->allow_local_as + 1;
|
2008-10-27 05:45:09 +08:00
|
|
|
eattr *e = ea_find(a->eattrs, EA_CODE(EAP_BGP, BA_AS_PATH));
|
2013-10-21 20:58:32 +08:00
|
|
|
return (e && (num > 0) && as_path_contains(e->u.ptr, p->local_as, num));
|
2008-10-27 05:45:09 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline int
|
|
|
|
bgp_originator_id_loopy(struct bgp_proto *p, rta *a)
|
2000-04-12 22:12:37 +08:00
|
|
|
{
|
2008-10-27 05:45:09 +08:00
|
|
|
eattr *e = ea_find(a->eattrs, EA_CODE(EAP_BGP, BA_ORIGINATOR_ID));
|
|
|
|
return (e && (e->u.data == p->local_id));
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int
|
|
|
|
bgp_cluster_list_loopy(struct bgp_proto *p, rta *a)
|
|
|
|
{
|
|
|
|
eattr *e = ea_find(a->eattrs, EA_CODE(EAP_BGP, BA_CLUSTER_LIST));
|
|
|
|
return (e && p->rr_client && int_set_contains(e->u.ptr, p->rr_cluster_id));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static inline void
|
|
|
|
bgp_path_prepend(rte *e, ea_list **attrs, struct linpool *pool, u32 as)
|
|
|
|
{
|
|
|
|
eattr *a = ea_find(e->attrs->eattrs, EA_CODE(EAP_BGP, BA_AS_PATH));
|
|
|
|
bgp_attach_attr(attrs, pool, BA_AS_PATH, (uintptr_t) as_path_prepend(pool, a->u.ptr, as));
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void
|
|
|
|
bgp_cluster_list_prepend(rte *e, ea_list **attrs, struct linpool *pool, u32 cid)
|
|
|
|
{
|
|
|
|
eattr *a = ea_find(e->attrs->eattrs, EA_CODE(EAP_BGP, BA_CLUSTER_LIST));
|
2016-11-15 23:24:39 +08:00
|
|
|
bgp_attach_attr(attrs, pool, BA_CLUSTER_LIST, (uintptr_t) int_set_prepend(pool, a ? a->u.ptr : NULL, cid));
|
2000-04-10 06:05:02 +08:00
|
|
|
}
|
|
|
|
|
2000-04-10 19:21:40 +08:00
|
|
|
static int
|
2008-10-27 05:45:09 +08:00
|
|
|
bgp_update_attrs(struct bgp_proto *p, rte *e, ea_list **attrs, struct linpool *pool, int rr)
|
2000-04-10 06:05:02 +08:00
|
|
|
{
|
2000-04-10 19:21:40 +08:00
|
|
|
eattr *a;
|
|
|
|
|
2008-11-01 19:55:43 +08:00
|
|
|
if (!p->is_internal && !p->rs_client)
|
2008-10-27 05:59:21 +08:00
|
|
|
{
|
|
|
|
bgp_path_prepend(e, attrs, pool, p->local_as);
|
|
|
|
|
|
|
|
/* The MULTI_EXIT_DISC attribute received from a neighboring AS MUST NOT be
|
|
|
|
* propagated to other neighboring ASes.
|
|
|
|
* Perhaps it would be better to undefine it.
|
|
|
|
*/
|
|
|
|
a = ea_find(e->attrs->eattrs, EA_CODE(EAP_BGP, BA_MULTI_EXIT_DISC));
|
|
|
|
if (a)
|
|
|
|
bgp_attach_attr(attrs, pool, BA_MULTI_EXIT_DISC, 0);
|
|
|
|
}
|
2000-04-10 06:05:02 +08:00
|
|
|
|
2010-07-12 23:39:39 +08:00
|
|
|
/* iBGP -> keep next_hop, eBGP multi-hop -> use source_addr,
|
2012-01-08 22:28:27 +08:00
|
|
|
* eBGP single-hop -> keep next_hop if on the same iface.
|
|
|
|
* If the next_hop is zero (i.e. link-local), keep only if on the same iface.
|
2013-04-16 23:27:34 +08:00
|
|
|
*
|
|
|
|
* Note that same-iface-check uses iface from route, which is based on gw.
|
2012-01-08 22:28:27 +08:00
|
|
|
*/
|
2000-04-10 19:21:40 +08:00
|
|
|
a = ea_find(e->attrs->eattrs, EA_CODE(EAP_BGP, BA_NEXT_HOP));
|
2010-07-12 23:39:39 +08:00
|
|
|
if (a && !p->cf->next_hop_self &&
|
2013-04-16 23:27:34 +08:00
|
|
|
(p->cf->next_hop_keep ||
|
|
|
|
(p->is_internal && ipa_nonzero(*((ip_addr *) a->u.ptr->data))) ||
|
2012-01-08 22:28:27 +08:00
|
|
|
(p->neigh && (e->attrs->iface == p->neigh->iface))))
|
2000-04-10 19:21:40 +08:00
|
|
|
{
|
|
|
|
/* Leave the original next hop attribute, will check later where does it point */
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Need to create new one */
|
2009-04-30 00:58:24 +08:00
|
|
|
byte *b = bgp_attach_attr_wa(attrs, pool, BA_NEXT_HOP, NEXT_HOP_LENGTH);
|
|
|
|
set_next_hop(b, p->source_addr);
|
2008-10-27 05:45:09 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (rr)
|
|
|
|
{
|
|
|
|
/* Handling route reflection, RFC 4456 */
|
2012-08-14 22:25:22 +08:00
|
|
|
struct bgp_proto *src = (struct bgp_proto *) e->attrs->src->proto;
|
2008-10-27 05:45:09 +08:00
|
|
|
|
|
|
|
a = ea_find(e->attrs->eattrs, EA_CODE(EAP_BGP, BA_ORIGINATOR_ID));
|
|
|
|
if (!a)
|
|
|
|
bgp_attach_attr(attrs, pool, BA_ORIGINATOR_ID, src->remote_id);
|
|
|
|
|
|
|
|
/* We attach proper cluster ID according to whether the route is entering or leaving the cluster */
|
|
|
|
bgp_cluster_list_prepend(e, attrs, pool, src->rr_client ? src->rr_cluster_id : p->rr_cluster_id);
|
|
|
|
|
|
|
|
/* Two RR clients with different cluster ID, hmmm */
|
|
|
|
if (src->rr_client && p->rr_client && (src->rr_cluster_id != p->rr_cluster_id))
|
|
|
|
bgp_cluster_list_prepend(e, attrs, pool, p->rr_cluster_id);
|
2000-04-10 19:21:40 +08:00
|
|
|
}
|
2000-04-10 06:05:02 +08:00
|
|
|
|
2000-04-10 19:21:40 +08:00
|
|
|
return 0; /* Leave decision to the filters */
|
2000-04-10 06:05:02 +08:00
|
|
|
}
|
|
|
|
|
2010-01-28 00:22:57 +08:00
|
|
|
static int
|
|
|
|
bgp_community_filter(struct bgp_proto *p, rte *e)
|
|
|
|
{
|
|
|
|
eattr *a;
|
|
|
|
struct adata *d;
|
|
|
|
|
|
|
|
/* Check if we aren't forbidden to export the route by communities */
|
|
|
|
a = ea_find(e->attrs->eattrs, EA_CODE(EAP_BGP, BA_COMMUNITY));
|
|
|
|
if (a)
|
|
|
|
{
|
|
|
|
d = a->u.ptr;
|
|
|
|
if (int_set_contains(d, BGP_COMM_NO_ADVERTISE))
|
|
|
|
{
|
|
|
|
DBG("\tNO_ADVERTISE\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
if (!p->is_internal &&
|
|
|
|
(int_set_contains(d, BGP_COMM_NO_EXPORT) ||
|
|
|
|
int_set_contains(d, BGP_COMM_NO_EXPORT_SUBCONFED)))
|
|
|
|
{
|
|
|
|
DBG("\tNO_EXPORT\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2000-04-10 06:05:02 +08:00
|
|
|
int
|
|
|
|
bgp_import_control(struct proto *P, rte **new, ea_list **attrs, struct linpool *pool)
|
|
|
|
{
|
|
|
|
rte *e = *new;
|
|
|
|
struct bgp_proto *p = (struct bgp_proto *) P;
|
2012-08-14 22:25:22 +08:00
|
|
|
struct bgp_proto *new_bgp = (e->attrs->src->proto->proto == &proto_bgp) ?
|
|
|
|
(struct bgp_proto *) e->attrs->src->proto : NULL;
|
2000-04-10 06:05:02 +08:00
|
|
|
|
2000-04-10 19:21:40 +08:00
|
|
|
if (p == new_bgp) /* Poison reverse updates */
|
2000-04-10 06:05:02 +08:00
|
|
|
return -1;
|
|
|
|
if (new_bgp)
|
|
|
|
{
|
2008-10-27 05:45:09 +08:00
|
|
|
/* We should check here for cluster list loop, because the receiving BGP instance
|
|
|
|
might have different cluster ID */
|
|
|
|
if (bgp_cluster_list_loopy(p, e->attrs))
|
|
|
|
return -1;
|
|
|
|
|
2010-01-28 22:59:18 +08:00
|
|
|
if (p->cf->interpret_communities && bgp_community_filter(p, e))
|
2010-01-28 00:22:57 +08:00
|
|
|
return -1;
|
|
|
|
|
2000-04-10 06:05:02 +08:00
|
|
|
if (p->local_as == new_bgp->local_as && p->is_internal && new_bgp->is_internal)
|
2008-10-27 05:45:09 +08:00
|
|
|
{
|
|
|
|
/* Redistribution of internal routes with IBGP */
|
|
|
|
if (p->rr_client || new_bgp->rr_client)
|
|
|
|
/* Route reflection, RFC 4456 */
|
|
|
|
return bgp_update_attrs(p, e, attrs, pool, 1);
|
|
|
|
else
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return bgp_update_attrs(p, e, attrs, pool, 0);
|
2000-04-10 06:05:02 +08:00
|
|
|
}
|
|
|
|
else
|
2000-04-10 19:21:40 +08:00
|
|
|
return bgp_create_attrs(p, e, attrs, pool);
|
2000-04-10 06:05:02 +08:00
|
|
|
}
|
|
|
|
|
2008-10-27 05:59:21 +08:00
|
|
|
static inline u32
|
|
|
|
bgp_get_neighbor(rte *r)
|
|
|
|
{
|
|
|
|
eattr *e = ea_find(r->attrs->eattrs, EA_CODE(EAP_BGP, BA_AS_PATH));
|
|
|
|
u32 as;
|
|
|
|
|
2009-10-13 02:44:58 +08:00
|
|
|
if (e && as_path_get_first(e->u.ptr, &as))
|
2008-10-27 05:59:21 +08:00
|
|
|
return as;
|
|
|
|
else
|
2012-08-14 22:25:22 +08:00
|
|
|
return ((struct bgp_proto *) r->attrs->src->proto)->remote_as;
|
2008-10-27 05:59:21 +08:00
|
|
|
}
|
|
|
|
|
2010-12-08 06:33:55 +08:00
|
|
|
static inline int
|
|
|
|
rte_resolvable(rte *rt)
|
|
|
|
{
|
|
|
|
int rd = rt->attrs->dest;
|
|
|
|
return (rd == RTD_ROUTER) || (rd == RTD_DEVICE) || (rd == RTD_MULTIPATH);
|
|
|
|
}
|
|
|
|
|
2000-04-10 06:05:02 +08:00
|
|
|
int
|
|
|
|
bgp_rte_better(rte *new, rte *old)
|
|
|
|
{
|
2012-08-14 22:25:22 +08:00
|
|
|
struct bgp_proto *new_bgp = (struct bgp_proto *) new->attrs->src->proto;
|
|
|
|
struct bgp_proto *old_bgp = (struct bgp_proto *) old->attrs->src->proto;
|
2000-04-17 20:46:07 +08:00
|
|
|
eattr *x, *y;
|
|
|
|
u32 n, o;
|
2000-04-10 06:05:02 +08:00
|
|
|
|
2011-12-22 20:20:29 +08:00
|
|
|
/* Skip suppressed routes (see bgp_rte_recalculate()) */
|
|
|
|
n = new->u.bgp.suppressed;
|
|
|
|
o = old->u.bgp.suppressed;
|
|
|
|
if (n > o)
|
|
|
|
return 0;
|
|
|
|
if (n < o)
|
|
|
|
return 1;
|
|
|
|
|
2010-07-28 19:13:34 +08:00
|
|
|
/* RFC 4271 9.1.2.1. Route resolvability test */
|
2010-12-08 06:33:55 +08:00
|
|
|
n = rte_resolvable(new);
|
|
|
|
o = rte_resolvable(old);
|
2010-07-28 19:13:34 +08:00
|
|
|
if (n > o)
|
|
|
|
return 1;
|
|
|
|
if (n < o)
|
|
|
|
return 0;
|
|
|
|
|
2000-04-10 06:05:02 +08:00
|
|
|
/* Start with local preferences */
|
2000-04-17 20:46:07 +08:00
|
|
|
x = ea_find(new->attrs->eattrs, EA_CODE(EAP_BGP, BA_LOCAL_PREF));
|
|
|
|
y = ea_find(old->attrs->eattrs, EA_CODE(EAP_BGP, BA_LOCAL_PREF));
|
|
|
|
n = x ? x->u.data : new_bgp->cf->default_local_pref;
|
|
|
|
o = y ? y->u.data : old_bgp->cf->default_local_pref;
|
|
|
|
if (n > o)
|
|
|
|
return 1;
|
|
|
|
if (n < o)
|
|
|
|
return 0;
|
|
|
|
|
2008-10-27 05:45:09 +08:00
|
|
|
/* RFC 4271 9.1.2.2. a) Use AS path lengths */
|
2000-04-17 20:46:07 +08:00
|
|
|
if (new_bgp->cf->compare_path_lengths || old_bgp->cf->compare_path_lengths)
|
2000-04-10 06:05:02 +08:00
|
|
|
{
|
2000-04-17 20:46:07 +08:00
|
|
|
x = ea_find(new->attrs->eattrs, EA_CODE(EAP_BGP, BA_AS_PATH));
|
|
|
|
y = ea_find(old->attrs->eattrs, EA_CODE(EAP_BGP, BA_AS_PATH));
|
2008-10-27 05:36:08 +08:00
|
|
|
n = x ? as_path_getlen(x->u.ptr) : AS_PATH_MAXLEN;
|
|
|
|
o = y ? as_path_getlen(y->u.ptr) : AS_PATH_MAXLEN;
|
2000-04-17 20:46:07 +08:00
|
|
|
if (n < o)
|
2000-04-10 06:05:02 +08:00
|
|
|
return 1;
|
2000-04-17 20:46:07 +08:00
|
|
|
if (n > o)
|
2000-04-10 06:05:02 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-10-27 05:45:09 +08:00
|
|
|
/* RFC 4271 9.1.2.2. b) Use origins */
|
2000-04-17 20:46:07 +08:00
|
|
|
x = ea_find(new->attrs->eattrs, EA_CODE(EAP_BGP, BA_ORIGIN));
|
|
|
|
y = ea_find(old->attrs->eattrs, EA_CODE(EAP_BGP, BA_ORIGIN));
|
2000-04-28 23:13:29 +08:00
|
|
|
n = x ? x->u.data : ORIGIN_INCOMPLETE;
|
|
|
|
o = y ? y->u.data : ORIGIN_INCOMPLETE;
|
2000-04-17 20:46:07 +08:00
|
|
|
if (n < o)
|
|
|
|
return 1;
|
|
|
|
if (n > o)
|
|
|
|
return 0;
|
|
|
|
|
2008-10-27 05:45:09 +08:00
|
|
|
/* RFC 4271 9.1.2.2. c) Compare MED's */
|
2011-12-22 20:20:29 +08:00
|
|
|
/* Proper RFC 4271 path selection cannot be interpreted as finding
|
|
|
|
* the best path in some ordering. It is implemented partially in
|
|
|
|
* bgp_rte_recalculate() when deterministic_med option is
|
|
|
|
* active. Without that option, the behavior is just an
|
|
|
|
* approximation, which in specific situations may lead to
|
|
|
|
* persistent routing loops, because it is nondeterministic - it
|
|
|
|
* depends on the order in which routes appeared. But it is also the
|
|
|
|
* same behavior as used by default in Cisco routers, so it is
|
|
|
|
* probably not a big issue.
|
2011-04-22 22:13:27 +08:00
|
|
|
*/
|
|
|
|
if (new_bgp->cf->med_metric || old_bgp->cf->med_metric ||
|
|
|
|
(bgp_get_neighbor(new) == bgp_get_neighbor(old)))
|
2008-10-27 05:59:21 +08:00
|
|
|
{
|
|
|
|
x = ea_find(new->attrs->eattrs, EA_CODE(EAP_BGP, BA_MULTI_EXIT_DISC));
|
|
|
|
y = ea_find(old->attrs->eattrs, EA_CODE(EAP_BGP, BA_MULTI_EXIT_DISC));
|
|
|
|
n = x ? x->u.data : new_bgp->cf->default_med;
|
|
|
|
o = y ? y->u.data : old_bgp->cf->default_med;
|
|
|
|
if (n < o)
|
|
|
|
return 1;
|
|
|
|
if (n > o)
|
|
|
|
return 0;
|
|
|
|
}
|
2000-04-17 20:46:07 +08:00
|
|
|
|
2008-10-27 05:45:09 +08:00
|
|
|
/* RFC 4271 9.1.2.2. d) Prefer external peers */
|
2000-04-10 06:05:02 +08:00
|
|
|
if (new_bgp->is_internal > old_bgp->is_internal)
|
|
|
|
return 0;
|
|
|
|
if (new_bgp->is_internal < old_bgp->is_internal)
|
|
|
|
return 1;
|
|
|
|
|
2010-07-31 07:04:32 +08:00
|
|
|
/* RFC 4271 9.1.2.2. e) Compare IGP metrics */
|
|
|
|
n = new_bgp->cf->igp_metric ? new->attrs->igp_metric : 0;
|
|
|
|
o = old_bgp->cf->igp_metric ? old->attrs->igp_metric : 0;
|
|
|
|
if (n < o)
|
|
|
|
return 1;
|
|
|
|
if (n > o)
|
|
|
|
return 0;
|
2008-10-27 05:45:09 +08:00
|
|
|
|
|
|
|
/* RFC 4271 9.1.2.2. f) Compare BGP identifiers */
|
|
|
|
/* RFC 4456 9. a) Use ORIGINATOR_ID instead of local neighor ID */
|
|
|
|
x = ea_find(new->attrs->eattrs, EA_CODE(EAP_BGP, BA_ORIGINATOR_ID));
|
|
|
|
y = ea_find(old->attrs->eattrs, EA_CODE(EAP_BGP, BA_ORIGINATOR_ID));
|
|
|
|
n = x ? x->u.data : new_bgp->remote_id;
|
|
|
|
o = y ? y->u.data : old_bgp->remote_id;
|
2009-11-17 18:41:29 +08:00
|
|
|
|
|
|
|
/* RFC 5004 - prefer older routes */
|
|
|
|
/* (if both are external and from different peer) */
|
|
|
|
if ((new_bgp->cf->prefer_older || old_bgp->cf->prefer_older) &&
|
|
|
|
!new_bgp->is_internal && n != o)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
/* rest of RFC 4271 9.1.2.2. f) */
|
2008-10-27 05:45:09 +08:00
|
|
|
if (n < o)
|
|
|
|
return 1;
|
|
|
|
if (n > o)
|
|
|
|
return 0;
|
2008-10-27 05:36:08 +08:00
|
|
|
|
2010-02-26 21:09:24 +08:00
|
|
|
/* RFC 4456 9. b) Compare cluster list lengths */
|
|
|
|
x = ea_find(new->attrs->eattrs, EA_CODE(EAP_BGP, BA_CLUSTER_LIST));
|
|
|
|
y = ea_find(old->attrs->eattrs, EA_CODE(EAP_BGP, BA_CLUSTER_LIST));
|
|
|
|
n = x ? int_set_get_size(x->u.ptr) : 0;
|
|
|
|
o = y ? int_set_get_size(y->u.ptr) : 0;
|
|
|
|
if (n < o)
|
|
|
|
return 1;
|
|
|
|
if (n > o)
|
|
|
|
return 0;
|
|
|
|
|
2008-10-27 05:45:09 +08:00
|
|
|
/* RFC 4271 9.1.2.2. g) Compare peer IP adresses */
|
|
|
|
return (ipa_compare(new_bgp->cf->remote_ip, old_bgp->cf->remote_ip) < 0);
|
|
|
|
}
|
|
|
|
|
2011-12-22 20:20:29 +08:00
|
|
|
|
2015-06-08 08:20:43 +08:00
|
|
|
int
|
|
|
|
bgp_rte_mergable(rte *pri, rte *sec)
|
|
|
|
{
|
|
|
|
struct bgp_proto *pri_bgp = (struct bgp_proto *) pri->attrs->src->proto;
|
|
|
|
struct bgp_proto *sec_bgp = (struct bgp_proto *) sec->attrs->src->proto;
|
|
|
|
eattr *x, *y;
|
|
|
|
u32 p, s;
|
|
|
|
|
|
|
|
/* Skip suppressed routes (see bgp_rte_recalculate()) */
|
|
|
|
if (pri->u.bgp.suppressed != sec->u.bgp.suppressed)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
/* RFC 4271 9.1.2.1. Route resolvability test */
|
|
|
|
if (!rte_resolvable(sec))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
/* Start with local preferences */
|
|
|
|
x = ea_find(pri->attrs->eattrs, EA_CODE(EAP_BGP, BA_LOCAL_PREF));
|
|
|
|
y = ea_find(sec->attrs->eattrs, EA_CODE(EAP_BGP, BA_LOCAL_PREF));
|
|
|
|
p = x ? x->u.data : pri_bgp->cf->default_local_pref;
|
|
|
|
s = y ? y->u.data : sec_bgp->cf->default_local_pref;
|
|
|
|
if (p != s)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
/* RFC 4271 9.1.2.2. a) Use AS path lengths */
|
|
|
|
if (pri_bgp->cf->compare_path_lengths || sec_bgp->cf->compare_path_lengths)
|
|
|
|
{
|
|
|
|
x = ea_find(pri->attrs->eattrs, EA_CODE(EAP_BGP, BA_AS_PATH));
|
|
|
|
y = ea_find(sec->attrs->eattrs, EA_CODE(EAP_BGP, BA_AS_PATH));
|
|
|
|
p = x ? as_path_getlen(x->u.ptr) : AS_PATH_MAXLEN;
|
|
|
|
s = y ? as_path_getlen(y->u.ptr) : AS_PATH_MAXLEN;
|
|
|
|
|
|
|
|
if (p != s)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
// if (DELTA(p, s) > pri_bgp->cf->relax_multipath)
|
|
|
|
// return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* RFC 4271 9.1.2.2. b) Use origins */
|
|
|
|
x = ea_find(pri->attrs->eattrs, EA_CODE(EAP_BGP, BA_ORIGIN));
|
|
|
|
y = ea_find(sec->attrs->eattrs, EA_CODE(EAP_BGP, BA_ORIGIN));
|
|
|
|
p = x ? x->u.data : ORIGIN_INCOMPLETE;
|
|
|
|
s = y ? y->u.data : ORIGIN_INCOMPLETE;
|
|
|
|
if (p != s)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
/* RFC 4271 9.1.2.2. c) Compare MED's */
|
|
|
|
if (pri_bgp->cf->med_metric || sec_bgp->cf->med_metric ||
|
|
|
|
(bgp_get_neighbor(pri) == bgp_get_neighbor(sec)))
|
|
|
|
{
|
|
|
|
x = ea_find(pri->attrs->eattrs, EA_CODE(EAP_BGP, BA_MULTI_EXIT_DISC));
|
|
|
|
y = ea_find(sec->attrs->eattrs, EA_CODE(EAP_BGP, BA_MULTI_EXIT_DISC));
|
|
|
|
p = x ? x->u.data : pri_bgp->cf->default_med;
|
|
|
|
s = y ? y->u.data : sec_bgp->cf->default_med;
|
|
|
|
if (p != s)
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* RFC 4271 9.1.2.2. d) Prefer external peers */
|
|
|
|
if (pri_bgp->is_internal != sec_bgp->is_internal)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
/* RFC 4271 9.1.2.2. e) Compare IGP metrics */
|
|
|
|
p = pri_bgp->cf->igp_metric ? pri->attrs->igp_metric : 0;
|
|
|
|
s = sec_bgp->cf->igp_metric ? sec->attrs->igp_metric : 0;
|
|
|
|
if (p != s)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
/* Remaining criteria are ignored */
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2011-12-22 20:20:29 +08:00
|
|
|
static inline int
|
|
|
|
same_group(rte *r, u32 lpref, u32 lasn)
|
|
|
|
{
|
|
|
|
return (r->pref == lpref) && (bgp_get_neighbor(r) == lasn);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int
|
|
|
|
use_deterministic_med(rte *r)
|
|
|
|
{
|
2012-08-14 22:25:22 +08:00
|
|
|
struct proto *P = r->attrs->src->proto;
|
2012-07-05 03:31:03 +08:00
|
|
|
return (P->proto == &proto_bgp) && ((struct bgp_proto *) P)->cf->deterministic_med;
|
2011-12-22 20:20:29 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
bgp_rte_recalculate(rtable *table, net *net, rte *new, rte *old, rte *old_best)
|
|
|
|
{
|
|
|
|
rte *r, *s;
|
|
|
|
rte *key = new ? new : old;
|
|
|
|
u32 lpref = key->pref;
|
|
|
|
u32 lasn = bgp_get_neighbor(key);
|
|
|
|
int old_is_group_best = 0;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Proper RFC 4271 path selection is a bit complicated, it cannot be
|
|
|
|
* implemented just by rte_better(), because it is not a linear
|
|
|
|
* ordering. But it can be splitted to two levels, where the lower
|
|
|
|
* level chooses the best routes in each group of routes from the
|
|
|
|
* same neighboring AS and higher level chooses the best route (with
|
|
|
|
* a slightly different ordering) between the best-in-group routes.
|
|
|
|
*
|
|
|
|
* When deterministic_med is disabled, we just ignore this issue and
|
|
|
|
* choose the best route by bgp_rte_better() alone. If enabled, the
|
|
|
|
* lower level of the route selection is done here (for the group
|
|
|
|
* to which the changed route belongs), all routes in group are
|
|
|
|
* marked as suppressed, just chosen best-in-group is not.
|
|
|
|
*
|
|
|
|
* Global best route selection then implements higher level by
|
|
|
|
* choosing between non-suppressed routes (as they are always
|
|
|
|
* preferred over suppressed routes). Routes from BGP protocols
|
|
|
|
* that do not set deterministic_med are just never suppressed. As
|
|
|
|
* they do not participate in the lower level selection, it is OK
|
|
|
|
* that this fn is not called for them.
|
|
|
|
*
|
|
|
|
* The idea is simple, the implementation is more problematic,
|
|
|
|
* mostly because of optimizations in rte_recalculate() that
|
|
|
|
* avoids full recalculation in most cases.
|
|
|
|
*
|
|
|
|
* We can assume that at least one of new, old is non-NULL and both
|
|
|
|
* are from the same protocol with enabled deterministic_med. We
|
|
|
|
* group routes by both neighbor AS (lasn) and preference (lpref),
|
|
|
|
* because bgp_rte_better() does not handle preference itself.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* If new and old are from different groups, we just process that
|
|
|
|
as two independent events */
|
|
|
|
if (new && old && !same_group(old, lpref, lasn))
|
|
|
|
{
|
|
|
|
int i1, i2;
|
|
|
|
i1 = bgp_rte_recalculate(table, net, NULL, old, old_best);
|
|
|
|
i2 = bgp_rte_recalculate(table, net, new, NULL, old_best);
|
|
|
|
return i1 || i2;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* We could find the best-in-group and then make some shortcuts like
|
|
|
|
* in rte_recalculate, but as we would have to walk through all
|
|
|
|
* net->routes just to find it, it is probably not worth. So we
|
|
|
|
* just have two simpler fast cases that use just the old route.
|
|
|
|
* We also set suppressed flag to avoid using it in bgp_rte_better().
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (new)
|
|
|
|
new->u.bgp.suppressed = 1;
|
|
|
|
|
|
|
|
if (old)
|
|
|
|
{
|
|
|
|
old_is_group_best = !old->u.bgp.suppressed;
|
|
|
|
old->u.bgp.suppressed = 1;
|
|
|
|
int new_is_better = new && bgp_rte_better(new, old);
|
|
|
|
|
|
|
|
/* The first case - replace not best with worse (or remove not best) */
|
|
|
|
if (!old_is_group_best && !new_is_better)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
/* The second case - replace the best with better */
|
|
|
|
if (old_is_group_best && new_is_better)
|
|
|
|
{
|
|
|
|
/* new is best-in-group, the see discussion below - this is
|
|
|
|
a special variant of NBG && OBG. From OBG we can deduce
|
|
|
|
that same_group(old_best) iff (old == old_best) */
|
|
|
|
new->u.bgp.suppressed = 0;
|
|
|
|
return (old == old_best);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* The default case - find a new best-in-group route */
|
|
|
|
r = new; /* new may not be in the list */
|
2012-11-10 21:26:13 +08:00
|
|
|
for (s=net->routes; rte_is_valid(s); s=s->next)
|
2011-12-22 20:20:29 +08:00
|
|
|
if (use_deterministic_med(s) && same_group(s, lpref, lasn))
|
|
|
|
{
|
|
|
|
s->u.bgp.suppressed = 1;
|
|
|
|
if (!r || bgp_rte_better(s, r))
|
|
|
|
r = s;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Simple case - the last route in group disappears */
|
|
|
|
if (!r)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
/* Found best-in-group */
|
|
|
|
r->u.bgp.suppressed = 0;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* There are generally two reasons why we have to force
|
|
|
|
* recalculation (return 1): First, the new route may be wrongfully
|
|
|
|
* chosen to be the best in the first case check in
|
|
|
|
* rte_recalculate(), this may happen only if old_best is from the
|
|
|
|
* same group. Second, another (different than new route)
|
|
|
|
* best-in-group is chosen and that may be the proper best (although
|
|
|
|
* rte_recalculate() without ignore that possibility).
|
|
|
|
*
|
|
|
|
* There are three possible cases according to whether the old route
|
|
|
|
* was the best in group (OBG, stored in old_is_group_best) and
|
|
|
|
* whether the new route is the best in group (NBG, tested by r == new).
|
|
|
|
* These cases work even if old or new is NULL.
|
|
|
|
*
|
|
|
|
* NBG -> new is a possible candidate for the best route, so we just
|
|
|
|
* check for the first reason using same_group().
|
|
|
|
*
|
|
|
|
* !NBG && OBG -> Second reason applies, return 1
|
|
|
|
*
|
|
|
|
* !NBG && !OBG -> Best in group does not change, old != old_best,
|
|
|
|
* rte_better(new, old_best) is false and therefore
|
|
|
|
* the first reason does not apply, return 0
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (r == new)
|
|
|
|
return old_best && same_group(old_best, lpref, lasn);
|
|
|
|
else
|
|
|
|
return old_is_group_best;
|
|
|
|
}
|
|
|
|
|
2008-10-27 05:36:08 +08:00
|
|
|
static struct adata *
|
|
|
|
bgp_aggregator_convert_to_new(struct adata *old, struct linpool *pool)
|
|
|
|
{
|
|
|
|
struct adata *newa = lp_alloc(pool, sizeof(struct adata) + 8);
|
|
|
|
newa->length = 8;
|
|
|
|
aggregator_convert_to_new(old, newa->data);
|
|
|
|
return newa;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Take last req_as ASNs from path old2 (in 2B format), convert to 4B format
|
|
|
|
* and append path old4 (in 4B format).
|
|
|
|
*/
|
|
|
|
static struct adata *
|
|
|
|
bgp_merge_as_paths(struct adata *old2, struct adata *old4, int req_as, struct linpool *pool)
|
|
|
|
{
|
|
|
|
byte buf[old2->length * 2];
|
|
|
|
|
|
|
|
int ol = as_path_convert_to_new(old2, buf, req_as);
|
|
|
|
int nl = ol + (old4 ? old4->length : 0);
|
2000-04-10 06:05:02 +08:00
|
|
|
|
2008-10-27 05:36:08 +08:00
|
|
|
struct adata *newa = lp_alloc(pool, sizeof(struct adata) + nl);
|
|
|
|
newa->length = nl;
|
|
|
|
memcpy(newa->data, buf, ol);
|
|
|
|
if (old4) memcpy(newa->data + ol, old4->data, old4->length);
|
|
|
|
|
|
|
|
return newa;
|
|
|
|
}
|
|
|
|
|
2009-03-19 03:30:21 +08:00
|
|
|
static int
|
|
|
|
as4_aggregator_valid(struct adata *aggr)
|
|
|
|
{
|
2011-03-30 07:09:18 +08:00
|
|
|
return aggr->length == 8;
|
2009-03-19 03:30:21 +08:00
|
|
|
}
|
|
|
|
|
2008-10-27 05:36:08 +08:00
|
|
|
|
2008-10-27 05:45:09 +08:00
|
|
|
/* Reconstruct 4B AS_PATH and AGGREGATOR according to RFC 4893 4.2.3 */
|
2008-10-27 05:36:08 +08:00
|
|
|
static void
|
|
|
|
bgp_reconstruct_4b_atts(struct bgp_proto *p, rta *a, struct linpool *pool)
|
|
|
|
{
|
|
|
|
eattr *p2 =ea_find(a->eattrs, EA_CODE(EAP_BGP, BA_AS_PATH));
|
|
|
|
eattr *p4 =ea_find(a->eattrs, EA_CODE(EAP_BGP, BA_AS4_PATH));
|
|
|
|
eattr *a2 =ea_find(a->eattrs, EA_CODE(EAP_BGP, BA_AGGREGATOR));
|
|
|
|
eattr *a4 =ea_find(a->eattrs, EA_CODE(EAP_BGP, BA_AS4_AGGREGATOR));
|
2009-03-19 03:30:21 +08:00
|
|
|
int a4_removed = 0;
|
|
|
|
|
|
|
|
if (a4 && !as4_aggregator_valid(a4->u.ptr))
|
|
|
|
{
|
2009-06-23 16:50:57 +08:00
|
|
|
log(L_WARN "%s: AS4_AGGREGATOR attribute is invalid, skipping attribute", p->p.name);
|
2009-03-19 03:30:21 +08:00
|
|
|
a4 = NULL;
|
|
|
|
a4_removed = 1;
|
|
|
|
}
|
2008-10-27 05:36:08 +08:00
|
|
|
|
|
|
|
if (a2)
|
2000-04-10 06:05:02 +08:00
|
|
|
{
|
2008-10-27 05:36:08 +08:00
|
|
|
u32 a2_as = get_u16(a2->u.ptr->data);
|
|
|
|
|
|
|
|
if (a4)
|
2000-04-10 06:05:02 +08:00
|
|
|
{
|
2008-10-27 05:36:08 +08:00
|
|
|
if (a2_as != AS_TRANS)
|
|
|
|
{
|
|
|
|
/* Routes were aggregated by old router and therefore AS4_PATH
|
|
|
|
* and AS4_AGGREGATOR is invalid
|
|
|
|
*
|
|
|
|
* Convert AS_PATH and AGGREGATOR to 4B format and finish.
|
|
|
|
*/
|
|
|
|
|
|
|
|
a2->u.ptr = bgp_aggregator_convert_to_new(a2->u.ptr, pool);
|
|
|
|
p2->u.ptr = bgp_merge_as_paths(p2->u.ptr, NULL, AS_PATH_MAXLEN, pool);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Common case, use AS4_AGGREGATOR attribute */
|
|
|
|
a2->u.ptr = a4->u.ptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Common case, use old AGGREGATOR attribute */
|
|
|
|
a2->u.ptr = bgp_aggregator_convert_to_new(a2->u.ptr, pool);
|
|
|
|
|
2009-03-19 03:30:21 +08:00
|
|
|
if ((a2_as == AS_TRANS) && !a4_removed)
|
2009-06-23 16:50:57 +08:00
|
|
|
log(L_WARN "%s: AGGREGATOR attribute contain AS_TRANS, but AS4_AGGREGATOR is missing", p->p.name);
|
2000-04-10 06:05:02 +08:00
|
|
|
}
|
|
|
|
}
|
2008-10-27 05:36:08 +08:00
|
|
|
else
|
|
|
|
if (a4)
|
2009-06-23 16:50:57 +08:00
|
|
|
log(L_WARN "%s: AS4_AGGREGATOR attribute received, but AGGREGATOR attribute is missing", p->p.name);
|
2008-10-27 05:36:08 +08:00
|
|
|
|
2009-08-26 01:01:37 +08:00
|
|
|
int p2_len = as_path_getlen_int(p2->u.ptr, 2);
|
2009-06-23 16:50:57 +08:00
|
|
|
int p4_len = p4 ? validate_as4_path(p, p4->u.ptr) : -1;
|
|
|
|
|
|
|
|
if (p4 && (p4_len < 0))
|
|
|
|
log(L_WARN "%s: AS4_PATH attribute is malformed, skipping attribute", p->p.name);
|
2008-10-27 05:36:08 +08:00
|
|
|
|
2009-03-19 03:30:21 +08:00
|
|
|
if ((p4_len <= 0) || (p2_len < p4_len))
|
2008-10-27 05:36:08 +08:00
|
|
|
p2->u.ptr = bgp_merge_as_paths(p2->u.ptr, NULL, AS_PATH_MAXLEN, pool);
|
|
|
|
else
|
|
|
|
p2->u.ptr = bgp_merge_as_paths(p2->u.ptr, p4->u.ptr, p2_len - p4_len, pool);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
bgp_remove_as4_attrs(struct bgp_proto *p, rta *a)
|
|
|
|
{
|
|
|
|
unsigned id1 = EA_CODE(EAP_BGP, BA_AS4_PATH);
|
|
|
|
unsigned id2 = EA_CODE(EAP_BGP, BA_AS4_AGGREGATOR);
|
|
|
|
ea_list **el = &(a->eattrs);
|
|
|
|
|
2009-06-23 16:50:57 +08:00
|
|
|
/* We know that ea_lists constructed in bgp_decode attrs have one attribute per ea_list struct */
|
2008-10-27 05:36:08 +08:00
|
|
|
while (*el != NULL)
|
|
|
|
{
|
|
|
|
unsigned fid = (*el)->attrs[0].id;
|
|
|
|
|
|
|
|
if ((fid == id1) || (fid == id2))
|
|
|
|
{
|
|
|
|
*el = (*el)->next;
|
2008-10-27 05:48:02 +08:00
|
|
|
if (p->as4_session)
|
2011-03-30 07:09:18 +08:00
|
|
|
log(L_WARN "%s: Unexpected AS4_* attributes received", p->p.name);
|
2008-10-27 05:36:08 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
el = &((*el)->next);
|
|
|
|
}
|
2000-04-10 06:05:02 +08:00
|
|
|
}
|
|
|
|
|
2000-06-05 01:06:18 +08:00
|
|
|
/**
|
|
|
|
* bgp_decode_attrs - check and decode BGP attributes
|
|
|
|
* @conn: connection
|
|
|
|
* @attr: start of attribute block
|
|
|
|
* @len: length of attribute block
|
|
|
|
* @pool: linear pool to make all the allocations in
|
|
|
|
* @mandatory: 1 iff presence of mandatory attributes has to be checked
|
|
|
|
*
|
|
|
|
* This function takes a BGP attribute block (a part of an Update message), checks
|
|
|
|
* its consistency and converts it to a list of BIRD route attributes represented
|
|
|
|
* by a &rta.
|
|
|
|
*/
|
2000-04-01 07:21:37 +08:00
|
|
|
struct rta *
|
2015-05-19 14:53:34 +08:00
|
|
|
bgp_decode_attrs(struct bgp_conn *conn, byte *attr, uint len, struct linpool *pool, int mandatory)
|
2000-04-01 07:21:37 +08:00
|
|
|
{
|
|
|
|
struct bgp_proto *bgp = conn->bgp;
|
|
|
|
rta *a = lp_alloc(pool, sizeof(struct rta));
|
2015-05-19 14:53:34 +08:00
|
|
|
uint flags, code, l, i, type;
|
2000-04-10 06:05:02 +08:00
|
|
|
int errcode;
|
2000-04-01 07:21:37 +08:00
|
|
|
byte *z, *attr_start;
|
|
|
|
byte seen[256/8];
|
|
|
|
ea_list *ea;
|
|
|
|
struct adata *ad;
|
2011-03-30 07:09:18 +08:00
|
|
|
int withdraw = 0;
|
2000-04-01 07:21:37 +08:00
|
|
|
|
2010-07-05 23:50:19 +08:00
|
|
|
bzero(a, sizeof(rta));
|
2000-04-01 07:21:37 +08:00
|
|
|
a->source = RTS_BGP;
|
|
|
|
a->scope = SCOPE_UNIVERSE;
|
|
|
|
a->cast = RTC_UNICAST;
|
2010-07-05 23:50:19 +08:00
|
|
|
/* a->dest = RTD_ROUTER; -- set in bgp_set_next_hop() */
|
2000-04-01 07:21:37 +08:00
|
|
|
a->from = bgp->cf->remote_ip;
|
|
|
|
|
|
|
|
/* Parse the attributes */
|
|
|
|
bzero(seen, sizeof(seen));
|
|
|
|
DBG("BGP: Parsing attributes\n");
|
|
|
|
while (len)
|
|
|
|
{
|
|
|
|
if (len < 2)
|
|
|
|
goto malformed;
|
|
|
|
attr_start = attr;
|
|
|
|
flags = *attr++;
|
|
|
|
code = *attr++;
|
|
|
|
len -= 2;
|
|
|
|
if (flags & BAF_EXT_LEN)
|
|
|
|
{
|
|
|
|
if (len < 2)
|
|
|
|
goto malformed;
|
|
|
|
l = get_u16(attr);
|
|
|
|
attr += 2;
|
|
|
|
len -= 2;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (len < 1)
|
|
|
|
goto malformed;
|
|
|
|
l = *attr++;
|
|
|
|
len--;
|
|
|
|
}
|
|
|
|
if (l > len)
|
|
|
|
goto malformed;
|
|
|
|
len -= l;
|
|
|
|
z = attr;
|
|
|
|
attr += l;
|
|
|
|
DBG("Attr %02x %02x %d\n", code, flags, l);
|
|
|
|
if (seen[code/8] & (1 << (code%8)))
|
|
|
|
goto malformed;
|
2000-05-02 20:51:39 +08:00
|
|
|
if (ATTR_KNOWN(code))
|
2000-04-01 07:21:37 +08:00
|
|
|
{
|
|
|
|
struct attr_desc *desc = &bgp_attr_table[code];
|
|
|
|
if (desc->expected_length >= 0 && desc->expected_length != (int) l)
|
|
|
|
{ errcode = 5; goto err; }
|
|
|
|
if ((desc->expected_flags ^ flags) & (BAF_OPTIONAL | BAF_TRANSITIVE))
|
|
|
|
{ errcode = 4; goto err; }
|
2017-02-23 23:32:07 +08:00
|
|
|
if (!bgp->is_internal)
|
|
|
|
{
|
|
|
|
if (!desc->allow_in_ebgp)
|
|
|
|
continue;
|
|
|
|
if ((code == BA_LOCAL_PREF) && !bgp->cf->allow_local_pref)
|
|
|
|
continue;
|
|
|
|
}
|
2000-04-10 06:05:02 +08:00
|
|
|
if (desc->validate)
|
|
|
|
{
|
|
|
|
errcode = desc->validate(bgp, z, l);
|
|
|
|
if (errcode > 0)
|
|
|
|
goto err;
|
2011-03-30 07:09:18 +08:00
|
|
|
if (errcode == IGNORE)
|
2000-04-10 06:05:02 +08:00
|
|
|
continue;
|
2011-03-30 07:09:18 +08:00
|
|
|
if (errcode <= WITHDRAW)
|
|
|
|
{
|
|
|
|
log(L_WARN "%s: Attribute %s is malformed, withdrawing update",
|
|
|
|
bgp->p.name, desc->name);
|
|
|
|
withdraw = 1;
|
|
|
|
}
|
2000-04-10 06:05:02 +08:00
|
|
|
}
|
2009-06-23 16:50:57 +08:00
|
|
|
else if (code == BA_AS_PATH)
|
|
|
|
{
|
|
|
|
/* Special case as it might also trim the attribute */
|
|
|
|
if (validate_as_path(bgp, z, &l) < 0)
|
|
|
|
{ errcode = 11; goto err; }
|
|
|
|
}
|
2000-04-01 07:21:37 +08:00
|
|
|
type = desc->type;
|
|
|
|
}
|
|
|
|
else /* Unknown attribute */
|
2000-04-17 19:25:15 +08:00
|
|
|
{
|
2000-04-01 07:21:37 +08:00
|
|
|
if (!(flags & BAF_OPTIONAL))
|
|
|
|
{ errcode = 2; goto err; }
|
|
|
|
type = EAF_TYPE_OPAQUE;
|
|
|
|
}
|
2009-06-23 16:50:57 +08:00
|
|
|
|
|
|
|
// Only OPTIONAL and TRANSITIVE attributes may have non-zero PARTIAL flag
|
|
|
|
// if (!((flags & BAF_OPTIONAL) && (flags & BAF_TRANSITIVE)) && (flags & BAF_PARTIAL))
|
|
|
|
// { errcode = 4; goto err; }
|
|
|
|
|
2000-04-10 06:05:02 +08:00
|
|
|
seen[code/8] |= (1 << (code%8));
|
|
|
|
ea = lp_alloc(pool, sizeof(ea_list) + sizeof(eattr));
|
2000-04-01 07:21:37 +08:00
|
|
|
ea->next = a->eattrs;
|
|
|
|
a->eattrs = ea;
|
|
|
|
ea->flags = 0;
|
|
|
|
ea->count = 1;
|
|
|
|
ea->attrs[0].id = EA_CODE(EAP_BGP, code);
|
|
|
|
ea->attrs[0].flags = flags;
|
|
|
|
ea->attrs[0].type = type;
|
|
|
|
if (type & EAF_EMBEDDED)
|
|
|
|
ad = NULL;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ad = lp_alloc(pool, sizeof(struct adata) + l);
|
|
|
|
ea->attrs[0].u.ptr = ad;
|
|
|
|
ad->length = l;
|
|
|
|
memcpy(ad->data, z, l);
|
|
|
|
}
|
|
|
|
switch (type)
|
|
|
|
{
|
|
|
|
case EAF_TYPE_ROUTER_ID:
|
|
|
|
case EAF_TYPE_INT:
|
2000-04-01 18:21:11 +08:00
|
|
|
if (l == 1)
|
|
|
|
ea->attrs[0].u.data = *z;
|
|
|
|
else
|
|
|
|
ea->attrs[0].u.data = get_u32(z);
|
2000-04-01 07:21:37 +08:00
|
|
|
break;
|
|
|
|
case EAF_TYPE_IP_ADDRESS:
|
2000-04-17 17:37:31 +08:00
|
|
|
ipa_ntoh(*(ip_addr *)ad->data);
|
2000-04-01 07:21:37 +08:00
|
|
|
break;
|
2000-04-17 18:19:15 +08:00
|
|
|
case EAF_TYPE_INT_SET:
|
2016-10-01 18:50:29 +08:00
|
|
|
case EAF_TYPE_LC_SET:
|
2011-08-13 03:03:43 +08:00
|
|
|
case EAF_TYPE_EC_SET:
|
2000-04-17 18:19:15 +08:00
|
|
|
{
|
|
|
|
u32 *z = (u32 *) ad->data;
|
|
|
|
for(i=0; i<ad->length/4; i++)
|
|
|
|
z[i] = ntohl(z[i]);
|
|
|
|
break;
|
|
|
|
}
|
2000-04-01 07:21:37 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-03-30 07:09:18 +08:00
|
|
|
if (withdraw)
|
|
|
|
goto withdraw;
|
|
|
|
|
2000-05-04 17:03:31 +08:00
|
|
|
#ifdef IPV6
|
2009-04-23 20:44:02 +08:00
|
|
|
/* If we received MP_REACH_NLRI we should check mandatory attributes */
|
|
|
|
if (bgp->mp_reach_len != 0)
|
2000-05-04 17:03:31 +08:00
|
|
|
mandatory = 1;
|
|
|
|
#endif
|
|
|
|
|
2009-04-23 18:36:24 +08:00
|
|
|
/* If there is no (reachability) NLRI, we should exit now */
|
|
|
|
if (! mandatory)
|
|
|
|
return a;
|
|
|
|
|
2000-04-01 07:21:37 +08:00
|
|
|
/* Check if all mandatory attributes are present */
|
2009-04-23 18:36:24 +08:00
|
|
|
for(i=0; i < ARRAY_SIZE(bgp_mandatory_attrs); i++)
|
2000-04-01 07:21:37 +08:00
|
|
|
{
|
2009-04-23 18:36:24 +08:00
|
|
|
code = bgp_mandatory_attrs[i];
|
|
|
|
if (!(seen[code/8] & (1 << (code%8))))
|
2000-04-01 07:21:37 +08:00
|
|
|
{
|
2009-04-23 18:36:24 +08:00
|
|
|
bgp_error(conn, 3, 3, &bgp_mandatory_attrs[i], 1);
|
|
|
|
return NULL;
|
2000-04-01 07:21:37 +08:00
|
|
|
}
|
|
|
|
}
|
2009-04-23 20:44:02 +08:00
|
|
|
|
2008-10-27 05:36:08 +08:00
|
|
|
/* When receiving attributes from non-AS4-aware BGP speaker,
|
|
|
|
* we have to reconstruct 4B AS_PATH and AGGREGATOR attributes
|
|
|
|
*/
|
2009-12-15 06:31:25 +08:00
|
|
|
if (! bgp->as4_session)
|
2008-10-27 05:36:08 +08:00
|
|
|
bgp_reconstruct_4b_atts(bgp, a, pool);
|
|
|
|
|
2009-12-15 06:31:25 +08:00
|
|
|
bgp_remove_as4_attrs(bgp, a);
|
2000-04-01 07:21:37 +08:00
|
|
|
|
2000-04-10 06:05:02 +08:00
|
|
|
/* If the AS path attribute contains our AS, reject the routes */
|
2008-10-27 05:45:09 +08:00
|
|
|
if (bgp_as_path_loopy(bgp, a))
|
2011-03-30 07:09:18 +08:00
|
|
|
goto withdraw;
|
2008-10-27 05:45:09 +08:00
|
|
|
|
|
|
|
/* Two checks for IBGP loops caused by route reflection, RFC 4456 */
|
|
|
|
if (bgp_originator_id_loopy(bgp, a) ||
|
|
|
|
bgp_cluster_list_loopy(bgp, a))
|
2011-03-30 07:09:18 +08:00
|
|
|
goto withdraw;
|
2000-04-10 06:05:02 +08:00
|
|
|
|
2000-04-21 21:01:28 +08:00
|
|
|
/* If there's no local preference, define one */
|
2008-10-27 05:54:23 +08:00
|
|
|
if (!(seen[0] & (1 << BA_LOCAL_PREF)))
|
2009-12-21 18:50:42 +08:00
|
|
|
bgp_attach_attr(&a->eattrs, pool, BA_LOCAL_PREF, bgp->cf->default_local_pref);
|
2009-04-23 20:44:02 +08:00
|
|
|
|
2000-04-21 20:25:35 +08:00
|
|
|
return a;
|
2000-04-01 07:21:37 +08:00
|
|
|
|
2011-03-30 07:09:18 +08:00
|
|
|
withdraw:
|
2008-10-27 05:45:09 +08:00
|
|
|
return NULL;
|
|
|
|
|
2000-04-01 07:21:37 +08:00
|
|
|
malformed:
|
2000-04-26 05:13:25 +08:00
|
|
|
bgp_error(conn, 3, 1, NULL, 0);
|
2000-04-01 07:21:37 +08:00
|
|
|
return NULL;
|
|
|
|
|
|
|
|
err:
|
2000-05-11 20:20:07 +08:00
|
|
|
bgp_error(conn, 3, errcode, attr_start, z+l-attr_start);
|
2000-04-01 07:21:37 +08:00
|
|
|
return NULL;
|
|
|
|
}
|
2000-04-01 18:21:11 +08:00
|
|
|
|
|
|
|
int
|
2008-11-09 06:33:22 +08:00
|
|
|
bgp_get_attr(eattr *a, byte *buf, int buflen)
|
2000-04-01 18:21:11 +08:00
|
|
|
{
|
2015-05-19 14:53:34 +08:00
|
|
|
uint i = EA_ID(a->id);
|
2000-04-01 18:21:11 +08:00
|
|
|
struct attr_desc *d;
|
2011-09-04 03:59:40 +08:00
|
|
|
int len;
|
2000-04-01 18:21:11 +08:00
|
|
|
|
2000-05-02 20:51:39 +08:00
|
|
|
if (ATTR_KNOWN(i))
|
2000-04-01 18:21:11 +08:00
|
|
|
{
|
|
|
|
d = &bgp_attr_table[i];
|
2011-09-04 03:59:40 +08:00
|
|
|
len = bsprintf(buf, "%s", d->name);
|
|
|
|
buf += len;
|
2000-04-01 18:21:11 +08:00
|
|
|
if (d->format)
|
|
|
|
{
|
|
|
|
*buf++ = ':';
|
|
|
|
*buf++ = ' ';
|
2011-09-04 03:59:40 +08:00
|
|
|
d->format(a, buf, buflen - len - 2);
|
2000-04-01 18:21:11 +08:00
|
|
|
return GA_FULL;
|
|
|
|
}
|
|
|
|
return GA_NAME;
|
|
|
|
}
|
2000-05-02 20:51:39 +08:00
|
|
|
bsprintf(buf, "%02x%s", i, (a->flags & BAF_TRANSITIVE) ? " [t]" : "");
|
2000-04-01 18:21:11 +08:00
|
|
|
return GA_NAME;
|
|
|
|
}
|
2000-04-10 20:39:51 +08:00
|
|
|
|
|
|
|
void
|
2012-08-14 22:25:22 +08:00
|
|
|
bgp_init_bucket_table(struct bgp_proto *p)
|
2000-04-10 20:39:51 +08:00
|
|
|
{
|
|
|
|
p->hash_size = 256;
|
|
|
|
p->hash_limit = p->hash_size * 4;
|
2000-04-12 22:09:26 +08:00
|
|
|
p->bucket_hash = mb_allocz(p->p.pool, p->hash_size * sizeof(struct bgp_bucket *));
|
|
|
|
init_list(&p->bucket_queue);
|
|
|
|
p->withdraw_bucket = NULL;
|
2012-08-14 22:25:22 +08:00
|
|
|
// fib_init(&p->prefix_fib, p->p.pool, sizeof(struct bgp_prefix), 0, bgp_init_prefix);
|
2000-04-10 20:39:51 +08:00
|
|
|
}
|
2000-05-19 19:01:41 +08:00
|
|
|
|
2016-11-25 18:51:38 +08:00
|
|
|
void
|
|
|
|
bgp_free_bucket_table(struct bgp_proto *p)
|
|
|
|
{
|
|
|
|
mb_free(p->bucket_hash);
|
|
|
|
p->bucket_hash = NULL;
|
|
|
|
|
|
|
|
struct bgp_bucket *b;
|
|
|
|
WALK_LIST_FIRST(b, p->bucket_queue)
|
|
|
|
{
|
|
|
|
rem_node(&b->send_node);
|
|
|
|
mb_free(b);
|
|
|
|
}
|
|
|
|
|
|
|
|
mb_free(p->withdraw_bucket);
|
|
|
|
p->withdraw_bucket = NULL;
|
|
|
|
}
|
|
|
|
|
2000-05-19 19:01:41 +08:00
|
|
|
void
|
|
|
|
bgp_get_route_info(rte *e, byte *buf, ea_list *attrs)
|
|
|
|
{
|
|
|
|
eattr *p = ea_find(attrs, EA_CODE(EAP_BGP, BA_AS_PATH));
|
|
|
|
eattr *o = ea_find(attrs, EA_CODE(EAP_BGP, BA_ORIGIN));
|
2008-10-27 05:36:08 +08:00
|
|
|
u32 origas;
|
2000-05-19 19:01:41 +08:00
|
|
|
|
2012-01-20 23:20:03 +08:00
|
|
|
buf += bsprintf(buf, " (%d", e->pref);
|
|
|
|
|
2011-12-22 20:20:29 +08:00
|
|
|
if (e->u.bgp.suppressed)
|
2012-01-20 23:20:03 +08:00
|
|
|
buf += bsprintf(buf, "-");
|
2011-12-22 20:20:29 +08:00
|
|
|
|
2010-07-31 07:04:32 +08:00
|
|
|
if (e->attrs->hostentry)
|
|
|
|
{
|
2010-12-08 06:33:55 +08:00
|
|
|
if (!rte_resolvable(e))
|
2010-07-31 07:04:32 +08:00
|
|
|
buf += bsprintf(buf, "/-");
|
|
|
|
else if (e->attrs->igp_metric >= IGP_METRIC_UNKNOWN)
|
|
|
|
buf += bsprintf(buf, "/?");
|
|
|
|
else
|
|
|
|
buf += bsprintf(buf, "/%d", e->attrs->igp_metric);
|
|
|
|
}
|
|
|
|
buf += bsprintf(buf, ") [");
|
|
|
|
|
2009-10-13 02:44:58 +08:00
|
|
|
if (p && as_path_get_last(p->u.ptr, &origas))
|
2008-10-27 05:36:08 +08:00
|
|
|
buf += bsprintf(buf, "AS%u", origas);
|
2000-05-19 19:01:41 +08:00
|
|
|
if (o)
|
|
|
|
buf += bsprintf(buf, "%c", "ie?"[o->u.data]);
|
|
|
|
strcpy(buf, "]");
|
|
|
|
}
|