2000-04-17 15:53:29 +08:00
|
|
|
/*
|
|
|
|
* BIRD -- Set/Community-list Operations
|
|
|
|
*
|
|
|
|
* (c) 2000 Martin Mares <mj@ucw.cz>
|
|
|
|
* (c) 2000 Pavel Machek <pavel@ucw.cz>
|
|
|
|
*
|
|
|
|
* Can be freely distributed and used under the terms of the GNU GPL.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "nest/bird.h"
|
|
|
|
#include "nest/route.h"
|
2000-04-17 18:18:55 +08:00
|
|
|
#include "nest/attrs.h"
|
2000-04-17 15:53:29 +08:00
|
|
|
#include "lib/resource.h"
|
2000-04-17 18:18:55 +08:00
|
|
|
#include "lib/string.h"
|
|
|
|
|
2011-07-04 01:43:30 +08:00
|
|
|
/**
|
|
|
|
* int_set_format - format an &set for printing
|
|
|
|
* @set: set attribute to be formatted
|
|
|
|
* @way: style of format (0 for router ID list, 1 for community list)
|
|
|
|
* @from: starting position in set
|
|
|
|
* @buf: destination buffer
|
|
|
|
* @size: size of buffer
|
|
|
|
*
|
|
|
|
* This function takes a set attribute and formats it. @way specifies
|
|
|
|
* the style of format (router ID / community). @from argument can be
|
|
|
|
* used to specify the first printed value for the purpose of printing
|
|
|
|
* untruncated sets even with smaller buffers. If the output fits in
|
|
|
|
* the buffer, 0 is returned, otherwise the position of the first not
|
|
|
|
* printed item is returned. This value can be used as @from argument
|
|
|
|
* in subsequent calls. If truncated output suffices, -1 can be
|
|
|
|
* instead used as @from, in that case " ..." is eventually added at
|
|
|
|
* the buffer to indicate truncation.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
int_set_format(struct adata *set, int way, int from, byte *buf, unsigned int size)
|
2000-04-17 18:18:55 +08:00
|
|
|
{
|
|
|
|
u32 *z = (u32 *) set->data;
|
2011-07-04 01:43:30 +08:00
|
|
|
byte *end = buf + size - 24;
|
|
|
|
int to = set->length / 4;
|
|
|
|
int i;
|
2000-04-17 18:18:55 +08:00
|
|
|
|
2011-07-04 01:43:30 +08:00
|
|
|
for (i = MAX(from, 0); i < to; i++)
|
2000-04-17 18:18:55 +08:00
|
|
|
{
|
|
|
|
if (buf > end)
|
|
|
|
{
|
2011-07-04 01:43:30 +08:00
|
|
|
if (from < 0)
|
|
|
|
strcpy(buf, " ...");
|
|
|
|
else
|
|
|
|
*buf = 0;
|
|
|
|
return i;
|
2000-04-17 18:18:55 +08:00
|
|
|
}
|
2008-11-09 06:33:22 +08:00
|
|
|
|
2011-07-04 01:43:30 +08:00
|
|
|
if (i > from)
|
|
|
|
*buf++ = ' ';
|
|
|
|
|
2008-11-09 06:33:22 +08:00
|
|
|
if (way)
|
2011-07-04 01:43:30 +08:00
|
|
|
buf += bsprintf(buf, "(%d,%d)", z[i] >> 16, z[i] & 0xffff);
|
2008-11-09 06:33:22 +08:00
|
|
|
else
|
2011-07-04 01:43:30 +08:00
|
|
|
buf += bsprintf(buf, "%R", z[i]);
|
2000-04-17 18:18:55 +08:00
|
|
|
}
|
|
|
|
*buf = 0;
|
2011-07-04 01:43:30 +08:00
|
|
|
return 0;
|
2000-04-17 18:18:55 +08:00
|
|
|
}
|
2000-04-17 19:34:38 +08:00
|
|
|
|
|
|
|
int
|
|
|
|
int_set_contains(struct adata *list, u32 val)
|
|
|
|
{
|
2010-05-14 21:24:53 +08:00
|
|
|
if (!list)
|
|
|
|
return 0;
|
|
|
|
|
2000-04-17 19:49:41 +08:00
|
|
|
u32 *l = (u32 *) list->data;
|
|
|
|
unsigned int i;
|
2000-04-17 19:34:38 +08:00
|
|
|
for (i=0; i<list->length/4; i++)
|
|
|
|
if (*l++ == val)
|
|
|
|
return 1;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-05-14 21:24:53 +08:00
|
|
|
struct adata *
|
|
|
|
int_set_add(struct linpool *pool, struct adata *list, u32 val)
|
|
|
|
{
|
|
|
|
struct adata *res;
|
|
|
|
int len;
|
|
|
|
|
|
|
|
if (int_set_contains(list, val))
|
|
|
|
return list;
|
|
|
|
|
|
|
|
len = list ? list->length : 0;
|
|
|
|
res = lp_alloc(pool, len + sizeof(struct adata) + 4);
|
|
|
|
res->length = len + 4;
|
|
|
|
* (u32 *) res->data = val;
|
|
|
|
if (list)
|
|
|
|
memcpy((char *) res->data + 4, list->data, list->length);
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2000-04-17 19:34:38 +08:00
|
|
|
struct adata *
|
|
|
|
int_set_del(struct linpool *pool, struct adata *list, u32 val)
|
|
|
|
{
|
|
|
|
struct adata *res;
|
|
|
|
u32 *l, *k;
|
2000-04-17 19:49:41 +08:00
|
|
|
unsigned int i;
|
2000-04-17 19:34:38 +08:00
|
|
|
|
|
|
|
if (!int_set_contains(list, val))
|
|
|
|
return list;
|
|
|
|
|
|
|
|
res = lp_alloc(pool, list->length + sizeof(struct adata) - 4);
|
|
|
|
res->length = list->length-4;
|
|
|
|
|
2000-04-17 19:49:41 +08:00
|
|
|
l = (u32 *) list->data;
|
|
|
|
k = (u32 *) res->data;
|
2000-04-17 19:34:38 +08:00
|
|
|
for (i=0; i<list->length/4; i++)
|
|
|
|
if (l[i] != val)
|
|
|
|
*k++ = l[i];
|
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|