netflow: Only un-wildcard IPv4 packets.
[sliver-openvswitch.git] / ofproto / netflow.c
1 /*
2  * Copyright (c) 2008, 2009, 2010, 2011 Nicira, Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at:
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #include <config.h>
18 #include "netflow.h"
19 #include <arpa/inet.h>
20 #include <errno.h>
21 #include <stdlib.h>
22 #include <unistd.h>
23 #include "byte-order.h"
24 #include "collectors.h"
25 #include "flow.h"
26 #include "lib/netflow.h"
27 #include "ofpbuf.h"
28 #include "ofproto.h"
29 #include "ofproto/netflow.h"
30 #include "packets.h"
31 #include "poll-loop.h"
32 #include "socket-util.h"
33 #include "timeval.h"
34 #include "util.h"
35 #include "vlog.h"
36
37 VLOG_DEFINE_THIS_MODULE(netflow);
38
39 struct netflow {
40     uint8_t engine_type;          /* Value of engine_type to use. */
41     uint8_t engine_id;            /* Value of engine_id to use. */
42     long long int boot_time;      /* Time when netflow_create() was called. */
43     struct collectors *collectors; /* NetFlow collectors. */
44     bool add_id_to_iface;         /* Put the 7 least significiant bits of
45                                    * 'engine_id' into the most significant
46                                    * bits of the interface fields. */
47     uint32_t netflow_cnt;         /* Flow sequence number for NetFlow. */
48     struct ofpbuf packet;         /* NetFlow packet being accumulated. */
49     long long int active_timeout; /* Timeout for flows that are still active. */
50     long long int next_timeout;   /* Next scheduled active timeout. */
51     long long int reconfig_time;  /* When we reconfigured the timeouts. */
52 };
53
54 void
55 netflow_mask_wc(struct flow *flow, struct flow_wildcards *wc)
56 {
57     if (flow->dl_type != htons(ETH_TYPE_IP)) {
58         return;
59     }
60     memset(&wc->masks.nw_proto, 0xff, sizeof wc->masks.nw_proto);
61     memset(&wc->masks.nw_src, 0xff, sizeof wc->masks.nw_src);
62     memset(&wc->masks.nw_dst, 0xff, sizeof wc->masks.nw_dst);
63     memset(&wc->masks.tp_src, 0xff, sizeof wc->masks.tp_src);
64     memset(&wc->masks.tp_dst, 0xff, sizeof wc->masks.tp_dst);
65     wc->masks.nw_tos |= IP_DSCP_MASK;
66 }
67
68 static void
69 gen_netflow_rec(struct netflow *nf, struct netflow_flow *nf_flow,
70                 struct ofexpired *expired,
71                 uint32_t packet_count, uint32_t byte_count)
72 {
73     struct netflow_v5_header *nf_hdr;
74     struct netflow_v5_record *nf_rec;
75
76     if (!nf->packet.size) {
77         struct timespec now;
78
79         time_wall_timespec(&now);
80
81         nf_hdr = ofpbuf_put_zeros(&nf->packet, sizeof *nf_hdr);
82         nf_hdr->version = htons(NETFLOW_V5_VERSION);
83         nf_hdr->count = htons(0);
84         nf_hdr->sysuptime = htonl(time_msec() - nf->boot_time);
85         nf_hdr->unix_secs = htonl(now.tv_sec);
86         nf_hdr->unix_nsecs = htonl(now.tv_nsec);
87         nf_hdr->flow_seq = htonl(nf->netflow_cnt++);
88         nf_hdr->engine_type = nf->engine_type;
89         nf_hdr->engine_id = nf->engine_id;
90         nf_hdr->sampling_interval = htons(0);
91     }
92
93     nf_hdr = nf->packet.data;
94     nf_hdr->count = htons(ntohs(nf_hdr->count) + 1);
95
96     nf_rec = ofpbuf_put_zeros(&nf->packet, sizeof *nf_rec);
97     nf_rec->src_addr = expired->flow.nw_src;
98     nf_rec->dst_addr = expired->flow.nw_dst;
99     nf_rec->nexthop = htonl(0);
100     if (nf->add_id_to_iface) {
101         uint16_t iface = (nf->engine_id & 0x7f) << 9;
102         nf_rec->input = htons(iface
103             | (ofp_to_u16(expired->flow.in_port.ofp_port) & 0x1ff));
104         nf_rec->output = htons(iface
105             | (ofp_to_u16(nf_flow->output_iface) & 0x1ff));
106     } else {
107         nf_rec->input = htons(ofp_to_u16(expired->flow.in_port.ofp_port));
108         nf_rec->output = htons(ofp_to_u16(nf_flow->output_iface));
109     }
110     nf_rec->packet_count = htonl(packet_count);
111     nf_rec->byte_count = htonl(byte_count);
112     nf_rec->init_time = htonl(nf_flow->created - nf->boot_time);
113     nf_rec->used_time = htonl(MAX(nf_flow->created, expired->used)
114                              - nf->boot_time);
115     if (expired->flow.nw_proto == IPPROTO_ICMP) {
116         /* In NetFlow, the ICMP type and code are concatenated and
117          * placed in the 'dst_port' field. */
118         uint8_t type = ntohs(expired->flow.tp_src);
119         uint8_t code = ntohs(expired->flow.tp_dst);
120         nf_rec->src_port = htons(0);
121         nf_rec->dst_port = htons((type << 8) | code);
122     } else {
123         nf_rec->src_port = expired->flow.tp_src;
124         nf_rec->dst_port = expired->flow.tp_dst;
125     }
126     nf_rec->tcp_flags = nf_flow->tcp_flags;
127     nf_rec->ip_proto = expired->flow.nw_proto;
128     nf_rec->ip_tos = expired->flow.nw_tos & IP_DSCP_MASK;
129
130     /* NetFlow messages are limited to 30 records. */
131     if (ntohs(nf_hdr->count) >= 30) {
132         netflow_run(nf);
133     }
134 }
135
136 void
137 netflow_expire(struct netflow *nf, struct netflow_flow *nf_flow,
138                struct ofexpired *expired)
139 {
140     uint64_t pkt_delta = expired->packet_count - nf_flow->packet_count_off;
141     uint64_t byte_delta = expired->byte_count - nf_flow->byte_count_off;
142
143     nf_flow->last_expired += nf->active_timeout;
144
145     /* NetFlow only reports on IP packets and we should only report flows
146      * that actually have traffic. */
147     if (expired->flow.dl_type != htons(ETH_TYPE_IP) || pkt_delta == 0) {
148         return;
149     }
150
151     if ((byte_delta >> 32) <= 175) {
152         /* NetFlow v5 records are limited to 32-bit counters.  If we've wrapped
153          * a counter, send as multiple records so we don't lose track of any
154          * traffic.  We try to evenly distribute the packet and byte counters,
155          * so that the bytes-per-packet lengths don't look wonky across the
156          * records. */
157         while (byte_delta) {
158             int n_recs = (byte_delta + UINT32_MAX - 1) / UINT32_MAX;
159             uint32_t pkt_count = pkt_delta / n_recs;
160             uint32_t byte_count = byte_delta / n_recs;
161
162             gen_netflow_rec(nf, nf_flow, expired, pkt_count, byte_count);
163
164             pkt_delta -= pkt_count;
165             byte_delta -= byte_count;
166         }
167     } else {
168         /* In 600 seconds, a 10GbE link can theoretically transmit 75 * 10**10
169          * == 175 * 2**32 bytes.  The byte counter is bigger than that, so it's
170          * probably a bug--for example, the netdev code uses UINT64_MAX to
171          * report "unknown value", and perhaps that has leaked through to here.
172          *
173          * We wouldn't want to hit the loop above in this case, because it
174          * would try to send up to UINT32_MAX netflow records, which would take
175          * a long time.
176          */
177         static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 1);
178
179         VLOG_WARN_RL(&rl, "impossible byte counter %"PRIu64, byte_delta);
180     }
181
182     /* Update flow tracking data. */
183     nf_flow->created = 0;
184     nf_flow->packet_count_off = expired->packet_count;
185     nf_flow->byte_count_off = expired->byte_count;
186     nf_flow->tcp_flags = 0;
187 }
188
189 /* Returns true if it's time to send out a round of NetFlow active timeouts,
190  * false otherwise. */
191 bool
192 netflow_run(struct netflow *nf)
193 {
194     if (nf->packet.size) {
195         collectors_send(nf->collectors, nf->packet.data, nf->packet.size);
196         nf->packet.size = 0;
197     }
198
199     if (nf->active_timeout && time_msec() >= nf->next_timeout) {
200         nf->next_timeout = time_msec() + 1000;
201         return true;
202     } else {
203         return false;
204     }
205 }
206
207 void
208 netflow_wait(struct netflow *nf)
209 {
210     if (nf->active_timeout) {
211         poll_timer_wait_until(nf->next_timeout);
212     }
213     if (nf->packet.size) {
214         poll_immediate_wake();
215     }
216 }
217
218 int
219 netflow_set_options(struct netflow *nf,
220                     const struct netflow_options *nf_options)
221 {
222     int error = 0;
223     long long int old_timeout;
224
225     nf->engine_type = nf_options->engine_type;
226     nf->engine_id = nf_options->engine_id;
227     nf->add_id_to_iface = nf_options->add_id_to_iface;
228
229     collectors_destroy(nf->collectors);
230     collectors_create(&nf_options->collectors, 0, &nf->collectors);
231
232     old_timeout = nf->active_timeout;
233     if (nf_options->active_timeout >= 0) {
234         nf->active_timeout = nf_options->active_timeout;
235     } else {
236         nf->active_timeout = NF_ACTIVE_TIMEOUT_DEFAULT;
237     }
238     nf->active_timeout *= 1000;
239     if (old_timeout != nf->active_timeout) {
240         nf->reconfig_time = time_msec();
241         nf->next_timeout = time_msec();
242     }
243
244     return error;
245 }
246
247 struct netflow *
248 netflow_create(void)
249 {
250     struct netflow *nf = xzalloc(sizeof *nf);
251     nf->engine_type = 0;
252     nf->engine_id = 0;
253     nf->boot_time = time_msec();
254     nf->collectors = NULL;
255     nf->add_id_to_iface = false;
256     nf->netflow_cnt = 0;
257     ofpbuf_init(&nf->packet, 1500);
258     return nf;
259 }
260
261 void
262 netflow_destroy(struct netflow *nf)
263 {
264     if (nf) {
265         ofpbuf_uninit(&nf->packet);
266         collectors_destroy(nf->collectors);
267         free(nf);
268     }
269 }
270
271 /* Initializes a new 'nf_flow' given that the caller has already cleared it to
272  * all-zero-bits. */
273 void
274 netflow_flow_init(struct netflow_flow *nf_flow OVS_UNUSED)
275 {
276     /* Nothing to do. */
277 }
278
279 void
280 netflow_flow_clear(struct netflow_flow *nf_flow)
281 {
282     ofp_port_t output_iface = nf_flow->output_iface;
283
284     memset(nf_flow, 0, sizeof *nf_flow);
285     nf_flow->output_iface = output_iface;
286 }
287
288 void
289 netflow_flow_update_time(struct netflow *nf, struct netflow_flow *nf_flow,
290                          long long int used)
291 {
292     if (!nf_flow->created) {
293         nf_flow->created = used;
294     }
295
296     if (!nf || !nf->active_timeout || !nf_flow->last_expired ||
297         nf->reconfig_time > nf_flow->last_expired) {
298         /* Keep the time updated to prevent a flood of expiration in
299          * the future. */
300         nf_flow->last_expired = time_msec();
301     }
302 }
303
304 void
305 netflow_flow_update_flags(struct netflow_flow *nf_flow, uint8_t tcp_flags)
306 {
307     nf_flow->tcp_flags |= tcp_flags;
308 }
309
310 bool
311 netflow_active_timeout_expired(struct netflow *nf, struct netflow_flow *nf_flow)
312 {
313     if (nf->active_timeout) {
314         return time_msec() > nf_flow->last_expired + nf->active_timeout;
315     }
316
317     return false;
318 }