Makefile.in: Move settings of various directories above CFLAGS etc.
[secnet] / ipaddr.h
... / ...
CommitLineData
1/* Useful functions for dealing with collections of IP addresses */
2
3#ifndef ipaddr_h
4#define ipaddr_h
5
6struct subnet {
7 uint32_t prefix;
8 uint32_t mask;
9 int len;
10};
11
12struct subnet_list {
13 int32_t entries;
14 int32_t alloc;
15 struct subnet *list;
16};
17
18struct iprange {
19 uint32_t a,b;
20};
21
22struct ipset {
23 int32_t l; /* Number of entries in list */
24 int32_t a; /* Allocated space in list */
25 struct iprange *d;
26};
27
28extern struct subnet_list *subnet_list_new(void);
29extern void subnet_list_free(struct subnet_list *a);
30extern void subnet_list_append(struct subnet_list *a, uint32_t prefix, int len);
31
32static inline bool_t subnet_match(struct subnet s, uint32_t address)
33{
34 return (s.prefix==(address&s.mask));
35}
36
37extern struct ipset *ipset_new(void);
38extern void ipset_free(struct ipset *a);
39extern struct ipset *ipset_from_subnet(struct subnet s);
40extern struct ipset *ipset_from_subnet_list(struct subnet_list *l);
41extern struct ipset *ipset_union(struct ipset *a, struct ipset *b);
42extern struct ipset *ipset_intersection(struct ipset *a, struct ipset *b);
43extern struct ipset *ipset_complement(struct ipset *a);
44extern struct ipset *ipset_subtract(struct ipset *a, struct ipset *b);
45extern bool_t ipset_is_empty(struct ipset *a);
46extern bool_t ipset_contains_addr(struct ipset *a, uint32_t addr);
47extern bool_t ipset_is_subset(struct ipset *super, struct ipset *sub);
48extern struct subnet_list *ipset_to_subnet_list(struct ipset *is);
49
50extern string_t ipaddr_to_string(uint32_t addr);
51extern string_t subnet_to_string(struct subnet sn);
52
53extern struct ipset *string_list_to_ipset(list_t *l,struct cloc loc,
54 cstring_t module, cstring_t param);
55
56extern uint32_t string_item_to_ipaddr(const item_t *i, cstring_t desc);
57
58#endif /* ipaddr_h */