paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1 | /* BGP attributes management routines. |
| 2 | Copyright (C) 1996, 97, 98, 1999 Kunihiro Ishiguro |
| 3 | |
| 4 | This file is part of GNU Zebra. |
| 5 | |
| 6 | GNU Zebra is free software; you can redistribute it and/or modify it |
| 7 | under the terms of the GNU General Public License as published by the |
| 8 | Free Software Foundation; either version 2, or (at your option) any |
| 9 | later version. |
| 10 | |
| 11 | GNU Zebra is distributed in the hope that it will be useful, but |
| 12 | WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 14 | General Public License for more details. |
| 15 | |
| 16 | You should have received a copy of the GNU General Public License |
| 17 | along with GNU Zebra; see the file COPYING. If not, write to the Free |
| 18 | Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA |
| 19 | 02111-1307, USA. */ |
| 20 | |
| 21 | #include <zebra.h> |
| 22 | |
| 23 | #include "linklist.h" |
| 24 | #include "prefix.h" |
| 25 | #include "memory.h" |
| 26 | #include "vector.h" |
| 27 | #include "vty.h" |
| 28 | #include "stream.h" |
| 29 | #include "log.h" |
| 30 | #include "hash.h" |
Stephen Hemminger | c8e7b89 | 2010-08-27 14:12:54 -0700 | [diff] [blame] | 31 | #include "jhash.h" |
Donald Sharp | 0490729 | 2016-01-07 10:03:01 -0500 | [diff] [blame] | 32 | #include "filter.h" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 33 | |
| 34 | #include "bgpd/bgpd.h" |
| 35 | #include "bgpd/bgp_attr.h" |
| 36 | #include "bgpd/bgp_route.h" |
| 37 | #include "bgpd/bgp_aspath.h" |
| 38 | #include "bgpd/bgp_community.h" |
| 39 | #include "bgpd/bgp_debug.h" |
| 40 | #include "bgpd/bgp_packet.h" |
| 41 | #include "bgpd/bgp_ecommunity.h" |
Lou Berger | c374178 | 2016-01-12 13:42:01 -0500 | [diff] [blame] | 42 | #include "table.h" |
| 43 | #include "bgp_encap_types.h" |
David Lamparter | 6b0655a | 2014-06-04 06:53:35 +0200 | [diff] [blame] | 44 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 45 | /* Attribute strings for logging. */ |
Stephen Hemminger | 9bddac4 | 2009-05-15 09:59:51 -0700 | [diff] [blame] | 46 | static const struct message attr_str [] = |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 47 | { |
| 48 | { BGP_ATTR_ORIGIN, "ORIGIN" }, |
| 49 | { BGP_ATTR_AS_PATH, "AS_PATH" }, |
| 50 | { BGP_ATTR_NEXT_HOP, "NEXT_HOP" }, |
| 51 | { BGP_ATTR_MULTI_EXIT_DISC, "MULTI_EXIT_DISC" }, |
| 52 | { BGP_ATTR_LOCAL_PREF, "LOCAL_PREF" }, |
| 53 | { BGP_ATTR_ATOMIC_AGGREGATE, "ATOMIC_AGGREGATE" }, |
| 54 | { BGP_ATTR_AGGREGATOR, "AGGREGATOR" }, |
| 55 | { BGP_ATTR_COMMUNITIES, "COMMUNITY" }, |
| 56 | { BGP_ATTR_ORIGINATOR_ID, "ORIGINATOR_ID" }, |
Denis Ovsienko | f8627ff | 2011-10-10 16:52:20 +0400 | [diff] [blame] | 57 | { BGP_ATTR_CLUSTER_LIST, "CLUSTER_LIST" }, |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 58 | { BGP_ATTR_DPA, "DPA" }, |
| 59 | { BGP_ATTR_ADVERTISER, "ADVERTISER"} , |
| 60 | { BGP_ATTR_RCID_PATH, "RCID_PATH" }, |
| 61 | { BGP_ATTR_MP_REACH_NLRI, "MP_REACH_NLRI" }, |
| 62 | { BGP_ATTR_MP_UNREACH_NLRI, "MP_UNREACH_NLRI" }, |
Paul Jakma | 0b2aa3a | 2007-10-14 22:32:21 +0000 | [diff] [blame] | 63 | { BGP_ATTR_EXT_COMMUNITIES, "EXT_COMMUNITIES" }, |
| 64 | { BGP_ATTR_AS4_PATH, "AS4_PATH" }, |
| 65 | { BGP_ATTR_AS4_AGGREGATOR, "AS4_AGGREGATOR" }, |
| 66 | { BGP_ATTR_AS_PATHLIMIT, "AS_PATHLIMIT" }, |
Lou Berger | c374178 | 2016-01-12 13:42:01 -0500 | [diff] [blame] | 67 | { BGP_ATTR_ENCAP, "ENCAP" }, |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 68 | }; |
Balaji.G | 837d16c | 2012-09-26 14:09:10 +0530 | [diff] [blame] | 69 | static const int attr_str_max = array_size(attr_str); |
Denis Ovsienko | afcb767 | 2011-10-23 22:32:44 +0400 | [diff] [blame] | 70 | |
| 71 | static const struct message attr_flag_str[] = |
| 72 | { |
| 73 | { BGP_ATTR_FLAG_OPTIONAL, "Optional" }, |
| 74 | { BGP_ATTR_FLAG_TRANS, "Transitive" }, |
| 75 | { BGP_ATTR_FLAG_PARTIAL, "Partial" }, |
| 76 | /* bgp_attr_flags_diagnose() relies on this bit being last in this list */ |
| 77 | { BGP_ATTR_FLAG_EXTLEN, "Extended Length" }, |
| 78 | }; |
David Lamparter | 6b0655a | 2014-06-04 06:53:35 +0200 | [diff] [blame] | 79 | |
Stephen Hemminger | 9bddac4 | 2009-05-15 09:59:51 -0700 | [diff] [blame] | 80 | static struct hash *cluster_hash; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 81 | |
paul | 94f2b39 | 2005-06-28 12:44:16 +0000 | [diff] [blame] | 82 | static void * |
Paul Jakma | 923de65 | 2007-04-29 18:25:17 +0000 | [diff] [blame] | 83 | cluster_hash_alloc (void *p) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 84 | { |
Paul Jakma | 923de65 | 2007-04-29 18:25:17 +0000 | [diff] [blame] | 85 | struct cluster_list * val = (struct cluster_list *) p; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 86 | struct cluster_list *cluster; |
| 87 | |
| 88 | cluster = XMALLOC (MTYPE_CLUSTER, sizeof (struct cluster_list)); |
| 89 | cluster->length = val->length; |
| 90 | |
| 91 | if (cluster->length) |
| 92 | { |
| 93 | cluster->list = XMALLOC (MTYPE_CLUSTER_VAL, val->length); |
| 94 | memcpy (cluster->list, val->list, val->length); |
| 95 | } |
| 96 | else |
| 97 | cluster->list = NULL; |
| 98 | |
| 99 | cluster->refcnt = 0; |
| 100 | |
| 101 | return cluster; |
| 102 | } |
| 103 | |
| 104 | /* Cluster list related functions. */ |
paul | 94f2b39 | 2005-06-28 12:44:16 +0000 | [diff] [blame] | 105 | static struct cluster_list * |
paul | 5228ad2 | 2004-06-04 17:58:18 +0000 | [diff] [blame] | 106 | cluster_parse (struct in_addr * pnt, int length) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 107 | { |
| 108 | struct cluster_list tmp; |
| 109 | struct cluster_list *cluster; |
| 110 | |
| 111 | tmp.length = length; |
paul | 5228ad2 | 2004-06-04 17:58:18 +0000 | [diff] [blame] | 112 | tmp.list = pnt; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 113 | |
| 114 | cluster = hash_get (cluster_hash, &tmp, cluster_hash_alloc); |
| 115 | cluster->refcnt++; |
| 116 | return cluster; |
| 117 | } |
| 118 | |
| 119 | int |
| 120 | cluster_loop_check (struct cluster_list *cluster, struct in_addr originator) |
| 121 | { |
| 122 | int i; |
| 123 | |
| 124 | for (i = 0; i < cluster->length / 4; i++) |
| 125 | if (cluster->list[i].s_addr == originator.s_addr) |
| 126 | return 1; |
| 127 | return 0; |
| 128 | } |
| 129 | |
paul | 94f2b39 | 2005-06-28 12:44:16 +0000 | [diff] [blame] | 130 | static unsigned int |
Paul Jakma | 923de65 | 2007-04-29 18:25:17 +0000 | [diff] [blame] | 131 | cluster_hash_key_make (void *p) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 132 | { |
Stephen Hemminger | c8e7b89 | 2010-08-27 14:12:54 -0700 | [diff] [blame] | 133 | const struct cluster_list *cluster = p; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 134 | |
Stephen Hemminger | c8e7b89 | 2010-08-27 14:12:54 -0700 | [diff] [blame] | 135 | return jhash(cluster->list, cluster->length, 0); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 136 | } |
| 137 | |
paul | 94f2b39 | 2005-06-28 12:44:16 +0000 | [diff] [blame] | 138 | static int |
Stephen Hemminger | ffe11cf | 2008-08-14 16:25:25 +0100 | [diff] [blame] | 139 | cluster_hash_cmp (const void *p1, const void *p2) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 140 | { |
Stephen Hemminger | ffe11cf | 2008-08-14 16:25:25 +0100 | [diff] [blame] | 141 | const struct cluster_list * cluster1 = p1; |
| 142 | const struct cluster_list * cluster2 = p2; |
Paul Jakma | 923de65 | 2007-04-29 18:25:17 +0000 | [diff] [blame] | 143 | |
Stephen Hemminger | ffe11cf | 2008-08-14 16:25:25 +0100 | [diff] [blame] | 144 | return (cluster1->length == cluster2->length && |
| 145 | memcmp (cluster1->list, cluster2->list, cluster1->length) == 0); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 146 | } |
| 147 | |
paul | 94f2b39 | 2005-06-28 12:44:16 +0000 | [diff] [blame] | 148 | static void |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 149 | cluster_free (struct cluster_list *cluster) |
| 150 | { |
| 151 | if (cluster->list) |
| 152 | XFREE (MTYPE_CLUSTER_VAL, cluster->list); |
| 153 | XFREE (MTYPE_CLUSTER, cluster); |
| 154 | } |
| 155 | |
Chris Caputo | 228da42 | 2009-07-18 05:44:03 +0000 | [diff] [blame] | 156 | #if 0 |
paul | 94f2b39 | 2005-06-28 12:44:16 +0000 | [diff] [blame] | 157 | static struct cluster_list * |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 158 | cluster_dup (struct cluster_list *cluster) |
| 159 | { |
| 160 | struct cluster_list *new; |
| 161 | |
Stephen Hemminger | 393deb9 | 2008-08-18 14:13:29 -0700 | [diff] [blame] | 162 | new = XCALLOC (MTYPE_CLUSTER, sizeof (struct cluster_list)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 163 | new->length = cluster->length; |
| 164 | |
| 165 | if (cluster->length) |
| 166 | { |
| 167 | new->list = XMALLOC (MTYPE_CLUSTER_VAL, cluster->length); |
| 168 | memcpy (new->list, cluster->list, cluster->length); |
| 169 | } |
| 170 | else |
| 171 | new->list = NULL; |
| 172 | |
| 173 | return new; |
| 174 | } |
Chris Caputo | 228da42 | 2009-07-18 05:44:03 +0000 | [diff] [blame] | 175 | #endif |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 176 | |
paul | 94f2b39 | 2005-06-28 12:44:16 +0000 | [diff] [blame] | 177 | static struct cluster_list * |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 178 | cluster_intern (struct cluster_list *cluster) |
| 179 | { |
| 180 | struct cluster_list *find; |
| 181 | |
| 182 | find = hash_get (cluster_hash, cluster, cluster_hash_alloc); |
| 183 | find->refcnt++; |
| 184 | |
| 185 | return find; |
| 186 | } |
| 187 | |
| 188 | void |
| 189 | cluster_unintern (struct cluster_list *cluster) |
| 190 | { |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 191 | if (cluster->refcnt) |
| 192 | cluster->refcnt--; |
| 193 | |
| 194 | if (cluster->refcnt == 0) |
| 195 | { |
Stephen Hemminger | 9206f9e | 2011-12-18 19:43:40 +0400 | [diff] [blame] | 196 | hash_release (cluster_hash, cluster); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 197 | cluster_free (cluster); |
| 198 | } |
| 199 | } |
| 200 | |
paul | 94f2b39 | 2005-06-28 12:44:16 +0000 | [diff] [blame] | 201 | static void |
| 202 | cluster_init (void) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 203 | { |
| 204 | cluster_hash = hash_create (cluster_hash_key_make, cluster_hash_cmp); |
| 205 | } |
Chris Caputo | 228da42 | 2009-07-18 05:44:03 +0000 | [diff] [blame] | 206 | |
| 207 | static void |
| 208 | cluster_finish (void) |
| 209 | { |
Lou Berger | 056f376 | 2013-04-10 12:30:04 -0700 | [diff] [blame] | 210 | hash_clean (cluster_hash, (void (*)(void *))cluster_free); |
Chris Caputo | 228da42 | 2009-07-18 05:44:03 +0000 | [diff] [blame] | 211 | hash_free (cluster_hash); |
| 212 | cluster_hash = NULL; |
| 213 | } |
David Lamparter | 6b0655a | 2014-06-04 06:53:35 +0200 | [diff] [blame] | 214 | |
Lou Berger | c374178 | 2016-01-12 13:42:01 -0500 | [diff] [blame] | 215 | struct bgp_attr_encap_subtlv * |
| 216 | encap_tlv_dup(struct bgp_attr_encap_subtlv *orig) |
| 217 | { |
| 218 | struct bgp_attr_encap_subtlv *new; |
| 219 | struct bgp_attr_encap_subtlv *tail; |
| 220 | struct bgp_attr_encap_subtlv *p; |
| 221 | |
| 222 | for (p = orig, tail = new = NULL; p; p = p->next) { |
| 223 | int size = sizeof(struct bgp_attr_encap_subtlv) - 1 + p->length; |
| 224 | if (tail) { |
| 225 | tail->next = XCALLOC(MTYPE_ENCAP_TLV, size); |
| 226 | tail = tail->next; |
| 227 | } else { |
| 228 | tail = new = XCALLOC(MTYPE_ENCAP_TLV, size); |
| 229 | } |
| 230 | assert(tail); |
| 231 | memcpy(tail, p, size); |
| 232 | tail->next = NULL; |
| 233 | } |
| 234 | |
| 235 | return new; |
| 236 | } |
| 237 | |
| 238 | static void |
| 239 | encap_free(struct bgp_attr_encap_subtlv *p) |
| 240 | { |
| 241 | struct bgp_attr_encap_subtlv *next; |
| 242 | while (p) { |
| 243 | next = p->next; |
| 244 | p->next = NULL; |
| 245 | XFREE(MTYPE_ENCAP_TLV, p); |
| 246 | p = next; |
| 247 | } |
| 248 | } |
| 249 | |
| 250 | void |
| 251 | bgp_attr_flush_encap(struct attr *attr) |
| 252 | { |
| 253 | if (!attr || !attr->extra) |
| 254 | return; |
| 255 | |
| 256 | if (attr->extra->encap_subtlvs) { |
| 257 | encap_free(attr->extra->encap_subtlvs); |
| 258 | attr->extra->encap_subtlvs = NULL; |
| 259 | } |
| 260 | } |
| 261 | |
| 262 | /* |
| 263 | * Compare encap sub-tlv chains |
| 264 | * |
| 265 | * 1 = equivalent |
| 266 | * 0 = not equivalent |
| 267 | * |
| 268 | * This algorithm could be made faster if needed |
| 269 | */ |
| 270 | static int |
| 271 | encap_same(struct bgp_attr_encap_subtlv *h1, struct bgp_attr_encap_subtlv *h2) |
| 272 | { |
| 273 | struct bgp_attr_encap_subtlv *p; |
| 274 | struct bgp_attr_encap_subtlv *q; |
| 275 | |
| 276 | if (!h1 && !h2) |
| 277 | return 1; |
| 278 | if (h1 && !h2) |
| 279 | return 0; |
| 280 | if (!h1 && h2) |
| 281 | return 0; |
| 282 | if (h1 == h2) |
| 283 | return 1; |
| 284 | |
| 285 | for (p = h1; p; p = p->next) { |
| 286 | for (q = h2; q; q = q->next) { |
| 287 | if ((p->type == q->type) && |
| 288 | (p->length == q->length) && |
| 289 | !memcmp(p->value, q->value, p->length)) { |
| 290 | |
| 291 | break; |
| 292 | } |
| 293 | } |
| 294 | if (!q) |
| 295 | return 0; |
| 296 | } |
| 297 | |
| 298 | for (p = h2; p; p = p->next) { |
| 299 | for (q = h1; q; q = q->next) { |
| 300 | if ((p->type == q->type) && |
| 301 | (p->length == q->length) && |
| 302 | !memcmp(p->value, q->value, p->length)) { |
| 303 | |
| 304 | break; |
| 305 | } |
| 306 | } |
| 307 | if (!q) |
| 308 | return 0; |
| 309 | } |
| 310 | |
| 311 | return 1; |
| 312 | } |
| 313 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 314 | /* Unknown transit attribute. */ |
Stephen Hemminger | 9bddac4 | 2009-05-15 09:59:51 -0700 | [diff] [blame] | 315 | static struct hash *transit_hash; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 316 | |
paul | 94f2b39 | 2005-06-28 12:44:16 +0000 | [diff] [blame] | 317 | static void |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 318 | transit_free (struct transit *transit) |
| 319 | { |
| 320 | if (transit->val) |
| 321 | XFREE (MTYPE_TRANSIT_VAL, transit->val); |
| 322 | XFREE (MTYPE_TRANSIT, transit); |
| 323 | } |
| 324 | |
Paul Jakma | 923de65 | 2007-04-29 18:25:17 +0000 | [diff] [blame] | 325 | |
paul | 94f2b39 | 2005-06-28 12:44:16 +0000 | [diff] [blame] | 326 | static void * |
Paul Jakma | 923de65 | 2007-04-29 18:25:17 +0000 | [diff] [blame] | 327 | transit_hash_alloc (void *p) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 328 | { |
| 329 | /* Transit structure is already allocated. */ |
Paul Jakma | 923de65 | 2007-04-29 18:25:17 +0000 | [diff] [blame] | 330 | return p; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 331 | } |
| 332 | |
paul | 94f2b39 | 2005-06-28 12:44:16 +0000 | [diff] [blame] | 333 | static struct transit * |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 334 | transit_intern (struct transit *transit) |
| 335 | { |
| 336 | struct transit *find; |
| 337 | |
| 338 | find = hash_get (transit_hash, transit, transit_hash_alloc); |
| 339 | if (find != transit) |
| 340 | transit_free (transit); |
| 341 | find->refcnt++; |
| 342 | |
| 343 | return find; |
| 344 | } |
| 345 | |
| 346 | void |
| 347 | transit_unintern (struct transit *transit) |
| 348 | { |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 349 | if (transit->refcnt) |
| 350 | transit->refcnt--; |
| 351 | |
| 352 | if (transit->refcnt == 0) |
| 353 | { |
Stephen Hemminger | 9206f9e | 2011-12-18 19:43:40 +0400 | [diff] [blame] | 354 | hash_release (transit_hash, transit); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 355 | transit_free (transit); |
| 356 | } |
| 357 | } |
| 358 | |
paul | 94f2b39 | 2005-06-28 12:44:16 +0000 | [diff] [blame] | 359 | static unsigned int |
Paul Jakma | 923de65 | 2007-04-29 18:25:17 +0000 | [diff] [blame] | 360 | transit_hash_key_make (void *p) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 361 | { |
Stephen Hemminger | c8e7b89 | 2010-08-27 14:12:54 -0700 | [diff] [blame] | 362 | const struct transit * transit = p; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 363 | |
Stephen Hemminger | c8e7b89 | 2010-08-27 14:12:54 -0700 | [diff] [blame] | 364 | return jhash(transit->val, transit->length, 0); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 365 | } |
| 366 | |
paul | 94f2b39 | 2005-06-28 12:44:16 +0000 | [diff] [blame] | 367 | static int |
Stephen Hemminger | ffe11cf | 2008-08-14 16:25:25 +0100 | [diff] [blame] | 368 | transit_hash_cmp (const void *p1, const void *p2) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 369 | { |
Stephen Hemminger | ffe11cf | 2008-08-14 16:25:25 +0100 | [diff] [blame] | 370 | const struct transit * transit1 = p1; |
| 371 | const struct transit * transit2 = p2; |
Paul Jakma | 923de65 | 2007-04-29 18:25:17 +0000 | [diff] [blame] | 372 | |
Stephen Hemminger | ffe11cf | 2008-08-14 16:25:25 +0100 | [diff] [blame] | 373 | return (transit1->length == transit2->length && |
| 374 | memcmp (transit1->val, transit2->val, transit1->length) == 0); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 375 | } |
| 376 | |
paul | 94f2b39 | 2005-06-28 12:44:16 +0000 | [diff] [blame] | 377 | static void |
Stephen Hemminger | 66e5cd8 | 2009-02-09 10:14:16 -0800 | [diff] [blame] | 378 | transit_init (void) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 379 | { |
| 380 | transit_hash = hash_create (transit_hash_key_make, transit_hash_cmp); |
| 381 | } |
Chris Caputo | 228da42 | 2009-07-18 05:44:03 +0000 | [diff] [blame] | 382 | |
| 383 | static void |
| 384 | transit_finish (void) |
| 385 | { |
Lou Berger | 056f376 | 2013-04-10 12:30:04 -0700 | [diff] [blame] | 386 | hash_clean (transit_hash, (void (*)(void *))transit_free); |
Chris Caputo | 228da42 | 2009-07-18 05:44:03 +0000 | [diff] [blame] | 387 | hash_free (transit_hash); |
| 388 | transit_hash = NULL; |
| 389 | } |
David Lamparter | 6b0655a | 2014-06-04 06:53:35 +0200 | [diff] [blame] | 390 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 391 | /* Attribute hash routines. */ |
Stephen Hemminger | 9bddac4 | 2009-05-15 09:59:51 -0700 | [diff] [blame] | 392 | static struct hash *attrhash; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 393 | |
Paul Jakma | fb982c2 | 2007-05-04 20:15:47 +0000 | [diff] [blame] | 394 | static struct attr_extra * |
| 395 | bgp_attr_extra_new (void) |
| 396 | { |
| 397 | return XCALLOC (MTYPE_ATTR_EXTRA, sizeof (struct attr_extra)); |
| 398 | } |
| 399 | |
| 400 | void |
| 401 | bgp_attr_extra_free (struct attr *attr) |
| 402 | { |
| 403 | if (attr->extra) |
| 404 | { |
Lou Berger | c374178 | 2016-01-12 13:42:01 -0500 | [diff] [blame] | 405 | if (attr->extra->encap_subtlvs) { |
| 406 | encap_free(attr->extra->encap_subtlvs); |
| 407 | attr->extra->encap_subtlvs = NULL; |
| 408 | } |
Paul Jakma | fb982c2 | 2007-05-04 20:15:47 +0000 | [diff] [blame] | 409 | XFREE (MTYPE_ATTR_EXTRA, attr->extra); |
| 410 | attr->extra = NULL; |
| 411 | } |
| 412 | } |
| 413 | |
| 414 | struct attr_extra * |
| 415 | bgp_attr_extra_get (struct attr *attr) |
| 416 | { |
| 417 | if (!attr->extra) |
| 418 | attr->extra = bgp_attr_extra_new(); |
| 419 | return attr->extra; |
| 420 | } |
| 421 | |
| 422 | /* Shallow copy of an attribute |
| 423 | * Though, not so shallow that it doesn't copy the contents |
| 424 | * of the attr_extra pointed to by 'extra' |
| 425 | */ |
| 426 | void |
| 427 | bgp_attr_dup (struct attr *new, struct attr *orig) |
| 428 | { |
Jorge Boncompte [DTI2] | 558d1fe | 2012-05-07 16:53:05 +0000 | [diff] [blame] | 429 | struct attr_extra *extra = new->extra; |
| 430 | |
Paul Jakma | fb982c2 | 2007-05-04 20:15:47 +0000 | [diff] [blame] | 431 | *new = *orig; |
Christian Franke | a0de1d1 | 2012-12-07 16:35:00 +0000 | [diff] [blame] | 432 | /* if caller provided attr_extra space, use it in any case. |
| 433 | * |
| 434 | * This is neccesary even if orig->extra equals NULL, because otherwise |
| 435 | * memory may be later allocated on the heap by bgp_attr_extra_get. |
| 436 | * |
| 437 | * That memory would eventually be leaked, because the caller must not |
| 438 | * call bgp_attr_extra_free if he provided attr_extra on the stack. |
| 439 | */ |
| 440 | if (extra) |
Paul Jakma | fb982c2 | 2007-05-04 20:15:47 +0000 | [diff] [blame] | 441 | { |
Christian Franke | a0de1d1 | 2012-12-07 16:35:00 +0000 | [diff] [blame] | 442 | new->extra = extra; |
| 443 | memset(new->extra, 0, sizeof(struct attr_extra)); |
Lou Berger | c374178 | 2016-01-12 13:42:01 -0500 | [diff] [blame] | 444 | if (orig->extra) { |
Christian Franke | a0de1d1 | 2012-12-07 16:35:00 +0000 | [diff] [blame] | 445 | *new->extra = *orig->extra; |
Lou Berger | c374178 | 2016-01-12 13:42:01 -0500 | [diff] [blame] | 446 | if (orig->extra->encap_subtlvs) { |
| 447 | new->extra->encap_subtlvs = encap_tlv_dup(orig->extra->encap_subtlvs); |
| 448 | } |
| 449 | } |
Christian Franke | a0de1d1 | 2012-12-07 16:35:00 +0000 | [diff] [blame] | 450 | } |
| 451 | else if (orig->extra) |
| 452 | { |
| 453 | new->extra = bgp_attr_extra_new(); |
Paul Jakma | fb982c2 | 2007-05-04 20:15:47 +0000 | [diff] [blame] | 454 | *new->extra = *orig->extra; |
Lou Berger | c374178 | 2016-01-12 13:42:01 -0500 | [diff] [blame] | 455 | if (orig->extra->encap_subtlvs) { |
| 456 | new->extra->encap_subtlvs = encap_tlv_dup(orig->extra->encap_subtlvs); |
| 457 | } |
Paul Jakma | fb982c2 | 2007-05-04 20:15:47 +0000 | [diff] [blame] | 458 | } |
| 459 | } |
| 460 | |
Paul Jakma | cbdfbaa | 2006-03-30 13:20:48 +0000 | [diff] [blame] | 461 | unsigned long int |
| 462 | attr_count (void) |
| 463 | { |
| 464 | return attrhash->count; |
| 465 | } |
| 466 | |
| 467 | unsigned long int |
| 468 | attr_unknown_count (void) |
| 469 | { |
| 470 | return transit_hash->count; |
| 471 | } |
| 472 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 473 | unsigned int |
Paul Jakma | 923de65 | 2007-04-29 18:25:17 +0000 | [diff] [blame] | 474 | attrhash_key_make (void *p) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 475 | { |
Jorge Boncompte [DTI2] | 7fb0cd8 | 2012-05-07 16:52:58 +0000 | [diff] [blame] | 476 | const struct attr *attr = (struct attr *) p; |
| 477 | const struct attr_extra *extra = attr->extra; |
Stephen Hemminger | c8e7b89 | 2010-08-27 14:12:54 -0700 | [diff] [blame] | 478 | uint32_t key = 0; |
| 479 | #define MIX(val) key = jhash_1word(val, key) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 480 | |
Stephen Hemminger | c8e7b89 | 2010-08-27 14:12:54 -0700 | [diff] [blame] | 481 | MIX(attr->origin); |
| 482 | MIX(attr->nexthop.s_addr); |
| 483 | MIX(attr->med); |
| 484 | MIX(attr->local_pref); |
| 485 | |
Paul Jakma | c8f3fe3 | 2010-12-05 20:28:02 +0000 | [diff] [blame] | 486 | key += attr->origin; |
| 487 | key += attr->nexthop.s_addr; |
| 488 | key += attr->med; |
| 489 | key += attr->local_pref; |
Paul Jakma | fb982c2 | 2007-05-04 20:15:47 +0000 | [diff] [blame] | 490 | |
Jorge Boncompte [DTI2] | 7fb0cd8 | 2012-05-07 16:52:58 +0000 | [diff] [blame] | 491 | if (extra) |
Paul Jakma | fb982c2 | 2007-05-04 20:15:47 +0000 | [diff] [blame] | 492 | { |
Jorge Boncompte [DTI2] | 7fb0cd8 | 2012-05-07 16:52:58 +0000 | [diff] [blame] | 493 | MIX(extra->aggregator_as); |
| 494 | MIX(extra->aggregator_addr.s_addr); |
| 495 | MIX(extra->weight); |
| 496 | MIX(extra->mp_nexthop_global_in.s_addr); |
Pradosh Mohapatra | 689bb66 | 2013-09-07 07:13:37 +0000 | [diff] [blame] | 497 | MIX(extra->originator_id.s_addr); |
Piotr Chytła | 605aa33 | 2015-12-01 10:03:54 -0500 | [diff] [blame] | 498 | MIX(extra->tag); |
Paul Jakma | fb982c2 | 2007-05-04 20:15:47 +0000 | [diff] [blame] | 499 | } |
| 500 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 501 | if (attr->aspath) |
Stephen Hemminger | c8e7b89 | 2010-08-27 14:12:54 -0700 | [diff] [blame] | 502 | MIX(aspath_key_make (attr->aspath)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 503 | if (attr->community) |
Stephen Hemminger | c8e7b89 | 2010-08-27 14:12:54 -0700 | [diff] [blame] | 504 | MIX(community_hash_make (attr->community)); |
Paul Jakma | fb982c2 | 2007-05-04 20:15:47 +0000 | [diff] [blame] | 505 | |
Jorge Boncompte [DTI2] | 7fb0cd8 | 2012-05-07 16:52:58 +0000 | [diff] [blame] | 506 | if (extra) |
Paul Jakma | fb982c2 | 2007-05-04 20:15:47 +0000 | [diff] [blame] | 507 | { |
Jorge Boncompte [DTI2] | 7fb0cd8 | 2012-05-07 16:52:58 +0000 | [diff] [blame] | 508 | if (extra->ecommunity) |
| 509 | MIX(ecommunity_hash_make (extra->ecommunity)); |
| 510 | if (extra->cluster) |
| 511 | MIX(cluster_hash_key_make (extra->cluster)); |
| 512 | if (extra->transit) |
| 513 | MIX(transit_hash_key_make (extra->transit)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 514 | |
Jorge Boncompte [DTI2] | 7fb0cd8 | 2012-05-07 16:52:58 +0000 | [diff] [blame] | 515 | MIX(extra->mp_nexthop_len); |
| 516 | key = jhash(extra->mp_nexthop_global.s6_addr, 16, key); |
| 517 | key = jhash(extra->mp_nexthop_local.s6_addr, 16, key); |
Paul Jakma | fb982c2 | 2007-05-04 20:15:47 +0000 | [diff] [blame] | 518 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 519 | |
| 520 | return key; |
| 521 | } |
| 522 | |
| 523 | int |
Stephen Hemminger | ffe11cf | 2008-08-14 16:25:25 +0100 | [diff] [blame] | 524 | attrhash_cmp (const void *p1, const void *p2) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 525 | { |
Stephen Hemminger | ffe11cf | 2008-08-14 16:25:25 +0100 | [diff] [blame] | 526 | const struct attr * attr1 = p1; |
| 527 | const struct attr * attr2 = p2; |
Paul Jakma | 923de65 | 2007-04-29 18:25:17 +0000 | [diff] [blame] | 528 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 529 | if (attr1->flag == attr2->flag |
| 530 | && attr1->origin == attr2->origin |
| 531 | && attr1->nexthop.s_addr == attr2->nexthop.s_addr |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 532 | && attr1->aspath == attr2->aspath |
| 533 | && attr1->community == attr2->community |
Paul Jakma | fb982c2 | 2007-05-04 20:15:47 +0000 | [diff] [blame] | 534 | && attr1->med == attr2->med |
Paul Jakma | c8f3fe3 | 2010-12-05 20:28:02 +0000 | [diff] [blame] | 535 | && attr1->local_pref == attr2->local_pref) |
Paul Jakma | fb982c2 | 2007-05-04 20:15:47 +0000 | [diff] [blame] | 536 | { |
Stephen Hemminger | ffe11cf | 2008-08-14 16:25:25 +0100 | [diff] [blame] | 537 | const struct attr_extra *ae1 = attr1->extra; |
| 538 | const struct attr_extra *ae2 = attr2->extra; |
Paul Jakma | fb982c2 | 2007-05-04 20:15:47 +0000 | [diff] [blame] | 539 | |
| 540 | if (ae1 && ae2 |
| 541 | && ae1->aggregator_as == ae2->aggregator_as |
| 542 | && ae1->aggregator_addr.s_addr == ae2->aggregator_addr.s_addr |
| 543 | && ae1->weight == ae2->weight |
Piotr Chytła | 605aa33 | 2015-12-01 10:03:54 -0500 | [diff] [blame] | 544 | && ae1->tag == ae2->tag |
Paul Jakma | fb982c2 | 2007-05-04 20:15:47 +0000 | [diff] [blame] | 545 | && ae1->mp_nexthop_len == ae2->mp_nexthop_len |
| 546 | && IPV6_ADDR_SAME (&ae1->mp_nexthop_global, &ae2->mp_nexthop_global) |
| 547 | && IPV6_ADDR_SAME (&ae1->mp_nexthop_local, &ae2->mp_nexthop_local) |
Paul Jakma | fb982c2 | 2007-05-04 20:15:47 +0000 | [diff] [blame] | 548 | && IPV4_ADDR_SAME (&ae1->mp_nexthop_global_in, &ae2->mp_nexthop_global_in) |
| 549 | && ae1->ecommunity == ae2->ecommunity |
| 550 | && ae1->cluster == ae2->cluster |
Pradosh Mohapatra | 689bb66 | 2013-09-07 07:13:37 +0000 | [diff] [blame] | 551 | && ae1->transit == ae2->transit |
Lou Berger | c374178 | 2016-01-12 13:42:01 -0500 | [diff] [blame] | 552 | && (ae1->encap_tunneltype == ae2->encap_tunneltype) |
| 553 | && encap_same(ae1->encap_subtlvs, ae2->encap_subtlvs) |
Pradosh Mohapatra | 689bb66 | 2013-09-07 07:13:37 +0000 | [diff] [blame] | 554 | && IPV4_ADDR_SAME (&ae1->originator_id, &ae2->originator_id)) |
Paul Jakma | fb982c2 | 2007-05-04 20:15:47 +0000 | [diff] [blame] | 555 | return 1; |
| 556 | else if (ae1 || ae2) |
| 557 | return 0; |
| 558 | /* neither attribute has extra attributes, so they're same */ |
| 559 | return 1; |
| 560 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 561 | else |
| 562 | return 0; |
| 563 | } |
| 564 | |
paul | 94f2b39 | 2005-06-28 12:44:16 +0000 | [diff] [blame] | 565 | static void |
Stephen Hemminger | ffe11cf | 2008-08-14 16:25:25 +0100 | [diff] [blame] | 566 | attrhash_init (void) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 567 | { |
| 568 | attrhash = hash_create (attrhash_key_make, attrhash_cmp); |
| 569 | } |
| 570 | |
Lou Berger | 056f376 | 2013-04-10 12:30:04 -0700 | [diff] [blame] | 571 | /* |
| 572 | * special for hash_clean below |
| 573 | */ |
| 574 | static void |
| 575 | attr_vfree (void *attr) |
| 576 | { |
| 577 | bgp_attr_extra_free ((struct attr *)attr); |
| 578 | XFREE (MTYPE_ATTR, attr); |
| 579 | } |
| 580 | |
paul | 94f2b39 | 2005-06-28 12:44:16 +0000 | [diff] [blame] | 581 | static void |
Chris Caputo | 228da42 | 2009-07-18 05:44:03 +0000 | [diff] [blame] | 582 | attrhash_finish (void) |
| 583 | { |
Lou Berger | 056f376 | 2013-04-10 12:30:04 -0700 | [diff] [blame] | 584 | hash_clean(attrhash, attr_vfree); |
Chris Caputo | 228da42 | 2009-07-18 05:44:03 +0000 | [diff] [blame] | 585 | hash_free (attrhash); |
| 586 | attrhash = NULL; |
| 587 | } |
| 588 | |
| 589 | static void |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 590 | attr_show_all_iterator (struct hash_backet *backet, struct vty *vty) |
| 591 | { |
| 592 | struct attr *attr = backet->data; |
| 593 | |
| 594 | vty_out (vty, "attr[%ld] nexthop %s%s", attr->refcnt, |
| 595 | inet_ntoa (attr->nexthop), VTY_NEWLINE); |
| 596 | } |
| 597 | |
| 598 | void |
| 599 | attr_show_all (struct vty *vty) |
| 600 | { |
| 601 | hash_iterate (attrhash, |
| 602 | (void (*)(struct hash_backet *, void *)) |
| 603 | attr_show_all_iterator, |
| 604 | vty); |
| 605 | } |
| 606 | |
paul | 94f2b39 | 2005-06-28 12:44:16 +0000 | [diff] [blame] | 607 | static void * |
Paul Jakma | 923de65 | 2007-04-29 18:25:17 +0000 | [diff] [blame] | 608 | bgp_attr_hash_alloc (void *p) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 609 | { |
Paul Jakma | 923de65 | 2007-04-29 18:25:17 +0000 | [diff] [blame] | 610 | struct attr * val = (struct attr *) p; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 611 | struct attr *attr; |
| 612 | |
| 613 | attr = XMALLOC (MTYPE_ATTR, sizeof (struct attr)); |
| 614 | *attr = *val; |
Paul Jakma | fb982c2 | 2007-05-04 20:15:47 +0000 | [diff] [blame] | 615 | if (val->extra) |
| 616 | { |
| 617 | attr->extra = bgp_attr_extra_new (); |
| 618 | *attr->extra = *val->extra; |
Lou Berger | c374178 | 2016-01-12 13:42:01 -0500 | [diff] [blame] | 619 | |
| 620 | if (attr->extra->encap_subtlvs) { |
| 621 | attr->extra->encap_subtlvs = encap_tlv_dup(attr->extra->encap_subtlvs); |
| 622 | } |
Paul Jakma | fb982c2 | 2007-05-04 20:15:47 +0000 | [diff] [blame] | 623 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 624 | attr->refcnt = 0; |
| 625 | return attr; |
| 626 | } |
| 627 | |
| 628 | /* Internet argument attribute. */ |
| 629 | struct attr * |
| 630 | bgp_attr_intern (struct attr *attr) |
| 631 | { |
| 632 | struct attr *find; |
| 633 | |
| 634 | /* Intern referenced strucutre. */ |
| 635 | if (attr->aspath) |
| 636 | { |
| 637 | if (! attr->aspath->refcnt) |
| 638 | attr->aspath = aspath_intern (attr->aspath); |
| 639 | else |
| 640 | attr->aspath->refcnt++; |
| 641 | } |
| 642 | if (attr->community) |
| 643 | { |
| 644 | if (! attr->community->refcnt) |
| 645 | attr->community = community_intern (attr->community); |
| 646 | else |
| 647 | attr->community->refcnt++; |
| 648 | } |
Paul Jakma | fb982c2 | 2007-05-04 20:15:47 +0000 | [diff] [blame] | 649 | if (attr->extra) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 650 | { |
Paul Jakma | fb982c2 | 2007-05-04 20:15:47 +0000 | [diff] [blame] | 651 | struct attr_extra *attre = attr->extra; |
| 652 | |
| 653 | if (attre->ecommunity) |
| 654 | { |
| 655 | if (! attre->ecommunity->refcnt) |
| 656 | attre->ecommunity = ecommunity_intern (attre->ecommunity); |
| 657 | else |
| 658 | attre->ecommunity->refcnt++; |
Paul Jakma | f6f434b | 2010-11-23 21:28:03 +0000 | [diff] [blame] | 659 | |
Paul Jakma | fb982c2 | 2007-05-04 20:15:47 +0000 | [diff] [blame] | 660 | } |
| 661 | if (attre->cluster) |
| 662 | { |
| 663 | if (! attre->cluster->refcnt) |
| 664 | attre->cluster = cluster_intern (attre->cluster); |
| 665 | else |
| 666 | attre->cluster->refcnt++; |
| 667 | } |
| 668 | if (attre->transit) |
| 669 | { |
| 670 | if (! attre->transit->refcnt) |
| 671 | attre->transit = transit_intern (attre->transit); |
| 672 | else |
| 673 | attre->transit->refcnt++; |
| 674 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 675 | } |
Paul Jakma | f6f434b | 2010-11-23 21:28:03 +0000 | [diff] [blame] | 676 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 677 | find = (struct attr *) hash_get (attrhash, attr, bgp_attr_hash_alloc); |
| 678 | find->refcnt++; |
Paul Jakma | f6f434b | 2010-11-23 21:28:03 +0000 | [diff] [blame] | 679 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 680 | return find; |
| 681 | } |
| 682 | |
Paul Jakma | 03e214c | 2007-04-29 18:31:07 +0000 | [diff] [blame] | 683 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 684 | /* Make network statement's attribute. */ |
| 685 | struct attr * |
| 686 | bgp_attr_default_set (struct attr *attr, u_char origin) |
| 687 | { |
| 688 | memset (attr, 0, sizeof (struct attr)); |
Paul Jakma | fb982c2 | 2007-05-04 20:15:47 +0000 | [diff] [blame] | 689 | bgp_attr_extra_get (attr); |
| 690 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 691 | attr->origin = origin; |
| 692 | attr->flag |= ATTR_FLAG_BIT (BGP_ATTR_ORIGIN); |
| 693 | attr->aspath = aspath_empty (); |
| 694 | attr->flag |= ATTR_FLAG_BIT (BGP_ATTR_AS_PATH); |
Paul Jakma | fb982c2 | 2007-05-04 20:15:47 +0000 | [diff] [blame] | 695 | attr->extra->weight = BGP_ATTR_DEFAULT_WEIGHT; |
Piotr Chytła | 605aa33 | 2015-12-01 10:03:54 -0500 | [diff] [blame] | 696 | attr->extra->tag = 0; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 697 | attr->flag |= ATTR_FLAG_BIT (BGP_ATTR_NEXT_HOP); |
Paul Jakma | fb982c2 | 2007-05-04 20:15:47 +0000 | [diff] [blame] | 698 | attr->extra->mp_nexthop_len = IPV6_MAX_BYTELEN; |
Paul Jakma | 03e214c | 2007-04-29 18:31:07 +0000 | [diff] [blame] | 699 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 700 | return attr; |
| 701 | } |
| 702 | |
Paul Jakma | 03e214c | 2007-04-29 18:31:07 +0000 | [diff] [blame] | 703 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 704 | /* Make network statement's attribute. */ |
| 705 | struct attr * |
| 706 | bgp_attr_default_intern (u_char origin) |
| 707 | { |
| 708 | struct attr attr; |
| 709 | struct attr *new; |
Jorge Boncompte [DTI2] | e16a413 | 2012-05-07 16:52:57 +0000 | [diff] [blame] | 710 | |
Lou Berger | c374178 | 2016-01-12 13:42:01 -0500 | [diff] [blame] | 711 | memset (&attr, 0, sizeof (struct attr)); |
| 712 | bgp_attr_extra_get (&attr); |
| 713 | |
Paul Jakma | 03e214c | 2007-04-29 18:31:07 +0000 | [diff] [blame] | 714 | bgp_attr_default_set(&attr, origin); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 715 | |
| 716 | new = bgp_attr_intern (&attr); |
Paul Jakma | fb982c2 | 2007-05-04 20:15:47 +0000 | [diff] [blame] | 717 | bgp_attr_extra_free (&attr); |
| 718 | |
Paul Jakma | f6f434b | 2010-11-23 21:28:03 +0000 | [diff] [blame] | 719 | aspath_unintern (&new->aspath); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 720 | return new; |
| 721 | } |
| 722 | |
Daniel Walton | 76a7280 | 2015-05-19 17:47:24 -0700 | [diff] [blame] | 723 | /* Create the attributes for an aggregate */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 724 | struct attr * |
| 725 | bgp_attr_aggregate_intern (struct bgp *bgp, u_char origin, |
| 726 | struct aspath *aspath, |
Daniel Walton | f2eb9ca | 2015-05-19 17:47:21 -0700 | [diff] [blame] | 727 | struct community *community, int as_set, |
| 728 | u_char atomic_aggregate) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 729 | { |
| 730 | struct attr attr; |
| 731 | struct attr *new; |
Jorge Boncompte [DTI2] | 938ef3a | 2012-05-07 16:52:59 +0000 | [diff] [blame] | 732 | struct attr_extra attre; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 733 | |
| 734 | memset (&attr, 0, sizeof (struct attr)); |
Jorge Boncompte [DTI2] | 938ef3a | 2012-05-07 16:52:59 +0000 | [diff] [blame] | 735 | memset (&attre, 0, sizeof (struct attr_extra)); |
| 736 | attr.extra = &attre; |
| 737 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 738 | /* Origin attribute. */ |
| 739 | attr.origin = origin; |
| 740 | attr.flag |= ATTR_FLAG_BIT (BGP_ATTR_ORIGIN); |
| 741 | |
| 742 | /* AS path attribute. */ |
| 743 | if (aspath) |
| 744 | attr.aspath = aspath_intern (aspath); |
| 745 | else |
| 746 | attr.aspath = aspath_empty (); |
| 747 | attr.flag |= ATTR_FLAG_BIT (BGP_ATTR_AS_PATH); |
| 748 | |
| 749 | /* Next hop attribute. */ |
| 750 | attr.flag |= ATTR_FLAG_BIT (BGP_ATTR_NEXT_HOP); |
| 751 | |
| 752 | if (community) |
| 753 | { |
| 754 | attr.community = community; |
| 755 | attr.flag |= ATTR_FLAG_BIT (BGP_ATTR_COMMUNITIES); |
| 756 | } |
| 757 | |
Jorge Boncompte [DTI2] | 938ef3a | 2012-05-07 16:52:59 +0000 | [diff] [blame] | 758 | attre.weight = BGP_ATTR_DEFAULT_WEIGHT; |
Jorge Boncompte [DTI2] | 938ef3a | 2012-05-07 16:52:59 +0000 | [diff] [blame] | 759 | attre.mp_nexthop_len = IPV6_MAX_BYTELEN; |
Lou Berger | 205e674 | 2016-01-12 13:42:11 -0500 | [diff] [blame] | 760 | |
Daniel Walton | f2eb9ca | 2015-05-19 17:47:21 -0700 | [diff] [blame] | 761 | if (! as_set || atomic_aggregate) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 762 | attr.flag |= ATTR_FLAG_BIT (BGP_ATTR_ATOMIC_AGGREGATE); |
| 763 | attr.flag |= ATTR_FLAG_BIT (BGP_ATTR_AGGREGATOR); |
| 764 | if (CHECK_FLAG (bgp->config, BGP_CONFIG_CONFEDERATION)) |
Jorge Boncompte [DTI2] | 938ef3a | 2012-05-07 16:52:59 +0000 | [diff] [blame] | 765 | attre.aggregator_as = bgp->confed_id; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 766 | else |
Jorge Boncompte [DTI2] | 938ef3a | 2012-05-07 16:52:59 +0000 | [diff] [blame] | 767 | attre.aggregator_as = bgp->as; |
| 768 | attre.aggregator_addr = bgp->router_id; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 769 | |
| 770 | new = bgp_attr_intern (&attr); |
Jorge Boncompte [DTI2] | 938ef3a | 2012-05-07 16:52:59 +0000 | [diff] [blame] | 771 | |
Paul Jakma | f6f434b | 2010-11-23 21:28:03 +0000 | [diff] [blame] | 772 | aspath_unintern (&new->aspath); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 773 | return new; |
| 774 | } |
| 775 | |
Paul Jakma | b881c70 | 2010-11-23 16:35:42 +0000 | [diff] [blame] | 776 | /* Unintern just the sub-components of the attr, but not the attr */ |
| 777 | void |
| 778 | bgp_attr_unintern_sub (struct attr *attr) |
| 779 | { |
| 780 | /* aspath refcount shoud be decrement. */ |
| 781 | if (attr->aspath) |
| 782 | aspath_unintern (&attr->aspath); |
Jorge Boncompte [DTI2] | d92a2f3 | 2013-07-31 16:36:08 +0000 | [diff] [blame] | 783 | UNSET_FLAG(attr->flag, ATTR_FLAG_BIT (BGP_ATTR_AS_PATH)); |
Paul Jakma | b881c70 | 2010-11-23 16:35:42 +0000 | [diff] [blame] | 784 | |
| 785 | if (attr->community) |
| 786 | community_unintern (&attr->community); |
Jorge Boncompte [DTI2] | d92a2f3 | 2013-07-31 16:36:08 +0000 | [diff] [blame] | 787 | UNSET_FLAG(attr->flag, ATTR_FLAG_BIT (BGP_ATTR_COMMUNITIES)); |
Paul Jakma | b881c70 | 2010-11-23 16:35:42 +0000 | [diff] [blame] | 788 | |
| 789 | if (attr->extra) |
| 790 | { |
| 791 | if (attr->extra->ecommunity) |
| 792 | ecommunity_unintern (&attr->extra->ecommunity); |
Jorge Boncompte [DTI2] | d92a2f3 | 2013-07-31 16:36:08 +0000 | [diff] [blame] | 793 | UNSET_FLAG(attr->flag, ATTR_FLAG_BIT (BGP_ATTR_EXT_COMMUNITIES)); |
Paul Jakma | b881c70 | 2010-11-23 16:35:42 +0000 | [diff] [blame] | 794 | |
| 795 | if (attr->extra->cluster) |
| 796 | cluster_unintern (attr->extra->cluster); |
Jorge Boncompte [DTI2] | d92a2f3 | 2013-07-31 16:36:08 +0000 | [diff] [blame] | 797 | UNSET_FLAG(attr->flag, ATTR_FLAG_BIT (BGP_ATTR_CLUSTER_LIST)); |
Paul Jakma | b881c70 | 2010-11-23 16:35:42 +0000 | [diff] [blame] | 798 | |
| 799 | if (attr->extra->transit) |
| 800 | transit_unintern (attr->extra->transit); |
| 801 | } |
| 802 | } |
| 803 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 804 | /* Free bgp attribute and aspath. */ |
| 805 | void |
Jorge Boncompte [DTI2] | 1a2fd70 | 2012-05-07 16:53:00 +0000 | [diff] [blame] | 806 | bgp_attr_unintern (struct attr **pattr) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 807 | { |
Jorge Boncompte [DTI2] | 1a2fd70 | 2012-05-07 16:53:00 +0000 | [diff] [blame] | 808 | struct attr *attr = *pattr; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 809 | struct attr *ret; |
Paul Jakma | b881c70 | 2010-11-23 16:35:42 +0000 | [diff] [blame] | 810 | struct attr tmp; |
Jorge Boncompte [DTI2] | b9f1dca | 2012-05-07 16:53:01 +0000 | [diff] [blame] | 811 | struct attr_extra tmp_extra; |
Paul Jakma | f6f434b | 2010-11-23 21:28:03 +0000 | [diff] [blame] | 812 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 813 | /* Decrement attribute reference. */ |
Jorge Boncompte [DTI2] | 1a2fd70 | 2012-05-07 16:53:00 +0000 | [diff] [blame] | 814 | attr->refcnt--; |
Paul Jakma | b881c70 | 2010-11-23 16:35:42 +0000 | [diff] [blame] | 815 | |
Jorge Boncompte [DTI2] | 1a2fd70 | 2012-05-07 16:53:00 +0000 | [diff] [blame] | 816 | tmp = *attr; |
Paul Jakma | b881c70 | 2010-11-23 16:35:42 +0000 | [diff] [blame] | 817 | |
Jorge Boncompte [DTI2] | 1a2fd70 | 2012-05-07 16:53:00 +0000 | [diff] [blame] | 818 | if (attr->extra) |
Paul Jakma | fb982c2 | 2007-05-04 20:15:47 +0000 | [diff] [blame] | 819 | { |
Jorge Boncompte [DTI2] | b9f1dca | 2012-05-07 16:53:01 +0000 | [diff] [blame] | 820 | tmp.extra = &tmp_extra; |
Jorge Boncompte [DTI2] | 1a2fd70 | 2012-05-07 16:53:00 +0000 | [diff] [blame] | 821 | memcpy (tmp.extra, attr->extra, sizeof (struct attr_extra)); |
Paul Jakma | fb982c2 | 2007-05-04 20:15:47 +0000 | [diff] [blame] | 822 | } |
Paul Jakma | f6f434b | 2010-11-23 21:28:03 +0000 | [diff] [blame] | 823 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 824 | /* If reference becomes zero then free attribute object. */ |
Jorge Boncompte [DTI2] | 1a2fd70 | 2012-05-07 16:53:00 +0000 | [diff] [blame] | 825 | if (attr->refcnt == 0) |
| 826 | { |
| 827 | ret = hash_release (attrhash, attr); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 828 | assert (ret != NULL); |
Jorge Boncompte [DTI2] | 1a2fd70 | 2012-05-07 16:53:00 +0000 | [diff] [blame] | 829 | bgp_attr_extra_free (attr); |
| 830 | XFREE (MTYPE_ATTR, attr); |
| 831 | *pattr = NULL; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 832 | } |
| 833 | |
Paul Jakma | b881c70 | 2010-11-23 16:35:42 +0000 | [diff] [blame] | 834 | bgp_attr_unintern_sub (&tmp); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 835 | } |
| 836 | |
| 837 | void |
| 838 | bgp_attr_flush (struct attr *attr) |
| 839 | { |
| 840 | if (attr->aspath && ! attr->aspath->refcnt) |
Lou Berger | 370b7e5 | 2016-02-04 21:29:49 -0500 | [diff] [blame] | 841 | { |
| 842 | aspath_free (attr->aspath); |
| 843 | attr->aspath = NULL; |
| 844 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 845 | if (attr->community && ! attr->community->refcnt) |
Lou Berger | 370b7e5 | 2016-02-04 21:29:49 -0500 | [diff] [blame] | 846 | { |
| 847 | community_free (attr->community); |
| 848 | attr->community = NULL; |
| 849 | } |
Paul Jakma | fb982c2 | 2007-05-04 20:15:47 +0000 | [diff] [blame] | 850 | if (attr->extra) |
| 851 | { |
| 852 | struct attr_extra *attre = attr->extra; |
Paul Jakma | f6f434b | 2010-11-23 21:28:03 +0000 | [diff] [blame] | 853 | |
Paul Jakma | fb982c2 | 2007-05-04 20:15:47 +0000 | [diff] [blame] | 854 | if (attre->ecommunity && ! attre->ecommunity->refcnt) |
Paul Jakma | f6f434b | 2010-11-23 21:28:03 +0000 | [diff] [blame] | 855 | ecommunity_free (&attre->ecommunity); |
Paul Jakma | fb982c2 | 2007-05-04 20:15:47 +0000 | [diff] [blame] | 856 | if (attre->cluster && ! attre->cluster->refcnt) |
Lou Berger | 370b7e5 | 2016-02-04 21:29:49 -0500 | [diff] [blame] | 857 | { |
| 858 | cluster_free (attre->cluster); |
| 859 | attre->cluster = NULL; |
| 860 | } |
Paul Jakma | fb982c2 | 2007-05-04 20:15:47 +0000 | [diff] [blame] | 861 | if (attre->transit && ! attre->transit->refcnt) |
Lou Berger | 370b7e5 | 2016-02-04 21:29:49 -0500 | [diff] [blame] | 862 | { |
| 863 | transit_free (attre->transit); |
| 864 | attre->transit = NULL; |
| 865 | } |
Lou Berger | c374178 | 2016-01-12 13:42:01 -0500 | [diff] [blame] | 866 | encap_free(attre->encap_subtlvs); |
| 867 | attre->encap_subtlvs = NULL; |
Paul Jakma | fb982c2 | 2007-05-04 20:15:47 +0000 | [diff] [blame] | 868 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 869 | } |
| 870 | |
Paul Jakma | b881c70 | 2010-11-23 16:35:42 +0000 | [diff] [blame] | 871 | /* Implement draft-scudder-idr-optional-transitive behaviour and |
| 872 | * avoid resetting sessions for malformed attributes which are |
| 873 | * are partial/optional and hence where the error likely was not |
| 874 | * introduced by the sending neighbour. |
| 875 | */ |
| 876 | static bgp_attr_parse_ret_t |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 877 | bgp_attr_malformed (struct bgp_attr_parser_args *args, u_char subcode, |
| 878 | bgp_size_t length) |
Paul Jakma | b881c70 | 2010-11-23 16:35:42 +0000 | [diff] [blame] | 879 | { |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 880 | struct peer *const peer = args->peer; |
| 881 | const u_int8_t flags = args->flags; |
| 882 | /* startp and length must be special-cased, as whether or not to |
| 883 | * send the attribute data with the NOTIFY depends on the error, |
| 884 | * the caller therefore signals this with the seperate length argument |
| 885 | */ |
Paul Jakma | bd471fe | 2012-03-15 11:30:00 +0000 | [diff] [blame] | 886 | u_char *notify_datap = (length > 0 ? args->startp : NULL); |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 887 | |
Paul Jakma | b881c70 | 2010-11-23 16:35:42 +0000 | [diff] [blame] | 888 | /* Only relax error handling for eBGP peers */ |
Jorge Boncompte [DTI2] | 6d85b15 | 2012-05-07 16:52:54 +0000 | [diff] [blame] | 889 | if (peer->sort != BGP_PEER_EBGP) |
Paul Jakma | b881c70 | 2010-11-23 16:35:42 +0000 | [diff] [blame] | 890 | { |
| 891 | bgp_notify_send_with_data (peer, BGP_NOTIFY_UPDATE_ERR, subcode, |
Paul Jakma | bd471fe | 2012-03-15 11:30:00 +0000 | [diff] [blame] | 892 | notify_datap, length); |
Paul Jakma | b881c70 | 2010-11-23 16:35:42 +0000 | [diff] [blame] | 893 | return BGP_ATTR_PARSE_ERROR; |
| 894 | |
| 895 | } |
| 896 | |
Paul Jakma | bd471fe | 2012-03-15 11:30:00 +0000 | [diff] [blame] | 897 | /* Adjust the stream getp to the end of the attribute, in case we can |
| 898 | * still proceed but the caller hasn't read all the attribute. |
| 899 | */ |
| 900 | stream_set_getp (BGP_INPUT (peer), |
| 901 | (args->startp - STREAM_DATA (BGP_INPUT (peer))) |
| 902 | + args->total); |
| 903 | |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 904 | switch (args->type) { |
Paul Jakma | fa61e16 | 2012-03-25 21:31:47 +0100 | [diff] [blame] | 905 | /* where an attribute is relatively inconsequential, e.g. it does not |
| 906 | * affect route selection, and can be safely ignored, then any such |
| 907 | * attributes which are malformed should just be ignored and the route |
| 908 | * processed as normal. |
Paul Jakma | b881c70 | 2010-11-23 16:35:42 +0000 | [diff] [blame] | 909 | */ |
| 910 | case BGP_ATTR_AS4_AGGREGATOR: |
| 911 | case BGP_ATTR_AGGREGATOR: |
| 912 | case BGP_ATTR_ATOMIC_AGGREGATE: |
| 913 | return BGP_ATTR_PARSE_PROCEED; |
| 914 | |
| 915 | /* Core attributes, particularly ones which may influence route |
Paul Jakma | fa61e16 | 2012-03-25 21:31:47 +0100 | [diff] [blame] | 916 | * selection, should always cause session resets |
Paul Jakma | b881c70 | 2010-11-23 16:35:42 +0000 | [diff] [blame] | 917 | */ |
| 918 | case BGP_ATTR_ORIGIN: |
| 919 | case BGP_ATTR_AS_PATH: |
| 920 | case BGP_ATTR_NEXT_HOP: |
| 921 | case BGP_ATTR_MULTI_EXIT_DISC: |
| 922 | case BGP_ATTR_LOCAL_PREF: |
| 923 | case BGP_ATTR_COMMUNITIES: |
| 924 | case BGP_ATTR_ORIGINATOR_ID: |
| 925 | case BGP_ATTR_CLUSTER_LIST: |
| 926 | case BGP_ATTR_MP_REACH_NLRI: |
| 927 | case BGP_ATTR_MP_UNREACH_NLRI: |
| 928 | case BGP_ATTR_EXT_COMMUNITIES: |
| 929 | bgp_notify_send_with_data (peer, BGP_NOTIFY_UPDATE_ERR, subcode, |
Paul Jakma | bd471fe | 2012-03-15 11:30:00 +0000 | [diff] [blame] | 930 | notify_datap, length); |
Paul Jakma | b881c70 | 2010-11-23 16:35:42 +0000 | [diff] [blame] | 931 | return BGP_ATTR_PARSE_ERROR; |
| 932 | } |
| 933 | |
| 934 | /* Partial optional attributes that are malformed should not cause |
| 935 | * the whole session to be reset. Instead treat it as a withdrawal |
| 936 | * of the routes, if possible. |
| 937 | */ |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 938 | if (CHECK_FLAG (flags, BGP_ATTR_FLAG_TRANS) |
| 939 | && CHECK_FLAG (flags, BGP_ATTR_FLAG_OPTIONAL) |
| 940 | && CHECK_FLAG (flags, BGP_ATTR_FLAG_PARTIAL)) |
Paul Jakma | b881c70 | 2010-11-23 16:35:42 +0000 | [diff] [blame] | 941 | return BGP_ATTR_PARSE_WITHDRAW; |
| 942 | |
| 943 | /* default to reset */ |
David Lamparter | f57000c | 2014-06-04 01:01:10 +0200 | [diff] [blame] | 944 | return BGP_ATTR_PARSE_ERROR_NOTIFYPLS; |
Paul Jakma | b881c70 | 2010-11-23 16:35:42 +0000 | [diff] [blame] | 945 | } |
| 946 | |
Denis Ovsienko | afcb767 | 2011-10-23 22:32:44 +0400 | [diff] [blame] | 947 | /* Find out what is wrong with the path attribute flag bits and log the error. |
| 948 | "Flag bits" here stand for Optional, Transitive and Partial, but not for |
| 949 | Extended Length. Checking O/T/P bits at once implies, that the attribute |
| 950 | being diagnosed is defined by RFC as either a "well-known" or an "optional, |
| 951 | non-transitive" attribute. */ |
| 952 | static void |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 953 | bgp_attr_flags_diagnose (struct bgp_attr_parser_args *args, |
| 954 | u_int8_t desired_flags /* how RFC says it must be */ |
Denis Ovsienko | afcb767 | 2011-10-23 22:32:44 +0400 | [diff] [blame] | 955 | ) |
| 956 | { |
| 957 | u_char seen = 0, i; |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 958 | u_char real_flags = args->flags; |
| 959 | const u_int8_t attr_code = args->type; |
| 960 | |
Denis Ovsienko | afcb767 | 2011-10-23 22:32:44 +0400 | [diff] [blame] | 961 | desired_flags &= ~BGP_ATTR_FLAG_EXTLEN; |
| 962 | real_flags &= ~BGP_ATTR_FLAG_EXTLEN; |
| 963 | for (i = 0; i <= 2; i++) /* O,T,P, but not E */ |
| 964 | if |
| 965 | ( |
| 966 | CHECK_FLAG (desired_flags, attr_flag_str[i].key) != |
| 967 | CHECK_FLAG (real_flags, attr_flag_str[i].key) |
| 968 | ) |
| 969 | { |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 970 | zlog (args->peer->log, LOG_ERR, "%s attribute must%s be flagged as \"%s\"", |
Denis Ovsienko | afcb767 | 2011-10-23 22:32:44 +0400 | [diff] [blame] | 971 | LOOKUP (attr_str, attr_code), |
| 972 | CHECK_FLAG (desired_flags, attr_flag_str[i].key) ? "" : " not", |
| 973 | attr_flag_str[i].str); |
| 974 | seen = 1; |
| 975 | } |
Paul Jakma | fa5831e | 2012-03-27 11:54:04 +0100 | [diff] [blame] | 976 | if (!seen) |
| 977 | { |
| 978 | zlog (args->peer->log, LOG_DEBUG, |
| 979 | "Strange, %s called for attr %s, but no problem found with flags" |
| 980 | " (real flags 0x%x, desired 0x%x)", |
| 981 | __func__, LOOKUP (attr_str, attr_code), |
| 982 | real_flags, desired_flags); |
| 983 | } |
Denis Ovsienko | afcb767 | 2011-10-23 22:32:44 +0400 | [diff] [blame] | 984 | } |
| 985 | |
Paul Jakma | 3ecab4c | 2012-01-17 13:31:33 +0000 | [diff] [blame] | 986 | /* Required flags for attributes. EXTLEN will be masked off when testing, |
| 987 | * as will PARTIAL for optional+transitive attributes. |
| 988 | */ |
| 989 | const u_int8_t attr_flags_values [] = { |
| 990 | [BGP_ATTR_ORIGIN] = BGP_ATTR_FLAG_TRANS, |
| 991 | [BGP_ATTR_AS_PATH] = BGP_ATTR_FLAG_TRANS, |
| 992 | [BGP_ATTR_NEXT_HOP] = BGP_ATTR_FLAG_TRANS, |
| 993 | [BGP_ATTR_MULTI_EXIT_DISC] = BGP_ATTR_FLAG_OPTIONAL, |
| 994 | [BGP_ATTR_LOCAL_PREF] = BGP_ATTR_FLAG_TRANS, |
| 995 | [BGP_ATTR_ATOMIC_AGGREGATE] = BGP_ATTR_FLAG_TRANS, |
| 996 | [BGP_ATTR_AGGREGATOR] = BGP_ATTR_FLAG_TRANS | BGP_ATTR_FLAG_OPTIONAL, |
| 997 | [BGP_ATTR_COMMUNITIES] = BGP_ATTR_FLAG_TRANS | BGP_ATTR_FLAG_OPTIONAL, |
| 998 | [BGP_ATTR_ORIGINATOR_ID] = BGP_ATTR_FLAG_OPTIONAL, |
| 999 | [BGP_ATTR_CLUSTER_LIST] = BGP_ATTR_FLAG_OPTIONAL, |
| 1000 | [BGP_ATTR_MP_REACH_NLRI] = BGP_ATTR_FLAG_OPTIONAL, |
| 1001 | [BGP_ATTR_MP_UNREACH_NLRI] = BGP_ATTR_FLAG_OPTIONAL, |
| 1002 | [BGP_ATTR_EXT_COMMUNITIES] = BGP_ATTR_FLAG_OPTIONAL | BGP_ATTR_FLAG_TRANS, |
| 1003 | [BGP_ATTR_AS4_PATH] = BGP_ATTR_FLAG_OPTIONAL | BGP_ATTR_FLAG_TRANS, |
| 1004 | [BGP_ATTR_AS4_AGGREGATOR] = BGP_ATTR_FLAG_OPTIONAL | BGP_ATTR_FLAG_TRANS, |
| 1005 | }; |
Christian Franke | 0d8b32a | 2016-06-14 20:07:00 +0200 | [diff] [blame] | 1006 | static const size_t attr_flags_values_max = array_size(attr_flags_values) - 1; |
Paul Jakma | 3ecab4c | 2012-01-17 13:31:33 +0000 | [diff] [blame] | 1007 | |
| 1008 | static int |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 1009 | bgp_attr_flag_invalid (struct bgp_attr_parser_args *args) |
Paul Jakma | 3ecab4c | 2012-01-17 13:31:33 +0000 | [diff] [blame] | 1010 | { |
| 1011 | u_int8_t mask = BGP_ATTR_FLAG_EXTLEN; |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 1012 | const u_int8_t flags = args->flags; |
| 1013 | const u_int8_t attr_code = args->type; |
| 1014 | struct peer *const peer = args->peer; |
Paul Jakma | 3ecab4c | 2012-01-17 13:31:33 +0000 | [diff] [blame] | 1015 | |
| 1016 | /* there may be attributes we don't know about */ |
| 1017 | if (attr_code > attr_flags_values_max) |
| 1018 | return 0; |
| 1019 | if (attr_flags_values[attr_code] == 0) |
| 1020 | return 0; |
| 1021 | |
| 1022 | /* RFC4271, "For well-known attributes, the Transitive bit MUST be set to |
| 1023 | * 1." |
| 1024 | */ |
| 1025 | if (!CHECK_FLAG (BGP_ATTR_FLAG_OPTIONAL, flags) |
| 1026 | && !CHECK_FLAG (BGP_ATTR_FLAG_TRANS, flags)) |
| 1027 | { |
| 1028 | zlog (peer->log, LOG_ERR, |
| 1029 | "%s well-known attributes must have transitive flag set (%x)", |
| 1030 | LOOKUP (attr_str, attr_code), flags); |
| 1031 | return 1; |
| 1032 | } |
| 1033 | |
| 1034 | /* "For well-known attributes and for optional non-transitive attributes, |
| 1035 | * the Partial bit MUST be set to 0." |
| 1036 | */ |
| 1037 | if (CHECK_FLAG (flags, BGP_ATTR_FLAG_PARTIAL)) |
| 1038 | { |
| 1039 | if (!CHECK_FLAG (flags, BGP_ATTR_FLAG_OPTIONAL)) |
| 1040 | { |
| 1041 | zlog (peer->log, LOG_ERR, |
| 1042 | "%s well-known attribute " |
| 1043 | "must NOT have the partial flag set (%x)", |
| 1044 | LOOKUP (attr_str, attr_code), flags); |
| 1045 | return 1; |
| 1046 | } |
| 1047 | if (CHECK_FLAG (flags, BGP_ATTR_FLAG_OPTIONAL) |
| 1048 | && !CHECK_FLAG (flags, BGP_ATTR_FLAG_TRANS)) |
| 1049 | { |
| 1050 | zlog (peer->log, LOG_ERR, |
| 1051 | "%s optional + transitive attribute " |
| 1052 | "must NOT have the partial flag set (%x)", |
| 1053 | LOOKUP (attr_str, attr_code), flags); |
| 1054 | return 1; |
| 1055 | } |
| 1056 | } |
| 1057 | |
| 1058 | /* Optional transitive attributes may go through speakers that don't |
| 1059 | * reocgnise them and set the Partial bit. |
| 1060 | */ |
| 1061 | if (CHECK_FLAG (flags, BGP_ATTR_FLAG_OPTIONAL) |
| 1062 | && CHECK_FLAG (flags, BGP_ATTR_FLAG_TRANS)) |
| 1063 | SET_FLAG (mask, BGP_ATTR_FLAG_PARTIAL); |
| 1064 | |
Paul Jakma | 683f2b8 | 2012-03-23 14:58:45 +0000 | [diff] [blame] | 1065 | if ((flags & ~mask) |
Paul Jakma | 3ecab4c | 2012-01-17 13:31:33 +0000 | [diff] [blame] | 1066 | == attr_flags_values[attr_code]) |
| 1067 | return 0; |
| 1068 | |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 1069 | bgp_attr_flags_diagnose (args, attr_flags_values[attr_code]); |
Paul Jakma | 3ecab4c | 2012-01-17 13:31:33 +0000 | [diff] [blame] | 1070 | return 1; |
| 1071 | } |
| 1072 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1073 | /* Get origin attribute of the update message. */ |
Paul Jakma | b881c70 | 2010-11-23 16:35:42 +0000 | [diff] [blame] | 1074 | static bgp_attr_parse_ret_t |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 1075 | bgp_attr_origin (struct bgp_attr_parser_args *args) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1076 | { |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 1077 | struct peer *const peer = args->peer; |
| 1078 | struct attr *const attr = args->attr; |
| 1079 | const bgp_size_t length = args->length; |
| 1080 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1081 | /* If any recognized attribute has Attribute Length that conflicts |
| 1082 | with the expected length (based on the attribute type code), then |
| 1083 | the Error Subcode is set to Attribute Length Error. The Data |
| 1084 | field contains the erroneous attribute (type, length and |
| 1085 | value). */ |
| 1086 | if (length != 1) |
| 1087 | { |
| 1088 | zlog (peer->log, LOG_ERR, "Origin attribute length is not one %d", |
| 1089 | length); |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 1090 | return bgp_attr_malformed (args, |
Paul Jakma | b881c70 | 2010-11-23 16:35:42 +0000 | [diff] [blame] | 1091 | BGP_NOTIFY_UPDATE_ATTR_LENG_ERR, |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 1092 | args->total); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1093 | } |
| 1094 | |
| 1095 | /* Fetch origin attribute. */ |
| 1096 | attr->origin = stream_getc (BGP_INPUT (peer)); |
| 1097 | |
| 1098 | /* If the ORIGIN attribute has an undefined value, then the Error |
| 1099 | Subcode is set to Invalid Origin Attribute. The Data field |
| 1100 | contains the unrecognized attribute (type, length and value). */ |
| 1101 | if ((attr->origin != BGP_ORIGIN_IGP) |
| 1102 | && (attr->origin != BGP_ORIGIN_EGP) |
| 1103 | && (attr->origin != BGP_ORIGIN_INCOMPLETE)) |
| 1104 | { |
| 1105 | zlog (peer->log, LOG_ERR, "Origin attribute value is invalid %d", |
| 1106 | attr->origin); |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 1107 | return bgp_attr_malformed (args, |
Paul Jakma | b881c70 | 2010-11-23 16:35:42 +0000 | [diff] [blame] | 1108 | BGP_NOTIFY_UPDATE_INVAL_ORIGIN, |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 1109 | args->total); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1110 | } |
| 1111 | |
| 1112 | /* Set oring attribute flag. */ |
| 1113 | attr->flag |= ATTR_FLAG_BIT (BGP_ATTR_ORIGIN); |
| 1114 | |
| 1115 | return 0; |
| 1116 | } |
Paul Jakma | ab00529 | 2010-11-27 22:48:34 +0000 | [diff] [blame] | 1117 | |
| 1118 | /* Parse AS path information. This function is wrapper of |
| 1119 | aspath_parse. */ |
| 1120 | static int |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 1121 | bgp_attr_aspath (struct bgp_attr_parser_args *args) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1122 | { |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 1123 | struct attr *const attr = args->attr; |
| 1124 | struct peer *const peer = args->peer; |
| 1125 | const bgp_size_t length = args->length; |
Paul Jakma | 83a9a22 | 2012-01-08 14:15:03 +0000 | [diff] [blame] | 1126 | |
Paul Jakma | ab00529 | 2010-11-27 22:48:34 +0000 | [diff] [blame] | 1127 | /* |
| 1128 | * peer with AS4 => will get 4Byte ASnums |
| 1129 | * otherwise, will get 16 Bit |
| 1130 | */ |
| 1131 | attr->aspath = aspath_parse (peer->ibuf, length, |
| 1132 | CHECK_FLAG (peer->cap, PEER_CAP_AS4_RCV)); |
| 1133 | |
| 1134 | /* In case of IBGP, length will be zero. */ |
| 1135 | if (! attr->aspath) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1136 | { |
Paul Jakma | b881c70 | 2010-11-23 16:35:42 +0000 | [diff] [blame] | 1137 | zlog (peer->log, LOG_ERR, |
| 1138 | "Malformed AS path from %s, length is %d", |
| 1139 | peer->host, length); |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 1140 | return bgp_attr_malformed (args, BGP_NOTIFY_UPDATE_MAL_AS_PATH, 0); |
Paul Jakma | ab00529 | 2010-11-27 22:48:34 +0000 | [diff] [blame] | 1141 | } |
Chris Hall | cddb811 | 2010-08-09 22:31:37 +0400 | [diff] [blame] | 1142 | |
Paul Jakma | ab00529 | 2010-11-27 22:48:34 +0000 | [diff] [blame] | 1143 | /* Set aspath attribute flag. */ |
| 1144 | attr->flag |= ATTR_FLAG_BIT (BGP_ATTR_AS_PATH); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1145 | |
Paul Jakma | b881c70 | 2010-11-23 16:35:42 +0000 | [diff] [blame] | 1146 | return BGP_ATTR_PARSE_PROCEED; |
Paul Jakma | 0b2aa3a | 2007-10-14 22:32:21 +0000 | [diff] [blame] | 1147 | } |
| 1148 | |
Paul Jakma | b881c70 | 2010-11-23 16:35:42 +0000 | [diff] [blame] | 1149 | static bgp_attr_parse_ret_t |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 1150 | bgp_attr_aspath_check (struct peer *const peer, struct attr *const attr) |
Paul Jakma | 0b2aa3a | 2007-10-14 22:32:21 +0000 | [diff] [blame] | 1151 | { |
| 1152 | /* These checks were part of bgp_attr_aspath, but with |
| 1153 | * as4 we should to check aspath things when |
| 1154 | * aspath synthesizing with as4_path has already taken place. |
| 1155 | * Otherwise we check ASPATH and use the synthesized thing, and that is |
| 1156 | * not right. |
| 1157 | * So do the checks later, i.e. here |
| 1158 | */ |
| 1159 | struct bgp *bgp = peer->bgp; |
| 1160 | struct aspath *aspath; |
| 1161 | |
Vasilis Tsiligiannis | ca87e1d | 2009-07-20 01:28:35 +0300 | [diff] [blame] | 1162 | /* Confederation sanity check. */ |
Jorge Boncompte [DTI2] | 6d85b15 | 2012-05-07 16:52:54 +0000 | [diff] [blame] | 1163 | if ((peer->sort == BGP_PEER_CONFED && ! aspath_left_confed_check (attr->aspath)) || |
| 1164 | (peer->sort == BGP_PEER_EBGP && aspath_confed_check (attr->aspath))) |
Vasilis Tsiligiannis | ca87e1d | 2009-07-20 01:28:35 +0300 | [diff] [blame] | 1165 | { |
| 1166 | zlog (peer->log, LOG_ERR, "Malformed AS path from %s", peer->host); |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 1167 | bgp_notify_send (peer, BGP_NOTIFY_UPDATE_ERR, |
| 1168 | BGP_NOTIFY_UPDATE_MAL_AS_PATH); |
| 1169 | return BGP_ATTR_PARSE_ERROR; |
Vasilis Tsiligiannis | ca87e1d | 2009-07-20 01:28:35 +0300 | [diff] [blame] | 1170 | } |
| 1171 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1172 | /* First AS check for EBGP. */ |
| 1173 | if (bgp != NULL && bgp_flag_check (bgp, BGP_FLAG_ENFORCE_FIRST_AS)) |
| 1174 | { |
Jorge Boncompte [DTI2] | 6d85b15 | 2012-05-07 16:52:54 +0000 | [diff] [blame] | 1175 | if (peer->sort == BGP_PEER_EBGP |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1176 | && ! aspath_firstas_check (attr->aspath, peer->as)) |
| 1177 | { |
| 1178 | zlog (peer->log, LOG_ERR, |
Denis Ovsienko | aea339f | 2009-04-30 17:16:22 +0400 | [diff] [blame] | 1179 | "%s incorrect first AS (must be %u)", peer->host, peer->as); |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 1180 | bgp_notify_send (peer, BGP_NOTIFY_UPDATE_ERR, |
| 1181 | BGP_NOTIFY_UPDATE_MAL_AS_PATH); |
| 1182 | return BGP_ATTR_PARSE_ERROR; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1183 | } |
| 1184 | } |
| 1185 | |
| 1186 | /* local-as prepend */ |
| 1187 | if (peer->change_local_as && |
| 1188 | ! CHECK_FLAG (peer->flags, PEER_FLAG_LOCAL_AS_NO_PREPEND)) |
| 1189 | { |
| 1190 | aspath = aspath_dup (attr->aspath); |
| 1191 | aspath = aspath_add_seq (aspath, peer->change_local_as); |
Paul Jakma | f6f434b | 2010-11-23 21:28:03 +0000 | [diff] [blame] | 1192 | aspath_unintern (&attr->aspath); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1193 | attr->aspath = aspath_intern (aspath); |
| 1194 | } |
| 1195 | |
Paul Jakma | b881c70 | 2010-11-23 16:35:42 +0000 | [diff] [blame] | 1196 | return BGP_ATTR_PARSE_PROCEED; |
Paul Jakma | 0b2aa3a | 2007-10-14 22:32:21 +0000 | [diff] [blame] | 1197 | } |
Paul Jakma | 0b2aa3a | 2007-10-14 22:32:21 +0000 | [diff] [blame] | 1198 | |
Paul Jakma | ab00529 | 2010-11-27 22:48:34 +0000 | [diff] [blame] | 1199 | /* Parse AS4 path information. This function is another wrapper of |
| 1200 | aspath_parse. */ |
| 1201 | static int |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 1202 | bgp_attr_as4_path (struct bgp_attr_parser_args *args, struct aspath **as4_path) |
Paul Jakma | ab00529 | 2010-11-27 22:48:34 +0000 | [diff] [blame] | 1203 | { |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 1204 | struct peer *const peer = args->peer; |
| 1205 | struct attr *const attr = args->attr; |
| 1206 | const bgp_size_t length = args->length; |
Paul Jakma | 3ecab4c | 2012-01-17 13:31:33 +0000 | [diff] [blame] | 1207 | |
Paul Jakma | ab00529 | 2010-11-27 22:48:34 +0000 | [diff] [blame] | 1208 | *as4_path = aspath_parse (peer->ibuf, length, 1); |
| 1209 | |
Paul Jakma | b881c70 | 2010-11-23 16:35:42 +0000 | [diff] [blame] | 1210 | /* In case of IBGP, length will be zero. */ |
| 1211 | if (!*as4_path) |
| 1212 | { |
| 1213 | zlog (peer->log, LOG_ERR, |
| 1214 | "Malformed AS4 path from %s, length is %d", |
| 1215 | peer->host, length); |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 1216 | return bgp_attr_malformed (args, |
Paul Jakma | b881c70 | 2010-11-23 16:35:42 +0000 | [diff] [blame] | 1217 | BGP_NOTIFY_UPDATE_MAL_AS_PATH, |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 1218 | 0); |
Paul Jakma | b881c70 | 2010-11-23 16:35:42 +0000 | [diff] [blame] | 1219 | } |
| 1220 | |
Paul Jakma | ab00529 | 2010-11-27 22:48:34 +0000 | [diff] [blame] | 1221 | /* Set aspath attribute flag. */ |
| 1222 | if (as4_path) |
| 1223 | attr->flag |= ATTR_FLAG_BIT (BGP_ATTR_AS4_PATH); |
| 1224 | |
Paul Jakma | b881c70 | 2010-11-23 16:35:42 +0000 | [diff] [blame] | 1225 | return BGP_ATTR_PARSE_PROCEED; |
Paul Jakma | 0b2aa3a | 2007-10-14 22:32:21 +0000 | [diff] [blame] | 1226 | } |
| 1227 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1228 | /* Nexthop attribute. */ |
Paul Jakma | b881c70 | 2010-11-23 16:35:42 +0000 | [diff] [blame] | 1229 | static bgp_attr_parse_ret_t |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 1230 | bgp_attr_nexthop (struct bgp_attr_parser_args *args) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1231 | { |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 1232 | struct peer *const peer = args->peer; |
| 1233 | struct attr *const attr = args->attr; |
| 1234 | const bgp_size_t length = args->length; |
| 1235 | |
Denis Ovsienko | bc3443e | 2011-09-22 12:48:14 +0400 | [diff] [blame] | 1236 | in_addr_t nexthop_h, nexthop_n; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1237 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1238 | /* Check nexthop attribute length. */ |
| 1239 | if (length != 4) |
| 1240 | { |
| 1241 | zlog (peer->log, LOG_ERR, "Nexthop attribute length isn't four [%d]", |
| 1242 | length); |
| 1243 | |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 1244 | return bgp_attr_malformed (args, |
Paul Jakma | b881c70 | 2010-11-23 16:35:42 +0000 | [diff] [blame] | 1245 | BGP_NOTIFY_UPDATE_ATTR_LENG_ERR, |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 1246 | args->total); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1247 | } |
| 1248 | |
Denis Ovsienko | bc3443e | 2011-09-22 12:48:14 +0400 | [diff] [blame] | 1249 | /* According to section 6.3 of RFC4271, syntactically incorrect NEXT_HOP |
| 1250 | attribute must result in a NOTIFICATION message (this is implemented below). |
| 1251 | At the same time, semantically incorrect NEXT_HOP is more likely to be just |
| 1252 | logged locally (this is implemented somewhere else). The UPDATE message |
| 1253 | gets ignored in any of these cases. */ |
| 1254 | nexthop_n = stream_get_ipv4 (peer->ibuf); |
| 1255 | nexthop_h = ntohl (nexthop_n); |
Lou Berger | f53585d | 2016-05-17 07:10:36 -0400 | [diff] [blame] | 1256 | if ((IPV4_NET0 (nexthop_h) || IPV4_NET127 (nexthop_h) || IPV4_CLASS_DE (nexthop_h)) |
| 1257 | && !BGP_DEBUG (allow_martians, ALLOW_MARTIANS)) /* loopbacks may be used in testing */ |
Denis Ovsienko | bc3443e | 2011-09-22 12:48:14 +0400 | [diff] [blame] | 1258 | { |
| 1259 | char buf[INET_ADDRSTRLEN]; |
David Lamparter | bb02b82 | 2014-06-04 01:01:00 +0200 | [diff] [blame] | 1260 | inet_ntop (AF_INET, &nexthop_n, buf, INET_ADDRSTRLEN); |
Denis Ovsienko | bc3443e | 2011-09-22 12:48:14 +0400 | [diff] [blame] | 1261 | zlog (peer->log, LOG_ERR, "Martian nexthop %s", buf); |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 1262 | return bgp_attr_malformed (args, |
Denis Ovsienko | bc3443e | 2011-09-22 12:48:14 +0400 | [diff] [blame] | 1263 | BGP_NOTIFY_UPDATE_INVAL_NEXT_HOP, |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 1264 | args->total); |
Denis Ovsienko | bc3443e | 2011-09-22 12:48:14 +0400 | [diff] [blame] | 1265 | } |
| 1266 | |
| 1267 | attr->nexthop.s_addr = nexthop_n; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1268 | attr->flag |= ATTR_FLAG_BIT (BGP_ATTR_NEXT_HOP); |
| 1269 | |
Paul Jakma | b881c70 | 2010-11-23 16:35:42 +0000 | [diff] [blame] | 1270 | return BGP_ATTR_PARSE_PROCEED; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1271 | } |
| 1272 | |
| 1273 | /* MED atrribute. */ |
Paul Jakma | b881c70 | 2010-11-23 16:35:42 +0000 | [diff] [blame] | 1274 | static bgp_attr_parse_ret_t |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 1275 | bgp_attr_med (struct bgp_attr_parser_args *args) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1276 | { |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 1277 | struct peer *const peer = args->peer; |
| 1278 | struct attr *const attr = args->attr; |
| 1279 | const bgp_size_t length = args->length; |
| 1280 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1281 | /* Length check. */ |
| 1282 | if (length != 4) |
| 1283 | { |
| 1284 | zlog (peer->log, LOG_ERR, |
| 1285 | "MED attribute length isn't four [%d]", length); |
Paul Jakma | b881c70 | 2010-11-23 16:35:42 +0000 | [diff] [blame] | 1286 | |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 1287 | return bgp_attr_malformed (args, |
Paul Jakma | b881c70 | 2010-11-23 16:35:42 +0000 | [diff] [blame] | 1288 | BGP_NOTIFY_UPDATE_ATTR_LENG_ERR, |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 1289 | args->total); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1290 | } |
| 1291 | |
| 1292 | attr->med = stream_getl (peer->ibuf); |
| 1293 | |
| 1294 | attr->flag |= ATTR_FLAG_BIT (BGP_ATTR_MULTI_EXIT_DISC); |
| 1295 | |
Paul Jakma | b881c70 | 2010-11-23 16:35:42 +0000 | [diff] [blame] | 1296 | return BGP_ATTR_PARSE_PROCEED; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1297 | } |
| 1298 | |
| 1299 | /* Local preference attribute. */ |
Paul Jakma | b881c70 | 2010-11-23 16:35:42 +0000 | [diff] [blame] | 1300 | static bgp_attr_parse_ret_t |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 1301 | bgp_attr_local_pref (struct bgp_attr_parser_args *args) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1302 | { |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 1303 | struct peer *const peer = args->peer; |
| 1304 | struct attr *const attr = args->attr; |
| 1305 | const bgp_size_t length = args->length; |
Paul Jakma | 3ecab4c | 2012-01-17 13:31:33 +0000 | [diff] [blame] | 1306 | |
Denis Ovsienko | a624cae | 2011-10-08 13:54:48 +0400 | [diff] [blame] | 1307 | /* Length check. */ |
| 1308 | if (length != 4) |
| 1309 | { |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 1310 | zlog (peer->log, LOG_ERR, "LOCAL_PREF attribute length isn't 4 [%u]", |
| 1311 | length); |
| 1312 | return bgp_attr_malformed (args, |
Denis Ovsienko | a624cae | 2011-10-08 13:54:48 +0400 | [diff] [blame] | 1313 | BGP_NOTIFY_UPDATE_ATTR_LENG_ERR, |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 1314 | args->total); |
Denis Ovsienko | a624cae | 2011-10-08 13:54:48 +0400 | [diff] [blame] | 1315 | } |
Denis Ovsienko | 0ea968d | 2011-09-19 16:30:47 +0400 | [diff] [blame] | 1316 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1317 | /* If it is contained in an UPDATE message that is received from an |
| 1318 | external peer, then this attribute MUST be ignored by the |
| 1319 | receiving speaker. */ |
Jorge Boncompte [DTI2] | 6d85b15 | 2012-05-07 16:52:54 +0000 | [diff] [blame] | 1320 | if (peer->sort == BGP_PEER_EBGP) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1321 | { |
paul | 9985f83 | 2005-02-09 15:51:56 +0000 | [diff] [blame] | 1322 | stream_forward_getp (peer->ibuf, length); |
Paul Jakma | b881c70 | 2010-11-23 16:35:42 +0000 | [diff] [blame] | 1323 | return BGP_ATTR_PARSE_PROCEED; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1324 | } |
| 1325 | |
Denis Ovsienko | a624cae | 2011-10-08 13:54:48 +0400 | [diff] [blame] | 1326 | attr->local_pref = stream_getl (peer->ibuf); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1327 | |
| 1328 | /* Set atomic aggregate flag. */ |
| 1329 | attr->flag |= ATTR_FLAG_BIT (BGP_ATTR_LOCAL_PREF); |
| 1330 | |
Paul Jakma | b881c70 | 2010-11-23 16:35:42 +0000 | [diff] [blame] | 1331 | return BGP_ATTR_PARSE_PROCEED; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1332 | } |
| 1333 | |
| 1334 | /* Atomic aggregate. */ |
paul | 94f2b39 | 2005-06-28 12:44:16 +0000 | [diff] [blame] | 1335 | static int |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 1336 | bgp_attr_atomic (struct bgp_attr_parser_args *args) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1337 | { |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 1338 | struct peer *const peer = args->peer; |
| 1339 | struct attr *const attr = args->attr; |
| 1340 | const bgp_size_t length = args->length; |
Paul Jakma | 3ecab4c | 2012-01-17 13:31:33 +0000 | [diff] [blame] | 1341 | |
Denis Ovsienko | 9eba2ad | 2011-09-20 14:43:50 +0400 | [diff] [blame] | 1342 | /* Length check. */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1343 | if (length != 0) |
| 1344 | { |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 1345 | zlog (peer->log, LOG_ERR, "ATOMIC_AGGREGATE attribute length isn't 0 [%u]", |
| 1346 | length); |
| 1347 | return bgp_attr_malformed (args, |
Paul Jakma | b881c70 | 2010-11-23 16:35:42 +0000 | [diff] [blame] | 1348 | BGP_NOTIFY_UPDATE_ATTR_LENG_ERR, |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 1349 | args->total); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1350 | } |
| 1351 | |
| 1352 | /* Set atomic aggregate flag. */ |
| 1353 | attr->flag |= ATTR_FLAG_BIT (BGP_ATTR_ATOMIC_AGGREGATE); |
| 1354 | |
Paul Jakma | b881c70 | 2010-11-23 16:35:42 +0000 | [diff] [blame] | 1355 | return BGP_ATTR_PARSE_PROCEED; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1356 | } |
| 1357 | |
| 1358 | /* Aggregator attribute */ |
paul | 94f2b39 | 2005-06-28 12:44:16 +0000 | [diff] [blame] | 1359 | static int |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 1360 | bgp_attr_aggregator (struct bgp_attr_parser_args *args) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1361 | { |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 1362 | struct peer *const peer = args->peer; |
| 1363 | struct attr *const attr = args->attr; |
| 1364 | const bgp_size_t length = args->length; |
| 1365 | |
Paul Jakma | 0b2aa3a | 2007-10-14 22:32:21 +0000 | [diff] [blame] | 1366 | int wantedlen = 6; |
Paul Jakma | fb982c2 | 2007-05-04 20:15:47 +0000 | [diff] [blame] | 1367 | struct attr_extra *attre = bgp_attr_extra_get (attr); |
Paul Jakma | 3ecab4c | 2012-01-17 13:31:33 +0000 | [diff] [blame] | 1368 | |
Paul Jakma | 0b2aa3a | 2007-10-14 22:32:21 +0000 | [diff] [blame] | 1369 | /* peer with AS4 will send 4 Byte AS, peer without will send 2 Byte */ |
Paul Jakma | b881c70 | 2010-11-23 16:35:42 +0000 | [diff] [blame] | 1370 | if (CHECK_FLAG (peer->cap, PEER_CAP_AS4_RCV)) |
Paul Jakma | 0b2aa3a | 2007-10-14 22:32:21 +0000 | [diff] [blame] | 1371 | wantedlen = 8; |
| 1372 | |
| 1373 | if (length != wantedlen) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1374 | { |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 1375 | zlog (peer->log, LOG_ERR, "AGGREGATOR attribute length isn't %u [%u]", |
| 1376 | wantedlen, length); |
| 1377 | return bgp_attr_malformed (args, |
Paul Jakma | b881c70 | 2010-11-23 16:35:42 +0000 | [diff] [blame] | 1378 | BGP_NOTIFY_UPDATE_ATTR_LENG_ERR, |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 1379 | args->total); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1380 | } |
Paul Jakma | 0b2aa3a | 2007-10-14 22:32:21 +0000 | [diff] [blame] | 1381 | |
| 1382 | if ( CHECK_FLAG (peer->cap, PEER_CAP_AS4_RCV ) ) |
| 1383 | attre->aggregator_as = stream_getl (peer->ibuf); |
| 1384 | else |
| 1385 | attre->aggregator_as = stream_getw (peer->ibuf); |
Paul Jakma | fb982c2 | 2007-05-04 20:15:47 +0000 | [diff] [blame] | 1386 | attre->aggregator_addr.s_addr = stream_get_ipv4 (peer->ibuf); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1387 | |
| 1388 | /* Set atomic aggregate flag. */ |
| 1389 | attr->flag |= ATTR_FLAG_BIT (BGP_ATTR_AGGREGATOR); |
| 1390 | |
Paul Jakma | b881c70 | 2010-11-23 16:35:42 +0000 | [diff] [blame] | 1391 | return BGP_ATTR_PARSE_PROCEED; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1392 | } |
| 1393 | |
Paul Jakma | 0b2aa3a | 2007-10-14 22:32:21 +0000 | [diff] [blame] | 1394 | /* New Aggregator attribute */ |
Paul Jakma | b881c70 | 2010-11-23 16:35:42 +0000 | [diff] [blame] | 1395 | static bgp_attr_parse_ret_t |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 1396 | bgp_attr_as4_aggregator (struct bgp_attr_parser_args *args, |
| 1397 | as_t *as4_aggregator_as, |
| 1398 | struct in_addr *as4_aggregator_addr) |
Paul Jakma | 0b2aa3a | 2007-10-14 22:32:21 +0000 | [diff] [blame] | 1399 | { |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 1400 | struct peer *const peer = args->peer; |
| 1401 | struct attr *const attr = args->attr; |
| 1402 | const bgp_size_t length = args->length; |
| 1403 | |
Paul Jakma | 0b2aa3a | 2007-10-14 22:32:21 +0000 | [diff] [blame] | 1404 | if (length != 8) |
| 1405 | { |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 1406 | zlog (peer->log, LOG_ERR, "New Aggregator length is not 8 [%d]", |
| 1407 | length); |
| 1408 | return bgp_attr_malformed (args, |
Paul Jakma | b881c70 | 2010-11-23 16:35:42 +0000 | [diff] [blame] | 1409 | BGP_NOTIFY_UPDATE_ATTR_LENG_ERR, |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 1410 | 0); |
Paul Jakma | 0b2aa3a | 2007-10-14 22:32:21 +0000 | [diff] [blame] | 1411 | } |
Paul Jakma | 3ecab4c | 2012-01-17 13:31:33 +0000 | [diff] [blame] | 1412 | |
Paul Jakma | 0b2aa3a | 2007-10-14 22:32:21 +0000 | [diff] [blame] | 1413 | *as4_aggregator_as = stream_getl (peer->ibuf); |
| 1414 | as4_aggregator_addr->s_addr = stream_get_ipv4 (peer->ibuf); |
| 1415 | |
| 1416 | attr->flag |= ATTR_FLAG_BIT (BGP_ATTR_AS4_AGGREGATOR); |
| 1417 | |
Paul Jakma | b881c70 | 2010-11-23 16:35:42 +0000 | [diff] [blame] | 1418 | return BGP_ATTR_PARSE_PROCEED; |
Paul Jakma | 0b2aa3a | 2007-10-14 22:32:21 +0000 | [diff] [blame] | 1419 | } |
| 1420 | |
| 1421 | /* Munge Aggregator and New-Aggregator, AS_PATH and NEW_AS_PATH. |
| 1422 | */ |
Paul Jakma | b881c70 | 2010-11-23 16:35:42 +0000 | [diff] [blame] | 1423 | static bgp_attr_parse_ret_t |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 1424 | bgp_attr_munge_as4_attrs (struct peer *const peer, |
| 1425 | struct attr *const attr, |
Paul Jakma | 0b2aa3a | 2007-10-14 22:32:21 +0000 | [diff] [blame] | 1426 | struct aspath *as4_path, as_t as4_aggregator, |
| 1427 | struct in_addr *as4_aggregator_addr) |
| 1428 | { |
| 1429 | int ignore_as4_path = 0; |
| 1430 | struct aspath *newpath; |
| 1431 | struct attr_extra *attre = attr->extra; |
Paul Jakma | 055086f | 2014-09-23 15:23:01 +0100 | [diff] [blame] | 1432 | |
| 1433 | if (!attr->aspath) |
| 1434 | { |
| 1435 | /* NULL aspath shouldn't be possible as bgp_attr_parse should have |
| 1436 | * checked that all well-known, mandatory attributes were present. |
| 1437 | * |
| 1438 | * Can only be a problem with peer itself - hard error |
| 1439 | */ |
| 1440 | return BGP_ATTR_PARSE_ERROR; |
| 1441 | } |
| 1442 | |
Paul Jakma | b881c70 | 2010-11-23 16:35:42 +0000 | [diff] [blame] | 1443 | if (CHECK_FLAG (peer->cap, PEER_CAP_AS4_RCV)) |
Paul Jakma | 0b2aa3a | 2007-10-14 22:32:21 +0000 | [diff] [blame] | 1444 | { |
| 1445 | /* peer can do AS4, so we ignore AS4_PATH and AS4_AGGREGATOR |
| 1446 | * if given. |
| 1447 | * It is worth a warning though, because the peer really |
| 1448 | * should not send them |
| 1449 | */ |
| 1450 | if (BGP_DEBUG(as4, AS4)) |
| 1451 | { |
| 1452 | if (attr->flag & (ATTR_FLAG_BIT(BGP_ATTR_AS4_PATH))) |
| 1453 | zlog_debug ("[AS4] %s %s AS4_PATH", |
| 1454 | peer->host, "AS4 capable peer, yet it sent"); |
| 1455 | |
| 1456 | if (attr->flag & (ATTR_FLAG_BIT(BGP_ATTR_AS4_AGGREGATOR))) |
| 1457 | zlog_debug ("[AS4] %s %s AS4_AGGREGATOR", |
| 1458 | peer->host, "AS4 capable peer, yet it sent"); |
| 1459 | } |
| 1460 | |
Paul Jakma | b881c70 | 2010-11-23 16:35:42 +0000 | [diff] [blame] | 1461 | return BGP_ATTR_PARSE_PROCEED; |
Paul Jakma | 0b2aa3a | 2007-10-14 22:32:21 +0000 | [diff] [blame] | 1462 | } |
| 1463 | |
Paul Jakma | 0b2aa3a | 2007-10-14 22:32:21 +0000 | [diff] [blame] | 1464 | /* We have a asn16 peer. First, look for AS4_AGGREGATOR |
| 1465 | * because that may override AS4_PATH |
| 1466 | */ |
| 1467 | if (attr->flag & (ATTR_FLAG_BIT (BGP_ATTR_AS4_AGGREGATOR) ) ) |
| 1468 | { |
Paul Jakma | b881c70 | 2010-11-23 16:35:42 +0000 | [diff] [blame] | 1469 | if (attr->flag & (ATTR_FLAG_BIT (BGP_ATTR_AGGREGATOR) ) ) |
Paul Jakma | 0b2aa3a | 2007-10-14 22:32:21 +0000 | [diff] [blame] | 1470 | { |
Paul Jakma | 370b64a | 2007-12-22 16:49:52 +0000 | [diff] [blame] | 1471 | assert (attre); |
| 1472 | |
Paul Jakma | 0b2aa3a | 2007-10-14 22:32:21 +0000 | [diff] [blame] | 1473 | /* received both. |
| 1474 | * if the as_number in aggregator is not AS_TRANS, |
| 1475 | * then AS4_AGGREGATOR and AS4_PATH shall be ignored |
| 1476 | * and the Aggregator shall be taken as |
| 1477 | * info on the aggregating node, and the AS_PATH |
| 1478 | * shall be taken as the AS_PATH |
| 1479 | * otherwise |
| 1480 | * the Aggregator shall be ignored and the |
| 1481 | * AS4_AGGREGATOR shall be taken as the |
| 1482 | * Aggregating node and the AS_PATH is to be |
| 1483 | * constructed "as in all other cases" |
| 1484 | */ |
Paul Jakma | b881c70 | 2010-11-23 16:35:42 +0000 | [diff] [blame] | 1485 | if (attre->aggregator_as != BGP_AS_TRANS) |
Paul Jakma | 0b2aa3a | 2007-10-14 22:32:21 +0000 | [diff] [blame] | 1486 | { |
| 1487 | /* ignore */ |
| 1488 | if ( BGP_DEBUG(as4, AS4)) |
| 1489 | zlog_debug ("[AS4] %s BGP not AS4 capable peer" |
| 1490 | " send AGGREGATOR != AS_TRANS and" |
| 1491 | " AS4_AGGREGATOR, so ignore" |
| 1492 | " AS4_AGGREGATOR and AS4_PATH", peer->host); |
| 1493 | ignore_as4_path = 1; |
| 1494 | } |
| 1495 | else |
| 1496 | { |
| 1497 | /* "New_aggregator shall be taken as aggregator" */ |
| 1498 | attre->aggregator_as = as4_aggregator; |
| 1499 | attre->aggregator_addr.s_addr = as4_aggregator_addr->s_addr; |
| 1500 | } |
| 1501 | } |
| 1502 | else |
| 1503 | { |
| 1504 | /* We received a AS4_AGGREGATOR but no AGGREGATOR. |
| 1505 | * That is bogus - but reading the conditions |
| 1506 | * we have to handle AS4_AGGREGATOR as if it were |
| 1507 | * AGGREGATOR in that case |
| 1508 | */ |
| 1509 | if ( BGP_DEBUG(as4, AS4)) |
| 1510 | zlog_debug ("[AS4] %s BGP not AS4 capable peer send" |
| 1511 | " AS4_AGGREGATOR but no AGGREGATOR, will take" |
| 1512 | " it as if AGGREGATOR with AS_TRANS had been there", peer->host); |
Paul Jakma | 370b64a | 2007-12-22 16:49:52 +0000 | [diff] [blame] | 1513 | (attre = bgp_attr_extra_get (attr))->aggregator_as = as4_aggregator; |
Paul Jakma | 0b2aa3a | 2007-10-14 22:32:21 +0000 | [diff] [blame] | 1514 | /* sweep it under the carpet and simulate a "good" AGGREGATOR */ |
| 1515 | attr->flag |= (ATTR_FLAG_BIT (BGP_ATTR_AGGREGATOR)); |
| 1516 | } |
| 1517 | } |
| 1518 | |
| 1519 | /* need to reconcile NEW_AS_PATH and AS_PATH */ |
Paul Jakma | b881c70 | 2010-11-23 16:35:42 +0000 | [diff] [blame] | 1520 | if (!ignore_as4_path && (attr->flag & (ATTR_FLAG_BIT( BGP_ATTR_AS4_PATH)))) |
Paul Jakma | 0b2aa3a | 2007-10-14 22:32:21 +0000 | [diff] [blame] | 1521 | { |
Paul Jakma | 055086f | 2014-09-23 15:23:01 +0100 | [diff] [blame] | 1522 | newpath = aspath_reconcile_as4 (attr->aspath, as4_path); |
| 1523 | aspath_unintern (&attr->aspath); |
| 1524 | attr->aspath = aspath_intern (newpath); |
Paul Jakma | 0b2aa3a | 2007-10-14 22:32:21 +0000 | [diff] [blame] | 1525 | } |
Paul Jakma | b881c70 | 2010-11-23 16:35:42 +0000 | [diff] [blame] | 1526 | return BGP_ATTR_PARSE_PROCEED; |
Paul Jakma | 0b2aa3a | 2007-10-14 22:32:21 +0000 | [diff] [blame] | 1527 | } |
| 1528 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1529 | /* Community attribute. */ |
Paul Jakma | b881c70 | 2010-11-23 16:35:42 +0000 | [diff] [blame] | 1530 | static bgp_attr_parse_ret_t |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 1531 | bgp_attr_community (struct bgp_attr_parser_args *args) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1532 | { |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 1533 | struct peer *const peer = args->peer; |
| 1534 | struct attr *const attr = args->attr; |
| 1535 | const bgp_size_t length = args->length; |
Paul Jakma | b881c70 | 2010-11-23 16:35:42 +0000 | [diff] [blame] | 1536 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1537 | if (length == 0) |
Paul Jakma | b2ceea1 | 2007-09-07 14:24:55 +0000 | [diff] [blame] | 1538 | { |
| 1539 | attr->community = NULL; |
Paul Jakma | b881c70 | 2010-11-23 16:35:42 +0000 | [diff] [blame] | 1540 | return BGP_ATTR_PARSE_PROCEED; |
Paul Jakma | b2ceea1 | 2007-09-07 14:24:55 +0000 | [diff] [blame] | 1541 | } |
Paul Jakma | 0c46638 | 2010-12-05 17:17:26 +0000 | [diff] [blame] | 1542 | |
| 1543 | attr->community = |
| 1544 | community_parse ((u_int32_t *)stream_pnt (peer->ibuf), length); |
| 1545 | |
| 1546 | /* XXX: fix community_parse to use stream API and remove this */ |
| 1547 | stream_forward_getp (peer->ibuf, length); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1548 | |
Paul Jakma | 0c46638 | 2010-12-05 17:17:26 +0000 | [diff] [blame] | 1549 | if (!attr->community) |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 1550 | return bgp_attr_malformed (args, |
Paul Jakma | b881c70 | 2010-11-23 16:35:42 +0000 | [diff] [blame] | 1551 | BGP_NOTIFY_UPDATE_OPT_ATTR_ERR, |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 1552 | args->total); |
Paul Jakma | 0c46638 | 2010-12-05 17:17:26 +0000 | [diff] [blame] | 1553 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1554 | attr->flag |= ATTR_FLAG_BIT (BGP_ATTR_COMMUNITIES); |
| 1555 | |
Paul Jakma | b881c70 | 2010-11-23 16:35:42 +0000 | [diff] [blame] | 1556 | return BGP_ATTR_PARSE_PROCEED; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1557 | } |
| 1558 | |
| 1559 | /* Originator ID attribute. */ |
Paul Jakma | b881c70 | 2010-11-23 16:35:42 +0000 | [diff] [blame] | 1560 | static bgp_attr_parse_ret_t |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 1561 | bgp_attr_originator_id (struct bgp_attr_parser_args *args) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1562 | { |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 1563 | struct peer *const peer = args->peer; |
| 1564 | struct attr *const attr = args->attr; |
| 1565 | const bgp_size_t length = args->length; |
| 1566 | |
Denis Ovsienko | d595b56 | 2011-09-30 15:08:54 +0400 | [diff] [blame] | 1567 | /* Length check. */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1568 | if (length != 4) |
| 1569 | { |
| 1570 | zlog (peer->log, LOG_ERR, "Bad originator ID length %d", length); |
| 1571 | |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 1572 | return bgp_attr_malformed (args, |
Paul Jakma | b881c70 | 2010-11-23 16:35:42 +0000 | [diff] [blame] | 1573 | BGP_NOTIFY_UPDATE_ATTR_LENG_ERR, |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 1574 | args->total); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1575 | } |
| 1576 | |
Paul Jakma | fb982c2 | 2007-05-04 20:15:47 +0000 | [diff] [blame] | 1577 | (bgp_attr_extra_get (attr))->originator_id.s_addr |
| 1578 | = stream_get_ipv4 (peer->ibuf); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1579 | |
| 1580 | attr->flag |= ATTR_FLAG_BIT (BGP_ATTR_ORIGINATOR_ID); |
| 1581 | |
Paul Jakma | b881c70 | 2010-11-23 16:35:42 +0000 | [diff] [blame] | 1582 | return BGP_ATTR_PARSE_PROCEED; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1583 | } |
| 1584 | |
| 1585 | /* Cluster list attribute. */ |
Paul Jakma | b881c70 | 2010-11-23 16:35:42 +0000 | [diff] [blame] | 1586 | static bgp_attr_parse_ret_t |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 1587 | bgp_attr_cluster_list (struct bgp_attr_parser_args *args) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1588 | { |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 1589 | struct peer *const peer = args->peer; |
| 1590 | struct attr *const attr = args->attr; |
| 1591 | const bgp_size_t length = args->length; |
| 1592 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1593 | /* Check length. */ |
| 1594 | if (length % 4) |
| 1595 | { |
| 1596 | zlog (peer->log, LOG_ERR, "Bad cluster list length %d", length); |
| 1597 | |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 1598 | return bgp_attr_malformed (args, BGP_NOTIFY_UPDATE_ATTR_LENG_ERR, |
| 1599 | args->total); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1600 | } |
| 1601 | |
Paul Jakma | fb982c2 | 2007-05-04 20:15:47 +0000 | [diff] [blame] | 1602 | (bgp_attr_extra_get (attr))->cluster |
| 1603 | = cluster_parse ((struct in_addr *)stream_pnt (peer->ibuf), length); |
Paul Jakma | b881c70 | 2010-11-23 16:35:42 +0000 | [diff] [blame] | 1604 | |
| 1605 | /* XXX: Fix cluster_parse to use stream API and then remove this */ |
| 1606 | stream_forward_getp (peer->ibuf, length); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1607 | |
| 1608 | attr->flag |= ATTR_FLAG_BIT (BGP_ATTR_CLUSTER_LIST); |
| 1609 | |
Paul Jakma | b881c70 | 2010-11-23 16:35:42 +0000 | [diff] [blame] | 1610 | return BGP_ATTR_PARSE_PROCEED; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1611 | } |
| 1612 | |
| 1613 | /* Multiprotocol reachability information parse. */ |
Paul Jakma | 0329280 | 2008-06-07 20:37:10 +0000 | [diff] [blame] | 1614 | int |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 1615 | bgp_mp_reach_parse (struct bgp_attr_parser_args *args, |
| 1616 | struct bgp_nlri *mp_update) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1617 | { |
Michael Lambert | 4c9641b | 2010-07-22 13:20:55 -0400 | [diff] [blame] | 1618 | afi_t afi; |
| 1619 | safi_t safi; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1620 | bgp_size_t nlri_len; |
Paul Jakma | 6e4ab12 | 2007-04-10 19:36:48 +0000 | [diff] [blame] | 1621 | size_t start; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1622 | struct stream *s; |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 1623 | struct peer *const peer = args->peer; |
| 1624 | struct attr *const attr = args->attr; |
| 1625 | const bgp_size_t length = args->length; |
Paul Jakma | fb982c2 | 2007-05-04 20:15:47 +0000 | [diff] [blame] | 1626 | struct attr_extra *attre = bgp_attr_extra_get(attr); |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 1627 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1628 | /* Set end of packet. */ |
Paul Jakma | 6e4ab12 | 2007-04-10 19:36:48 +0000 | [diff] [blame] | 1629 | s = BGP_INPUT(peer); |
| 1630 | start = stream_get_getp(s); |
| 1631 | |
| 1632 | /* safe to read statically sized header? */ |
| 1633 | #define BGP_MP_REACH_MIN_SIZE 5 |
Paul Jakma | 0329280 | 2008-06-07 20:37:10 +0000 | [diff] [blame] | 1634 | #define LEN_LEFT (length - (stream_get_getp(s) - start)) |
Paul Jakma | 6e4ab12 | 2007-04-10 19:36:48 +0000 | [diff] [blame] | 1635 | if ((length > STREAM_READABLE(s)) || (length < BGP_MP_REACH_MIN_SIZE)) |
Paul Jakma | 0329280 | 2008-06-07 20:37:10 +0000 | [diff] [blame] | 1636 | { |
| 1637 | zlog_info ("%s: %s sent invalid length, %lu", |
| 1638 | __func__, peer->host, (unsigned long)length); |
David Lamparter | f57000c | 2014-06-04 01:01:10 +0200 | [diff] [blame] | 1639 | return BGP_ATTR_PARSE_ERROR_NOTIFYPLS; |
Paul Jakma | 0329280 | 2008-06-07 20:37:10 +0000 | [diff] [blame] | 1640 | } |
Paul Jakma | 6e4ab12 | 2007-04-10 19:36:48 +0000 | [diff] [blame] | 1641 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1642 | /* Load AFI, SAFI. */ |
| 1643 | afi = stream_getw (s); |
| 1644 | safi = stream_getc (s); |
| 1645 | |
| 1646 | /* Get nexthop length. */ |
Paul Jakma | fb982c2 | 2007-05-04 20:15:47 +0000 | [diff] [blame] | 1647 | attre->mp_nexthop_len = stream_getc (s); |
Paul Jakma | 6e4ab12 | 2007-04-10 19:36:48 +0000 | [diff] [blame] | 1648 | |
Paul Jakma | 0329280 | 2008-06-07 20:37:10 +0000 | [diff] [blame] | 1649 | if (LEN_LEFT < attre->mp_nexthop_len) |
| 1650 | { |
| 1651 | zlog_info ("%s: %s, MP nexthop length, %u, goes past end of attribute", |
| 1652 | __func__, peer->host, attre->mp_nexthop_len); |
David Lamparter | f57000c | 2014-06-04 01:01:10 +0200 | [diff] [blame] | 1653 | return BGP_ATTR_PARSE_ERROR_NOTIFYPLS; |
Paul Jakma | 0329280 | 2008-06-07 20:37:10 +0000 | [diff] [blame] | 1654 | } |
Paul Jakma | 6e4ab12 | 2007-04-10 19:36:48 +0000 | [diff] [blame] | 1655 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1656 | /* Nexthop length check. */ |
Paul Jakma | fb982c2 | 2007-05-04 20:15:47 +0000 | [diff] [blame] | 1657 | switch (attre->mp_nexthop_len) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1658 | { |
| 1659 | case 4: |
Paul Jakma | fb982c2 | 2007-05-04 20:15:47 +0000 | [diff] [blame] | 1660 | stream_get (&attre->mp_nexthop_global_in, s, 4); |
Michael Lambert | 66bed4f | 2009-07-28 11:26:14 -0400 | [diff] [blame] | 1661 | /* Probably needed for RFC 2283 */ |
| 1662 | if (attr->nexthop.s_addr == 0) |
| 1663 | memcpy(&attr->nexthop.s_addr, &attre->mp_nexthop_global_in, 4); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1664 | break; |
| 1665 | case 12: |
Stephen Hemminger | 9206f9e | 2011-12-18 19:43:40 +0400 | [diff] [blame] | 1666 | stream_getl (s); /* RD high */ |
| 1667 | stream_getl (s); /* RD low */ |
| 1668 | stream_get (&attre->mp_nexthop_global_in, s, 4); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1669 | break; |
Lou Berger | 9da04bc | 2016-01-12 13:41:55 -0500 | [diff] [blame] | 1670 | case 24: |
| 1671 | { |
| 1672 | u_int32_t rd_high __attribute__((unused)); |
| 1673 | u_int32_t rd_low __attribute__((unused)); |
| 1674 | |
| 1675 | rd_high = stream_getl (s); |
| 1676 | rd_low = stream_getl (s); |
| 1677 | } |
| 1678 | /* fall through */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1679 | case 16: |
Paul Jakma | fb982c2 | 2007-05-04 20:15:47 +0000 | [diff] [blame] | 1680 | stream_get (&attre->mp_nexthop_global, s, 16); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1681 | break; |
| 1682 | case 32: |
Lou Berger | 9da04bc | 2016-01-12 13:41:55 -0500 | [diff] [blame] | 1683 | case 48: |
| 1684 | if (attre->mp_nexthop_len == 48) { |
| 1685 | u_int32_t rd_high __attribute__((unused)); |
| 1686 | u_int32_t rd_low __attribute__((unused)); |
| 1687 | |
| 1688 | rd_high = stream_getl (s); |
| 1689 | rd_low = stream_getl (s); |
| 1690 | } |
Paul Jakma | fb982c2 | 2007-05-04 20:15:47 +0000 | [diff] [blame] | 1691 | stream_get (&attre->mp_nexthop_global, s, 16); |
Lou Berger | 9da04bc | 2016-01-12 13:41:55 -0500 | [diff] [blame] | 1692 | |
| 1693 | if (attre->mp_nexthop_len == 48) { |
| 1694 | u_int32_t rd_high __attribute__((unused)); |
| 1695 | u_int32_t rd_low __attribute__((unused)); |
| 1696 | |
| 1697 | rd_high = stream_getl (s); |
| 1698 | rd_low = stream_getl (s); |
| 1699 | } |
Paul Jakma | fb982c2 | 2007-05-04 20:15:47 +0000 | [diff] [blame] | 1700 | stream_get (&attre->mp_nexthop_local, s, 16); |
| 1701 | if (! IN6_IS_ADDR_LINKLOCAL (&attre->mp_nexthop_local)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1702 | { |
| 1703 | char buf1[INET6_ADDRSTRLEN]; |
| 1704 | char buf2[INET6_ADDRSTRLEN]; |
| 1705 | |
| 1706 | if (BGP_DEBUG (update, UPDATE_IN)) |
ajs | 557865c | 2004-12-08 19:59:11 +0000 | [diff] [blame] | 1707 | zlog_debug ("%s got two nexthop %s %s but second one is not a link-local nexthop", peer->host, |
Paul Jakma | fb982c2 | 2007-05-04 20:15:47 +0000 | [diff] [blame] | 1708 | inet_ntop (AF_INET6, &attre->mp_nexthop_global, |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1709 | buf1, INET6_ADDRSTRLEN), |
Paul Jakma | fb982c2 | 2007-05-04 20:15:47 +0000 | [diff] [blame] | 1710 | inet_ntop (AF_INET6, &attre->mp_nexthop_local, |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1711 | buf2, INET6_ADDRSTRLEN)); |
| 1712 | |
Paul Jakma | fb982c2 | 2007-05-04 20:15:47 +0000 | [diff] [blame] | 1713 | attre->mp_nexthop_len = 16; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1714 | } |
| 1715 | break; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1716 | default: |
Paul Jakma | 0329280 | 2008-06-07 20:37:10 +0000 | [diff] [blame] | 1717 | zlog_info ("%s: (%s) Wrong multiprotocol next hop length: %d", |
| 1718 | __func__, peer->host, attre->mp_nexthop_len); |
David Lamparter | f57000c | 2014-06-04 01:01:10 +0200 | [diff] [blame] | 1719 | return BGP_ATTR_PARSE_ERROR_NOTIFYPLS; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1720 | } |
| 1721 | |
Paul Jakma | 0329280 | 2008-06-07 20:37:10 +0000 | [diff] [blame] | 1722 | if (!LEN_LEFT) |
| 1723 | { |
| 1724 | zlog_info ("%s: (%s) Failed to read SNPA and NLRI(s)", |
| 1725 | __func__, peer->host); |
David Lamparter | f57000c | 2014-06-04 01:01:10 +0200 | [diff] [blame] | 1726 | return BGP_ATTR_PARSE_ERROR_NOTIFYPLS; |
Paul Jakma | 0329280 | 2008-06-07 20:37:10 +0000 | [diff] [blame] | 1727 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1728 | |
Paul Jakma | 6e4ab12 | 2007-04-10 19:36:48 +0000 | [diff] [blame] | 1729 | { |
| 1730 | u_char val; |
| 1731 | if ((val = stream_getc (s))) |
| 1732 | zlog_warn ("%s sent non-zero value, %u, for defunct SNPA-length field", |
| 1733 | peer->host, val); |
| 1734 | } |
| 1735 | |
| 1736 | /* must have nrli_len, what is left of the attribute */ |
Paul Jakma | 0329280 | 2008-06-07 20:37:10 +0000 | [diff] [blame] | 1737 | nlri_len = LEN_LEFT; |
Paul Jakma | 6e4ab12 | 2007-04-10 19:36:48 +0000 | [diff] [blame] | 1738 | if ((!nlri_len) || (nlri_len > STREAM_READABLE(s))) |
Paul Jakma | 0329280 | 2008-06-07 20:37:10 +0000 | [diff] [blame] | 1739 | { |
| 1740 | zlog_info ("%s: (%s) Failed to read NLRI", |
| 1741 | __func__, peer->host); |
David Lamparter | f57000c | 2014-06-04 01:01:10 +0200 | [diff] [blame] | 1742 | return BGP_ATTR_PARSE_ERROR_NOTIFYPLS; |
Paul Jakma | 0329280 | 2008-06-07 20:37:10 +0000 | [diff] [blame] | 1743 | } |
Paul Jakma | 18ab08b | 2016-01-27 16:37:33 +0000 | [diff] [blame] | 1744 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1745 | mp_update->afi = afi; |
| 1746 | mp_update->safi = safi; |
| 1747 | mp_update->nlri = stream_pnt (s); |
| 1748 | mp_update->length = nlri_len; |
| 1749 | |
paul | 9985f83 | 2005-02-09 15:51:56 +0000 | [diff] [blame] | 1750 | stream_forward_getp (s, nlri_len); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1751 | |
David Lamparter | daefeb8 | 2014-12-08 17:42:12 +0100 | [diff] [blame] | 1752 | attr->flag |= ATTR_FLAG_BIT (BGP_ATTR_MP_REACH_NLRI); |
| 1753 | |
Paul Jakma | b881c70 | 2010-11-23 16:35:42 +0000 | [diff] [blame] | 1754 | return BGP_ATTR_PARSE_PROCEED; |
Paul Jakma | 0329280 | 2008-06-07 20:37:10 +0000 | [diff] [blame] | 1755 | #undef LEN_LEFT |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1756 | } |
| 1757 | |
| 1758 | /* Multiprotocol unreachable parse */ |
Paul Jakma | 0329280 | 2008-06-07 20:37:10 +0000 | [diff] [blame] | 1759 | int |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 1760 | bgp_mp_unreach_parse (struct bgp_attr_parser_args *args, |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1761 | struct bgp_nlri *mp_withdraw) |
| 1762 | { |
| 1763 | struct stream *s; |
Michael Lambert | 4c9641b | 2010-07-22 13:20:55 -0400 | [diff] [blame] | 1764 | afi_t afi; |
| 1765 | safi_t safi; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1766 | u_int16_t withdraw_len; |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 1767 | struct peer *const peer = args->peer; |
David Lamparter | daefeb8 | 2014-12-08 17:42:12 +0100 | [diff] [blame] | 1768 | struct attr *const attr = args->attr; |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 1769 | const bgp_size_t length = args->length; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1770 | |
| 1771 | s = peer->ibuf; |
Paul Jakma | 6e4ab12 | 2007-04-10 19:36:48 +0000 | [diff] [blame] | 1772 | |
| 1773 | #define BGP_MP_UNREACH_MIN_SIZE 3 |
| 1774 | if ((length > STREAM_READABLE(s)) || (length < BGP_MP_UNREACH_MIN_SIZE)) |
David Lamparter | f57000c | 2014-06-04 01:01:10 +0200 | [diff] [blame] | 1775 | return BGP_ATTR_PARSE_ERROR_NOTIFYPLS; |
Paul Jakma | 6e4ab12 | 2007-04-10 19:36:48 +0000 | [diff] [blame] | 1776 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1777 | afi = stream_getw (s); |
| 1778 | safi = stream_getc (s); |
Paul Jakma | 6e4ab12 | 2007-04-10 19:36:48 +0000 | [diff] [blame] | 1779 | |
| 1780 | withdraw_len = length - BGP_MP_UNREACH_MIN_SIZE; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1781 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1782 | mp_withdraw->afi = afi; |
| 1783 | mp_withdraw->safi = safi; |
| 1784 | mp_withdraw->nlri = stream_pnt (s); |
| 1785 | mp_withdraw->length = withdraw_len; |
| 1786 | |
paul | 9985f83 | 2005-02-09 15:51:56 +0000 | [diff] [blame] | 1787 | stream_forward_getp (s, withdraw_len); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1788 | |
David Lamparter | daefeb8 | 2014-12-08 17:42:12 +0100 | [diff] [blame] | 1789 | attr->flag |= ATTR_FLAG_BIT (BGP_ATTR_MP_UNREACH_NLRI); |
| 1790 | |
Paul Jakma | b881c70 | 2010-11-23 16:35:42 +0000 | [diff] [blame] | 1791 | return BGP_ATTR_PARSE_PROCEED; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1792 | } |
| 1793 | |
| 1794 | /* Extended Community attribute. */ |
Paul Jakma | b881c70 | 2010-11-23 16:35:42 +0000 | [diff] [blame] | 1795 | static bgp_attr_parse_ret_t |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 1796 | bgp_attr_ext_communities (struct bgp_attr_parser_args *args) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1797 | { |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 1798 | struct peer *const peer = args->peer; |
| 1799 | struct attr *const attr = args->attr; |
| 1800 | const bgp_size_t length = args->length; |
Paul Jakma | b881c70 | 2010-11-23 16:35:42 +0000 | [diff] [blame] | 1801 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1802 | if (length == 0) |
Paul Jakma | fb982c2 | 2007-05-04 20:15:47 +0000 | [diff] [blame] | 1803 | { |
| 1804 | if (attr->extra) |
| 1805 | attr->extra->ecommunity = NULL; |
Paul Jakma | 0c46638 | 2010-12-05 17:17:26 +0000 | [diff] [blame] | 1806 | /* Empty extcomm doesn't seem to be invalid per se */ |
Paul Jakma | b881c70 | 2010-11-23 16:35:42 +0000 | [diff] [blame] | 1807 | return BGP_ATTR_PARSE_PROCEED; |
Paul Jakma | fb982c2 | 2007-05-04 20:15:47 +0000 | [diff] [blame] | 1808 | } |
Paul Jakma | 0c46638 | 2010-12-05 17:17:26 +0000 | [diff] [blame] | 1809 | |
| 1810 | (bgp_attr_extra_get (attr))->ecommunity = |
| 1811 | ecommunity_parse ((u_int8_t *)stream_pnt (peer->ibuf), length); |
| 1812 | /* XXX: fix ecommunity_parse to use stream API */ |
| 1813 | stream_forward_getp (peer->ibuf, length); |
| 1814 | |
| 1815 | if (!attr->extra->ecommunity) |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 1816 | return bgp_attr_malformed (args, |
| 1817 | BGP_NOTIFY_UPDATE_OPT_ATTR_ERR, |
| 1818 | args->total); |
Paul Jakma | 0c46638 | 2010-12-05 17:17:26 +0000 | [diff] [blame] | 1819 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1820 | attr->flag |= ATTR_FLAG_BIT (BGP_ATTR_EXT_COMMUNITIES); |
| 1821 | |
Paul Jakma | b881c70 | 2010-11-23 16:35:42 +0000 | [diff] [blame] | 1822 | return BGP_ATTR_PARSE_PROCEED; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1823 | } |
| 1824 | |
Lou Berger | c374178 | 2016-01-12 13:42:01 -0500 | [diff] [blame] | 1825 | /* Parse Tunnel Encap attribute in an UPDATE */ |
| 1826 | static int |
| 1827 | bgp_attr_encap( |
| 1828 | uint8_t type, |
| 1829 | struct peer *peer, /* IN */ |
| 1830 | bgp_size_t length, /* IN: attr's length field */ |
| 1831 | struct attr *attr, /* IN: caller already allocated */ |
| 1832 | u_char flag, /* IN: attr's flags field */ |
| 1833 | u_char *startp) |
| 1834 | { |
| 1835 | bgp_size_t total; |
| 1836 | struct attr_extra *attre = NULL; |
| 1837 | struct bgp_attr_encap_subtlv *stlv_last = NULL; |
| 1838 | uint16_t tunneltype; |
| 1839 | |
| 1840 | total = length + (CHECK_FLAG (flag, BGP_ATTR_FLAG_EXTLEN) ? 4 : 3); |
| 1841 | |
| 1842 | if (!CHECK_FLAG(flag, BGP_ATTR_FLAG_TRANS) |
| 1843 | || !CHECK_FLAG(flag, BGP_ATTR_FLAG_OPTIONAL)) |
| 1844 | { |
| 1845 | zlog (peer->log, LOG_ERR, |
| 1846 | "Tunnel Encap attribute flag isn't optional and transitive %d", flag); |
| 1847 | bgp_notify_send_with_data (peer, |
| 1848 | BGP_NOTIFY_UPDATE_ERR, |
| 1849 | BGP_NOTIFY_UPDATE_ATTR_FLAG_ERR, |
| 1850 | startp, total); |
| 1851 | return -1; |
| 1852 | } |
| 1853 | |
| 1854 | if (BGP_ATTR_ENCAP == type) { |
| 1855 | /* read outer TLV type and length */ |
| 1856 | uint16_t tlv_length; |
| 1857 | |
| 1858 | if (length < 4) { |
| 1859 | zlog (peer->log, LOG_ERR, |
| 1860 | "Tunnel Encap attribute not long enough to contain outer T,L"); |
| 1861 | bgp_notify_send_with_data(peer, |
| 1862 | BGP_NOTIFY_UPDATE_ERR, |
| 1863 | BGP_NOTIFY_UPDATE_OPT_ATTR_ERR, |
| 1864 | startp, total); |
| 1865 | return -1; |
| 1866 | } |
| 1867 | tunneltype = stream_getw (BGP_INPUT (peer)); |
| 1868 | tlv_length = stream_getw (BGP_INPUT (peer)); |
| 1869 | length -= 4; |
| 1870 | |
| 1871 | if (tlv_length != length) { |
| 1872 | zlog (peer->log, LOG_ERR, "%s: tlv_length(%d) != length(%d)", |
| 1873 | __func__, tlv_length, length); |
| 1874 | } |
| 1875 | } |
| 1876 | |
| 1877 | while (length >= 4) { |
Donald Sharp | 985c355 | 2016-03-10 20:16:47 -0500 | [diff] [blame] | 1878 | uint16_t subtype = 0; |
| 1879 | uint16_t sublength = 0; |
Lou Berger | c374178 | 2016-01-12 13:42:01 -0500 | [diff] [blame] | 1880 | struct bgp_attr_encap_subtlv *tlv; |
| 1881 | |
Lou Berger | 298cc2f | 2016-01-12 13:42:02 -0500 | [diff] [blame] | 1882 | if (BGP_ATTR_ENCAP == type) { |
| 1883 | subtype = stream_getc (BGP_INPUT (peer)); |
| 1884 | sublength = stream_getc (BGP_INPUT (peer)); |
| 1885 | length -= 2; |
| 1886 | } |
Lou Berger | c374178 | 2016-01-12 13:42:01 -0500 | [diff] [blame] | 1887 | |
| 1888 | if (sublength > length) { |
| 1889 | zlog (peer->log, LOG_ERR, |
| 1890 | "Tunnel Encap attribute sub-tlv length %d exceeds remaining length %d", |
| 1891 | sublength, length); |
| 1892 | bgp_notify_send_with_data (peer, |
| 1893 | BGP_NOTIFY_UPDATE_ERR, |
| 1894 | BGP_NOTIFY_UPDATE_OPT_ATTR_ERR, |
| 1895 | startp, total); |
| 1896 | return -1; |
| 1897 | } |
| 1898 | |
| 1899 | /* alloc and copy sub-tlv */ |
| 1900 | /* TBD make sure these are freed when attributes are released */ |
| 1901 | tlv = XCALLOC (MTYPE_ENCAP_TLV, sizeof(struct bgp_attr_encap_subtlv)-1+sublength); |
| 1902 | tlv->type = subtype; |
| 1903 | tlv->length = sublength; |
| 1904 | stream_get(tlv->value, peer->ibuf, sublength); |
| 1905 | length -= sublength; |
| 1906 | |
| 1907 | /* attach tlv to encap chain */ |
| 1908 | if (!attre) { |
| 1909 | attre = bgp_attr_extra_get(attr); |
| 1910 | if (BGP_ATTR_ENCAP == type) { |
| 1911 | for (stlv_last = attre->encap_subtlvs; stlv_last && stlv_last->next; |
| 1912 | stlv_last = stlv_last->next); |
| 1913 | if (stlv_last) { |
| 1914 | stlv_last->next = tlv; |
| 1915 | } else { |
| 1916 | attre->encap_subtlvs = tlv; |
| 1917 | } |
| 1918 | } |
| 1919 | } else { |
| 1920 | stlv_last->next = tlv; |
| 1921 | } |
| 1922 | stlv_last = tlv; |
| 1923 | } |
| 1924 | |
| 1925 | if (attre && (BGP_ATTR_ENCAP == type)) { |
| 1926 | attre->encap_tunneltype = tunneltype; |
| 1927 | } |
| 1928 | |
| 1929 | if (length) { |
| 1930 | /* spurious leftover data */ |
| 1931 | zlog (peer->log, LOG_ERR, |
| 1932 | "Tunnel Encap attribute length is bad: %d leftover octets", length); |
| 1933 | bgp_notify_send_with_data (peer, |
| 1934 | BGP_NOTIFY_UPDATE_ERR, |
| 1935 | BGP_NOTIFY_UPDATE_OPT_ATTR_ERR, |
| 1936 | startp, total); |
| 1937 | return -1; |
| 1938 | } |
| 1939 | |
| 1940 | return 0; |
| 1941 | } |
| 1942 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1943 | /* BGP unknown attribute treatment. */ |
Paul Jakma | b881c70 | 2010-11-23 16:35:42 +0000 | [diff] [blame] | 1944 | static bgp_attr_parse_ret_t |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 1945 | bgp_attr_unknown (struct bgp_attr_parser_args *args) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1946 | { |
Paul Jakma | 8794e8d | 2012-02-13 13:53:07 +0000 | [diff] [blame] | 1947 | bgp_size_t total = args->total; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1948 | struct transit *transit; |
Paul Jakma | fb982c2 | 2007-05-04 20:15:47 +0000 | [diff] [blame] | 1949 | struct attr_extra *attre; |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 1950 | struct peer *const peer = args->peer; |
| 1951 | struct attr *const attr = args->attr; |
| 1952 | u_char *const startp = args->startp; |
| 1953 | const u_char type = args->type; |
| 1954 | const u_char flag = args->flags; |
| 1955 | const bgp_size_t length = args->length; |
| 1956 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1957 | |
hasso | f418446 | 2005-02-01 20:13:16 +0000 | [diff] [blame] | 1958 | if (BGP_DEBUG (normal, NORMAL)) |
| 1959 | zlog_debug ("%s Unknown attribute is received (type %d, length %d)", |
| 1960 | peer->host, type, length); |
| 1961 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1962 | if (BGP_DEBUG (events, EVENTS)) |
ajs | 557865c | 2004-12-08 19:59:11 +0000 | [diff] [blame] | 1963 | zlog (peer->log, LOG_DEBUG, |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1964 | "Unknown attribute type %d length %d is received", type, length); |
| 1965 | |
| 1966 | /* Forward read pointer of input stream. */ |
paul | 9985f83 | 2005-02-09 15:51:56 +0000 | [diff] [blame] | 1967 | stream_forward_getp (peer->ibuf, length); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1968 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1969 | /* If any of the mandatory well-known attributes are not recognized, |
| 1970 | then the Error Subcode is set to Unrecognized Well-known |
| 1971 | Attribute. The Data field contains the unrecognized attribute |
| 1972 | (type, length and value). */ |
Paul Jakma | b881c70 | 2010-11-23 16:35:42 +0000 | [diff] [blame] | 1973 | if (!CHECK_FLAG (flag, BGP_ATTR_FLAG_OPTIONAL)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1974 | { |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 1975 | return bgp_attr_malformed (args, |
Paul Jakma | b881c70 | 2010-11-23 16:35:42 +0000 | [diff] [blame] | 1976 | BGP_NOTIFY_UPDATE_UNREC_ATTR, |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 1977 | args->total); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1978 | } |
| 1979 | |
| 1980 | /* Unrecognized non-transitive optional attributes must be quietly |
| 1981 | ignored and not passed along to other BGP peers. */ |
| 1982 | if (! CHECK_FLAG (flag, BGP_ATTR_FLAG_TRANS)) |
Paul Jakma | b881c70 | 2010-11-23 16:35:42 +0000 | [diff] [blame] | 1983 | return BGP_ATTR_PARSE_PROCEED; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1984 | |
| 1985 | /* If a path with recognized transitive optional attribute is |
| 1986 | accepted and passed along to other BGP peers and the Partial bit |
| 1987 | in the Attribute Flags octet is set to 1 by some previous AS, it |
| 1988 | is not set back to 0 by the current AS. */ |
| 1989 | SET_FLAG (*startp, BGP_ATTR_FLAG_PARTIAL); |
| 1990 | |
| 1991 | /* Store transitive attribute to the end of attr->transit. */ |
Paul Jakma | fb982c2 | 2007-05-04 20:15:47 +0000 | [diff] [blame] | 1992 | if (! ((attre = bgp_attr_extra_get(attr))->transit) ) |
Stephen Hemminger | 393deb9 | 2008-08-18 14:13:29 -0700 | [diff] [blame] | 1993 | attre->transit = XCALLOC (MTYPE_TRANSIT, sizeof (struct transit)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1994 | |
Paul Jakma | fb982c2 | 2007-05-04 20:15:47 +0000 | [diff] [blame] | 1995 | transit = attre->transit; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1996 | |
| 1997 | if (transit->val) |
| 1998 | transit->val = XREALLOC (MTYPE_TRANSIT_VAL, transit->val, |
| 1999 | transit->length + total); |
| 2000 | else |
| 2001 | transit->val = XMALLOC (MTYPE_TRANSIT_VAL, total); |
| 2002 | |
| 2003 | memcpy (transit->val + transit->length, startp, total); |
| 2004 | transit->length += total; |
| 2005 | |
Paul Jakma | b881c70 | 2010-11-23 16:35:42 +0000 | [diff] [blame] | 2006 | return BGP_ATTR_PARSE_PROCEED; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2007 | } |
| 2008 | |
Paul Jakma | 055086f | 2014-09-23 15:23:01 +0100 | [diff] [blame] | 2009 | /* Well-known attribute check. */ |
| 2010 | static int |
| 2011 | bgp_attr_check (struct peer *peer, struct attr *attr) |
| 2012 | { |
| 2013 | u_char type = 0; |
| 2014 | |
Paul Jakma | aed1b55 | 2014-10-21 16:59:01 +0100 | [diff] [blame] | 2015 | /* BGP Graceful-Restart End-of-RIB for IPv4 unicast is signaled as an |
| 2016 | * empty UPDATE. */ |
| 2017 | if (CHECK_FLAG (peer->cap, PEER_CAP_RESTART_RCV) && !attr->flag) |
| 2018 | return BGP_ATTR_PARSE_PROCEED; |
| 2019 | |
| 2020 | /* "An UPDATE message that contains the MP_UNREACH_NLRI is not required |
| 2021 | to carry any other path attributes.", though if MP_REACH_NLRI or NLRI |
| 2022 | are present, it should. Check for any other attribute being present |
| 2023 | instead. |
| 2024 | */ |
| 2025 | if (attr->flag == ATTR_FLAG_BIT (BGP_ATTR_MP_UNREACH_NLRI)) |
| 2026 | return BGP_ATTR_PARSE_PROCEED; |
| 2027 | |
Paul Jakma | 055086f | 2014-09-23 15:23:01 +0100 | [diff] [blame] | 2028 | if (! CHECK_FLAG (attr->flag, ATTR_FLAG_BIT (BGP_ATTR_ORIGIN))) |
| 2029 | type = BGP_ATTR_ORIGIN; |
| 2030 | |
| 2031 | if (! CHECK_FLAG (attr->flag, ATTR_FLAG_BIT (BGP_ATTR_AS_PATH))) |
| 2032 | type = BGP_ATTR_AS_PATH; |
Paul Jakma | aed1b55 | 2014-10-21 16:59:01 +0100 | [diff] [blame] | 2033 | |
| 2034 | /* RFC 2858 makes Next-Hop optional/ignored, if MP_REACH_NLRI is present and |
| 2035 | * NLRI is empty. We can't easily check NLRI empty here though. |
| 2036 | */ |
Paul Jakma | 1a211cb | 2014-11-01 17:21:47 +0000 | [diff] [blame] | 2037 | if (!CHECK_FLAG (attr->flag, ATTR_FLAG_BIT (BGP_ATTR_NEXT_HOP)) |
| 2038 | && !CHECK_FLAG (attr->flag, ATTR_FLAG_BIT (BGP_ATTR_MP_REACH_NLRI))) |
Paul Jakma | 055086f | 2014-09-23 15:23:01 +0100 | [diff] [blame] | 2039 | type = BGP_ATTR_NEXT_HOP; |
Paul Jakma | aed1b55 | 2014-10-21 16:59:01 +0100 | [diff] [blame] | 2040 | |
Paul Jakma | 055086f | 2014-09-23 15:23:01 +0100 | [diff] [blame] | 2041 | if (peer->sort == BGP_PEER_IBGP |
| 2042 | && ! CHECK_FLAG (attr->flag, ATTR_FLAG_BIT (BGP_ATTR_LOCAL_PREF))) |
| 2043 | type = BGP_ATTR_LOCAL_PREF; |
| 2044 | |
| 2045 | if (type) |
| 2046 | { |
| 2047 | zlog (peer->log, LOG_WARNING, |
Paul Jakma | aed1b55 | 2014-10-21 16:59:01 +0100 | [diff] [blame] | 2048 | "%s Missing well-known attribute %d / %s", |
| 2049 | peer->host, type, LOOKUP (attr_str, type)); |
Paul Jakma | 055086f | 2014-09-23 15:23:01 +0100 | [diff] [blame] | 2050 | bgp_notify_send_with_data (peer, |
| 2051 | BGP_NOTIFY_UPDATE_ERR, |
| 2052 | BGP_NOTIFY_UPDATE_MISS_ATTR, |
| 2053 | &type, 1); |
| 2054 | return BGP_ATTR_PARSE_ERROR; |
| 2055 | } |
| 2056 | return BGP_ATTR_PARSE_PROCEED; |
| 2057 | } |
| 2058 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2059 | /* Read attribute of update packet. This function is called from |
Andrew Certain | 8b366b9 | 2012-11-07 23:50:08 +0000 | [diff] [blame] | 2060 | bgp_update_receive() in bgp_packet.c. */ |
Paul Jakma | b881c70 | 2010-11-23 16:35:42 +0000 | [diff] [blame] | 2061 | bgp_attr_parse_ret_t |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2062 | bgp_attr_parse (struct peer *peer, struct attr *attr, bgp_size_t size, |
| 2063 | struct bgp_nlri *mp_update, struct bgp_nlri *mp_withdraw) |
| 2064 | { |
| 2065 | int ret; |
Paul Jakma | b881c70 | 2010-11-23 16:35:42 +0000 | [diff] [blame] | 2066 | u_char flag = 0; |
Paul Jakma | 0b2aa3a | 2007-10-14 22:32:21 +0000 | [diff] [blame] | 2067 | u_char type = 0; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2068 | bgp_size_t length; |
| 2069 | u_char *startp, *endp; |
| 2070 | u_char *attr_endp; |
| 2071 | u_char seen[BGP_ATTR_BITMAP_SIZE]; |
Paul Jakma | 0b2aa3a | 2007-10-14 22:32:21 +0000 | [diff] [blame] | 2072 | /* we need the as4_path only until we have synthesized the as_path with it */ |
| 2073 | /* same goes for as4_aggregator */ |
| 2074 | struct aspath *as4_path = NULL; |
| 2075 | as_t as4_aggregator = 0; |
David Lamparter | 5181a02 | 2015-09-15 03:00:09 -0700 | [diff] [blame] | 2076 | struct in_addr as4_aggregator_addr = { .s_addr = 0 }; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2077 | |
| 2078 | /* Initialize bitmap. */ |
| 2079 | memset (seen, 0, BGP_ATTR_BITMAP_SIZE); |
| 2080 | |
| 2081 | /* End pointer of BGP attribute. */ |
| 2082 | endp = BGP_INPUT_PNT (peer) + size; |
Paul Jakma | b881c70 | 2010-11-23 16:35:42 +0000 | [diff] [blame] | 2083 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2084 | /* Get attributes to the end of attribute length. */ |
| 2085 | while (BGP_INPUT_PNT (peer) < endp) |
| 2086 | { |
| 2087 | /* Check remaining length check.*/ |
| 2088 | if (endp - BGP_INPUT_PNT (peer) < BGP_ATTR_MIN_LEN) |
| 2089 | { |
gdt | c29fdba | 2004-12-09 14:46:46 +0000 | [diff] [blame] | 2090 | /* XXX warning: long int format, int arg (arg 5) */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2091 | zlog (peer->log, LOG_WARNING, |
heasley | d68ab10 | 2011-07-12 20:09:18 +0400 | [diff] [blame] | 2092 | "%s: error BGP attribute length %lu is smaller than min len", |
Paul Jakma | 0b2aa3a | 2007-10-14 22:32:21 +0000 | [diff] [blame] | 2093 | peer->host, |
| 2094 | (unsigned long) (endp - STREAM_PNT (BGP_INPUT (peer)))); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2095 | |
| 2096 | bgp_notify_send (peer, |
| 2097 | BGP_NOTIFY_UPDATE_ERR, |
| 2098 | BGP_NOTIFY_UPDATE_ATTR_LENG_ERR); |
Paul Jakma | b881c70 | 2010-11-23 16:35:42 +0000 | [diff] [blame] | 2099 | return BGP_ATTR_PARSE_ERROR; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2100 | } |
| 2101 | |
| 2102 | /* Fetch attribute flag and type. */ |
| 2103 | startp = BGP_INPUT_PNT (peer); |
Denis Ovsienko | 2d42e68 | 2011-09-27 15:35:39 +0400 | [diff] [blame] | 2104 | /* "The lower-order four bits of the Attribute Flags octet are |
| 2105 | unused. They MUST be zero when sent and MUST be ignored when |
| 2106 | received." */ |
| 2107 | flag = 0xF0 & stream_getc (BGP_INPUT (peer)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2108 | type = stream_getc (BGP_INPUT (peer)); |
| 2109 | |
Paul Jakma | 370b64a | 2007-12-22 16:49:52 +0000 | [diff] [blame] | 2110 | /* Check whether Extended-Length applies and is in bounds */ |
| 2111 | if (CHECK_FLAG (flag, BGP_ATTR_FLAG_EXTLEN) |
| 2112 | && ((endp - startp) < (BGP_ATTR_MIN_LEN + 1))) |
| 2113 | { |
| 2114 | zlog (peer->log, LOG_WARNING, |
heasley | d68ab10 | 2011-07-12 20:09:18 +0400 | [diff] [blame] | 2115 | "%s: Extended length set, but just %lu bytes of attr header", |
Paul Jakma | 370b64a | 2007-12-22 16:49:52 +0000 | [diff] [blame] | 2116 | peer->host, |
| 2117 | (unsigned long) (endp - STREAM_PNT (BGP_INPUT (peer)))); |
| 2118 | |
| 2119 | bgp_notify_send (peer, |
| 2120 | BGP_NOTIFY_UPDATE_ERR, |
| 2121 | BGP_NOTIFY_UPDATE_ATTR_LENG_ERR); |
Paul Jakma | b881c70 | 2010-11-23 16:35:42 +0000 | [diff] [blame] | 2122 | return BGP_ATTR_PARSE_ERROR; |
Paul Jakma | 370b64a | 2007-12-22 16:49:52 +0000 | [diff] [blame] | 2123 | } |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 2124 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2125 | /* Check extended attribue length bit. */ |
| 2126 | if (CHECK_FLAG (flag, BGP_ATTR_FLAG_EXTLEN)) |
| 2127 | length = stream_getw (BGP_INPUT (peer)); |
| 2128 | else |
| 2129 | length = stream_getc (BGP_INPUT (peer)); |
| 2130 | |
| 2131 | /* If any attribute appears more than once in the UPDATE |
| 2132 | message, then the Error Subcode is set to Malformed Attribute |
| 2133 | List. */ |
| 2134 | |
| 2135 | if (CHECK_BITMAP (seen, type)) |
| 2136 | { |
| 2137 | zlog (peer->log, LOG_WARNING, |
heasley | d68ab10 | 2011-07-12 20:09:18 +0400 | [diff] [blame] | 2138 | "%s: error BGP attribute type %d appears twice in a message", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2139 | peer->host, type); |
| 2140 | |
| 2141 | bgp_notify_send (peer, |
| 2142 | BGP_NOTIFY_UPDATE_ERR, |
| 2143 | BGP_NOTIFY_UPDATE_MAL_ATTR); |
Paul Jakma | b881c70 | 2010-11-23 16:35:42 +0000 | [diff] [blame] | 2144 | return BGP_ATTR_PARSE_ERROR; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2145 | } |
| 2146 | |
| 2147 | /* Set type to bitmap to check duplicate attribute. `type' is |
| 2148 | unsigned char so it never overflow bitmap range. */ |
| 2149 | |
| 2150 | SET_BITMAP (seen, type); |
| 2151 | |
| 2152 | /* Overflow check. */ |
| 2153 | attr_endp = BGP_INPUT_PNT (peer) + length; |
| 2154 | |
| 2155 | if (attr_endp > endp) |
| 2156 | { |
| 2157 | zlog (peer->log, LOG_WARNING, |
heasley | d68ab10 | 2011-07-12 20:09:18 +0400 | [diff] [blame] | 2158 | "%s: BGP type %d length %d is too large, attribute total length is %d. attr_endp is %p. endp is %p", peer->host, type, length, size, attr_endp, endp); |
Daniel Walton | c696987 | 2015-05-19 18:03:43 -0700 | [diff] [blame] | 2159 | zlog_warn ("%s: BGP type %d length %d is too large, attribute total length is %d. attr_endp is %p. endp is %p", peer->host, type, length, size, attr_endp, endp); |
| 2160 | bgp_notify_send_with_data (peer, |
| 2161 | BGP_NOTIFY_UPDATE_ERR, |
| 2162 | BGP_NOTIFY_UPDATE_ATTR_LENG_ERR, |
| 2163 | startp, attr_endp - startp); |
Paul Jakma | b881c70 | 2010-11-23 16:35:42 +0000 | [diff] [blame] | 2164 | return BGP_ATTR_PARSE_ERROR; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2165 | } |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 2166 | |
| 2167 | struct bgp_attr_parser_args attr_args = { |
| 2168 | .peer = peer, |
| 2169 | .length = length, |
| 2170 | .attr = attr, |
| 2171 | .type = type, |
| 2172 | .flags = flag, |
| 2173 | .startp = startp, |
| 2174 | .total = attr_endp - startp, |
| 2175 | }; |
| 2176 | |
| 2177 | |
| 2178 | /* If any recognized attribute has Attribute Flags that conflict |
| 2179 | with the Attribute Type Code, then the Error Subcode is set to |
| 2180 | Attribute Flags Error. The Data field contains the erroneous |
| 2181 | attribute (type, length and value). */ |
| 2182 | if (bgp_attr_flag_invalid (&attr_args)) |
Paul Jakma | fa61e16 | 2012-03-25 21:31:47 +0100 | [diff] [blame] | 2183 | { |
| 2184 | bgp_attr_parse_ret_t ret; |
| 2185 | ret = bgp_attr_malformed (&attr_args, |
| 2186 | BGP_NOTIFY_UPDATE_ATTR_FLAG_ERR, |
| 2187 | attr_args.total); |
| 2188 | if (ret == BGP_ATTR_PARSE_PROCEED) |
| 2189 | continue; |
| 2190 | return ret; |
| 2191 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2192 | |
| 2193 | /* OK check attribute and store it's value. */ |
| 2194 | switch (type) |
| 2195 | { |
| 2196 | case BGP_ATTR_ORIGIN: |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 2197 | ret = bgp_attr_origin (&attr_args); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2198 | break; |
| 2199 | case BGP_ATTR_AS_PATH: |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 2200 | ret = bgp_attr_aspath (&attr_args); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2201 | break; |
Paul Jakma | 0b2aa3a | 2007-10-14 22:32:21 +0000 | [diff] [blame] | 2202 | case BGP_ATTR_AS4_PATH: |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 2203 | ret = bgp_attr_as4_path (&attr_args, &as4_path); |
Paul Jakma | 0b2aa3a | 2007-10-14 22:32:21 +0000 | [diff] [blame] | 2204 | break; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2205 | case BGP_ATTR_NEXT_HOP: |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 2206 | ret = bgp_attr_nexthop (&attr_args); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2207 | break; |
| 2208 | case BGP_ATTR_MULTI_EXIT_DISC: |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 2209 | ret = bgp_attr_med (&attr_args); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2210 | break; |
| 2211 | case BGP_ATTR_LOCAL_PREF: |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 2212 | ret = bgp_attr_local_pref (&attr_args); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2213 | break; |
| 2214 | case BGP_ATTR_ATOMIC_AGGREGATE: |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 2215 | ret = bgp_attr_atomic (&attr_args); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2216 | break; |
| 2217 | case BGP_ATTR_AGGREGATOR: |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 2218 | ret = bgp_attr_aggregator (&attr_args); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2219 | break; |
Paul Jakma | 0b2aa3a | 2007-10-14 22:32:21 +0000 | [diff] [blame] | 2220 | case BGP_ATTR_AS4_AGGREGATOR: |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 2221 | ret = bgp_attr_as4_aggregator (&attr_args, |
| 2222 | &as4_aggregator, |
| 2223 | &as4_aggregator_addr); |
Paul Jakma | 0b2aa3a | 2007-10-14 22:32:21 +0000 | [diff] [blame] | 2224 | break; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2225 | case BGP_ATTR_COMMUNITIES: |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 2226 | ret = bgp_attr_community (&attr_args); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2227 | break; |
| 2228 | case BGP_ATTR_ORIGINATOR_ID: |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 2229 | ret = bgp_attr_originator_id (&attr_args); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2230 | break; |
| 2231 | case BGP_ATTR_CLUSTER_LIST: |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 2232 | ret = bgp_attr_cluster_list (&attr_args); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2233 | break; |
| 2234 | case BGP_ATTR_MP_REACH_NLRI: |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 2235 | ret = bgp_mp_reach_parse (&attr_args, mp_update); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2236 | break; |
| 2237 | case BGP_ATTR_MP_UNREACH_NLRI: |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 2238 | ret = bgp_mp_unreach_parse (&attr_args, mp_withdraw); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2239 | break; |
| 2240 | case BGP_ATTR_EXT_COMMUNITIES: |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 2241 | ret = bgp_attr_ext_communities (&attr_args); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2242 | break; |
Lou Berger | c374178 | 2016-01-12 13:42:01 -0500 | [diff] [blame] | 2243 | case BGP_ATTR_ENCAP: |
| 2244 | ret = bgp_attr_encap (type, peer, length, attr, flag, startp); |
| 2245 | break; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2246 | default: |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 2247 | ret = bgp_attr_unknown (&attr_args); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2248 | break; |
| 2249 | } |
Paul Jakma | b881c70 | 2010-11-23 16:35:42 +0000 | [diff] [blame] | 2250 | |
David Lamparter | f57000c | 2014-06-04 01:01:10 +0200 | [diff] [blame] | 2251 | if (ret == BGP_ATTR_PARSE_ERROR_NOTIFYPLS) |
| 2252 | { |
| 2253 | bgp_notify_send (peer, |
| 2254 | BGP_NOTIFY_UPDATE_ERR, |
| 2255 | BGP_NOTIFY_UPDATE_MAL_ATTR); |
| 2256 | ret = BGP_ATTR_PARSE_ERROR; |
| 2257 | } |
| 2258 | |
Paul Jakma | b881c70 | 2010-11-23 16:35:42 +0000 | [diff] [blame] | 2259 | /* If hard error occured immediately return to the caller. */ |
| 2260 | if (ret == BGP_ATTR_PARSE_ERROR) |
Paul Jakma | 6e4ab12 | 2007-04-10 19:36:48 +0000 | [diff] [blame] | 2261 | { |
| 2262 | zlog (peer->log, LOG_WARNING, |
| 2263 | "%s: Attribute %s, parse error", |
| 2264 | peer->host, |
| 2265 | LOOKUP (attr_str, type)); |
Paul Jakma | b881c70 | 2010-11-23 16:35:42 +0000 | [diff] [blame] | 2266 | if (as4_path) |
| 2267 | aspath_unintern (&as4_path); |
| 2268 | return ret; |
Paul Jakma | 6e4ab12 | 2007-04-10 19:36:48 +0000 | [diff] [blame] | 2269 | } |
Paul Jakma | b881c70 | 2010-11-23 16:35:42 +0000 | [diff] [blame] | 2270 | if (ret == BGP_ATTR_PARSE_WITHDRAW) |
| 2271 | { |
| 2272 | |
| 2273 | zlog (peer->log, LOG_WARNING, |
| 2274 | "%s: Attribute %s, parse error - treating as withdrawal", |
| 2275 | peer->host, |
| 2276 | LOOKUP (attr_str, type)); |
| 2277 | if (as4_path) |
| 2278 | aspath_unintern (&as4_path); |
| 2279 | return ret; |
| 2280 | } |
| 2281 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2282 | /* Check the fetched length. */ |
| 2283 | if (BGP_INPUT_PNT (peer) != attr_endp) |
| 2284 | { |
| 2285 | zlog (peer->log, LOG_WARNING, |
Paul Jakma | 6e4ab12 | 2007-04-10 19:36:48 +0000 | [diff] [blame] | 2286 | "%s: BGP attribute %s, fetch error", |
| 2287 | peer->host, LOOKUP (attr_str, type)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2288 | bgp_notify_send (peer, |
| 2289 | BGP_NOTIFY_UPDATE_ERR, |
| 2290 | BGP_NOTIFY_UPDATE_ATTR_LENG_ERR); |
Paul Jakma | b881c70 | 2010-11-23 16:35:42 +0000 | [diff] [blame] | 2291 | if (as4_path) |
| 2292 | aspath_unintern (&as4_path); |
| 2293 | return BGP_ATTR_PARSE_ERROR; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2294 | } |
| 2295 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2296 | /* Check final read pointer is same as end pointer. */ |
| 2297 | if (BGP_INPUT_PNT (peer) != endp) |
| 2298 | { |
| 2299 | zlog (peer->log, LOG_WARNING, |
heasley | d68ab10 | 2011-07-12 20:09:18 +0400 | [diff] [blame] | 2300 | "%s: BGP attribute %s, length mismatch", |
Paul Jakma | 6e4ab12 | 2007-04-10 19:36:48 +0000 | [diff] [blame] | 2301 | peer->host, LOOKUP (attr_str, type)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2302 | bgp_notify_send (peer, |
| 2303 | BGP_NOTIFY_UPDATE_ERR, |
| 2304 | BGP_NOTIFY_UPDATE_ATTR_LENG_ERR); |
Paul Jakma | b881c70 | 2010-11-23 16:35:42 +0000 | [diff] [blame] | 2305 | if (as4_path) |
| 2306 | aspath_unintern (&as4_path); |
| 2307 | return BGP_ATTR_PARSE_ERROR; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2308 | } |
Paul Jakma | 055086f | 2014-09-23 15:23:01 +0100 | [diff] [blame] | 2309 | |
| 2310 | /* Check all mandatory well-known attributes are present */ |
| 2311 | { |
| 2312 | bgp_attr_parse_ret_t ret; |
| 2313 | if ((ret = bgp_attr_check (peer, attr)) < 0) |
| 2314 | { |
| 2315 | if (as4_path) |
| 2316 | aspath_unintern (&as4_path); |
| 2317 | return ret; |
| 2318 | } |
| 2319 | } |
| 2320 | |
Paul Jakma | 0b2aa3a | 2007-10-14 22:32:21 +0000 | [diff] [blame] | 2321 | /* |
| 2322 | * At this place we can see whether we got AS4_PATH and/or |
| 2323 | * AS4_AGGREGATOR from a 16Bit peer and act accordingly. |
| 2324 | * We can not do this before we've read all attributes because |
| 2325 | * the as4 handling does not say whether AS4_PATH has to be sent |
| 2326 | * after AS_PATH or not - and when AS4_AGGREGATOR will be send |
| 2327 | * in relationship to AGGREGATOR. |
| 2328 | * So, to be defensive, we are not relying on any order and read |
| 2329 | * all attributes first, including these 32bit ones, and now, |
| 2330 | * afterwards, we look what and if something is to be done for as4. |
Paul Jakma | aed1b55 | 2014-10-21 16:59:01 +0100 | [diff] [blame] | 2331 | * |
| 2332 | * It is possible to not have AS_PATH, e.g. GR EoR and sole |
| 2333 | * MP_UNREACH_NLRI. |
Paul Jakma | 0b2aa3a | 2007-10-14 22:32:21 +0000 | [diff] [blame] | 2334 | */ |
David Lamparter | f57000c | 2014-06-04 01:01:10 +0200 | [diff] [blame] | 2335 | /* actually... this doesn't ever return failure currently, but |
| 2336 | * better safe than sorry */ |
Paul Jakma | aed1b55 | 2014-10-21 16:59:01 +0100 | [diff] [blame] | 2337 | if (CHECK_FLAG(attr->flag, ATTR_FLAG_BIT (BGP_ATTR_AS_PATH)) |
| 2338 | && bgp_attr_munge_as4_attrs (peer, attr, as4_path, |
Paul Jakma | 0b2aa3a | 2007-10-14 22:32:21 +0000 | [diff] [blame] | 2339 | as4_aggregator, &as4_aggregator_addr)) |
Paul Jakma | b881c70 | 2010-11-23 16:35:42 +0000 | [diff] [blame] | 2340 | { |
David Lamparter | f57000c | 2014-06-04 01:01:10 +0200 | [diff] [blame] | 2341 | bgp_notify_send (peer, |
| 2342 | BGP_NOTIFY_UPDATE_ERR, |
| 2343 | BGP_NOTIFY_UPDATE_MAL_ATTR); |
Paul Jakma | b881c70 | 2010-11-23 16:35:42 +0000 | [diff] [blame] | 2344 | if (as4_path) |
| 2345 | aspath_unintern (&as4_path); |
| 2346 | return BGP_ATTR_PARSE_ERROR; |
| 2347 | } |
Paul Jakma | 0b2aa3a | 2007-10-14 22:32:21 +0000 | [diff] [blame] | 2348 | |
| 2349 | /* At this stage, we have done all fiddling with as4, and the |
| 2350 | * resulting info is in attr->aggregator resp. attr->aspath |
| 2351 | * so we can chuck as4_aggregator and as4_path alltogether in |
| 2352 | * order to save memory |
| 2353 | */ |
Paul Jakma | b881c70 | 2010-11-23 16:35:42 +0000 | [diff] [blame] | 2354 | if (as4_path) |
Paul Jakma | 0b2aa3a | 2007-10-14 22:32:21 +0000 | [diff] [blame] | 2355 | { |
Paul Jakma | f6f434b | 2010-11-23 21:28:03 +0000 | [diff] [blame] | 2356 | aspath_unintern (&as4_path); /* unintern - it is in the hash */ |
Paul Jakma | 0b2aa3a | 2007-10-14 22:32:21 +0000 | [diff] [blame] | 2357 | /* The flag that we got this is still there, but that does not |
| 2358 | * do any trouble |
| 2359 | */ |
| 2360 | } |
| 2361 | /* |
| 2362 | * The "rest" of the code does nothing with as4_aggregator. |
| 2363 | * there is no memory attached specifically which is not part |
| 2364 | * of the attr. |
| 2365 | * so ignoring just means do nothing. |
| 2366 | */ |
| 2367 | /* |
| 2368 | * Finally do the checks on the aspath we did not do yet |
| 2369 | * because we waited for a potentially synthesized aspath. |
| 2370 | */ |
Paul Jakma | b881c70 | 2010-11-23 16:35:42 +0000 | [diff] [blame] | 2371 | if (attr->flag & (ATTR_FLAG_BIT(BGP_ATTR_AS_PATH))) |
Paul Jakma | 0b2aa3a | 2007-10-14 22:32:21 +0000 | [diff] [blame] | 2372 | { |
Paul Jakma | 835315b | 2012-01-18 12:28:30 +0000 | [diff] [blame] | 2373 | ret = bgp_attr_aspath_check (peer, attr); |
Paul Jakma | b881c70 | 2010-11-23 16:35:42 +0000 | [diff] [blame] | 2374 | if (ret != BGP_ATTR_PARSE_PROCEED) |
Paul Jakma | 0b2aa3a | 2007-10-14 22:32:21 +0000 | [diff] [blame] | 2375 | return ret; |
| 2376 | } |
| 2377 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2378 | /* Finally intern unknown attribute. */ |
Paul Jakma | fb982c2 | 2007-05-04 20:15:47 +0000 | [diff] [blame] | 2379 | if (attr->extra && attr->extra->transit) |
| 2380 | attr->extra->transit = transit_intern (attr->extra->transit); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2381 | |
Paul Jakma | b881c70 | 2010-11-23 16:35:42 +0000 | [diff] [blame] | 2382 | return BGP_ATTR_PARSE_PROCEED; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2383 | } |
| 2384 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2385 | int stream_put_prefix (struct stream *, struct prefix *); |
| 2386 | |
Pradosh Mohapatra | 8c71e48 | 2014-01-15 06:57:57 +0000 | [diff] [blame] | 2387 | size_t |
| 2388 | bgp_packet_mpattr_start (struct stream *s, afi_t afi, safi_t safi, |
| 2389 | struct attr *attr) |
| 2390 | { |
| 2391 | size_t sizep; |
| 2392 | |
| 2393 | /* Set extended bit always to encode the attribute length as 2 bytes */ |
| 2394 | stream_putc (s, BGP_ATTR_FLAG_OPTIONAL|BGP_ATTR_FLAG_EXTLEN); |
| 2395 | stream_putc (s, BGP_ATTR_MP_REACH_NLRI); |
| 2396 | sizep = stream_get_endp (s); |
| 2397 | stream_putw (s, 0); /* Marker: Attribute length. */ |
Lou Berger | 050defe | 2016-01-12 13:41:59 -0500 | [diff] [blame] | 2398 | |
| 2399 | stream_putw (s, afi); |
| 2400 | stream_putc (s, (safi == SAFI_MPLS_VPN) ? SAFI_MPLS_LABELED_VPN : safi); |
Pradosh Mohapatra | 8c71e48 | 2014-01-15 06:57:57 +0000 | [diff] [blame] | 2401 | |
| 2402 | /* Nexthop */ |
| 2403 | switch (afi) |
| 2404 | { |
| 2405 | case AFI_IP: |
| 2406 | switch (safi) |
| 2407 | { |
Pradosh Mohapatra | 8c71e48 | 2014-01-15 06:57:57 +0000 | [diff] [blame] | 2408 | case SAFI_MULTICAST: |
| 2409 | stream_putc (s, 4); |
| 2410 | stream_put_ipv4 (s, attr->nexthop.s_addr); |
| 2411 | break; |
| 2412 | case SAFI_MPLS_VPN: |
| 2413 | stream_putc (s, 12); |
Lou Berger | 050defe | 2016-01-12 13:41:59 -0500 | [diff] [blame] | 2414 | stream_putl (s, 0); /* RD = 0, per RFC */ |
Pradosh Mohapatra | 8c71e48 | 2014-01-15 06:57:57 +0000 | [diff] [blame] | 2415 | stream_putl (s, 0); |
| 2416 | stream_put (s, &attr->extra->mp_nexthop_global_in, 4); |
| 2417 | break; |
Lou Berger | 298cc2f | 2016-01-12 13:42:02 -0500 | [diff] [blame] | 2418 | case SAFI_ENCAP: |
| 2419 | stream_putc (s, 4); |
| 2420 | stream_put (s, &attr->extra->mp_nexthop_global_in, 4); |
| 2421 | break; |
Lou Berger | 050defe | 2016-01-12 13:41:59 -0500 | [diff] [blame] | 2422 | case SAFI_UNICAST: /* invalid for IPv4 */ |
Pradosh Mohapatra | 8c71e48 | 2014-01-15 06:57:57 +0000 | [diff] [blame] | 2423 | default: |
| 2424 | break; |
| 2425 | } |
| 2426 | break; |
Pradosh Mohapatra | 8c71e48 | 2014-01-15 06:57:57 +0000 | [diff] [blame] | 2427 | case AFI_IP6: |
| 2428 | switch (safi) |
| 2429 | { |
| 2430 | case SAFI_UNICAST: |
| 2431 | case SAFI_MULTICAST: |
| 2432 | { |
Pradosh Mohapatra | 8c71e48 | 2014-01-15 06:57:57 +0000 | [diff] [blame] | 2433 | struct attr_extra *attre = attr->extra; |
| 2434 | |
| 2435 | assert (attr->extra); |
| 2436 | stream_putc (s, attre->mp_nexthop_len); |
| 2437 | stream_put (s, &attre->mp_nexthop_global, 16); |
| 2438 | if (attre->mp_nexthop_len == 32) |
| 2439 | stream_put (s, &attre->mp_nexthop_local, 16); |
| 2440 | } |
Lou Berger | 050defe | 2016-01-12 13:41:59 -0500 | [diff] [blame] | 2441 | break; |
| 2442 | case SAFI_MPLS_VPN: |
| 2443 | { |
| 2444 | struct attr_extra *attre = attr->extra; |
| 2445 | |
| 2446 | assert (attr->extra); |
| 2447 | if (attre->mp_nexthop_len == 16) { |
| 2448 | stream_putc (s, 24); |
| 2449 | stream_putl (s, 0); /* RD = 0, per RFC */ |
| 2450 | stream_putl (s, 0); |
| 2451 | stream_put (s, &attre->mp_nexthop_global, 16); |
| 2452 | } else if (attre->mp_nexthop_len == 32) { |
| 2453 | stream_putc (s, 48); |
| 2454 | stream_putl (s, 0); /* RD = 0, per RFC */ |
| 2455 | stream_putl (s, 0); |
| 2456 | stream_put (s, &attre->mp_nexthop_global, 16); |
| 2457 | stream_putl (s, 0); /* RD = 0, per RFC */ |
| 2458 | stream_putl (s, 0); |
| 2459 | stream_put (s, &attre->mp_nexthop_local, 16); |
| 2460 | } |
| 2461 | } |
| 2462 | break; |
Lou Berger | 298cc2f | 2016-01-12 13:42:02 -0500 | [diff] [blame] | 2463 | case SAFI_ENCAP: |
| 2464 | assert (attr->extra); |
| 2465 | stream_putc (s, 16); |
| 2466 | stream_put (s, &attr->extra->mp_nexthop_global, 16); |
| 2467 | break; |
Pradosh Mohapatra | 8c71e48 | 2014-01-15 06:57:57 +0000 | [diff] [blame] | 2468 | default: |
| 2469 | break; |
| 2470 | } |
| 2471 | break; |
Pradosh Mohapatra | 8c71e48 | 2014-01-15 06:57:57 +0000 | [diff] [blame] | 2472 | default: |
| 2473 | break; |
| 2474 | } |
| 2475 | |
| 2476 | /* SNPA */ |
| 2477 | stream_putc (s, 0); |
| 2478 | return sizep; |
| 2479 | } |
| 2480 | |
| 2481 | void |
| 2482 | bgp_packet_mpattr_prefix (struct stream *s, afi_t afi, safi_t safi, |
| 2483 | struct prefix *p, struct prefix_rd *prd, |
| 2484 | u_char *tag) |
| 2485 | { |
Lou Berger | 050defe | 2016-01-12 13:41:59 -0500 | [diff] [blame] | 2486 | if (safi == SAFI_MPLS_VPN) |
Pradosh Mohapatra | 8c71e48 | 2014-01-15 06:57:57 +0000 | [diff] [blame] | 2487 | { |
Pradosh Mohapatra | 8c71e48 | 2014-01-15 06:57:57 +0000 | [diff] [blame] | 2488 | /* Tag, RD, Prefix write. */ |
| 2489 | stream_putc (s, p->prefixlen + 88); |
| 2490 | stream_put (s, tag, 3); |
| 2491 | stream_put (s, prd->val, 8); |
| 2492 | stream_put (s, &p->u.prefix, PSIZE (p->prefixlen)); |
Pradosh Mohapatra | 8c71e48 | 2014-01-15 06:57:57 +0000 | [diff] [blame] | 2493 | } |
Lou Berger | 050defe | 2016-01-12 13:41:59 -0500 | [diff] [blame] | 2494 | else |
| 2495 | stream_put_prefix (s, p); |
| 2496 | } |
| 2497 | |
| 2498 | size_t |
| 2499 | bgp_packet_mpattr_prefix_size (afi_t afi, safi_t safi, struct prefix *p) |
| 2500 | { |
| 2501 | int size = PSIZE (p->prefixlen); |
| 2502 | if (safi == SAFI_MPLS_VPN) |
| 2503 | size += 88; |
| 2504 | return size; |
Pradosh Mohapatra | 8c71e48 | 2014-01-15 06:57:57 +0000 | [diff] [blame] | 2505 | } |
| 2506 | |
Lou Berger | c374178 | 2016-01-12 13:42:01 -0500 | [diff] [blame] | 2507 | /* |
| 2508 | * Encodes the tunnel encapsulation attribute |
| 2509 | */ |
| 2510 | static void |
| 2511 | bgp_packet_mpattr_tea( |
| 2512 | struct bgp *bgp, |
| 2513 | struct peer *peer, |
| 2514 | struct stream *s, |
| 2515 | struct attr *attr, |
| 2516 | uint8_t attrtype) |
| 2517 | { |
| 2518 | unsigned int attrlenfield = 0; |
Lou Berger | 298cc2f | 2016-01-12 13:42:02 -0500 | [diff] [blame] | 2519 | unsigned int attrhdrlen = 0; |
Lou Berger | c374178 | 2016-01-12 13:42:01 -0500 | [diff] [blame] | 2520 | struct bgp_attr_encap_subtlv *subtlvs; |
| 2521 | struct bgp_attr_encap_subtlv *st; |
| 2522 | const char *attrname; |
| 2523 | |
| 2524 | if (!attr || !attr->extra) |
| 2525 | return; |
| 2526 | |
| 2527 | switch (attrtype) { |
| 2528 | case BGP_ATTR_ENCAP: |
| 2529 | attrname = "Tunnel Encap"; |
| 2530 | subtlvs = attr->extra->encap_subtlvs; |
| 2531 | |
| 2532 | /* |
| 2533 | * The tunnel encap attr has an "outer" tlv. |
| 2534 | * T = tunneltype, |
| 2535 | * L = total length of subtlvs, |
| 2536 | * V = concatenated subtlvs. |
| 2537 | */ |
| 2538 | attrlenfield = 2 + 2; /* T + L */ |
Lou Berger | 298cc2f | 2016-01-12 13:42:02 -0500 | [diff] [blame] | 2539 | attrhdrlen = 1 + 1; /* subTLV T + L */ |
Lou Berger | c374178 | 2016-01-12 13:42:01 -0500 | [diff] [blame] | 2540 | break; |
| 2541 | |
| 2542 | default: |
| 2543 | assert(0); |
| 2544 | } |
| 2545 | |
| 2546 | |
Lou Berger | 298cc2f | 2016-01-12 13:42:02 -0500 | [diff] [blame] | 2547 | /* if no tlvs, don't make attr */ |
| 2548 | if (subtlvs == NULL) |
| 2549 | return; |
| 2550 | |
Lou Berger | c374178 | 2016-01-12 13:42:01 -0500 | [diff] [blame] | 2551 | /* compute attr length */ |
| 2552 | for (st = subtlvs; st; st = st->next) { |
Lou Berger | 298cc2f | 2016-01-12 13:42:02 -0500 | [diff] [blame] | 2553 | attrlenfield += (attrhdrlen + st->length); |
Lou Berger | c374178 | 2016-01-12 13:42:01 -0500 | [diff] [blame] | 2554 | } |
| 2555 | |
Lou Berger | c374178 | 2016-01-12 13:42:01 -0500 | [diff] [blame] | 2556 | if (attrlenfield > 0xffff) { |
| 2557 | zlog (peer->log, LOG_ERR, |
| 2558 | "%s attribute is too long (length=%d), can't send it", |
| 2559 | attrname, |
| 2560 | attrlenfield); |
| 2561 | return; |
| 2562 | } |
| 2563 | |
| 2564 | if (attrlenfield > 0xff) { |
| 2565 | /* 2-octet length field */ |
| 2566 | stream_putc (s, |
| 2567 | BGP_ATTR_FLAG_TRANS|BGP_ATTR_FLAG_OPTIONAL|BGP_ATTR_FLAG_EXTLEN); |
| 2568 | stream_putc (s, attrtype); |
| 2569 | stream_putw (s, attrlenfield & 0xffff); |
| 2570 | } else { |
| 2571 | /* 1-octet length field */ |
| 2572 | stream_putc (s, BGP_ATTR_FLAG_TRANS|BGP_ATTR_FLAG_OPTIONAL); |
| 2573 | stream_putc (s, attrtype); |
| 2574 | stream_putc (s, attrlenfield & 0xff); |
| 2575 | } |
| 2576 | |
| 2577 | if (attrtype == BGP_ATTR_ENCAP) { |
| 2578 | /* write outer T+L */ |
| 2579 | stream_putw(s, attr->extra->encap_tunneltype); |
| 2580 | stream_putw(s, attrlenfield - 4); |
| 2581 | } |
| 2582 | |
| 2583 | /* write each sub-tlv */ |
| 2584 | for (st = subtlvs; st; st = st->next) { |
Lou Berger | 298cc2f | 2016-01-12 13:42:02 -0500 | [diff] [blame] | 2585 | if (attrtype == BGP_ATTR_ENCAP) { |
| 2586 | stream_putc (s, st->type); |
| 2587 | stream_putc (s, st->length); |
| 2588 | } |
Lou Berger | c374178 | 2016-01-12 13:42:01 -0500 | [diff] [blame] | 2589 | stream_put (s, st->value, st->length); |
| 2590 | } |
| 2591 | } |
| 2592 | |
Pradosh Mohapatra | 8c71e48 | 2014-01-15 06:57:57 +0000 | [diff] [blame] | 2593 | void |
| 2594 | bgp_packet_mpattr_end (struct stream *s, size_t sizep) |
| 2595 | { |
| 2596 | /* Set MP attribute length. Don't count the (2) bytes used to encode |
| 2597 | the attr length */ |
| 2598 | stream_putw_at (s, sizep, (stream_get_endp (s) - sizep) - 2); |
| 2599 | } |
| 2600 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2601 | /* Make attribute packet. */ |
| 2602 | bgp_size_t |
| 2603 | bgp_packet_attribute (struct bgp *bgp, struct peer *peer, |
Pradosh Mohapatra | 8c71e48 | 2014-01-15 06:57:57 +0000 | [diff] [blame] | 2604 | struct stream *s, struct attr *attr, |
| 2605 | struct prefix *p, afi_t afi, safi_t safi, |
| 2606 | struct peer *from, struct prefix_rd *prd, u_char *tag) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2607 | { |
paul | fe69a50 | 2005-09-10 16:55:02 +0000 | [diff] [blame] | 2608 | size_t cp; |
Paul Jakma | 0b2aa3a | 2007-10-14 22:32:21 +0000 | [diff] [blame] | 2609 | size_t aspath_sizep; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2610 | struct aspath *aspath; |
Paul Jakma | 0b2aa3a | 2007-10-14 22:32:21 +0000 | [diff] [blame] | 2611 | int send_as4_path = 0; |
| 2612 | int send_as4_aggregator = 0; |
| 2613 | int use32bit = (CHECK_FLAG (peer->cap, PEER_CAP_AS4_RCV)) ? 1 : 0; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2614 | |
| 2615 | if (! bgp) |
| 2616 | bgp = bgp_get_default (); |
| 2617 | |
| 2618 | /* Remember current pointer. */ |
paul | 9985f83 | 2005-02-09 15:51:56 +0000 | [diff] [blame] | 2619 | cp = stream_get_endp (s); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2620 | |
Pradosh Mohapatra | 8c71e48 | 2014-01-15 06:57:57 +0000 | [diff] [blame] | 2621 | if (p && !(afi == AFI_IP && safi == SAFI_UNICAST)) |
| 2622 | { |
Lou Berger | 050defe | 2016-01-12 13:41:59 -0500 | [diff] [blame] | 2623 | size_t mpattrlen_pos = 0; |
Pradosh Mohapatra | 8c71e48 | 2014-01-15 06:57:57 +0000 | [diff] [blame] | 2624 | mpattrlen_pos = bgp_packet_mpattr_start(s, afi, safi, attr); |
| 2625 | bgp_packet_mpattr_prefix(s, afi, safi, p, prd, tag); |
| 2626 | bgp_packet_mpattr_end(s, mpattrlen_pos); |
| 2627 | } |
| 2628 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2629 | /* Origin attribute. */ |
| 2630 | stream_putc (s, BGP_ATTR_FLAG_TRANS); |
| 2631 | stream_putc (s, BGP_ATTR_ORIGIN); |
| 2632 | stream_putc (s, 1); |
| 2633 | stream_putc (s, attr->origin); |
| 2634 | |
| 2635 | /* AS path attribute. */ |
| 2636 | |
| 2637 | /* If remote-peer is EBGP */ |
Jorge Boncompte [DTI2] | 6d85b15 | 2012-05-07 16:52:54 +0000 | [diff] [blame] | 2638 | if (peer->sort == BGP_PEER_EBGP |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2639 | && (! CHECK_FLAG (peer->af_flags[afi][safi], PEER_FLAG_AS_PATH_UNCHANGED) |
paul | fe69a50 | 2005-09-10 16:55:02 +0000 | [diff] [blame] | 2640 | || attr->aspath->segments == NULL) |
paul | fee0f4c | 2004-09-13 05:12:46 +0000 | [diff] [blame] | 2641 | && (! CHECK_FLAG (peer->af_flags[afi][safi], PEER_FLAG_RSERVER_CLIENT))) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2642 | { |
| 2643 | aspath = aspath_dup (attr->aspath); |
| 2644 | |
| 2645 | if (CHECK_FLAG(bgp->config, BGP_CONFIG_CONFEDERATION)) |
| 2646 | { |
| 2647 | /* Strip the confed info, and then stuff our path CONFED_ID |
| 2648 | on the front */ |
| 2649 | aspath = aspath_delete_confed_seq (aspath); |
| 2650 | aspath = aspath_add_seq (aspath, bgp->confed_id); |
| 2651 | } |
| 2652 | else |
| 2653 | { |
Andrew Certain | 9d3f970 | 2012-11-07 23:50:07 +0000 | [diff] [blame] | 2654 | if (peer->change_local_as) { |
| 2655 | /* If replace-as is specified, we only use the change_local_as when |
| 2656 | advertising routes. */ |
| 2657 | if( ! CHECK_FLAG (peer->flags, PEER_FLAG_LOCAL_AS_REPLACE_AS) ) { |
| 2658 | aspath = aspath_add_seq (aspath, peer->local_as); |
| 2659 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2660 | aspath = aspath_add_seq (aspath, peer->change_local_as); |
Andrew Certain | 9d3f970 | 2012-11-07 23:50:07 +0000 | [diff] [blame] | 2661 | } else { |
| 2662 | aspath = aspath_add_seq (aspath, peer->local_as); |
| 2663 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2664 | } |
| 2665 | } |
Jorge Boncompte [DTI2] | 6d85b15 | 2012-05-07 16:52:54 +0000 | [diff] [blame] | 2666 | else if (peer->sort == BGP_PEER_CONFED) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2667 | { |
| 2668 | /* A confed member, so we need to do the AS_CONFED_SEQUENCE thing */ |
| 2669 | aspath = aspath_dup (attr->aspath); |
| 2670 | aspath = aspath_add_confed_seq (aspath, peer->local_as); |
| 2671 | } |
| 2672 | else |
| 2673 | aspath = attr->aspath; |
| 2674 | |
Paul Jakma | 0b2aa3a | 2007-10-14 22:32:21 +0000 | [diff] [blame] | 2675 | /* If peer is not AS4 capable, then: |
| 2676 | * - send the created AS_PATH out as AS4_PATH (optional, transitive), |
| 2677 | * but ensure that no AS_CONFED_SEQUENCE and AS_CONFED_SET path segment |
| 2678 | * types are in it (i.e. exclude them if they are there) |
| 2679 | * AND do this only if there is at least one asnum > 65535 in the path! |
| 2680 | * - send an AS_PATH out, but put 16Bit ASnums in it, not 32bit, and change |
| 2681 | * all ASnums > 65535 to BGP_AS_TRANS |
| 2682 | */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2683 | |
Paul Jakma | 0b2aa3a | 2007-10-14 22:32:21 +0000 | [diff] [blame] | 2684 | stream_putc (s, BGP_ATTR_FLAG_TRANS|BGP_ATTR_FLAG_EXTLEN); |
| 2685 | stream_putc (s, BGP_ATTR_AS_PATH); |
| 2686 | aspath_sizep = stream_get_endp (s); |
| 2687 | stream_putw (s, 0); |
| 2688 | stream_putw_at (s, aspath_sizep, aspath_put (s, aspath, use32bit)); |
| 2689 | |
| 2690 | /* OLD session may need NEW_AS_PATH sent, if there are 4-byte ASNs |
| 2691 | * in the path |
| 2692 | */ |
| 2693 | if (!use32bit && aspath_has_as4 (aspath)) |
| 2694 | send_as4_path = 1; /* we'll do this later, at the correct place */ |
| 2695 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2696 | /* Nexthop attribute. */ |
Lou Berger | 050defe | 2016-01-12 13:41:59 -0500 | [diff] [blame] | 2697 | if (attr->flag & ATTR_FLAG_BIT (BGP_ATTR_NEXT_HOP) && afi == AFI_IP && |
| 2698 | safi == SAFI_UNICAST) /* only write NH attr for unicast safi */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2699 | { |
| 2700 | stream_putc (s, BGP_ATTR_FLAG_TRANS); |
| 2701 | stream_putc (s, BGP_ATTR_NEXT_HOP); |
| 2702 | stream_putc (s, 4); |
| 2703 | if (safi == SAFI_MPLS_VPN) |
| 2704 | { |
| 2705 | if (attr->nexthop.s_addr == 0) |
| 2706 | stream_put_ipv4 (s, peer->nexthop.v4.s_addr); |
| 2707 | else |
| 2708 | stream_put_ipv4 (s, attr->nexthop.s_addr); |
| 2709 | } |
| 2710 | else |
| 2711 | stream_put_ipv4 (s, attr->nexthop.s_addr); |
| 2712 | } |
| 2713 | |
| 2714 | /* MED attribute. */ |
| 2715 | if (attr->flag & ATTR_FLAG_BIT (BGP_ATTR_MULTI_EXIT_DISC)) |
| 2716 | { |
| 2717 | stream_putc (s, BGP_ATTR_FLAG_OPTIONAL); |
| 2718 | stream_putc (s, BGP_ATTR_MULTI_EXIT_DISC); |
| 2719 | stream_putc (s, 4); |
| 2720 | stream_putl (s, attr->med); |
| 2721 | } |
| 2722 | |
| 2723 | /* Local preference. */ |
Jorge Boncompte [DTI2] | 6d85b15 | 2012-05-07 16:52:54 +0000 | [diff] [blame] | 2724 | if (peer->sort == BGP_PEER_IBGP || |
| 2725 | peer->sort == BGP_PEER_CONFED) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2726 | { |
| 2727 | stream_putc (s, BGP_ATTR_FLAG_TRANS); |
| 2728 | stream_putc (s, BGP_ATTR_LOCAL_PREF); |
| 2729 | stream_putc (s, 4); |
| 2730 | stream_putl (s, attr->local_pref); |
| 2731 | } |
| 2732 | |
| 2733 | /* Atomic aggregate. */ |
| 2734 | if (attr->flag & ATTR_FLAG_BIT (BGP_ATTR_ATOMIC_AGGREGATE)) |
| 2735 | { |
| 2736 | stream_putc (s, BGP_ATTR_FLAG_TRANS); |
| 2737 | stream_putc (s, BGP_ATTR_ATOMIC_AGGREGATE); |
| 2738 | stream_putc (s, 0); |
| 2739 | } |
| 2740 | |
| 2741 | /* Aggregator. */ |
| 2742 | if (attr->flag & ATTR_FLAG_BIT (BGP_ATTR_AGGREGATOR)) |
| 2743 | { |
Paul Jakma | fb982c2 | 2007-05-04 20:15:47 +0000 | [diff] [blame] | 2744 | assert (attr->extra); |
Paul Jakma | 0b2aa3a | 2007-10-14 22:32:21 +0000 | [diff] [blame] | 2745 | |
| 2746 | /* Common to BGP_ATTR_AGGREGATOR, regardless of ASN size */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2747 | stream_putc (s, BGP_ATTR_FLAG_OPTIONAL|BGP_ATTR_FLAG_TRANS); |
| 2748 | stream_putc (s, BGP_ATTR_AGGREGATOR); |
Paul Jakma | 0b2aa3a | 2007-10-14 22:32:21 +0000 | [diff] [blame] | 2749 | |
| 2750 | if (use32bit) |
| 2751 | { |
| 2752 | /* AS4 capable peer */ |
| 2753 | stream_putc (s, 8); |
| 2754 | stream_putl (s, attr->extra->aggregator_as); |
| 2755 | } |
| 2756 | else |
| 2757 | { |
| 2758 | /* 2-byte AS peer */ |
| 2759 | stream_putc (s, 6); |
| 2760 | |
| 2761 | /* Is ASN representable in 2-bytes? Or must AS_TRANS be used? */ |
| 2762 | if ( attr->extra->aggregator_as > 65535 ) |
| 2763 | { |
| 2764 | stream_putw (s, BGP_AS_TRANS); |
| 2765 | |
| 2766 | /* we have to send AS4_AGGREGATOR, too. |
| 2767 | * we'll do that later in order to send attributes in ascending |
| 2768 | * order. |
| 2769 | */ |
| 2770 | send_as4_aggregator = 1; |
| 2771 | } |
| 2772 | else |
| 2773 | stream_putw (s, (u_int16_t) attr->extra->aggregator_as); |
| 2774 | } |
Paul Jakma | fb982c2 | 2007-05-04 20:15:47 +0000 | [diff] [blame] | 2775 | stream_put_ipv4 (s, attr->extra->aggregator_addr.s_addr); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2776 | } |
| 2777 | |
| 2778 | /* Community attribute. */ |
| 2779 | if (CHECK_FLAG (peer->af_flags[afi][safi], PEER_FLAG_SEND_COMMUNITY) |
| 2780 | && (attr->flag & ATTR_FLAG_BIT (BGP_ATTR_COMMUNITIES))) |
| 2781 | { |
| 2782 | if (attr->community->size * 4 > 255) |
| 2783 | { |
| 2784 | stream_putc (s, BGP_ATTR_FLAG_OPTIONAL|BGP_ATTR_FLAG_TRANS|BGP_ATTR_FLAG_EXTLEN); |
| 2785 | stream_putc (s, BGP_ATTR_COMMUNITIES); |
| 2786 | stream_putw (s, attr->community->size * 4); |
| 2787 | } |
| 2788 | else |
| 2789 | { |
| 2790 | stream_putc (s, BGP_ATTR_FLAG_OPTIONAL|BGP_ATTR_FLAG_TRANS); |
| 2791 | stream_putc (s, BGP_ATTR_COMMUNITIES); |
| 2792 | stream_putc (s, attr->community->size * 4); |
| 2793 | } |
| 2794 | stream_put (s, attr->community->val, attr->community->size * 4); |
| 2795 | } |
| 2796 | |
| 2797 | /* Route Reflector. */ |
Jorge Boncompte [DTI2] | 6d85b15 | 2012-05-07 16:52:54 +0000 | [diff] [blame] | 2798 | if (peer->sort == BGP_PEER_IBGP |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2799 | && from |
Jorge Boncompte [DTI2] | 6d85b15 | 2012-05-07 16:52:54 +0000 | [diff] [blame] | 2800 | && from->sort == BGP_PEER_IBGP) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2801 | { |
| 2802 | /* Originator ID. */ |
| 2803 | stream_putc (s, BGP_ATTR_FLAG_OPTIONAL); |
| 2804 | stream_putc (s, BGP_ATTR_ORIGINATOR_ID); |
| 2805 | stream_putc (s, 4); |
| 2806 | |
| 2807 | if (attr->flag & ATTR_FLAG_BIT(BGP_ATTR_ORIGINATOR_ID)) |
Paul Jakma | fb982c2 | 2007-05-04 20:15:47 +0000 | [diff] [blame] | 2808 | stream_put_in_addr (s, &attr->extra->originator_id); |
Paul Jakma | 34c3f81 | 2006-05-12 23:25:37 +0000 | [diff] [blame] | 2809 | else |
| 2810 | stream_put_in_addr (s, &from->remote_id); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2811 | |
| 2812 | /* Cluster list. */ |
| 2813 | stream_putc (s, BGP_ATTR_FLAG_OPTIONAL); |
| 2814 | stream_putc (s, BGP_ATTR_CLUSTER_LIST); |
| 2815 | |
Paul Jakma | 9eda90c | 2007-08-30 13:36:17 +0000 | [diff] [blame] | 2816 | if (attr->extra && attr->extra->cluster) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2817 | { |
Paul Jakma | fb982c2 | 2007-05-04 20:15:47 +0000 | [diff] [blame] | 2818 | stream_putc (s, attr->extra->cluster->length + 4); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2819 | /* If this peer configuration's parent BGP has cluster_id. */ |
| 2820 | if (bgp->config & BGP_CONFIG_CLUSTER_ID) |
| 2821 | stream_put_in_addr (s, &bgp->cluster_id); |
| 2822 | else |
| 2823 | stream_put_in_addr (s, &bgp->router_id); |
Paul Jakma | fb982c2 | 2007-05-04 20:15:47 +0000 | [diff] [blame] | 2824 | stream_put (s, attr->extra->cluster->list, |
| 2825 | attr->extra->cluster->length); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2826 | } |
| 2827 | else |
| 2828 | { |
| 2829 | stream_putc (s, 4); |
| 2830 | /* If this peer configuration's parent BGP has cluster_id. */ |
| 2831 | if (bgp->config & BGP_CONFIG_CLUSTER_ID) |
| 2832 | stream_put_in_addr (s, &bgp->cluster_id); |
| 2833 | else |
| 2834 | stream_put_in_addr (s, &bgp->router_id); |
| 2835 | } |
| 2836 | } |
| 2837 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2838 | /* Extended Communities attribute. */ |
| 2839 | if (CHECK_FLAG (peer->af_flags[afi][safi], PEER_FLAG_SEND_EXT_COMMUNITY) |
| 2840 | && (attr->flag & ATTR_FLAG_BIT (BGP_ATTR_EXT_COMMUNITIES))) |
| 2841 | { |
Paul Jakma | fb982c2 | 2007-05-04 20:15:47 +0000 | [diff] [blame] | 2842 | struct attr_extra *attre = attr->extra; |
| 2843 | |
| 2844 | assert (attre); |
| 2845 | |
Jorge Boncompte [DTI2] | 6d85b15 | 2012-05-07 16:52:54 +0000 | [diff] [blame] | 2846 | if (peer->sort == BGP_PEER_IBGP |
| 2847 | || peer->sort == BGP_PEER_CONFED) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2848 | { |
Paul Jakma | fb982c2 | 2007-05-04 20:15:47 +0000 | [diff] [blame] | 2849 | if (attre->ecommunity->size * 8 > 255) |
hasso | 4372df7 | 2004-05-20 10:20:02 +0000 | [diff] [blame] | 2850 | { |
| 2851 | stream_putc (s, BGP_ATTR_FLAG_OPTIONAL|BGP_ATTR_FLAG_TRANS|BGP_ATTR_FLAG_EXTLEN); |
| 2852 | stream_putc (s, BGP_ATTR_EXT_COMMUNITIES); |
Paul Jakma | fb982c2 | 2007-05-04 20:15:47 +0000 | [diff] [blame] | 2853 | stream_putw (s, attre->ecommunity->size * 8); |
hasso | 4372df7 | 2004-05-20 10:20:02 +0000 | [diff] [blame] | 2854 | } |
| 2855 | else |
| 2856 | { |
| 2857 | stream_putc (s, BGP_ATTR_FLAG_OPTIONAL|BGP_ATTR_FLAG_TRANS); |
| 2858 | stream_putc (s, BGP_ATTR_EXT_COMMUNITIES); |
Paul Jakma | fb982c2 | 2007-05-04 20:15:47 +0000 | [diff] [blame] | 2859 | stream_putc (s, attre->ecommunity->size * 8); |
hasso | 4372df7 | 2004-05-20 10:20:02 +0000 | [diff] [blame] | 2860 | } |
Paul Jakma | fb982c2 | 2007-05-04 20:15:47 +0000 | [diff] [blame] | 2861 | stream_put (s, attre->ecommunity->val, attre->ecommunity->size * 8); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2862 | } |
| 2863 | else |
| 2864 | { |
paul | 5228ad2 | 2004-06-04 17:58:18 +0000 | [diff] [blame] | 2865 | u_int8_t *pnt; |
hasso | 4372df7 | 2004-05-20 10:20:02 +0000 | [diff] [blame] | 2866 | int tbit; |
| 2867 | int ecom_tr_size = 0; |
| 2868 | int i; |
| 2869 | |
Paul Jakma | fb982c2 | 2007-05-04 20:15:47 +0000 | [diff] [blame] | 2870 | for (i = 0; i < attre->ecommunity->size; i++) |
hasso | 4372df7 | 2004-05-20 10:20:02 +0000 | [diff] [blame] | 2871 | { |
Paul Jakma | fb982c2 | 2007-05-04 20:15:47 +0000 | [diff] [blame] | 2872 | pnt = attre->ecommunity->val + (i * 8); |
hasso | 4372df7 | 2004-05-20 10:20:02 +0000 | [diff] [blame] | 2873 | tbit = *pnt; |
| 2874 | |
| 2875 | if (CHECK_FLAG (tbit, ECOMMUNITY_FLAG_NON_TRANSITIVE)) |
| 2876 | continue; |
| 2877 | |
| 2878 | ecom_tr_size++; |
| 2879 | } |
| 2880 | |
| 2881 | if (ecom_tr_size) |
| 2882 | { |
| 2883 | if (ecom_tr_size * 8 > 255) |
| 2884 | { |
| 2885 | stream_putc (s, BGP_ATTR_FLAG_OPTIONAL|BGP_ATTR_FLAG_TRANS|BGP_ATTR_FLAG_EXTLEN); |
| 2886 | stream_putc (s, BGP_ATTR_EXT_COMMUNITIES); |
| 2887 | stream_putw (s, ecom_tr_size * 8); |
| 2888 | } |
| 2889 | else |
| 2890 | { |
| 2891 | stream_putc (s, BGP_ATTR_FLAG_OPTIONAL|BGP_ATTR_FLAG_TRANS); |
| 2892 | stream_putc (s, BGP_ATTR_EXT_COMMUNITIES); |
| 2893 | stream_putc (s, ecom_tr_size * 8); |
| 2894 | } |
| 2895 | |
Paul Jakma | fb982c2 | 2007-05-04 20:15:47 +0000 | [diff] [blame] | 2896 | for (i = 0; i < attre->ecommunity->size; i++) |
hasso | 4372df7 | 2004-05-20 10:20:02 +0000 | [diff] [blame] | 2897 | { |
Paul Jakma | fb982c2 | 2007-05-04 20:15:47 +0000 | [diff] [blame] | 2898 | pnt = attre->ecommunity->val + (i * 8); |
hasso | 4372df7 | 2004-05-20 10:20:02 +0000 | [diff] [blame] | 2899 | tbit = *pnt; |
| 2900 | |
| 2901 | if (CHECK_FLAG (tbit, ECOMMUNITY_FLAG_NON_TRANSITIVE)) |
| 2902 | continue; |
| 2903 | |
| 2904 | stream_put (s, pnt, 8); |
| 2905 | } |
| 2906 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2907 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2908 | } |
Paul Jakma | 0b2aa3a | 2007-10-14 22:32:21 +0000 | [diff] [blame] | 2909 | |
| 2910 | if ( send_as4_path ) |
| 2911 | { |
| 2912 | /* If the peer is NOT As4 capable, AND */ |
| 2913 | /* there are ASnums > 65535 in path THEN |
| 2914 | * give out AS4_PATH */ |
| 2915 | |
| 2916 | /* Get rid of all AS_CONFED_SEQUENCE and AS_CONFED_SET |
| 2917 | * path segments! |
| 2918 | * Hm, I wonder... confederation things *should* only be at |
| 2919 | * the beginning of an aspath, right? Then we should use |
| 2920 | * aspath_delete_confed_seq for this, because it is already |
| 2921 | * there! (JK) |
| 2922 | * Folks, talk to me: what is reasonable here!? |
| 2923 | */ |
| 2924 | aspath = aspath_delete_confed_seq (aspath); |
| 2925 | |
| 2926 | stream_putc (s, BGP_ATTR_FLAG_TRANS|BGP_ATTR_FLAG_OPTIONAL|BGP_ATTR_FLAG_EXTLEN); |
| 2927 | stream_putc (s, BGP_ATTR_AS4_PATH); |
| 2928 | aspath_sizep = stream_get_endp (s); |
| 2929 | stream_putw (s, 0); |
| 2930 | stream_putw_at (s, aspath_sizep, aspath_put (s, aspath, 1)); |
| 2931 | } |
| 2932 | |
| 2933 | if (aspath != attr->aspath) |
| 2934 | aspath_free (aspath); |
| 2935 | |
| 2936 | if ( send_as4_aggregator ) |
| 2937 | { |
| 2938 | assert (attr->extra); |
| 2939 | |
| 2940 | /* send AS4_AGGREGATOR, at this place */ |
| 2941 | /* this section of code moved here in order to ensure the correct |
| 2942 | * *ascending* order of attributes |
| 2943 | */ |
| 2944 | stream_putc (s, BGP_ATTR_FLAG_OPTIONAL|BGP_ATTR_FLAG_TRANS); |
| 2945 | stream_putc (s, BGP_ATTR_AS4_AGGREGATOR); |
| 2946 | stream_putc (s, 8); |
| 2947 | stream_putl (s, attr->extra->aggregator_as); |
| 2948 | stream_put_ipv4 (s, attr->extra->aggregator_addr.s_addr); |
| 2949 | } |
Lou Berger | 298cc2f | 2016-01-12 13:42:02 -0500 | [diff] [blame] | 2950 | |
| 2951 | if ((afi == AFI_IP || afi == AFI_IP6) && |
| 2952 | (safi == SAFI_ENCAP || safi == SAFI_MPLS_VPN)) |
| 2953 | { |
| 2954 | /* Tunnel Encap attribute */ |
| 2955 | bgp_packet_mpattr_tea(bgp, peer, s, attr, BGP_ATTR_ENCAP); |
| 2956 | } |
| 2957 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2958 | /* Unknown transit attribute. */ |
Paul Jakma | fb982c2 | 2007-05-04 20:15:47 +0000 | [diff] [blame] | 2959 | if (attr->extra && attr->extra->transit) |
| 2960 | stream_put (s, attr->extra->transit->val, attr->extra->transit->length); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2961 | |
| 2962 | /* Return total size of attribute. */ |
paul | 9985f83 | 2005-02-09 15:51:56 +0000 | [diff] [blame] | 2963 | return stream_get_endp (s) - cp; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2964 | } |
| 2965 | |
Pradosh Mohapatra | 8c71e48 | 2014-01-15 06:57:57 +0000 | [diff] [blame] | 2966 | size_t |
| 2967 | bgp_packet_mpunreach_start (struct stream *s, afi_t afi, safi_t safi) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2968 | { |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2969 | unsigned long attrlen_pnt; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2970 | |
Pradosh Mohapatra | 8c71e48 | 2014-01-15 06:57:57 +0000 | [diff] [blame] | 2971 | /* Set extended bit always to encode the attribute length as 2 bytes */ |
| 2972 | stream_putc (s, BGP_ATTR_FLAG_OPTIONAL|BGP_ATTR_FLAG_EXTLEN); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2973 | stream_putc (s, BGP_ATTR_MP_UNREACH_NLRI); |
| 2974 | |
paul | 9985f83 | 2005-02-09 15:51:56 +0000 | [diff] [blame] | 2975 | attrlen_pnt = stream_get_endp (s); |
Pradosh Mohapatra | 8c71e48 | 2014-01-15 06:57:57 +0000 | [diff] [blame] | 2976 | stream_putw (s, 0); /* Length of this attribute. */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2977 | |
Pradosh Mohapatra | 8c71e48 | 2014-01-15 06:57:57 +0000 | [diff] [blame] | 2978 | stream_putw (s, afi); |
Lou Berger | 050defe | 2016-01-12 13:41:59 -0500 | [diff] [blame] | 2979 | stream_putc (s, (safi == SAFI_MPLS_VPN) ? SAFI_MPLS_LABELED_VPN : safi); |
Pradosh Mohapatra | 8c71e48 | 2014-01-15 06:57:57 +0000 | [diff] [blame] | 2980 | return attrlen_pnt; |
| 2981 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2982 | |
Pradosh Mohapatra | 8c71e48 | 2014-01-15 06:57:57 +0000 | [diff] [blame] | 2983 | void |
| 2984 | bgp_packet_mpunreach_prefix (struct stream *s, struct prefix *p, |
| 2985 | afi_t afi, safi_t safi, struct prefix_rd *prd, |
| 2986 | u_char *tag) |
| 2987 | { |
Lou Berger | 050defe | 2016-01-12 13:41:59 -0500 | [diff] [blame] | 2988 | bgp_packet_mpattr_prefix (s, afi, safi, p, prd, tag); |
Pradosh Mohapatra | 8c71e48 | 2014-01-15 06:57:57 +0000 | [diff] [blame] | 2989 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2990 | |
Pradosh Mohapatra | 8c71e48 | 2014-01-15 06:57:57 +0000 | [diff] [blame] | 2991 | void |
| 2992 | bgp_packet_mpunreach_end (struct stream *s, size_t attrlen_pnt) |
| 2993 | { |
Lou Berger | 050defe | 2016-01-12 13:41:59 -0500 | [diff] [blame] | 2994 | bgp_packet_mpattr_end (s, attrlen_pnt); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2995 | } |
| 2996 | |
| 2997 | /* Initialization of attribute. */ |
| 2998 | void |
paul | fe69a50 | 2005-09-10 16:55:02 +0000 | [diff] [blame] | 2999 | bgp_attr_init (void) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3000 | { |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3001 | aspath_init (); |
| 3002 | attrhash_init (); |
| 3003 | community_init (); |
| 3004 | ecommunity_init (); |
| 3005 | cluster_init (); |
| 3006 | transit_init (); |
| 3007 | } |
| 3008 | |
Chris Caputo | 228da42 | 2009-07-18 05:44:03 +0000 | [diff] [blame] | 3009 | void |
| 3010 | bgp_attr_finish (void) |
| 3011 | { |
| 3012 | aspath_finish (); |
| 3013 | attrhash_finish (); |
| 3014 | community_finish (); |
| 3015 | ecommunity_finish (); |
| 3016 | cluster_finish (); |
| 3017 | transit_finish (); |
| 3018 | } |
| 3019 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3020 | /* Make attribute packet. */ |
| 3021 | void |
paul | a384592 | 2003-10-18 01:30:50 +0000 | [diff] [blame] | 3022 | bgp_dump_routes_attr (struct stream *s, struct attr *attr, |
| 3023 | struct prefix *prefix) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3024 | { |
| 3025 | unsigned long cp; |
| 3026 | unsigned long len; |
Paul Jakma | 0b2aa3a | 2007-10-14 22:32:21 +0000 | [diff] [blame] | 3027 | size_t aspath_lenp; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3028 | struct aspath *aspath; |
| 3029 | |
| 3030 | /* Remember current pointer. */ |
paul | 9985f83 | 2005-02-09 15:51:56 +0000 | [diff] [blame] | 3031 | cp = stream_get_endp (s); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3032 | |
| 3033 | /* Place holder of length. */ |
| 3034 | stream_putw (s, 0); |
| 3035 | |
| 3036 | /* Origin attribute. */ |
| 3037 | stream_putc (s, BGP_ATTR_FLAG_TRANS); |
| 3038 | stream_putc (s, BGP_ATTR_ORIGIN); |
| 3039 | stream_putc (s, 1); |
| 3040 | stream_putc (s, attr->origin); |
| 3041 | |
| 3042 | aspath = attr->aspath; |
Paul Jakma | 0b2aa3a | 2007-10-14 22:32:21 +0000 | [diff] [blame] | 3043 | |
| 3044 | stream_putc (s, BGP_ATTR_FLAG_TRANS|BGP_ATTR_FLAG_EXTLEN); |
| 3045 | stream_putc (s, BGP_ATTR_AS_PATH); |
| 3046 | aspath_lenp = stream_get_endp (s); |
| 3047 | stream_putw (s, 0); |
| 3048 | |
| 3049 | stream_putw_at (s, aspath_lenp, aspath_put (s, aspath, 1)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3050 | |
| 3051 | /* Nexthop attribute. */ |
paul | a384592 | 2003-10-18 01:30:50 +0000 | [diff] [blame] | 3052 | /* If it's an IPv6 prefix, don't dump the IPv4 nexthop to save space */ |
| 3053 | if(prefix != NULL |
paul | a384592 | 2003-10-18 01:30:50 +0000 | [diff] [blame] | 3054 | && prefix->family != AF_INET6 |
paul | a384592 | 2003-10-18 01:30:50 +0000 | [diff] [blame] | 3055 | ) |
| 3056 | { |
| 3057 | stream_putc (s, BGP_ATTR_FLAG_TRANS); |
| 3058 | stream_putc (s, BGP_ATTR_NEXT_HOP); |
| 3059 | stream_putc (s, 4); |
| 3060 | stream_put_ipv4 (s, attr->nexthop.s_addr); |
| 3061 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3062 | |
| 3063 | /* MED attribute. */ |
| 3064 | if (attr->flag & ATTR_FLAG_BIT (BGP_ATTR_MULTI_EXIT_DISC)) |
| 3065 | { |
| 3066 | stream_putc (s, BGP_ATTR_FLAG_OPTIONAL); |
| 3067 | stream_putc (s, BGP_ATTR_MULTI_EXIT_DISC); |
| 3068 | stream_putc (s, 4); |
| 3069 | stream_putl (s, attr->med); |
| 3070 | } |
| 3071 | |
| 3072 | /* Local preference. */ |
| 3073 | if (attr->flag & ATTR_FLAG_BIT (BGP_ATTR_LOCAL_PREF)) |
| 3074 | { |
| 3075 | stream_putc (s, BGP_ATTR_FLAG_TRANS); |
| 3076 | stream_putc (s, BGP_ATTR_LOCAL_PREF); |
| 3077 | stream_putc (s, 4); |
| 3078 | stream_putl (s, attr->local_pref); |
| 3079 | } |
| 3080 | |
| 3081 | /* Atomic aggregate. */ |
| 3082 | if (attr->flag & ATTR_FLAG_BIT (BGP_ATTR_ATOMIC_AGGREGATE)) |
| 3083 | { |
| 3084 | stream_putc (s, BGP_ATTR_FLAG_TRANS); |
| 3085 | stream_putc (s, BGP_ATTR_ATOMIC_AGGREGATE); |
| 3086 | stream_putc (s, 0); |
| 3087 | } |
| 3088 | |
| 3089 | /* Aggregator. */ |
| 3090 | if (attr->flag & ATTR_FLAG_BIT (BGP_ATTR_AGGREGATOR)) |
| 3091 | { |
Paul Jakma | fb982c2 | 2007-05-04 20:15:47 +0000 | [diff] [blame] | 3092 | assert (attr->extra); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3093 | stream_putc (s, BGP_ATTR_FLAG_OPTIONAL|BGP_ATTR_FLAG_TRANS); |
| 3094 | stream_putc (s, BGP_ATTR_AGGREGATOR); |
Paul Jakma | 0b2aa3a | 2007-10-14 22:32:21 +0000 | [diff] [blame] | 3095 | stream_putc (s, 8); |
| 3096 | stream_putl (s, attr->extra->aggregator_as); |
Paul Jakma | fb982c2 | 2007-05-04 20:15:47 +0000 | [diff] [blame] | 3097 | stream_put_ipv4 (s, attr->extra->aggregator_addr.s_addr); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3098 | } |
| 3099 | |
| 3100 | /* Community attribute. */ |
| 3101 | if (attr->flag & ATTR_FLAG_BIT (BGP_ATTR_COMMUNITIES)) |
| 3102 | { |
| 3103 | if (attr->community->size * 4 > 255) |
| 3104 | { |
| 3105 | stream_putc (s, BGP_ATTR_FLAG_OPTIONAL|BGP_ATTR_FLAG_TRANS|BGP_ATTR_FLAG_EXTLEN); |
| 3106 | stream_putc (s, BGP_ATTR_COMMUNITIES); |
| 3107 | stream_putw (s, attr->community->size * 4); |
| 3108 | } |
| 3109 | else |
| 3110 | { |
| 3111 | stream_putc (s, BGP_ATTR_FLAG_OPTIONAL|BGP_ATTR_FLAG_TRANS); |
| 3112 | stream_putc (s, BGP_ATTR_COMMUNITIES); |
| 3113 | stream_putc (s, attr->community->size * 4); |
| 3114 | } |
| 3115 | stream_put (s, attr->community->val, attr->community->size * 4); |
| 3116 | } |
| 3117 | |
paul | a384592 | 2003-10-18 01:30:50 +0000 | [diff] [blame] | 3118 | /* Add a MP_NLRI attribute to dump the IPv6 next hop */ |
Paul Jakma | fb982c2 | 2007-05-04 20:15:47 +0000 | [diff] [blame] | 3119 | if (prefix != NULL && prefix->family == AF_INET6 && attr->extra && |
| 3120 | (attr->extra->mp_nexthop_len == 16 || attr->extra->mp_nexthop_len == 32) ) |
paul | a384592 | 2003-10-18 01:30:50 +0000 | [diff] [blame] | 3121 | { |
| 3122 | int sizep; |
Paul Jakma | fb982c2 | 2007-05-04 20:15:47 +0000 | [diff] [blame] | 3123 | struct attr_extra *attre = attr->extra; |
| 3124 | |
paul | a384592 | 2003-10-18 01:30:50 +0000 | [diff] [blame] | 3125 | stream_putc(s, BGP_ATTR_FLAG_OPTIONAL); |
| 3126 | stream_putc(s, BGP_ATTR_MP_REACH_NLRI); |
paul | 9985f83 | 2005-02-09 15:51:56 +0000 | [diff] [blame] | 3127 | sizep = stream_get_endp (s); |
paul | a384592 | 2003-10-18 01:30:50 +0000 | [diff] [blame] | 3128 | |
| 3129 | /* MP header */ |
Paul Jakma | fb982c2 | 2007-05-04 20:15:47 +0000 | [diff] [blame] | 3130 | stream_putc (s, 0); /* Marker: Attribute length. */ |
paul | a384592 | 2003-10-18 01:30:50 +0000 | [diff] [blame] | 3131 | stream_putw(s, AFI_IP6); /* AFI */ |
| 3132 | stream_putc(s, SAFI_UNICAST); /* SAFI */ |
| 3133 | |
| 3134 | /* Next hop */ |
Paul Jakma | fb982c2 | 2007-05-04 20:15:47 +0000 | [diff] [blame] | 3135 | stream_putc(s, attre->mp_nexthop_len); |
| 3136 | stream_put(s, &attre->mp_nexthop_global, 16); |
| 3137 | if (attre->mp_nexthop_len == 32) |
| 3138 | stream_put(s, &attre->mp_nexthop_local, 16); |
paul | a384592 | 2003-10-18 01:30:50 +0000 | [diff] [blame] | 3139 | |
| 3140 | /* SNPA */ |
| 3141 | stream_putc(s, 0); |
| 3142 | |
| 3143 | /* Prefix */ |
| 3144 | stream_put_prefix(s, prefix); |
| 3145 | |
| 3146 | /* Set MP attribute length. */ |
paul | 9985f83 | 2005-02-09 15:51:56 +0000 | [diff] [blame] | 3147 | stream_putc_at (s, sizep, (stream_get_endp (s) - sizep) - 1); |
paul | a384592 | 2003-10-18 01:30:50 +0000 | [diff] [blame] | 3148 | } |
paul | a384592 | 2003-10-18 01:30:50 +0000 | [diff] [blame] | 3149 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3150 | /* Return total size of attribute. */ |
paul | 9985f83 | 2005-02-09 15:51:56 +0000 | [diff] [blame] | 3151 | len = stream_get_endp (s) - cp - 2; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3152 | stream_putw_at (s, cp, len); |
| 3153 | } |