blob: 56e9f18ee312a3b6941335b43fb129f8d377eeda [file] [log] [blame]
paul718e3742002-12-13 20:15:29 +00001/* BGP Extended Communities Attribute.
2 Copyright (C) 2000 Kunihiro Ishiguro <kunihiro@zebra.org>
3
4This file is part of GNU Zebra.
5
6GNU Zebra is free software; you can redistribute it and/or modify it
7under the terms of the GNU General Public License as published by the
8Free Software Foundation; either version 2, or (at your option) any
9later version.
10
11GNU Zebra is distributed in the hope that it will be useful, but
12WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with GNU Zebra; see the file COPYING. If not, write to the Free
18Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
1902111-1307, USA. */
20
21/* High-order octet of the Extended Communities type field. */
22#define ECOMMUNITY_ENCODE_AS 0x00
23#define ECOMMUNITY_ENCODE_IP 0x01
24
25/* Low-order octet of the Extended Communityes type field. */
26#define ECOMMUNITY_ROUTE_TARGET 0x02
27#define ECOMMUNITY_SITE_ORIGIN 0x03
28
29/* Extended communities attribute string format. */
30#define ECOMMUNITY_FORMAT_ROUTE_MAP 0
31#define ECOMMUNITY_FORMAT_COMMUNITY_LIST 1
32#define ECOMMUNITY_FORMAT_DISPLAY 2
33
34/* Extended Communities value is eight octet long. */
35#define ECOMMUNITY_SIZE 8
36
hasso4372df72004-05-20 10:20:02 +000037/* Extended Communities type flag. */
38#define ECOMMUNITY_FLAG_NON_TRANSITIVE 0x40
39
paul718e3742002-12-13 20:15:29 +000040/* Extended Communities attribute. */
41struct ecommunity
42{
43 /* Reference counter. */
44 unsigned long refcnt;
45
46 /* Size of Extended Communities attribute. */
47 int size;
48
49 /* Extended Communities value. */
paul5228ad22004-06-04 17:58:18 +000050 u_int8_t *val;
paul718e3742002-12-13 20:15:29 +000051
52 /* Human readable format string. */
53 char *str;
54};
55
56/* Extended community value is eight octet. */
57struct ecommunity_val
58{
59 char val[ECOMMUNITY_SIZE];
60};
61
62#define ecom_length(X) ((X)->size * ECOMMUNITY_SIZE)
63
64void ecommunity_init (void);
65void ecommunity_free (struct ecommunity *);
66struct ecommunity *ecommunity_new (void);
paul5228ad22004-06-04 17:58:18 +000067struct ecommunity *ecommunity_parse (u_int8_t *, u_short);
paul718e3742002-12-13 20:15:29 +000068struct ecommunity *ecommunity_dup (struct ecommunity *);
69struct ecommunity *ecommunity_merge (struct ecommunity *, struct ecommunity *);
70struct ecommunity *ecommunity_intern (struct ecommunity *);
paulfd79ac92004-10-13 05:06:08 +000071int ecommunity_cmp (const struct ecommunity *, const struct ecommunity *);
paul718e3742002-12-13 20:15:29 +000072void ecommunity_unintern (struct ecommunity *);
73unsigned int ecommunity_hash_make (struct ecommunity *);
paulfd79ac92004-10-13 05:06:08 +000074struct ecommunity *ecommunity_str2com (const char *, int, int);
paul718e3742002-12-13 20:15:29 +000075char *ecommunity_ecom2str (struct ecommunity *, int);
paulfd79ac92004-10-13 05:06:08 +000076int ecommunity_match (const struct ecommunity *, const struct ecommunity *);
hasso4372df72004-05-20 10:20:02 +000077char *ecommunity_str (struct ecommunity *);