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