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