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