]> git.proxmox.com Git - mirror_ovs.git/blame - ofproto/ofproto-dpif-sflow.c
dpif: Add function to get the dpif type.
[mirror_ovs.git] / ofproto / ofproto-dpif-sflow.c
CommitLineData
72b06300 1/*
e0edde6f 2 * Copyright (c) 2009, 2010, 2011, 2012 Nicira, Inc.
f1588b1f 3 * Copyright (c) 2009 InMon Corp.
72b06300
BP
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at:
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
17
18#include <config.h>
bae473fe 19#include "ofproto-dpif-sflow.h"
72b06300 20#include <inttypes.h>
f6eb6b20 21#include <sys/socket.h>
733adf2a 22#include <net/if.h>
72b06300
BP
23#include <stdlib.h>
24#include "collectors.h"
72b06300 25#include "compiler.h"
bae473fe 26#include "dpif.h"
0cc96e48
BP
27#include "hash.h"
28#include "hmap.h"
72b06300 29#include "netdev.h"
cdee00fd 30#include "netlink.h"
72b06300
BP
31#include "ofpbuf.h"
32#include "ofproto.h"
26233bb4 33#include "packets.h"
72b06300 34#include "poll-loop.h"
733adf2a 35#include "route-table.h"
72b06300
BP
36#include "sflow_api.h"
37#include "socket-util.h"
38#include "timeval.h"
72b06300 39#include "vlog.h"
975a704c 40#include "lib/odp-util.h"
392c7182 41#include "ofproto-provider.h"
72b06300 42
d98e6007 43VLOG_DEFINE_THIS_MODULE(sflow);
5136ce49 44
bae473fe
JP
45struct dpif_sflow_port {
46 struct hmap_node hmap_node; /* In struct dpif_sflow's "ports" hmap. */
72b06300 47 SFLDataSource_instance dsi; /* sFlow library's notion of port number. */
392c7182 48 struct ofport *ofport; /* To retrive port stats. */
e1b1d06a 49 uint32_t odp_port;
72b06300
BP
50};
51
bae473fe 52struct dpif_sflow {
72b06300
BP
53 struct collectors *collectors;
54 SFLAgent *sflow_agent;
55 struct ofproto_sflow_options *options;
56 struct dpif *dpif;
57 time_t next_tick;
58 size_t n_flood, n_all;
bae473fe 59 struct hmap ports; /* Contains "struct dpif_sflow_port"s. */
6ff686f2 60 uint32_t probability;
72b06300
BP
61};
62
bae473fe
JP
63static void dpif_sflow_del_port__(struct dpif_sflow *,
64 struct dpif_sflow_port *);
0cc96e48 65
72b06300
BP
66#define RECEIVER_INDEX 1
67
68static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
69
fa49ca80
BP
70static bool
71nullable_string_is_equal(const char *a, const char *b)
72{
73 return a ? b && !strcmp(a, b) : !b;
74}
75
72b06300
BP
76static bool
77ofproto_sflow_options_equal(const struct ofproto_sflow_options *a,
bae473fe 78 const struct ofproto_sflow_options *b)
72b06300 79{
81e2083f 80 return (sset_equals(&a->targets, &b->targets)
72b06300
BP
81 && a->sampling_rate == b->sampling_rate
82 && a->polling_interval == b->polling_interval
83 && a->header_len == b->header_len
84 && a->sub_id == b->sub_id
fa49ca80
BP
85 && nullable_string_is_equal(a->agent_device, b->agent_device)
86 && nullable_string_is_equal(a->control_ip, b->control_ip));
72b06300
BP
87}
88
89static struct ofproto_sflow_options *
90ofproto_sflow_options_clone(const struct ofproto_sflow_options *old)
91{
92 struct ofproto_sflow_options *new = xmemdup(old, sizeof *old);
81e2083f 93 sset_clone(&new->targets, &old->targets);
72b06300
BP
94 new->agent_device = old->agent_device ? xstrdup(old->agent_device) : NULL;
95 new->control_ip = old->control_ip ? xstrdup(old->control_ip) : NULL;
96 return new;
97}
98
99static void
100ofproto_sflow_options_destroy(struct ofproto_sflow_options *options)
101{
102 if (options) {
81e2083f 103 sset_destroy(&options->targets);
72b06300
BP
104 free(options->agent_device);
105 free(options->control_ip);
106 free(options);
107 }
108}
109
110/* sFlow library callback to allocate memory. */
111static void *
67a4917b
BP
112sflow_agent_alloc_cb(void *magic OVS_UNUSED, SFLAgent *agent OVS_UNUSED,
113 size_t bytes)
72b06300
BP
114{
115 return calloc(1, bytes);
116}
117
118/* sFlow library callback to free memory. */
119static int
67a4917b
BP
120sflow_agent_free_cb(void *magic OVS_UNUSED, SFLAgent *agent OVS_UNUSED,
121 void *obj)
72b06300
BP
122{
123 free(obj);
124 return 0;
125}
126
127/* sFlow library callback to report error. */
128static void
67a4917b
BP
129sflow_agent_error_cb(void *magic OVS_UNUSED, SFLAgent *agent OVS_UNUSED,
130 char *msg)
72b06300
BP
131{
132 VLOG_WARN("sFlow agent error: %s", msg);
133}
134
135/* sFlow library callback to send datagram. */
136static void
bae473fe 137sflow_agent_send_packet_cb(void *ds_, SFLAgent *agent OVS_UNUSED,
67a4917b 138 SFLReceiver *receiver OVS_UNUSED, u_char *pkt,
72b06300
BP
139 uint32_t pktLen)
140{
bae473fe
JP
141 struct dpif_sflow *ds = ds_;
142 collectors_send(ds->collectors, pkt, pktLen);
72b06300
BP
143}
144
bae473fe 145static struct dpif_sflow_port *
9b56fe13 146dpif_sflow_find_port(const struct dpif_sflow *ds, uint32_t odp_port)
0cc96e48 147{
bae473fe 148 struct dpif_sflow_port *dsp;
0cc96e48 149
bae473fe
JP
150 HMAP_FOR_EACH_IN_BUCKET (dsp, hmap_node,
151 hash_int(odp_port, 0), &ds->ports) {
e1b1d06a 152 if (dsp->odp_port == odp_port) {
bae473fe 153 return dsp;
0cc96e48
BP
154 }
155 }
156 return NULL;
157}
158
72b06300 159static void
bae473fe 160sflow_agent_get_counters(void *ds_, SFLPoller *poller,
72b06300
BP
161 SFL_COUNTERS_SAMPLE_TYPE *cs)
162{
bae473fe 163 struct dpif_sflow *ds = ds_;
72b06300 164 SFLCounters_sample_element elem;
6c038611 165 enum netdev_features current;
bae473fe 166 struct dpif_sflow_port *dsp;
72b06300
BP
167 SFLIf_counters *counters;
168 struct netdev_stats stats;
169 enum netdev_flags flags;
72b06300 170
bae473fe
JP
171 dsp = dpif_sflow_find_port(ds, poller->bridgePort);
172 if (!dsp) {
72b06300
BP
173 return;
174 }
175
176 elem.tag = SFLCOUNTERS_GENERIC;
177 counters = &elem.counterBlock.generic;
178 counters->ifIndex = SFL_DS_INDEX(poller->dsi);
179 counters->ifType = 6;
392c7182 180 if (!netdev_get_features(dsp->ofport->netdev, &current, NULL, NULL, NULL)) {
bae473fe
JP
181 /* The values of ifDirection come from MAU MIB (RFC 2668): 0 = unknown,
182 1 = full-duplex, 2 = half-duplex, 3 = in, 4=out */
72b06300
BP
183 counters->ifSpeed = netdev_features_to_bps(current);
184 counters->ifDirection = (netdev_features_is_full_duplex(current)
185 ? 1 : 2);
186 } else {
187 counters->ifSpeed = 100000000;
b6dab095 188 counters->ifDirection = 0;
72b06300 189 }
392c7182 190 if (!netdev_get_flags(dsp->ofport->netdev, &flags) && flags & NETDEV_UP) {
72b06300 191 counters->ifStatus = 1; /* ifAdminStatus up. */
392c7182 192 if (netdev_get_carrier(dsp->ofport->netdev)) {
72b06300
BP
193 counters->ifStatus |= 2; /* ifOperStatus us. */
194 }
195 } else {
196 counters->ifStatus = 0; /* Down. */
197 }
198
199 /* XXX
200 1. Is the multicast counter filled in?
201 2. Does the multicast counter include broadcasts?
202 3. Does the rx_packets counter include multicasts/broadcasts?
203 */
392c7182 204 ofproto_port_get_stats(dsp->ofport, &stats);
72b06300
BP
205 counters->ifInOctets = stats.rx_bytes;
206 counters->ifInUcastPkts = stats.rx_packets;
207 counters->ifInMulticastPkts = stats.multicast;
208 counters->ifInBroadcastPkts = -1;
209 counters->ifInDiscards = stats.rx_dropped;
210 counters->ifInErrors = stats.rx_errors;
211 counters->ifInUnknownProtos = -1;
212 counters->ifOutOctets = stats.tx_bytes;
213 counters->ifOutUcastPkts = stats.tx_packets;
214 counters->ifOutMulticastPkts = -1;
215 counters->ifOutBroadcastPkts = -1;
216 counters->ifOutDiscards = stats.tx_dropped;
217 counters->ifOutErrors = stats.tx_errors;
218 counters->ifPromiscuousMode = 0;
219
220 SFLADD_ELEMENT(cs, &elem);
221 sfl_poller_writeCountersSample(poller, cs);
222}
223
224/* Obtains an address to use for the local sFlow agent and stores it into
225 * '*agent_addr'. Returns true if successful, false on failure.
226 *
227 * The sFlow agent address should be a local IP address that is persistent and
228 * reachable over the network, if possible. The IP address associated with
229 * 'agent_device' is used if it has one, and otherwise 'control_ip', the IP
733adf2a
LG
230 * address used to talk to the controller. If the agent device is not
231 * specified then it is figured out by taking a look at the routing table based
232 * on 'targets'. */
72b06300 233static bool
733adf2a
LG
234sflow_choose_agent_address(const char *agent_device,
235 const struct sset *targets,
236 const char *control_ip,
72b06300
BP
237 SFLAddress *agent_addr)
238{
733adf2a 239 const char *target;
72b06300
BP
240 struct in_addr in4;
241
242 memset(agent_addr, 0, sizeof *agent_addr);
243 agent_addr->type = SFLADDRESSTYPE_IP_V4;
244
245 if (agent_device) {
733adf2a
LG
246 if (!netdev_get_in4_by_name(agent_device, &in4)) {
247 goto success;
248 }
249 }
250
251 SSET_FOR_EACH (target, targets) {
252 struct sockaddr_in sin;
253 char name[IFNAMSIZ];
254
255 if (inet_parse_active(target, SFL_DEFAULT_COLLECTOR_PORT, &sin)
256 && route_table_get_name(sin.sin_addr.s_addr, name)
257 && !netdev_get_in4_by_name(name, &in4)) {
258 goto success;
72b06300
BP
259 }
260 }
261
262 if (control_ip && !lookup_ip(control_ip, &in4)) {
263 goto success;
264 }
265
266 VLOG_ERR("could not determine IP address for sFlow agent");
267 return false;
268
269success:
6506f45c 270 agent_addr->address.ip_v4.addr = (OVS_FORCE uint32_t) in4.s_addr;
72b06300
BP
271 return true;
272}
273
274void
bae473fe 275dpif_sflow_clear(struct dpif_sflow *ds)
72b06300 276{
bae473fe
JP
277 if (ds->sflow_agent) {
278 sfl_agent_release(ds->sflow_agent);
279 ds->sflow_agent = NULL;
72b06300 280 }
bae473fe
JP
281 collectors_destroy(ds->collectors);
282 ds->collectors = NULL;
283 ofproto_sflow_options_destroy(ds->options);
284 ds->options = NULL;
72b06300 285
72b06300 286 /* Turn off sampling to save CPU cycles. */
6ff686f2 287 ds->probability = 0;
72b06300
BP
288}
289
290bool
bae473fe 291dpif_sflow_is_enabled(const struct dpif_sflow *ds)
72b06300 292{
bae473fe 293 return ds->collectors != NULL;
72b06300
BP
294}
295
bae473fe
JP
296struct dpif_sflow *
297dpif_sflow_create(struct dpif *dpif)
72b06300 298{
bae473fe 299 struct dpif_sflow *ds;
72b06300 300
bae473fe
JP
301 ds = xcalloc(1, sizeof *ds);
302 ds->dpif = dpif;
303 ds->next_tick = time_now() + 1;
304 hmap_init(&ds->ports);
6ff686f2 305 ds->probability = 0;
733adf2a
LG
306 route_table_register();
307
bae473fe 308 return ds;
72b06300
BP
309}
310
6ff686f2
PS
311/* 32-bit fraction of packets to sample with. A value of 0 samples no packets,
312 * a value of %UINT32_MAX samples all packets and intermediate values sample
313 * intermediate fractions of packets. */
314uint32_t
315dpif_sflow_get_probability(const struct dpif_sflow *ds)
316{
317 return ds->probability;
318}
319
72b06300 320void
bae473fe 321dpif_sflow_destroy(struct dpif_sflow *ds)
72b06300 322{
bae473fe
JP
323 if (ds) {
324 struct dpif_sflow_port *dsp, *next;
32d9dc11 325
733adf2a 326 route_table_unregister();
bae473fe
JP
327 dpif_sflow_clear(ds);
328 HMAP_FOR_EACH_SAFE (dsp, next, hmap_node, &ds->ports) {
329 dpif_sflow_del_port__(ds, dsp);
32d9dc11 330 }
bae473fe
JP
331 hmap_destroy(&ds->ports);
332 free(ds);
72b06300
BP
333 }
334}
335
336static void
392c7182 337dpif_sflow_add_poller(struct dpif_sflow *ds, struct dpif_sflow_port *dsp)
72b06300 338{
bae473fe 339 SFLPoller *poller = sfl_agent_addPoller(ds->sflow_agent, &dsp->dsi, ds,
72b06300 340 sflow_agent_get_counters);
bae473fe 341 sfl_poller_set_sFlowCpInterval(poller, ds->options->polling_interval);
72b06300 342 sfl_poller_set_sFlowCpReceiver(poller, RECEIVER_INDEX);
e1b1d06a 343 sfl_poller_set_bridgePort(poller, dsp->odp_port);
72b06300
BP
344}
345
56fd8edf 346static void
bae473fe 347dpif_sflow_add_sampler(struct dpif_sflow *ds, struct dpif_sflow_port *dsp)
56fd8edf 348{
bae473fe
JP
349 SFLSampler *sampler = sfl_agent_addSampler(ds->sflow_agent, &dsp->dsi);
350 sfl_sampler_set_sFlowFsPacketSamplingRate(sampler, ds->options->sampling_rate);
351 sfl_sampler_set_sFlowFsMaximumHeaderSize(sampler, ds->options->header_len);
56fd8edf
BP
352 sfl_sampler_set_sFlowFsReceiver(sampler, RECEIVER_INDEX);
353}
354
72b06300 355void
e1b1d06a
JP
356dpif_sflow_add_port(struct dpif_sflow *ds, struct ofport *ofport,
357 uint32_t odp_port)
72b06300 358{
bae473fe 359 struct dpif_sflow_port *dsp;
72b06300 360 uint32_t ifindex;
72b06300 361
bae473fe 362 dpif_sflow_del_port(ds, odp_port);
72b06300 363
72b06300 364 /* Add to table of ports. */
bae473fe 365 dsp = xmalloc(sizeof *dsp);
392c7182 366 ifindex = netdev_get_ifindex(ofport->netdev);
72b06300 367 if (ifindex <= 0) {
bae473fe 368 ifindex = (ds->sflow_agent->subId << 16) + odp_port;
72b06300 369 }
392c7182 370 dsp->ofport = ofport;
e1b1d06a 371 dsp->odp_port = odp_port;
bae473fe 372 SFL_DS_SET(dsp->dsi, 0, ifindex, 0);
bae473fe 373 hmap_insert(&ds->ports, &dsp->hmap_node, hash_int(odp_port, 0));
72b06300 374
5586445e 375 /* Add poller and sampler. */
bae473fe 376 if (ds->sflow_agent) {
392c7182 377 dpif_sflow_add_poller(ds, dsp);
bae473fe 378 dpif_sflow_add_sampler(ds, dsp);
72b06300
BP
379 }
380}
381
0cc96e48 382static void
bae473fe 383dpif_sflow_del_port__(struct dpif_sflow *ds, struct dpif_sflow_port *dsp)
0cc96e48 384{
bae473fe
JP
385 if (ds->sflow_agent) {
386 sfl_agent_removePoller(ds->sflow_agent, &dsp->dsi);
387 sfl_agent_removeSampler(ds->sflow_agent, &dsp->dsi);
0cc96e48 388 }
bae473fe
JP
389 hmap_remove(&ds->ports, &dsp->hmap_node);
390 free(dsp);
0cc96e48
BP
391}
392
72b06300 393void
9b56fe13 394dpif_sflow_del_port(struct dpif_sflow *ds, uint32_t odp_port)
72b06300 395{
bae473fe
JP
396 struct dpif_sflow_port *dsp = dpif_sflow_find_port(ds, odp_port);
397 if (dsp) {
398 dpif_sflow_del_port__(ds, dsp);
72b06300
BP
399 }
400}
401
402void
bae473fe
JP
403dpif_sflow_set_options(struct dpif_sflow *ds,
404 const struct ofproto_sflow_options *options)
72b06300 405{
bae473fe 406 struct dpif_sflow_port *dsp;
72b06300 407 bool options_changed;
72b06300 408 SFLReceiver *receiver;
72b06300
BP
409 SFLAddress agentIP;
410 time_t now;
72b06300 411
81e2083f 412 if (sset_is_empty(&options->targets) || !options->sampling_rate) {
a68813c3
BP
413 /* No point in doing any work if there are no targets or nothing to
414 * sample. */
bae473fe 415 dpif_sflow_clear(ds);
a68813c3
BP
416 return;
417 }
418
bae473fe
JP
419 options_changed = (!ds->options
420 || !ofproto_sflow_options_equal(options, ds->options));
72b06300
BP
421
422 /* Configure collectors if options have changed or if we're shortchanged in
423 * collectors (which indicates that opening one or more of the configured
424 * collectors failed, so that we should retry). */
425 if (options_changed
bae473fe
JP
426 || collectors_count(ds->collectors) < sset_count(&options->targets)) {
427 collectors_destroy(ds->collectors);
02ef592c 428 collectors_create(&options->targets, SFL_DEFAULT_COLLECTOR_PORT,
bae473fe
JP
429 &ds->collectors);
430 if (ds->collectors == NULL) {
a68813c3
BP
431 VLOG_WARN_RL(&rl, "no collectors could be initialized, "
432 "sFlow disabled");
bae473fe 433 dpif_sflow_clear(ds);
72b06300
BP
434 return;
435 }
436 }
437
733adf2a
LG
438 /* Choose agent IP address and agent device (if not yet setup) */
439 if (!sflow_choose_agent_address(options->agent_device,
440 &options->targets,
441 options->control_ip, &agentIP)) {
442 dpif_sflow_clear(ds);
443 return;
444 }
445
72b06300
BP
446 /* Avoid reconfiguring if options didn't change. */
447 if (!options_changed) {
448 return;
449 }
bae473fe
JP
450 ofproto_sflow_options_destroy(ds->options);
451 ds->options = ofproto_sflow_options_clone(options);
72b06300 452
72b06300
BP
453 /* Create agent. */
454 VLOG_INFO("creating sFlow agent %d", options->sub_id);
bae473fe
JP
455 if (ds->sflow_agent) {
456 sfl_agent_release(ds->sflow_agent);
72b06300 457 }
bae473fe 458 ds->sflow_agent = xcalloc(1, sizeof *ds->sflow_agent);
c73814a3 459 now = time_wall();
bae473fe 460 sfl_agent_init(ds->sflow_agent,
72b06300
BP
461 &agentIP,
462 options->sub_id,
463 now, /* Boot time. */
464 now, /* Current time. */
bae473fe 465 ds, /* Pointer supplied to callbacks. */
72b06300
BP
466 sflow_agent_alloc_cb,
467 sflow_agent_free_cb,
468 sflow_agent_error_cb,
469 sflow_agent_send_packet_cb);
470
bae473fe 471 receiver = sfl_agent_addReceiver(ds->sflow_agent);
e53df206 472 sfl_receiver_set_sFlowRcvrOwner(receiver, "Open vSwitch sFlow");
72b06300
BP
473 sfl_receiver_set_sFlowRcvrTimeout(receiver, 0xffffffff);
474
72b06300 475 /* Set the sampling_rate down in the datapath. */
6ff686f2 476 ds->probability = MAX(1, UINT32_MAX / ds->options->sampling_rate);
72b06300 477
56fd8edf 478 /* Add samplers and pollers for the currently known ports. */
bae473fe 479 HMAP_FOR_EACH (dsp, hmap_node, &ds->ports) {
392c7182 480 dpif_sflow_add_poller(ds, dsp);
bae473fe 481 dpif_sflow_add_sampler(ds, dsp);
72b06300
BP
482 }
483}
484
6ff686f2 485int
bae473fe 486dpif_sflow_odp_port_to_ifindex(const struct dpif_sflow *ds,
9b56fe13 487 uint32_t odp_port)
c1e98da1 488{
bae473fe
JP
489 struct dpif_sflow_port *dsp = dpif_sflow_find_port(ds, odp_port);
490 return dsp ? SFL_DS_INDEX(dsp->dsi) : 0;
c1e98da1
BP
491}
492
72b06300 493void
6ff686f2 494dpif_sflow_received(struct dpif_sflow *ds, struct ofpbuf *packet,
e1b1d06a 495 const struct flow *flow, uint32_t odp_in_port,
1673e0e4 496 const union user_action_cookie *cookie)
72b06300
BP
497{
498 SFL_FLOW_SAMPLE_TYPE fs;
499 SFLFlow_sample_element hdrElem;
500 SFLSampled_header *header;
501 SFLFlow_sample_element switchElem;
56fd8edf 502 SFLSampler *sampler;
6ff686f2
PS
503 struct dpif_sflow_port *in_dsp;
504 struct netdev_stats stats;
1673e0e4 505 ovs_be16 vlan_tci;
6ff686f2 506 int error;
72b06300
BP
507
508 /* Build a flow sample */
509 memset(&fs, 0, sizeof fs);
6ff686f2 510
e1b1d06a 511 in_dsp = dpif_sflow_find_port(ds, odp_in_port);
6ff686f2
PS
512 if (!in_dsp) {
513 return;
514 }
515 fs.input = SFL_DS_INDEX(in_dsp->dsi);
516
392c7182 517 error = ofproto_port_get_stats(in_dsp->ofport, &stats);
6ff686f2
PS
518 if (error) {
519 VLOG_WARN_RL(&rl, "netdev get-stats error %s", strerror(error));
520 return;
521 }
522 fs.sample_pool = stats.rx_packets;
72b06300 523
56fd8edf
BP
524 /* We are going to give it to the sampler that represents this input port.
525 * By implementing "ingress-only" sampling like this we ensure that we
526 * never have to offer the same sample to more than one sampler. */
bae473fe 527 sampler = sfl_agent_getSamplerByIfIndex(ds->sflow_agent, fs.input);
56fd8edf
BP
528 if (!sampler) {
529 VLOG_WARN_RL(&rl, "no sampler for input ifIndex (%"PRIu32")",
530 fs.input);
531 return;
532 }
533
72b06300
BP
534 /* Sampled header. */
535 memset(&hdrElem, 0, sizeof hdrElem);
536 hdrElem.tag = SFLFLOW_HEADER;
537 header = &hdrElem.flowType.header;
538 header->header_protocol = SFLHEADER_ETHERNET_ISO8023;
c62caaa3
NM
539 /* The frame_length should include the Ethernet FCS (4 bytes),
540 but it has already been stripped, so we need to add 4 here. */
6ff686f2 541 header->frame_length = packet->size + 4;
c62caaa3
NM
542 /* Ethernet FCS stripped off. */
543 header->stripped = 4;
6ff686f2 544 header->header_length = MIN(packet->size,
856081f6 545 sampler->sFlowFsMaximumHeaderSize);
6ff686f2 546 header->header_bytes = packet->data;
72b06300
BP
547
548 /* Add extended switch element. */
549 memset(&switchElem, 0, sizeof(switchElem));
550 switchElem.tag = SFLFLOW_EX_SWITCH;
856081f6
BP
551 switchElem.flowType.sw.src_vlan = vlan_tci_to_vid(flow->vlan_tci);
552 switchElem.flowType.sw.src_priority = vlan_tci_to_pcp(flow->vlan_tci);
6ff686f2
PS
553
554 /* Retrieve data from user_action_cookie. */
1673e0e4
BP
555 vlan_tci = cookie->sflow.vlan_tci;
556 switchElem.flowType.sw.dst_vlan = vlan_tci_to_vid(vlan_tci);
557 switchElem.flowType.sw.dst_priority = vlan_tci_to_pcp(vlan_tci);
46b47a41 558
1673e0e4 559 fs.output = cookie->sflow.output;
72b06300
BP
560
561 /* Submit the flow sample to be encoded into the next datagram. */
562 SFLADD_ELEMENT(&fs, &hdrElem);
563 SFLADD_ELEMENT(&fs, &switchElem);
564 sfl_sampler_writeFlowSample(sampler, &fs);
565}
566
72b06300 567void
bae473fe 568dpif_sflow_run(struct dpif_sflow *ds)
72b06300 569{
bae473fe 570 if (dpif_sflow_is_enabled(ds)) {
72b06300 571 time_t now = time_now();
733adf2a 572 route_table_run();
bae473fe
JP
573 if (now >= ds->next_tick) {
574 sfl_agent_tick(ds->sflow_agent, time_wall());
575 ds->next_tick = now + 1;
72b06300
BP
576 }
577 }
578}
579
580void
bae473fe 581dpif_sflow_wait(struct dpif_sflow *ds)
72b06300 582{
bae473fe
JP
583 if (dpif_sflow_is_enabled(ds)) {
584 poll_timer_wait_until(ds->next_tick * 1000LL);
72b06300
BP
585 }
586}