ofproto-dpif: Always un-wildcard 'dl_type'.
[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_wildcards *wc)
56 {
57     memset(&wc->masks.nw_proto, 0xff, sizeof wc->masks.nw_proto);
58     memset(&wc->masks.nw_src, 0xff, sizeof wc->masks.nw_src);
59     memset(&wc->masks.nw_dst, 0xff, sizeof wc->masks.nw_dst);
60     memset(&wc->masks.tp_src, 0xff, sizeof wc->masks.tp_src);
61     memset(&wc->masks.tp_dst, 0xff, sizeof wc->masks.tp_dst);
62     wc->masks.nw_tos |= IP_DSCP_MASK;
63 }
64
65 static void
66 gen_netflow_rec(struct netflow *nf, struct netflow_flow *nf_flow,
67                 struct ofexpired *expired,
68                 uint32_t packet_count, uint32_t byte_count)
69 {
70     struct netflow_v5_header *nf_hdr;
71     struct netflow_v5_record *nf_rec;
72
73     if (!nf->packet.size) {
74         struct timespec now;
75
76         time_wall_timespec(&now);
77
78         nf_hdr = ofpbuf_put_zeros(&nf->packet, sizeof *nf_hdr);
79         nf_hdr->version = htons(NETFLOW_V5_VERSION);
80         nf_hdr->count = htons(0);
81         nf_hdr->sysuptime = htonl(time_msec() - nf->boot_time);
82         nf_hdr->unix_secs = htonl(now.tv_sec);
83         nf_hdr->unix_nsecs = htonl(now.tv_nsec);
84         nf_hdr->flow_seq = htonl(nf->netflow_cnt++);
85         nf_hdr->engine_type = nf->engine_type;
86         nf_hdr->engine_id = nf->engine_id;
87         nf_hdr->sampling_interval = htons(0);
88     }
89
90     nf_hdr = nf->packet.data;
91     nf_hdr->count = htons(ntohs(nf_hdr->count) + 1);
92
93     nf_rec = ofpbuf_put_zeros(&nf->packet, sizeof *nf_rec);
94     nf_rec->src_addr = expired->flow.nw_src;
95     nf_rec->dst_addr = expired->flow.nw_dst;
96     nf_rec->nexthop = htonl(0);
97     if (nf->add_id_to_iface) {
98         uint16_t iface = (nf->engine_id & 0x7f) << 9;
99         nf_rec->input = htons(iface
100             | (ofp_to_u16(expired->flow.in_port.ofp_port) & 0x1ff));
101         nf_rec->output = htons(iface
102             | (ofp_to_u16(nf_flow->output_iface) & 0x1ff));
103     } else {
104         nf_rec->input = htons(ofp_to_u16(expired->flow.in_port.ofp_port));
105         nf_rec->output = htons(ofp_to_u16(nf_flow->output_iface));
106     }
107     nf_rec->packet_count = htonl(packet_count);
108     nf_rec->byte_count = htonl(byte_count);
109     nf_rec->init_time = htonl(nf_flow->created - nf->boot_time);
110     nf_rec->used_time = htonl(MAX(nf_flow->created, expired->used)
111                              - nf->boot_time);
112     if (expired->flow.nw_proto == IPPROTO_ICMP) {
113         /* In NetFlow, the ICMP type and code are concatenated and
114          * placed in the 'dst_port' field. */
115         uint8_t type = ntohs(expired->flow.tp_src);
116         uint8_t code = ntohs(expired->flow.tp_dst);
117         nf_rec->src_port = htons(0);
118         nf_rec->dst_port = htons((type << 8) | code);
119     } else {
120         nf_rec->src_port = expired->flow.tp_src;
121         nf_rec->dst_port = expired->flow.tp_dst;
122     }
123     nf_rec->tcp_flags = nf_flow->tcp_flags;
124     nf_rec->ip_proto = expired->flow.nw_proto;
125     nf_rec->ip_tos = expired->flow.nw_tos & IP_DSCP_MASK;
126
127     /* NetFlow messages are limited to 30 records. */
128     if (ntohs(nf_hdr->count) >= 30) {
129         netflow_run(nf);
130     }
131 }
132
133 void
134 netflow_expire(struct netflow *nf, struct netflow_flow *nf_flow,
135                struct ofexpired *expired)
136 {
137     uint64_t pkt_delta = expired->packet_count - nf_flow->packet_count_off;
138     uint64_t byte_delta = expired->byte_count - nf_flow->byte_count_off;
139
140     nf_flow->last_expired += nf->active_timeout;
141
142     /* NetFlow only reports on IP packets and we should only report flows
143      * that actually have traffic. */
144     if (expired->flow.dl_type != htons(ETH_TYPE_IP) || pkt_delta == 0) {
145         return;
146     }
147
148     if ((byte_delta >> 32) <= 175) {
149         /* NetFlow v5 records are limited to 32-bit counters.  If we've wrapped
150          * a counter, send as multiple records so we don't lose track of any
151          * traffic.  We try to evenly distribute the packet and byte counters,
152          * so that the bytes-per-packet lengths don't look wonky across the
153          * records. */
154         while (byte_delta) {
155             int n_recs = (byte_delta + UINT32_MAX - 1) / UINT32_MAX;
156             uint32_t pkt_count = pkt_delta / n_recs;
157             uint32_t byte_count = byte_delta / n_recs;
158
159             gen_netflow_rec(nf, nf_flow, expired, pkt_count, byte_count);
160
161             pkt_delta -= pkt_count;
162             byte_delta -= byte_count;
163         }
164     } else {
165         /* In 600 seconds, a 10GbE link can theoretically transmit 75 * 10**10
166          * == 175 * 2**32 bytes.  The byte counter is bigger than that, so it's
167          * probably a bug--for example, the netdev code uses UINT64_MAX to
168          * report "unknown value", and perhaps that has leaked through to here.
169          *
170          * We wouldn't want to hit the loop above in this case, because it
171          * would try to send up to UINT32_MAX netflow records, which would take
172          * a long time.
173          */
174         static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 1);
175
176         VLOG_WARN_RL(&rl, "impossible byte counter %"PRIu64, byte_delta);
177     }
178
179     /* Update flow tracking data. */
180     nf_flow->created = 0;
181     nf_flow->packet_count_off = expired->packet_count;
182     nf_flow->byte_count_off = expired->byte_count;
183     nf_flow->tcp_flags = 0;
184 }
185
186 /* Returns true if it's time to send out a round of NetFlow active timeouts,
187  * false otherwise. */
188 bool
189 netflow_run(struct netflow *nf)
190 {
191     if (nf->packet.size) {
192         collectors_send(nf->collectors, nf->packet.data, nf->packet.size);
193         nf->packet.size = 0;
194     }
195
196     if (nf->active_timeout && time_msec() >= nf->next_timeout) {
197         nf->next_timeout = time_msec() + 1000;
198         return true;
199     } else {
200         return false;
201     }
202 }
203
204 void
205 netflow_wait(struct netflow *nf)
206 {
207     if (nf->active_timeout) {
208         poll_timer_wait_until(nf->next_timeout);
209     }
210     if (nf->packet.size) {
211         poll_immediate_wake();
212     }
213 }
214
215 int
216 netflow_set_options(struct netflow *nf,
217                     const struct netflow_options *nf_options)
218 {
219     int error = 0;
220     long long int old_timeout;
221
222     nf->engine_type = nf_options->engine_type;
223     nf->engine_id = nf_options->engine_id;
224     nf->add_id_to_iface = nf_options->add_id_to_iface;
225
226     collectors_destroy(nf->collectors);
227     collectors_create(&nf_options->collectors, 0, &nf->collectors);
228
229     old_timeout = nf->active_timeout;
230     if (nf_options->active_timeout >= 0) {
231         nf->active_timeout = nf_options->active_timeout;
232     } else {
233         nf->active_timeout = NF_ACTIVE_TIMEOUT_DEFAULT;
234     }
235     nf->active_timeout *= 1000;
236     if (old_timeout != nf->active_timeout) {
237         nf->reconfig_time = time_msec();
238         nf->next_timeout = time_msec();
239     }
240
241     return error;
242 }
243
244 struct netflow *
245 netflow_create(void)
246 {
247     struct netflow *nf = xzalloc(sizeof *nf);
248     nf->engine_type = 0;
249     nf->engine_id = 0;
250     nf->boot_time = time_msec();
251     nf->collectors = NULL;
252     nf->add_id_to_iface = false;
253     nf->netflow_cnt = 0;
254     ofpbuf_init(&nf->packet, 1500);
255     return nf;
256 }
257
258 void
259 netflow_destroy(struct netflow *nf)
260 {
261     if (nf) {
262         ofpbuf_uninit(&nf->packet);
263         collectors_destroy(nf->collectors);
264         free(nf);
265     }
266 }
267
268 /* Initializes a new 'nf_flow' given that the caller has already cleared it to
269  * all-zero-bits. */
270 void
271 netflow_flow_init(struct netflow_flow *nf_flow OVS_UNUSED)
272 {
273     /* Nothing to do. */
274 }
275
276 void
277 netflow_flow_clear(struct netflow_flow *nf_flow)
278 {
279     ofp_port_t output_iface = nf_flow->output_iface;
280
281     memset(nf_flow, 0, sizeof *nf_flow);
282     nf_flow->output_iface = output_iface;
283 }
284
285 void
286 netflow_flow_update_time(struct netflow *nf, struct netflow_flow *nf_flow,
287                          long long int used)
288 {
289     if (!nf_flow->created) {
290         nf_flow->created = used;
291     }
292
293     if (!nf || !nf->active_timeout || !nf_flow->last_expired ||
294         nf->reconfig_time > nf_flow->last_expired) {
295         /* Keep the time updated to prevent a flood of expiration in
296          * the future. */
297         nf_flow->last_expired = time_msec();
298     }
299 }
300
301 void
302 netflow_flow_update_flags(struct netflow_flow *nf_flow, uint8_t tcp_flags)
303 {
304     nf_flow->tcp_flags |= tcp_flags;
305 }
306
307 bool
308 netflow_active_timeout_expired(struct netflow *nf, struct netflow_flow *nf_flow)
309 {
310     if (nf->active_timeout) {
311         return time_msec() > nf_flow->last_expired + nf->active_timeout;
312     }
313
314     return false;
315 }