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