summaryrefslogtreecommitdiff
path: root/proto/bmp/map.h
blob: 8e7ea69523b5ebdd64740bfe8e88387a12966343 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/*
 *	BIRD -- The BGP Monitoring Protocol (BMP)
 *
 *	(c) 2020 Akamai Technologies, Inc. (Pawel Maslanka, pmaslank@akamai.com)
 *
 *	Can be freely distributed and used under the terms of the GNU GPL.
 */

/**
 * This map implementation binds peer IP address as container key with custom data.
 */
#ifndef _BIRD_BMP_MAP_H_
#define _BIRD_BMP_MAP_H_

#include "nest/bird.h"
#include "lib/hash.h"
#include "lib/resource.h"

struct bmp_peer_map_key {
  struct bmp_peer_map_key *next;
  ip_addr peer_ip;
  u32 peer_as;
};

struct bmp_peer_map_data {
  void *buf;
  size_t buf_size;
};

struct bmp_peer_map_entry {
  struct bmp_peer_map_key key;
  struct bmp_peer_map_data data;
};

struct bmp_peer_map {
  pool *mpool;                             // Memory pool for peer entries in peer_hash
  HASH(struct bmp_peer_map_key) peer_hash; // Hash for peers to find the index
};

void
bmp_peer_map_init(struct bmp_peer_map *map, pool *mpool);

struct bmp_peer_map_key
bmp_peer_map_key_create(const ip_addr peer_ip, const u32 peer_as);

void
bmp_peer_map_free(struct bmp_peer_map *map);

void
bmp_peer_map_flush(struct bmp_peer_map *map);

void
bmp_peer_map_insert(struct bmp_peer_map *map, const struct bmp_peer_map_key key,
  const byte *data, const size_t data_size);

void
bmp_peer_map_remove(struct bmp_peer_map *map, const struct bmp_peer_map_key key);

const struct bmp_peer_map_entry *
bmp_peer_map_get(struct bmp_peer_map *map, const struct bmp_peer_map_key key);

typedef void (*bmp_peer_map_walk_action)(const struct bmp_peer_map_key key,
					 const byte *data, const size_t data_size, void *arg);

void
bmp_peer_map_walk(const struct bmp_peer_map *map, bmp_peer_map_walk_action action, void *arg);

#endif /* _BIRD_BMP_MAP_H_ */