2 * @file traffic_selector.h
4 * @brief Interface of traffic_selector_t.
9 * Copyright (C) 2005-2006 Martin Willi
10 * Copyright (C) 2005 Jan Hutter
11 * Hochschule fuer Technik Rapperswil
13 * This program is free software; you can redistribute it and/or modify it
14 * under the terms of the GNU General Public License as published by the
15 * Free Software Foundation; either version 2 of the License, or (at your
16 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
18 * This program is distributed in the hope that it will be useful, but
19 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
20 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
24 #ifndef TRAFFIC_SELECTOR_H_
25 #define TRAFFIC_SELECTOR_H_
28 #include <utils/host.h>
30 typedef enum ts_type_t ts_type_t
;
33 * Traffic selector types.
40 * A range of IPv4 addresses, represented by two four (4) octet
41 * values. The first value is the beginning IPv4 address
42 * (inclusive) and the second value is the ending IPv4 address
43 * (inclusive). All addresses falling between the two specified
44 * addresses are considered to be within the list.
46 TS_IPV4_ADDR_RANGE
= 7,
49 * A range of IPv6 addresses, represented by two sixteen (16)
50 * octet values. The first value is the beginning IPv6 address
51 * (inclusive) and the second value is the ending IPv6 address
52 * (inclusive). All addresses falling between the two specified
53 * addresses are considered to be within the list.
55 TS_IPV6_ADDR_RANGE
= 8
59 * string mappings for ts_type_t
61 extern mapping_t ts_type_m
[];
64 typedef struct traffic_selector_t traffic_selector_t
;
67 * @brief Object representing a traffic selector entry.
69 * A traffic selector defines an range of addresses
70 * and a range of ports. IPv6 is not fully supported yet.
73 * - traffic_selector_create_from_bytes()
74 * - traffic_selector_create_from_string()
76 * @todo Add IPv6 support
80 struct traffic_selector_t
{
83 * @brief Compare two traffic selectors, and create a new one
84 * which is the largest subset of both (subnet & port).
86 * Resulting traffic_selector is newly created and must be destroyed.
88 * @param this first to compare
89 * @param other second to compare
91 * - created subset of them
92 * - or NULL if no match between this and other
94 traffic_selector_t
*(*get_subset
) (traffic_selector_t
*this,
95 traffic_selector_t
*other
);
98 * @brief Clone a traffic selector.
100 * @param this traffic selector to clone
101 * @return clone of it
103 traffic_selector_t
*(*clone
) (traffic_selector_t
*this);
106 * @brief Get starting address of this ts as a chunk.
108 * Chunk is in network order gets allocated.
110 * @param this calling object
111 * @return chunk containing the address
113 chunk_t (*get_from_address
) (traffic_selector_t
*this);
116 * @brief Get ending address of this ts as a chunk.
118 * Chunk is in network order gets allocated.
120 * @param this calling object
121 * @return chunk containing the address
123 chunk_t (*get_to_address
) (traffic_selector_t
*this);
126 * @brief Get starting port of this ts.
128 * Port is in host order, since the parser converts it.
129 * Size depends on protocol.
131 * @param this calling object
134 u_int16_t (*get_from_port
) (traffic_selector_t
*this);
137 * @brief Get ending port of this ts.
139 * Port is in host order, since the parser converts it.
140 * Size depends on protocol.
142 * @param this calling object
145 u_int16_t (*get_to_port
) (traffic_selector_t
*this);
148 * @brief Get the type of the traffic selector.
150 * @param this calling obect
151 * @return ts_type_t specifying the type
153 ts_type_t (*get_type
) (traffic_selector_t
*this);
156 * @brief Get the protocol id of this ts.
158 * @param this calling obect
159 * @return protocol id
161 u_int8_t (*get_protocol
) (traffic_selector_t
*this);
164 * @brief Update the address of a traffic selector.
166 * Update the address range of a traffic selector,
167 * if the current address is 0.0.0.0. The new address range
168 * starts from the supplied address and also ends there
169 * (which means it is a one-host-address-range ;-).
171 * @param this calling obect
172 * @param host host_t specifying the address range
174 void (*update_address_range
) (traffic_selector_t
*this, host_t
* host
);
177 * @brief Get a string representation of the traffic selector.
179 * String points to internal data, do not free/modify.
181 * @param this calling object
182 * @return pointer to a string.
184 char* (*get_string
) (traffic_selector_t
*this);
187 * @brief Destroys the ts object
189 * @param this calling object
191 void (*destroy
) (traffic_selector_t
*this);
195 * @brief Create a new traffic selector using human readable params.
197 * @param protocol protocol for this ts, such as TCP or UDP
198 * @param type type of following addresses, such as TS_IPV4_ADDR_RANGE
199 * @param from_addr start of address range as string
200 * @param from_port port number in host order
201 * @param to_addr end of address range as string
202 * @param to_port port number in host order
204 * - traffic_selector_t object
205 * - NULL if invalid address strings/protocol
209 traffic_selector_t
*traffic_selector_create_from_string(
210 u_int8_t protocol
, ts_type_t type
,
211 char *from_addr
, u_int16_t from_port
,
212 char *to_addr
, u_int16_t to_port
);
215 * @brief Create a new traffic selector using data read from the net.
217 * There exists a mix of network and host order in the params.
218 * But the parser gives us this data in this format, so we
219 * don't have to convert twice.
221 * @param protocol protocol for this ts, such as TCP or UDP
222 * @param type type of following addresses, such as TS_IPV4_ADDR_RANGE
223 * @param from_address start of address range, network order
224 * @param from_port port number, host order
225 * @param to_address end of address range as string, network
226 * @param to_port port number, host order
228 * - traffic_selector_t object
229 * - NULL if invalid address input/protocol
233 traffic_selector_t
*traffic_selector_create_from_bytes(
234 u_int8_t protocol
, ts_type_t type
,
235 chunk_t from_address
, u_int16_t from_port
,
236 chunk_t to_address
, u_int16_t to_port
);
239 * @brief Create a new traffic selector defining a whole subnet.
241 * In most cases, definition of a traffic selector for full subnets
242 * is sufficient. This constructor creates a traffic selector for
243 * all protocols, all ports and the address range specified by the
245 * Additionally, a protocol and a port may be specified. Port ranges
246 * are not supported via this constructor.
248 * @param net subnet to use
249 * @param netbits size of the subnet, as used in e.g. 192.168.0.0/24 notation
251 * - traffic_selector_t object
252 * - NULL if address family of net not supported
256 traffic_selector_t
*traffic_selector_create_from_subnet(
257 host_t
*net
, u_int8_t netbits
,
258 u_int8_t protocol
, u_int16_t port
);
260 #endif /* TRAFFIC_SELECTOR_H_ */