mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-14 06:50:17 +00:00
bgpd: check ORIGINATOR_ID attribute flags
* bgp_attr.c * bgp_attr_originator_id(): accept extra argument, add checks for "optional", "transitive" and "partial" bits, log each error condition independently * bgp_attr_parse(): provide extra arguments
This commit is contained in:
parent
566b36ebf9
commit
d595b566bc
@ -1353,8 +1353,24 @@ bgp_attr_community (struct peer *peer, bgp_size_t length,
|
||||
/* Originator ID attribute. */
|
||||
static bgp_attr_parse_ret_t
|
||||
bgp_attr_originator_id (struct peer *peer, bgp_size_t length,
|
||||
struct attr *attr, u_char flag)
|
||||
struct attr *attr, u_char flag, u_char *startp)
|
||||
{
|
||||
bgp_size_t total;
|
||||
|
||||
total = length + (CHECK_FLAG (flag, BGP_ATTR_FLAG_EXTLEN) ? 4 : 3);
|
||||
/* Flag checks. */
|
||||
if (flag != BGP_ATTR_FLAG_OPTIONAL)
|
||||
{
|
||||
if (! CHECK_FLAG (flag, BGP_ATTR_FLAG_OPTIONAL))
|
||||
zlog (peer->log, LOG_ERR, "ORIGINATOR_ID attribute must be flagged as \"optional\" (%u)", flag);
|
||||
if (CHECK_FLAG (flag, BGP_ATTR_FLAG_TRANS))
|
||||
zlog (peer->log, LOG_ERR, "ORIGINATOR_ID attribute must not be flagged as \"transitive\" (%u)", flag);
|
||||
if (CHECK_FLAG (flag, BGP_ATTR_FLAG_PARTIAL))
|
||||
zlog (peer->log, LOG_ERR, "ORIGINATOR_ID attribute must not be flagged as \"partial\" (%u)", flag);
|
||||
bgp_notify_send_with_data (peer, BGP_NOTIFY_UPDATE_ERR, BGP_NOTIFY_UPDATE_ATTR_FLAG_ERR, startp, total);
|
||||
return -1;
|
||||
}
|
||||
/* Length check. */
|
||||
if (length != 4)
|
||||
{
|
||||
zlog (peer->log, LOG_ERR, "Bad originator ID length %d", length);
|
||||
@ -1807,7 +1823,7 @@ bgp_attr_parse (struct peer *peer, struct attr *attr, bgp_size_t size,
|
||||
ret = bgp_attr_community (peer, length, attr, flag, startp);
|
||||
break;
|
||||
case BGP_ATTR_ORIGINATOR_ID:
|
||||
ret = bgp_attr_originator_id (peer, length, attr, flag);
|
||||
ret = bgp_attr_originator_id (peer, length, attr, flag, startp);
|
||||
break;
|
||||
case BGP_ATTR_CLUSTER_LIST:
|
||||
ret = bgp_attr_cluster_list (peer, length, attr, flag);
|
||||
|
Loading…
Reference in New Issue
Block a user