2000-04-17 07:53:29 +00:00
|
|
|
/*
|
|
|
|
* BIRD Internet Routing Daemon -- Attribute Operations
|
|
|
|
*
|
|
|
|
* (c) 2000 Martin Mares <mj@ucw.cz>
|
|
|
|
*
|
|
|
|
* Can be freely distributed and used under the terms of the GNU GPL.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _BIRD_ATTRS_H_
|
|
|
|
#define _BIRD_ATTRS_H_
|
|
|
|
|
2009-09-17 15:52:36 +00:00
|
|
|
#include <stdint.h>
|
2016-12-07 13:11:28 +00:00
|
|
|
#include "lib/unaligned.h"
|
2022-03-31 17:29:17 +00:00
|
|
|
|
|
|
|
typedef struct adata {
|
|
|
|
uint length; /* Length of data */
|
|
|
|
byte data[0];
|
|
|
|
} adata;
|
|
|
|
|
2022-04-10 12:11:46 +00:00
|
|
|
#define ADATA_SIZE(s) BIRD_CPU_ALIGN(sizeof(struct adata) + s)
|
|
|
|
|
2022-03-31 17:29:17 +00:00
|
|
|
extern const adata null_adata; /* adata of length 0 */
|
|
|
|
|
|
|
|
static inline struct adata *
|
|
|
|
lp_alloc_adata(struct linpool *pool, uint len)
|
|
|
|
{
|
|
|
|
struct adata *ad = lp_alloc(pool, sizeof(struct adata) + len);
|
|
|
|
ad->length = len;
|
|
|
|
return ad;
|
|
|
|
}
|
|
|
|
|
2022-04-10 12:11:46 +00:00
|
|
|
static inline struct adata *
|
|
|
|
lp_store_adata(struct linpool *pool, const void *buf, uint len)
|
|
|
|
{
|
|
|
|
struct adata *ad = lp_alloc_adata(pool, len);
|
|
|
|
memcpy(ad->data, buf, len);
|
|
|
|
return ad;
|
|
|
|
}
|
|
|
|
|
2022-05-05 16:08:37 +00:00
|
|
|
#define tmp_alloc_adata(len) lp_alloc_adata(tmp_linpool, len)
|
2022-04-10 16:55:15 +00:00
|
|
|
#define tmp_store_adata(buf, len) lp_store_adata(tmp_linpool, buf, len)
|
2022-05-05 16:08:37 +00:00
|
|
|
#define tmp_copy_adata(ad) tmp_store_adata((ad)->data, (ad)->length)
|
2022-04-10 16:55:15 +00:00
|
|
|
|
2022-03-31 17:29:17 +00:00
|
|
|
static inline int adata_same(const struct adata *a, const struct adata *b)
|
2022-06-16 21:24:53 +00:00
|
|
|
{ return (!a && !b) || (a->length == b->length && !memcmp(a->data, b->data, a->length)); }
|
2022-03-31 17:29:17 +00:00
|
|
|
|
2016-12-07 13:11:28 +00:00
|
|
|
|
2009-09-17 15:52:36 +00:00
|
|
|
|
2000-04-17 07:53:29 +00:00
|
|
|
/* a-path.c */
|
|
|
|
|
2000-04-17 10:18:55 +00:00
|
|
|
#define AS_PATH_SET 1 /* Types of path segments */
|
|
|
|
#define AS_PATH_SEQUENCE 2
|
2009-03-18 19:30:21 +00:00
|
|
|
#define AS_PATH_CONFED_SEQUENCE 3
|
|
|
|
#define AS_PATH_CONFED_SET 4
|
2000-04-17 10:18:55 +00:00
|
|
|
|
2008-10-26 21:36:08 +00:00
|
|
|
#define AS_PATH_MAXLEN 10000
|
|
|
|
|
|
|
|
#define AS_TRANS 23456
|
|
|
|
/* AS_TRANS is used when we need to store 32bit ASN larger than 0xFFFF
|
|
|
|
* to 16bit slot (like in 16bit AS_PATH). See RFC 4893 for details
|
|
|
|
*/
|
|
|
|
|
2022-03-04 01:01:34 +00:00
|
|
|
struct f_val;
|
2013-07-09 21:27:10 +00:00
|
|
|
struct f_tree;
|
|
|
|
|
2019-11-04 21:07:03 +00:00
|
|
|
int as_path_valid(byte *data, uint len, int bs, int sets, int confed, char *err, uint elen);
|
2018-12-27 13:26:11 +00:00
|
|
|
int as_path_16to32(byte *dst, const byte *src, uint len);
|
|
|
|
int as_path_32to16(byte *dst, const byte *src, uint len);
|
2016-12-07 13:11:28 +00:00
|
|
|
int as_path_contains_as4(const struct adata *path);
|
|
|
|
int as_path_contains_confed(const struct adata *path);
|
|
|
|
struct adata *as_path_strip_confed(struct linpool *pool, const struct adata *op);
|
2017-01-22 15:32:42 +00:00
|
|
|
struct adata *as_path_prepend2(struct linpool *pool, const struct adata *op, int seq, u32 as);
|
2016-12-07 13:11:28 +00:00
|
|
|
struct adata *as_path_to_old(struct linpool *pool, const struct adata *path);
|
2018-12-27 13:26:11 +00:00
|
|
|
struct adata *as_path_cut(struct linpool *pool, const struct adata *path, uint num);
|
|
|
|
const struct adata *as_path_merge(struct linpool *pool, const struct adata *p1, const struct adata *p2);
|
2016-12-07 13:11:28 +00:00
|
|
|
void as_path_format(const struct adata *path, byte *buf, uint size);
|
|
|
|
int as_path_getlen(const struct adata *path);
|
|
|
|
int as_path_getlen_int(const struct adata *path, int bs);
|
|
|
|
int as_path_get_first(const struct adata *path, u32 *orig_as);
|
2017-01-22 15:32:42 +00:00
|
|
|
int as_path_get_first_regular(const struct adata *path, u32 *last_as);
|
2016-12-07 13:11:28 +00:00
|
|
|
int as_path_get_last(const struct adata *path, u32 *last_as);
|
|
|
|
u32 as_path_get_last_nonaggregated(const struct adata *path);
|
|
|
|
int as_path_contains(const struct adata *path, u32 as, int min);
|
2018-12-27 13:26:11 +00:00
|
|
|
int as_path_match_set(const struct adata *path, const struct f_tree *set);
|
2022-03-04 01:01:34 +00:00
|
|
|
const struct adata *as_path_filter(struct linpool *pool, const struct adata *path, const struct f_val *set, int pos);
|
2023-06-21 11:15:07 +00:00
|
|
|
int as_path_compare(const struct adata *path1, const struct adata *path2);
|
2022-03-14 19:36:20 +00:00
|
|
|
int as_path_walk(const struct adata *path, uint *pos, uint *val);
|
2013-08-14 23:06:47 +00:00
|
|
|
|
2016-12-07 13:11:28 +00:00
|
|
|
static inline struct adata *as_path_prepend(struct linpool *pool, const struct adata *path, u32 as)
|
2017-01-22 15:32:42 +00:00
|
|
|
{ return as_path_prepend2(pool, path, AS_PATH_SEQUENCE, as); }
|
2016-12-07 13:11:28 +00:00
|
|
|
|
2008-10-26 21:36:08 +00:00
|
|
|
|
2009-04-16 23:48:36 +00:00
|
|
|
#define PM_ASN 0
|
|
|
|
#define PM_QUESTION 1
|
|
|
|
#define PM_ASTERISK 2
|
2009-06-01 17:32:41 +00:00
|
|
|
#define PM_ASN_EXPR 3
|
2016-06-08 14:22:44 +00:00
|
|
|
#define PM_ASN_RANGE 4
|
2019-08-06 14:58:13 +00:00
|
|
|
#define PM_ASN_SET 5
|
2020-05-18 14:25:08 +00:00
|
|
|
#define PM_LOOP 6
|
2000-04-17 11:06:39 +00:00
|
|
|
|
2018-12-27 13:26:11 +00:00
|
|
|
struct f_path_mask_item {
|
|
|
|
union {
|
|
|
|
u32 asn; /* PM_ASN */
|
2019-08-06 16:54:19 +00:00
|
|
|
const struct f_line *expr; /* PM_ASN_EXPR */
|
|
|
|
const struct f_tree *set; /* PM_ASN_SET */
|
2018-12-27 13:26:11 +00:00
|
|
|
struct { /* PM_ASN_RANGE */
|
|
|
|
u32 from;
|
|
|
|
u32 to;
|
|
|
|
};
|
2019-08-06 14:58:13 +00:00
|
|
|
};
|
2009-04-16 23:48:36 +00:00
|
|
|
int kind;
|
2000-04-17 11:11:33 +00:00
|
|
|
};
|
2008-10-26 21:36:08 +00:00
|
|
|
|
2018-12-27 13:26:11 +00:00
|
|
|
struct f_path_mask {
|
|
|
|
uint len;
|
|
|
|
struct f_path_mask_item item[0];
|
|
|
|
};
|
|
|
|
|
|
|
|
int as_path_match(const struct adata *path, const struct f_path_mask *mask);
|
2016-12-07 13:11:28 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* Counterparts to appropriate as_path_* functions */
|
|
|
|
|
|
|
|
static inline int
|
2018-12-27 13:26:11 +00:00
|
|
|
aggregator_16to32(byte *dst, const byte *src)
|
2016-12-07 13:11:28 +00:00
|
|
|
{
|
|
|
|
put_u32(dst, get_u16(src));
|
|
|
|
memcpy(dst+4, src+2, 4);
|
|
|
|
return 8;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int
|
2018-12-27 13:26:11 +00:00
|
|
|
aggregator_32to16(byte *dst, const byte *src)
|
2016-12-07 13:11:28 +00:00
|
|
|
{
|
|
|
|
put_u16(dst, get_u32(src));
|
|
|
|
memcpy(dst+2, src+4, 4);
|
|
|
|
return 6;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int
|
2018-12-27 13:26:11 +00:00
|
|
|
aggregator_contains_as4(const struct adata *a)
|
2016-12-07 13:11:28 +00:00
|
|
|
{
|
|
|
|
return get_u32(a->data) > 0xFFFF;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline struct adata *
|
2018-12-27 13:26:11 +00:00
|
|
|
aggregator_to_old(struct linpool *pool, const struct adata *a)
|
2016-12-07 13:11:28 +00:00
|
|
|
{
|
|
|
|
struct adata *d = lp_alloc_adata(pool, 8);
|
2020-04-15 01:46:53 +00:00
|
|
|
put_u32(d->data, AS_TRANS);
|
2016-12-07 13:11:28 +00:00
|
|
|
memcpy(d->data + 4, a->data + 4, 4);
|
|
|
|
return d;
|
|
|
|
}
|
|
|
|
|
2000-04-17 11:11:33 +00:00
|
|
|
|
2000-04-17 10:18:55 +00:00
|
|
|
/* a-set.c */
|
|
|
|
|
2011-08-12 19:03:43 +00:00
|
|
|
|
|
|
|
/* Extended Community subtypes (kinds) */
|
2018-12-27 13:26:11 +00:00
|
|
|
enum ec_subtype {
|
|
|
|
EC_RT = 0x0002,
|
|
|
|
EC_RO = 0x0003,
|
|
|
|
EC_GENERIC = 0xFFFF,
|
2019-01-21 08:17:54 +00:00
|
|
|
};
|
2011-08-12 19:03:43 +00:00
|
|
|
|
2019-02-12 13:16:28 +00:00
|
|
|
static inline const char *ec_subtype_str(const enum ec_subtype ecs) {
|
|
|
|
switch (ecs) {
|
|
|
|
case EC_RT: return "rt";
|
|
|
|
case EC_RO: return "ro";
|
|
|
|
default: return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-09-27 14:47:52 +00:00
|
|
|
/* Check for EC_RT subtype within different types (0-2) */
|
|
|
|
static inline int ec_type_is_rt(uint type)
|
|
|
|
{ return (type == EC_RT) || (type == (0x0100 | EC_RT)) || (type == (0x0200 | EC_RT)); }
|
|
|
|
|
|
|
|
|
2011-08-12 19:03:43 +00:00
|
|
|
/* Transitive bit (for first u32 half of EC) */
|
|
|
|
#define EC_TBIT 0x40000000
|
|
|
|
|
2016-10-01 10:50:29 +00:00
|
|
|
#define ECOMM_LENGTH 8
|
2011-08-12 19:03:43 +00:00
|
|
|
|
2018-12-27 13:26:11 +00:00
|
|
|
static inline int int_set_get_size(const struct adata *list)
|
2011-08-12 19:03:43 +00:00
|
|
|
{ return list->length / 4; }
|
|
|
|
|
2018-12-27 13:26:11 +00:00
|
|
|
static inline int ec_set_get_size(const struct adata *list)
|
2013-10-02 12:57:29 +00:00
|
|
|
{ return list->length / 8; }
|
|
|
|
|
2018-12-27 13:26:11 +00:00
|
|
|
static inline int lc_set_get_size(const struct adata *list)
|
2016-10-01 10:50:29 +00:00
|
|
|
{ return list->length / 12; }
|
|
|
|
|
2018-12-27 13:26:11 +00:00
|
|
|
static inline u32 *int_set_get_data(const struct adata *list)
|
2011-08-12 19:03:43 +00:00
|
|
|
{ return (u32 *) list->data; }
|
|
|
|
|
|
|
|
static inline u32 ec_hi(u64 ec) { return ec >> 32; }
|
|
|
|
static inline u32 ec_lo(u64 ec) { return ec; }
|
2022-09-27 14:47:52 +00:00
|
|
|
|
2011-08-12 19:03:43 +00:00
|
|
|
static inline u64 ec_get(const u32 *l, int i)
|
|
|
|
{ return (((u64) l[i]) << 32) | l[i+1]; }
|
|
|
|
|
2022-09-27 14:47:52 +00:00
|
|
|
static inline void ec_put(u32 *l, int i, u64 val)
|
|
|
|
{ l[i] = ec_hi(val); l[i+1] = ec_lo(val); }
|
|
|
|
|
2011-08-12 19:03:43 +00:00
|
|
|
/* RFC 4360 3.1. Two-Octet AS Specific Extended Community */
|
2018-12-27 13:26:11 +00:00
|
|
|
static inline u64 ec_as2(enum ec_subtype kind, u64 key, u64 val)
|
|
|
|
{ return (((u64) kind | 0x0000) << 48) | (key << 32) | val; }
|
2011-08-12 19:03:43 +00:00
|
|
|
|
|
|
|
/* RFC 5668 4-Octet AS Specific BGP Extended Community */
|
2018-12-27 13:26:11 +00:00
|
|
|
static inline u64 ec_as4(enum ec_subtype kind, u64 key, u64 val)
|
|
|
|
{ return (((u64) kind | 0x0200) << 48) | (key << 16) | val; }
|
2011-08-12 19:03:43 +00:00
|
|
|
|
|
|
|
/* RFC 4360 3.2. IPv4 Address Specific Extended Community */
|
2018-12-27 13:26:11 +00:00
|
|
|
static inline u64 ec_ip4(enum ec_subtype kind, u64 key, u64 val)
|
|
|
|
{ return (((u64) kind | 0x0100) << 48) | (key << 16) | val; }
|
2011-08-12 19:03:43 +00:00
|
|
|
|
|
|
|
static inline u64 ec_generic(u64 key, u64 val)
|
|
|
|
{ return (key << 32) | val; }
|
|
|
|
|
2016-10-01 10:50:29 +00:00
|
|
|
/* Large community value */
|
|
|
|
typedef struct lcomm {
|
|
|
|
u32 asn;
|
|
|
|
u32 ldp1;
|
|
|
|
u32 ldp2;
|
|
|
|
} lcomm;
|
|
|
|
|
|
|
|
#define LCOMM_LENGTH 12
|
|
|
|
|
|
|
|
static inline lcomm lc_get(const u32 *l, int i)
|
|
|
|
{ return (lcomm) { l[i], l[i+1], l[i+2] }; }
|
|
|
|
|
|
|
|
static inline void lc_put(u32 *l, lcomm v)
|
|
|
|
{ l[0] = v.asn; l[1] = v.ldp1; l[2] = v.ldp2; }
|
|
|
|
|
|
|
|
static inline int lc_match(const u32 *l, int i, lcomm v)
|
|
|
|
{ return (l[i] == v.asn && l[i+1] == v.ldp1 && l[i+2] == v.ldp2); }
|
|
|
|
|
|
|
|
static inline u32 *lc_copy(u32 *dst, const u32 *src)
|
|
|
|
{ memcpy(dst, src, LCOMM_LENGTH); return dst + 3; }
|
|
|
|
|
|
|
|
|
2018-12-27 13:26:11 +00:00
|
|
|
int int_set_format(const struct adata *set, int way, int from, byte *buf, uint size);
|
2011-08-12 19:03:43 +00:00
|
|
|
int ec_format(byte *buf, u64 ec);
|
2018-12-27 13:26:11 +00:00
|
|
|
int ec_set_format(const struct adata *set, int from, byte *buf, uint size);
|
2016-10-01 10:50:29 +00:00
|
|
|
int lc_format(byte *buf, lcomm lc);
|
2018-12-27 13:26:11 +00:00
|
|
|
int lc_set_format(const struct adata *set, int from, byte *buf, uint size);
|
|
|
|
int int_set_contains(const struct adata *list, u32 val);
|
|
|
|
int ec_set_contains(const struct adata *list, u64 val);
|
|
|
|
int lc_set_contains(const struct adata *list, lcomm val);
|
|
|
|
const struct adata *int_set_prepend(struct linpool *pool, const struct adata *list, u32 val);
|
|
|
|
const struct adata *int_set_add(struct linpool *pool, const struct adata *list, u32 val);
|
|
|
|
const struct adata *ec_set_add(struct linpool *pool, const struct adata *list, u64 val);
|
|
|
|
const struct adata *lc_set_add(struct linpool *pool, const struct adata *list, lcomm val);
|
|
|
|
const struct adata *int_set_del(struct linpool *pool, const struct adata *list, u32 val);
|
|
|
|
const struct adata *ec_set_del(struct linpool *pool, const struct adata *list, u64 val);
|
|
|
|
const struct adata *lc_set_del(struct linpool *pool, const struct adata *list, lcomm val);
|
|
|
|
const struct adata *int_set_union(struct linpool *pool, const struct adata *l1, const struct adata *l2);
|
|
|
|
const struct adata *ec_set_union(struct linpool *pool, const struct adata *l1, const struct adata *l2);
|
|
|
|
const struct adata *lc_set_union(struct linpool *pool, const struct adata *l1, const struct adata *l2);
|
|
|
|
|
|
|
|
struct adata *ec_set_del_nontrans(struct linpool *pool, const struct adata *set);
|
|
|
|
struct adata *int_set_sort(struct linpool *pool, const struct adata *src);
|
|
|
|
struct adata *ec_set_sort(struct linpool *pool, const struct adata *src);
|
|
|
|
struct adata *lc_set_sort(struct linpool *pool, const struct adata *src);
|
2021-12-28 03:05:05 +00:00
|
|
|
int int_set_min(const struct adata *list, u32 *val);
|
|
|
|
int ec_set_min(const struct adata *list, u64 *val);
|
|
|
|
int lc_set_min(const struct adata *list, lcomm *val);
|
|
|
|
int int_set_max(const struct adata *list, u32 *val);
|
|
|
|
int ec_set_max(const struct adata *list, u64 *val);
|
|
|
|
int lc_set_max(const struct adata *list, lcomm *val);
|
2022-03-14 19:36:20 +00:00
|
|
|
int int_set_walk(const struct adata *list, uint *pos, u32 *val);
|
|
|
|
int ec_set_walk(const struct adata *list, uint *pos, u64 *val);
|
|
|
|
int lc_set_walk(const struct adata *list, uint *pos, lcomm *val);
|
2008-10-26 21:45:09 +00:00
|
|
|
|
2017-12-13 14:57:44 +00:00
|
|
|
void ec_set_sort_x(struct adata *set); /* Sort in place */
|
|
|
|
|
2000-04-17 07:53:29 +00:00
|
|
|
#endif
|