Coverage Report

Created: 2023-03-26 07:41

/src/openvswitch/lib/packets.h
Line
Count
Source (jump to first uncovered line)
1
/*
2
 * Copyright (c) 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017 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
#ifndef PACKETS_H
18
#define PACKETS_H 1
19
20
#include <inttypes.h>
21
#include <sys/types.h>
22
#include <stdint.h>
23
#include <string.h>
24
#include "compiler.h"
25
#include "openvswitch/geneve.h"
26
#include "openvswitch/packets.h"
27
#include "openvswitch/types.h"
28
#include "openvswitch/nsh.h"
29
#include "odp-netlink.h"
30
#include "random.h"
31
#include "hash.h"
32
#include "tun-metadata.h"
33
#include "unaligned.h"
34
#include "util.h"
35
#include "timeval.h"
36
37
struct dp_packet;
38
struct conn;
39
struct ds;
40
41
/* Purely internal to OVS userspace. These flags should never be exposed to
42
 * the outside world and so aren't included in the flags mask. */
43
44
/* Tunnel information is in userspace datapath format. */
45
8.14k
#define FLOW_TNL_F_UDPIF (1 << 4)
46
47
static inline bool ipv6_addr_is_set(const struct in6_addr *addr);
48
49
static inline bool
50
flow_tnl_dst_is_set(const struct flow_tnl *tnl)
51
10.1k
{
52
10.1k
    return tnl->ip_dst || ipv6_addr_is_set(&tnl->ipv6_dst);
53
10.1k
}
Unexecuted instantiation: flow_extract_target.c:flow_tnl_dst_is_set
Unexecuted instantiation: dp-packet.c:flow_tnl_dst_is_set
flow.c:flow_tnl_dst_is_set
Line
Count
Source
51
10.1k
{
52
10.1k
    return tnl->ip_dst || ipv6_addr_is_set(&tnl->ipv6_dst);
53
10.1k
}
Unexecuted instantiation: match.c:flow_tnl_dst_is_set
Unexecuted instantiation: netdev.c:flow_tnl_dst_is_set
Unexecuted instantiation: ofp-match.c:flow_tnl_dst_is_set
Unexecuted instantiation: ofp-port.c:flow_tnl_dst_is_set
Unexecuted instantiation: ofp-print.c:flow_tnl_dst_is_set
Unexecuted instantiation: ofp-queue.c:flow_tnl_dst_is_set
Unexecuted instantiation: ofp-table.c:flow_tnl_dst_is_set
Unexecuted instantiation: ofp-util.c:flow_tnl_dst_is_set
Unexecuted instantiation: ovs-router.c:flow_tnl_dst_is_set
Unexecuted instantiation: packets.c:flow_tnl_dst_is_set
Unexecuted instantiation: smap.c:flow_tnl_dst_is_set
Unexecuted instantiation: socket-util.c:flow_tnl_dst_is_set
Unexecuted instantiation: tnl-ports.c:flow_tnl_dst_is_set
Unexecuted instantiation: tun-metadata.c:flow_tnl_dst_is_set
Unexecuted instantiation: netdev-linux.c:flow_tnl_dst_is_set
Unexecuted instantiation: netdev-offload-tc.c:flow_tnl_dst_is_set
Unexecuted instantiation: rtnetlink.c:flow_tnl_dst_is_set
Unexecuted instantiation: route-table.c:flow_tnl_dst_is_set
Unexecuted instantiation: tc.c:flow_tnl_dst_is_set
Unexecuted instantiation: classifier.c:flow_tnl_dst_is_set
Unexecuted instantiation: dpif.c:flow_tnl_dst_is_set
Unexecuted instantiation: meta-flow.c:flow_tnl_dst_is_set
Unexecuted instantiation: netdev-offload.c:flow_tnl_dst_is_set
Unexecuted instantiation: netdev-vport.c:flow_tnl_dst_is_set
Unexecuted instantiation: netlink.c:flow_tnl_dst_is_set
Unexecuted instantiation: nx-match.c:flow_tnl_dst_is_set
Unexecuted instantiation: odp-execute.c:flow_tnl_dst_is_set
Unexecuted instantiation: odp-execute-private.c:flow_tnl_dst_is_set
Unexecuted instantiation: odp-util.c:flow_tnl_dst_is_set
Unexecuted instantiation: ofp-actions.c:flow_tnl_dst_is_set
Unexecuted instantiation: ofp-ct.c:flow_tnl_dst_is_set
Unexecuted instantiation: ofp-ed-props.c:flow_tnl_dst_is_set
Unexecuted instantiation: ofp-flow.c:flow_tnl_dst_is_set
Unexecuted instantiation: ofp-group.c:flow_tnl_dst_is_set
Unexecuted instantiation: ofp-meter.c:flow_tnl_dst_is_set
Unexecuted instantiation: ofp-monitor.c:flow_tnl_dst_is_set
Unexecuted instantiation: ofp-packet.c:flow_tnl_dst_is_set
Unexecuted instantiation: ofp-parse.c:flow_tnl_dst_is_set
Unexecuted instantiation: stream.c:flow_tnl_dst_is_set
Unexecuted instantiation: tnl-neigh-cache.c:flow_tnl_dst_is_set
Unexecuted instantiation: netdev-native-tnl.c:flow_tnl_dst_is_set
Unexecuted instantiation: stream-unix.c:flow_tnl_dst_is_set
Unexecuted instantiation: dpif-netlink.c:flow_tnl_dst_is_set
Unexecuted instantiation: dpif-netlink-rtnl.c:flow_tnl_dst_is_set
Unexecuted instantiation: netlink-conntrack.c:flow_tnl_dst_is_set
Unexecuted instantiation: stream-ssl.c:flow_tnl_dst_is_set
Unexecuted instantiation: bundle.c:flow_tnl_dst_is_set
Unexecuted instantiation: conntrack.c:flow_tnl_dst_is_set
Unexecuted instantiation: ct-dpif.c:flow_tnl_dst_is_set
Unexecuted instantiation: dpctl.c:flow_tnl_dst_is_set
Unexecuted instantiation: dpif-netdev.c:flow_tnl_dst_is_set
Unexecuted instantiation: dpif-netdev-private-dfc.c:flow_tnl_dst_is_set
Unexecuted instantiation: dpif-netdev-private-dpif.c:flow_tnl_dst_is_set
Unexecuted instantiation: dpif-netdev-private-extract.c:flow_tnl_dst_is_set
Unexecuted instantiation: ipf.c:flow_tnl_dst_is_set
Unexecuted instantiation: learn.c:flow_tnl_dst_is_set
Unexecuted instantiation: multipath.c:flow_tnl_dst_is_set
Unexecuted instantiation: stream-tcp.c:flow_tnl_dst_is_set
Unexecuted instantiation: conntrack-icmp.c:flow_tnl_dst_is_set
Unexecuted instantiation: conntrack-tcp.c:flow_tnl_dst_is_set
Unexecuted instantiation: conntrack-tp.c:flow_tnl_dst_is_set
Unexecuted instantiation: conntrack-other.c:flow_tnl_dst_is_set
Unexecuted instantiation: dpif-netdev-extract-study.c:flow_tnl_dst_is_set
Unexecuted instantiation: dpif-netdev-lookup.c:flow_tnl_dst_is_set
Unexecuted instantiation: dpif-netdev-lookup-autovalidator.c:flow_tnl_dst_is_set
Unexecuted instantiation: dpif-netdev-lookup-generic.c:flow_tnl_dst_is_set
54
55
static inline bool
56
flow_tnl_src_is_set(const struct flow_tnl *tnl)
57
0
{
58
0
    return tnl->ip_src || ipv6_addr_is_set(&tnl->ipv6_src);
59
0
}
Unexecuted instantiation: flow_extract_target.c:flow_tnl_src_is_set
Unexecuted instantiation: dp-packet.c:flow_tnl_src_is_set
Unexecuted instantiation: flow.c:flow_tnl_src_is_set
Unexecuted instantiation: match.c:flow_tnl_src_is_set
Unexecuted instantiation: netdev.c:flow_tnl_src_is_set
Unexecuted instantiation: ofp-match.c:flow_tnl_src_is_set
Unexecuted instantiation: ofp-port.c:flow_tnl_src_is_set
Unexecuted instantiation: ofp-print.c:flow_tnl_src_is_set
Unexecuted instantiation: ofp-queue.c:flow_tnl_src_is_set
Unexecuted instantiation: ofp-table.c:flow_tnl_src_is_set
Unexecuted instantiation: ofp-util.c:flow_tnl_src_is_set
Unexecuted instantiation: ovs-router.c:flow_tnl_src_is_set
Unexecuted instantiation: packets.c:flow_tnl_src_is_set
Unexecuted instantiation: smap.c:flow_tnl_src_is_set
Unexecuted instantiation: socket-util.c:flow_tnl_src_is_set
Unexecuted instantiation: tnl-ports.c:flow_tnl_src_is_set
Unexecuted instantiation: tun-metadata.c:flow_tnl_src_is_set
Unexecuted instantiation: netdev-linux.c:flow_tnl_src_is_set
Unexecuted instantiation: netdev-offload-tc.c:flow_tnl_src_is_set
Unexecuted instantiation: rtnetlink.c:flow_tnl_src_is_set
Unexecuted instantiation: route-table.c:flow_tnl_src_is_set
Unexecuted instantiation: tc.c:flow_tnl_src_is_set
Unexecuted instantiation: classifier.c:flow_tnl_src_is_set
Unexecuted instantiation: dpif.c:flow_tnl_src_is_set
Unexecuted instantiation: meta-flow.c:flow_tnl_src_is_set
Unexecuted instantiation: netdev-offload.c:flow_tnl_src_is_set
Unexecuted instantiation: netdev-vport.c:flow_tnl_src_is_set
Unexecuted instantiation: netlink.c:flow_tnl_src_is_set
Unexecuted instantiation: nx-match.c:flow_tnl_src_is_set
Unexecuted instantiation: odp-execute.c:flow_tnl_src_is_set
Unexecuted instantiation: odp-execute-private.c:flow_tnl_src_is_set
Unexecuted instantiation: odp-util.c:flow_tnl_src_is_set
Unexecuted instantiation: ofp-actions.c:flow_tnl_src_is_set
Unexecuted instantiation: ofp-ct.c:flow_tnl_src_is_set
Unexecuted instantiation: ofp-ed-props.c:flow_tnl_src_is_set
Unexecuted instantiation: ofp-flow.c:flow_tnl_src_is_set
Unexecuted instantiation: ofp-group.c:flow_tnl_src_is_set
Unexecuted instantiation: ofp-meter.c:flow_tnl_src_is_set
Unexecuted instantiation: ofp-monitor.c:flow_tnl_src_is_set
Unexecuted instantiation: ofp-packet.c:flow_tnl_src_is_set
Unexecuted instantiation: ofp-parse.c:flow_tnl_src_is_set
Unexecuted instantiation: stream.c:flow_tnl_src_is_set
Unexecuted instantiation: tnl-neigh-cache.c:flow_tnl_src_is_set
Unexecuted instantiation: netdev-native-tnl.c:flow_tnl_src_is_set
Unexecuted instantiation: stream-unix.c:flow_tnl_src_is_set
Unexecuted instantiation: dpif-netlink.c:flow_tnl_src_is_set
Unexecuted instantiation: dpif-netlink-rtnl.c:flow_tnl_src_is_set
Unexecuted instantiation: netlink-conntrack.c:flow_tnl_src_is_set
Unexecuted instantiation: stream-ssl.c:flow_tnl_src_is_set
Unexecuted instantiation: bundle.c:flow_tnl_src_is_set
Unexecuted instantiation: conntrack.c:flow_tnl_src_is_set
Unexecuted instantiation: ct-dpif.c:flow_tnl_src_is_set
Unexecuted instantiation: dpctl.c:flow_tnl_src_is_set
Unexecuted instantiation: dpif-netdev.c:flow_tnl_src_is_set
Unexecuted instantiation: dpif-netdev-private-dfc.c:flow_tnl_src_is_set
Unexecuted instantiation: dpif-netdev-private-dpif.c:flow_tnl_src_is_set
Unexecuted instantiation: dpif-netdev-private-extract.c:flow_tnl_src_is_set
Unexecuted instantiation: ipf.c:flow_tnl_src_is_set
Unexecuted instantiation: learn.c:flow_tnl_src_is_set
Unexecuted instantiation: multipath.c:flow_tnl_src_is_set
Unexecuted instantiation: stream-tcp.c:flow_tnl_src_is_set
Unexecuted instantiation: conntrack-icmp.c:flow_tnl_src_is_set
Unexecuted instantiation: conntrack-tcp.c:flow_tnl_src_is_set
Unexecuted instantiation: conntrack-tp.c:flow_tnl_src_is_set
Unexecuted instantiation: conntrack-other.c:flow_tnl_src_is_set
Unexecuted instantiation: dpif-netdev-extract-study.c:flow_tnl_src_is_set
Unexecuted instantiation: dpif-netdev-lookup.c:flow_tnl_src_is_set
Unexecuted instantiation: dpif-netdev-lookup-autovalidator.c:flow_tnl_src_is_set
Unexecuted instantiation: dpif-netdev-lookup-generic.c:flow_tnl_src_is_set
60
61
struct in6_addr flow_tnl_dst(const struct flow_tnl *tnl);
62
struct in6_addr flow_tnl_src(const struct flow_tnl *tnl);
63
64
/* Returns an offset to 'src' covering all the meaningful fields in 'src'. */
65
static inline size_t
66
flow_tnl_size(const struct flow_tnl *src)
67
0
{
68
0
    if (!flow_tnl_dst_is_set(src)) {
69
0
        /* Covers ip_dst and ipv6_dst only. */
70
0
        return offsetof(struct flow_tnl, ip_src);
71
0
    }
72
0
    if (src->flags & FLOW_TNL_F_UDPIF) {
73
0
        /* Datapath format, cover all options we have. */
74
0
        return offsetof(struct flow_tnl, metadata.opts)
75
0
            + src->metadata.present.len;
76
0
    }
77
0
    if (!src->metadata.present.map) {
78
0
        /* No TLVs, opts is irrelevant. */
79
0
        return offsetof(struct flow_tnl, metadata.opts);
80
0
    }
81
0
    /* Have decoded TLVs, opts is relevant. */
82
0
    return sizeof *src;
83
0
}
Unexecuted instantiation: flow_extract_target.c:flow_tnl_size
Unexecuted instantiation: dp-packet.c:flow_tnl_size
Unexecuted instantiation: flow.c:flow_tnl_size
Unexecuted instantiation: match.c:flow_tnl_size
Unexecuted instantiation: netdev.c:flow_tnl_size
Unexecuted instantiation: ofp-match.c:flow_tnl_size
Unexecuted instantiation: ofp-port.c:flow_tnl_size
Unexecuted instantiation: ofp-print.c:flow_tnl_size
Unexecuted instantiation: ofp-queue.c:flow_tnl_size
Unexecuted instantiation: ofp-table.c:flow_tnl_size
Unexecuted instantiation: ofp-util.c:flow_tnl_size
Unexecuted instantiation: ovs-router.c:flow_tnl_size
Unexecuted instantiation: packets.c:flow_tnl_size
Unexecuted instantiation: smap.c:flow_tnl_size
Unexecuted instantiation: socket-util.c:flow_tnl_size
Unexecuted instantiation: tnl-ports.c:flow_tnl_size
Unexecuted instantiation: tun-metadata.c:flow_tnl_size
Unexecuted instantiation: netdev-linux.c:flow_tnl_size
Unexecuted instantiation: netdev-offload-tc.c:flow_tnl_size
Unexecuted instantiation: rtnetlink.c:flow_tnl_size
Unexecuted instantiation: route-table.c:flow_tnl_size
Unexecuted instantiation: tc.c:flow_tnl_size
Unexecuted instantiation: classifier.c:flow_tnl_size
Unexecuted instantiation: dpif.c:flow_tnl_size
Unexecuted instantiation: meta-flow.c:flow_tnl_size
Unexecuted instantiation: netdev-offload.c:flow_tnl_size
Unexecuted instantiation: netdev-vport.c:flow_tnl_size
Unexecuted instantiation: netlink.c:flow_tnl_size
Unexecuted instantiation: nx-match.c:flow_tnl_size
Unexecuted instantiation: odp-execute.c:flow_tnl_size
Unexecuted instantiation: odp-execute-private.c:flow_tnl_size
Unexecuted instantiation: odp-util.c:flow_tnl_size
Unexecuted instantiation: ofp-actions.c:flow_tnl_size
Unexecuted instantiation: ofp-ct.c:flow_tnl_size
Unexecuted instantiation: ofp-ed-props.c:flow_tnl_size
Unexecuted instantiation: ofp-flow.c:flow_tnl_size
Unexecuted instantiation: ofp-group.c:flow_tnl_size
Unexecuted instantiation: ofp-meter.c:flow_tnl_size
Unexecuted instantiation: ofp-monitor.c:flow_tnl_size
Unexecuted instantiation: ofp-packet.c:flow_tnl_size
Unexecuted instantiation: ofp-parse.c:flow_tnl_size
Unexecuted instantiation: stream.c:flow_tnl_size
Unexecuted instantiation: tnl-neigh-cache.c:flow_tnl_size
Unexecuted instantiation: netdev-native-tnl.c:flow_tnl_size
Unexecuted instantiation: stream-unix.c:flow_tnl_size
Unexecuted instantiation: dpif-netlink.c:flow_tnl_size
Unexecuted instantiation: dpif-netlink-rtnl.c:flow_tnl_size
Unexecuted instantiation: netlink-conntrack.c:flow_tnl_size
Unexecuted instantiation: stream-ssl.c:flow_tnl_size
Unexecuted instantiation: bundle.c:flow_tnl_size
Unexecuted instantiation: conntrack.c:flow_tnl_size
Unexecuted instantiation: ct-dpif.c:flow_tnl_size
Unexecuted instantiation: dpctl.c:flow_tnl_size
Unexecuted instantiation: dpif-netdev.c:flow_tnl_size
Unexecuted instantiation: dpif-netdev-private-dfc.c:flow_tnl_size
Unexecuted instantiation: dpif-netdev-private-dpif.c:flow_tnl_size
Unexecuted instantiation: dpif-netdev-private-extract.c:flow_tnl_size
Unexecuted instantiation: ipf.c:flow_tnl_size
Unexecuted instantiation: learn.c:flow_tnl_size
Unexecuted instantiation: multipath.c:flow_tnl_size
Unexecuted instantiation: stream-tcp.c:flow_tnl_size
Unexecuted instantiation: conntrack-icmp.c:flow_tnl_size
Unexecuted instantiation: conntrack-tcp.c:flow_tnl_size
Unexecuted instantiation: conntrack-tp.c:flow_tnl_size
Unexecuted instantiation: conntrack-other.c:flow_tnl_size
Unexecuted instantiation: dpif-netdev-extract-study.c:flow_tnl_size
Unexecuted instantiation: dpif-netdev-lookup.c:flow_tnl_size
Unexecuted instantiation: dpif-netdev-lookup-autovalidator.c:flow_tnl_size
Unexecuted instantiation: dpif-netdev-lookup-generic.c:flow_tnl_size
84
85
/* Copy flow_tnl, but avoid copying unused portions of tun_metadata.  Unused
86
 * data in 'dst' is NOT cleared, so this must not be used in cases where the
87
 * uninitialized portion may be hashed over. */
88
static inline void
89
flow_tnl_copy__(struct flow_tnl *dst, const struct flow_tnl *src)
90
0
{
91
0
    memcpy(dst, src, flow_tnl_size(src));
92
0
}
Unexecuted instantiation: flow_extract_target.c:flow_tnl_copy__
Unexecuted instantiation: dp-packet.c:flow_tnl_copy__
Unexecuted instantiation: flow.c:flow_tnl_copy__
Unexecuted instantiation: match.c:flow_tnl_copy__
Unexecuted instantiation: netdev.c:flow_tnl_copy__
Unexecuted instantiation: ofp-match.c:flow_tnl_copy__
Unexecuted instantiation: ofp-port.c:flow_tnl_copy__
Unexecuted instantiation: ofp-print.c:flow_tnl_copy__
Unexecuted instantiation: ofp-queue.c:flow_tnl_copy__
Unexecuted instantiation: ofp-table.c:flow_tnl_copy__
Unexecuted instantiation: ofp-util.c:flow_tnl_copy__
Unexecuted instantiation: ovs-router.c:flow_tnl_copy__
Unexecuted instantiation: packets.c:flow_tnl_copy__
Unexecuted instantiation: smap.c:flow_tnl_copy__
Unexecuted instantiation: socket-util.c:flow_tnl_copy__
Unexecuted instantiation: tnl-ports.c:flow_tnl_copy__
Unexecuted instantiation: tun-metadata.c:flow_tnl_copy__
Unexecuted instantiation: netdev-linux.c:flow_tnl_copy__
Unexecuted instantiation: netdev-offload-tc.c:flow_tnl_copy__
Unexecuted instantiation: rtnetlink.c:flow_tnl_copy__
Unexecuted instantiation: route-table.c:flow_tnl_copy__
Unexecuted instantiation: tc.c:flow_tnl_copy__
Unexecuted instantiation: classifier.c:flow_tnl_copy__
Unexecuted instantiation: dpif.c:flow_tnl_copy__
Unexecuted instantiation: meta-flow.c:flow_tnl_copy__
Unexecuted instantiation: netdev-offload.c:flow_tnl_copy__
Unexecuted instantiation: netdev-vport.c:flow_tnl_copy__
Unexecuted instantiation: netlink.c:flow_tnl_copy__
Unexecuted instantiation: nx-match.c:flow_tnl_copy__
Unexecuted instantiation: odp-execute.c:flow_tnl_copy__
Unexecuted instantiation: odp-execute-private.c:flow_tnl_copy__
Unexecuted instantiation: odp-util.c:flow_tnl_copy__
Unexecuted instantiation: ofp-actions.c:flow_tnl_copy__
Unexecuted instantiation: ofp-ct.c:flow_tnl_copy__
Unexecuted instantiation: ofp-ed-props.c:flow_tnl_copy__
Unexecuted instantiation: ofp-flow.c:flow_tnl_copy__
Unexecuted instantiation: ofp-group.c:flow_tnl_copy__
Unexecuted instantiation: ofp-meter.c:flow_tnl_copy__
Unexecuted instantiation: ofp-monitor.c:flow_tnl_copy__
Unexecuted instantiation: ofp-packet.c:flow_tnl_copy__
Unexecuted instantiation: ofp-parse.c:flow_tnl_copy__
Unexecuted instantiation: stream.c:flow_tnl_copy__
Unexecuted instantiation: tnl-neigh-cache.c:flow_tnl_copy__
Unexecuted instantiation: netdev-native-tnl.c:flow_tnl_copy__
Unexecuted instantiation: stream-unix.c:flow_tnl_copy__
Unexecuted instantiation: dpif-netlink.c:flow_tnl_copy__
Unexecuted instantiation: dpif-netlink-rtnl.c:flow_tnl_copy__
Unexecuted instantiation: netlink-conntrack.c:flow_tnl_copy__
Unexecuted instantiation: stream-ssl.c:flow_tnl_copy__
Unexecuted instantiation: bundle.c:flow_tnl_copy__
Unexecuted instantiation: conntrack.c:flow_tnl_copy__
Unexecuted instantiation: ct-dpif.c:flow_tnl_copy__
Unexecuted instantiation: dpctl.c:flow_tnl_copy__
Unexecuted instantiation: dpif-netdev.c:flow_tnl_copy__
Unexecuted instantiation: dpif-netdev-private-dfc.c:flow_tnl_copy__
Unexecuted instantiation: dpif-netdev-private-dpif.c:flow_tnl_copy__
Unexecuted instantiation: dpif-netdev-private-extract.c:flow_tnl_copy__
Unexecuted instantiation: ipf.c:flow_tnl_copy__
Unexecuted instantiation: learn.c:flow_tnl_copy__
Unexecuted instantiation: multipath.c:flow_tnl_copy__
Unexecuted instantiation: stream-tcp.c:flow_tnl_copy__
Unexecuted instantiation: conntrack-icmp.c:flow_tnl_copy__
Unexecuted instantiation: conntrack-tcp.c:flow_tnl_copy__
Unexecuted instantiation: conntrack-tp.c:flow_tnl_copy__
Unexecuted instantiation: conntrack-other.c:flow_tnl_copy__
Unexecuted instantiation: dpif-netdev-extract-study.c:flow_tnl_copy__
Unexecuted instantiation: dpif-netdev-lookup.c:flow_tnl_copy__
Unexecuted instantiation: dpif-netdev-lookup-autovalidator.c:flow_tnl_copy__
Unexecuted instantiation: dpif-netdev-lookup-generic.c:flow_tnl_copy__
93
94
static inline bool
95
flow_tnl_equal(const struct flow_tnl *a, const struct flow_tnl *b)
96
0
{
97
0
    size_t a_size = flow_tnl_size(a);
98
0
99
0
    return a_size == flow_tnl_size(b) && !memcmp(a, b, a_size);
100
0
}
Unexecuted instantiation: flow_extract_target.c:flow_tnl_equal
Unexecuted instantiation: dp-packet.c:flow_tnl_equal
Unexecuted instantiation: flow.c:flow_tnl_equal
Unexecuted instantiation: match.c:flow_tnl_equal
Unexecuted instantiation: netdev.c:flow_tnl_equal
Unexecuted instantiation: ofp-match.c:flow_tnl_equal
Unexecuted instantiation: ofp-port.c:flow_tnl_equal
Unexecuted instantiation: ofp-print.c:flow_tnl_equal
Unexecuted instantiation: ofp-queue.c:flow_tnl_equal
Unexecuted instantiation: ofp-table.c:flow_tnl_equal
Unexecuted instantiation: ofp-util.c:flow_tnl_equal
Unexecuted instantiation: ovs-router.c:flow_tnl_equal
Unexecuted instantiation: packets.c:flow_tnl_equal
Unexecuted instantiation: smap.c:flow_tnl_equal
Unexecuted instantiation: socket-util.c:flow_tnl_equal
Unexecuted instantiation: tnl-ports.c:flow_tnl_equal
Unexecuted instantiation: tun-metadata.c:flow_tnl_equal
Unexecuted instantiation: netdev-linux.c:flow_tnl_equal
Unexecuted instantiation: netdev-offload-tc.c:flow_tnl_equal
Unexecuted instantiation: rtnetlink.c:flow_tnl_equal
Unexecuted instantiation: route-table.c:flow_tnl_equal
Unexecuted instantiation: tc.c:flow_tnl_equal
Unexecuted instantiation: classifier.c:flow_tnl_equal
Unexecuted instantiation: dpif.c:flow_tnl_equal
Unexecuted instantiation: meta-flow.c:flow_tnl_equal
Unexecuted instantiation: netdev-offload.c:flow_tnl_equal
Unexecuted instantiation: netdev-vport.c:flow_tnl_equal
Unexecuted instantiation: netlink.c:flow_tnl_equal
Unexecuted instantiation: nx-match.c:flow_tnl_equal
Unexecuted instantiation: odp-execute.c:flow_tnl_equal
Unexecuted instantiation: odp-execute-private.c:flow_tnl_equal
Unexecuted instantiation: odp-util.c:flow_tnl_equal
Unexecuted instantiation: ofp-actions.c:flow_tnl_equal
Unexecuted instantiation: ofp-ct.c:flow_tnl_equal
Unexecuted instantiation: ofp-ed-props.c:flow_tnl_equal
Unexecuted instantiation: ofp-flow.c:flow_tnl_equal
Unexecuted instantiation: ofp-group.c:flow_tnl_equal
Unexecuted instantiation: ofp-meter.c:flow_tnl_equal
Unexecuted instantiation: ofp-monitor.c:flow_tnl_equal
Unexecuted instantiation: ofp-packet.c:flow_tnl_equal
Unexecuted instantiation: ofp-parse.c:flow_tnl_equal
Unexecuted instantiation: stream.c:flow_tnl_equal
Unexecuted instantiation: tnl-neigh-cache.c:flow_tnl_equal
Unexecuted instantiation: netdev-native-tnl.c:flow_tnl_equal
Unexecuted instantiation: stream-unix.c:flow_tnl_equal
Unexecuted instantiation: dpif-netlink.c:flow_tnl_equal
Unexecuted instantiation: dpif-netlink-rtnl.c:flow_tnl_equal
Unexecuted instantiation: netlink-conntrack.c:flow_tnl_equal
Unexecuted instantiation: stream-ssl.c:flow_tnl_equal
Unexecuted instantiation: bundle.c:flow_tnl_equal
Unexecuted instantiation: conntrack.c:flow_tnl_equal
Unexecuted instantiation: ct-dpif.c:flow_tnl_equal
Unexecuted instantiation: dpctl.c:flow_tnl_equal
Unexecuted instantiation: dpif-netdev.c:flow_tnl_equal
Unexecuted instantiation: dpif-netdev-private-dfc.c:flow_tnl_equal
Unexecuted instantiation: dpif-netdev-private-dpif.c:flow_tnl_equal
Unexecuted instantiation: dpif-netdev-private-extract.c:flow_tnl_equal
Unexecuted instantiation: ipf.c:flow_tnl_equal
Unexecuted instantiation: learn.c:flow_tnl_equal
Unexecuted instantiation: multipath.c:flow_tnl_equal
Unexecuted instantiation: stream-tcp.c:flow_tnl_equal
Unexecuted instantiation: conntrack-icmp.c:flow_tnl_equal
Unexecuted instantiation: conntrack-tcp.c:flow_tnl_equal
Unexecuted instantiation: conntrack-tp.c:flow_tnl_equal
Unexecuted instantiation: conntrack-other.c:flow_tnl_equal
Unexecuted instantiation: dpif-netdev-extract-study.c:flow_tnl_equal
Unexecuted instantiation: dpif-netdev-lookup.c:flow_tnl_equal
Unexecuted instantiation: dpif-netdev-lookup-autovalidator.c:flow_tnl_equal
Unexecuted instantiation: dpif-netdev-lookup-generic.c:flow_tnl_equal
101
102
/* Datapath packet metadata */
103
struct pkt_metadata {
104
PADDED_MEMBERS_CACHELINE_MARKER(CACHE_LINE_SIZE, cacheline0,
105
    uint32_t recirc_id;         /* Recirculation id carried with the
106
                                   recirculating packets. 0 for packets
107
                                   received from the wire. */
108
    uint32_t dp_hash;           /* hash value computed by the recirculation
109
                                   action. */
110
    uint32_t skb_priority;      /* Packet priority for QoS. */
111
    uint32_t pkt_mark;          /* Packet mark. */
112
    uint8_t  ct_state;          /* Connection state. */
113
    bool ct_orig_tuple_ipv6;
114
    uint16_t ct_zone;           /* Connection zone. */
115
    uint32_t ct_mark;           /* Connection mark. */
116
    ovs_u128 ct_label;          /* Connection label. */
117
    union flow_in_port in_port; /* Input port. */
118
    odp_port_t orig_in_port;    /* Originating in_port for tunneled packets */
119
    struct conn *conn;          /* Cached conntrack connection. */
120
    bool reply;                 /* True if reply direction. */
121
    bool icmp_related;          /* True if ICMP related. */
122
);
123
124
PADDED_MEMBERS_CACHELINE_MARKER(CACHE_LINE_SIZE, cacheline1,
125
    union {                     /* Populated only for non-zero 'ct_state'. */
126
        struct ovs_key_ct_tuple_ipv4 ipv4;
127
        struct ovs_key_ct_tuple_ipv6 ipv6;   /* Used only if                */
128
    } ct_orig_tuple;                         /* 'ct_orig_tuple_ipv6' is set */
129
);
130
131
PADDED_MEMBERS_CACHELINE_MARKER(CACHE_LINE_SIZE, cacheline2,
132
    struct flow_tnl tunnel;     /* Encapsulating tunnel parameters. Note that
133
                                 * if 'ip_dst' == 0, the rest of the fields may
134
                                 * be uninitialized. */
135
);
136
};
137
138
BUILD_ASSERT_DECL(offsetof(struct pkt_metadata, cacheline0) == 0);
139
BUILD_ASSERT_DECL(offsetof(struct pkt_metadata, cacheline1) ==
140
                  CACHE_LINE_SIZE);
141
BUILD_ASSERT_DECL(offsetof(struct pkt_metadata, cacheline2) ==
142
                  2 * CACHE_LINE_SIZE);
143
144
static inline void
145
pkt_metadata_init_tnl(struct pkt_metadata *md)
146
0
{
147
0
    odp_port_t orig_in_port;
148
149
    /* Zero up through the tunnel metadata options. The length and table
150
     * are before this and as long as they are empty, the options won't
151
     * be looked at. Keep the orig_in_port field. */
152
0
    orig_in_port = md->in_port.odp_port;
153
0
    memset(md, 0, offsetof(struct pkt_metadata, tunnel.metadata.opts));
154
0
    md->orig_in_port = orig_in_port;
155
0
}
Unexecuted instantiation: flow_extract_target.c:pkt_metadata_init_tnl
Unexecuted instantiation: dp-packet.c:pkt_metadata_init_tnl
Unexecuted instantiation: flow.c:pkt_metadata_init_tnl
Unexecuted instantiation: match.c:pkt_metadata_init_tnl
Unexecuted instantiation: netdev.c:pkt_metadata_init_tnl
Unexecuted instantiation: ofp-match.c:pkt_metadata_init_tnl
Unexecuted instantiation: ofp-port.c:pkt_metadata_init_tnl
Unexecuted instantiation: ofp-print.c:pkt_metadata_init_tnl
Unexecuted instantiation: ofp-queue.c:pkt_metadata_init_tnl
Unexecuted instantiation: ofp-table.c:pkt_metadata_init_tnl
Unexecuted instantiation: ofp-util.c:pkt_metadata_init_tnl
Unexecuted instantiation: ovs-router.c:pkt_metadata_init_tnl
Unexecuted instantiation: packets.c:pkt_metadata_init_tnl
Unexecuted instantiation: smap.c:pkt_metadata_init_tnl
Unexecuted instantiation: socket-util.c:pkt_metadata_init_tnl
Unexecuted instantiation: tnl-ports.c:pkt_metadata_init_tnl
Unexecuted instantiation: tun-metadata.c:pkt_metadata_init_tnl
Unexecuted instantiation: netdev-linux.c:pkt_metadata_init_tnl
Unexecuted instantiation: netdev-offload-tc.c:pkt_metadata_init_tnl
Unexecuted instantiation: rtnetlink.c:pkt_metadata_init_tnl
Unexecuted instantiation: route-table.c:pkt_metadata_init_tnl
Unexecuted instantiation: tc.c:pkt_metadata_init_tnl
Unexecuted instantiation: classifier.c:pkt_metadata_init_tnl
Unexecuted instantiation: dpif.c:pkt_metadata_init_tnl
Unexecuted instantiation: meta-flow.c:pkt_metadata_init_tnl
Unexecuted instantiation: netdev-offload.c:pkt_metadata_init_tnl
Unexecuted instantiation: netdev-vport.c:pkt_metadata_init_tnl
Unexecuted instantiation: netlink.c:pkt_metadata_init_tnl
Unexecuted instantiation: nx-match.c:pkt_metadata_init_tnl
Unexecuted instantiation: odp-execute.c:pkt_metadata_init_tnl
Unexecuted instantiation: odp-execute-private.c:pkt_metadata_init_tnl
Unexecuted instantiation: odp-util.c:pkt_metadata_init_tnl
Unexecuted instantiation: ofp-actions.c:pkt_metadata_init_tnl
Unexecuted instantiation: ofp-ct.c:pkt_metadata_init_tnl
Unexecuted instantiation: ofp-ed-props.c:pkt_metadata_init_tnl
Unexecuted instantiation: ofp-flow.c:pkt_metadata_init_tnl
Unexecuted instantiation: ofp-group.c:pkt_metadata_init_tnl
Unexecuted instantiation: ofp-meter.c:pkt_metadata_init_tnl
Unexecuted instantiation: ofp-monitor.c:pkt_metadata_init_tnl
Unexecuted instantiation: ofp-packet.c:pkt_metadata_init_tnl
Unexecuted instantiation: ofp-parse.c:pkt_metadata_init_tnl
Unexecuted instantiation: stream.c:pkt_metadata_init_tnl
Unexecuted instantiation: tnl-neigh-cache.c:pkt_metadata_init_tnl
Unexecuted instantiation: netdev-native-tnl.c:pkt_metadata_init_tnl
Unexecuted instantiation: stream-unix.c:pkt_metadata_init_tnl
Unexecuted instantiation: dpif-netlink.c:pkt_metadata_init_tnl
Unexecuted instantiation: dpif-netlink-rtnl.c:pkt_metadata_init_tnl
Unexecuted instantiation: netlink-conntrack.c:pkt_metadata_init_tnl
Unexecuted instantiation: stream-ssl.c:pkt_metadata_init_tnl
Unexecuted instantiation: bundle.c:pkt_metadata_init_tnl
Unexecuted instantiation: conntrack.c:pkt_metadata_init_tnl
Unexecuted instantiation: ct-dpif.c:pkt_metadata_init_tnl
Unexecuted instantiation: dpctl.c:pkt_metadata_init_tnl
Unexecuted instantiation: dpif-netdev.c:pkt_metadata_init_tnl
Unexecuted instantiation: dpif-netdev-private-dfc.c:pkt_metadata_init_tnl
Unexecuted instantiation: dpif-netdev-private-dpif.c:pkt_metadata_init_tnl
Unexecuted instantiation: dpif-netdev-private-extract.c:pkt_metadata_init_tnl
Unexecuted instantiation: ipf.c:pkt_metadata_init_tnl
Unexecuted instantiation: learn.c:pkt_metadata_init_tnl
Unexecuted instantiation: multipath.c:pkt_metadata_init_tnl
Unexecuted instantiation: stream-tcp.c:pkt_metadata_init_tnl
Unexecuted instantiation: conntrack-icmp.c:pkt_metadata_init_tnl
Unexecuted instantiation: conntrack-tcp.c:pkt_metadata_init_tnl
Unexecuted instantiation: conntrack-tp.c:pkt_metadata_init_tnl
Unexecuted instantiation: conntrack-other.c:pkt_metadata_init_tnl
Unexecuted instantiation: dpif-netdev-extract-study.c:pkt_metadata_init_tnl
Unexecuted instantiation: dpif-netdev-lookup.c:pkt_metadata_init_tnl
Unexecuted instantiation: dpif-netdev-lookup-autovalidator.c:pkt_metadata_init_tnl
Unexecuted instantiation: dpif-netdev-lookup-generic.c:pkt_metadata_init_tnl
156
157
static inline void
158
pkt_metadata_init_conn(struct pkt_metadata *md)
159
0
{
160
0
    md->conn = NULL;
161
0
}
Unexecuted instantiation: flow_extract_target.c:pkt_metadata_init_conn
Unexecuted instantiation: dp-packet.c:pkt_metadata_init_conn
Unexecuted instantiation: flow.c:pkt_metadata_init_conn
Unexecuted instantiation: match.c:pkt_metadata_init_conn
Unexecuted instantiation: netdev.c:pkt_metadata_init_conn
Unexecuted instantiation: ofp-match.c:pkt_metadata_init_conn
Unexecuted instantiation: ofp-port.c:pkt_metadata_init_conn
Unexecuted instantiation: ofp-print.c:pkt_metadata_init_conn
Unexecuted instantiation: ofp-queue.c:pkt_metadata_init_conn
Unexecuted instantiation: ofp-table.c:pkt_metadata_init_conn
Unexecuted instantiation: ofp-util.c:pkt_metadata_init_conn
Unexecuted instantiation: ovs-router.c:pkt_metadata_init_conn
Unexecuted instantiation: packets.c:pkt_metadata_init_conn
Unexecuted instantiation: smap.c:pkt_metadata_init_conn
Unexecuted instantiation: socket-util.c:pkt_metadata_init_conn
Unexecuted instantiation: tnl-ports.c:pkt_metadata_init_conn
Unexecuted instantiation: tun-metadata.c:pkt_metadata_init_conn
Unexecuted instantiation: netdev-linux.c:pkt_metadata_init_conn
Unexecuted instantiation: netdev-offload-tc.c:pkt_metadata_init_conn
Unexecuted instantiation: rtnetlink.c:pkt_metadata_init_conn
Unexecuted instantiation: route-table.c:pkt_metadata_init_conn
Unexecuted instantiation: tc.c:pkt_metadata_init_conn
Unexecuted instantiation: classifier.c:pkt_metadata_init_conn
Unexecuted instantiation: dpif.c:pkt_metadata_init_conn
Unexecuted instantiation: meta-flow.c:pkt_metadata_init_conn
Unexecuted instantiation: netdev-offload.c:pkt_metadata_init_conn
Unexecuted instantiation: netdev-vport.c:pkt_metadata_init_conn
Unexecuted instantiation: netlink.c:pkt_metadata_init_conn
Unexecuted instantiation: nx-match.c:pkt_metadata_init_conn
Unexecuted instantiation: odp-execute.c:pkt_metadata_init_conn
Unexecuted instantiation: odp-execute-private.c:pkt_metadata_init_conn
Unexecuted instantiation: odp-util.c:pkt_metadata_init_conn
Unexecuted instantiation: ofp-actions.c:pkt_metadata_init_conn
Unexecuted instantiation: ofp-ct.c:pkt_metadata_init_conn
Unexecuted instantiation: ofp-ed-props.c:pkt_metadata_init_conn
Unexecuted instantiation: ofp-flow.c:pkt_metadata_init_conn
Unexecuted instantiation: ofp-group.c:pkt_metadata_init_conn
Unexecuted instantiation: ofp-meter.c:pkt_metadata_init_conn
Unexecuted instantiation: ofp-monitor.c:pkt_metadata_init_conn
Unexecuted instantiation: ofp-packet.c:pkt_metadata_init_conn
Unexecuted instantiation: ofp-parse.c:pkt_metadata_init_conn
Unexecuted instantiation: stream.c:pkt_metadata_init_conn
Unexecuted instantiation: tnl-neigh-cache.c:pkt_metadata_init_conn
Unexecuted instantiation: netdev-native-tnl.c:pkt_metadata_init_conn
Unexecuted instantiation: stream-unix.c:pkt_metadata_init_conn
Unexecuted instantiation: dpif-netlink.c:pkt_metadata_init_conn
Unexecuted instantiation: dpif-netlink-rtnl.c:pkt_metadata_init_conn
Unexecuted instantiation: netlink-conntrack.c:pkt_metadata_init_conn
Unexecuted instantiation: stream-ssl.c:pkt_metadata_init_conn
Unexecuted instantiation: bundle.c:pkt_metadata_init_conn
Unexecuted instantiation: conntrack.c:pkt_metadata_init_conn
Unexecuted instantiation: ct-dpif.c:pkt_metadata_init_conn
Unexecuted instantiation: dpctl.c:pkt_metadata_init_conn
Unexecuted instantiation: dpif-netdev.c:pkt_metadata_init_conn
Unexecuted instantiation: dpif-netdev-private-dfc.c:pkt_metadata_init_conn
Unexecuted instantiation: dpif-netdev-private-dpif.c:pkt_metadata_init_conn
Unexecuted instantiation: dpif-netdev-private-extract.c:pkt_metadata_init_conn
Unexecuted instantiation: ipf.c:pkt_metadata_init_conn
Unexecuted instantiation: learn.c:pkt_metadata_init_conn
Unexecuted instantiation: multipath.c:pkt_metadata_init_conn
Unexecuted instantiation: stream-tcp.c:pkt_metadata_init_conn
Unexecuted instantiation: conntrack-icmp.c:pkt_metadata_init_conn
Unexecuted instantiation: conntrack-tcp.c:pkt_metadata_init_conn
Unexecuted instantiation: conntrack-tp.c:pkt_metadata_init_conn
Unexecuted instantiation: conntrack-other.c:pkt_metadata_init_conn
Unexecuted instantiation: dpif-netdev-extract-study.c:pkt_metadata_init_conn
Unexecuted instantiation: dpif-netdev-lookup.c:pkt_metadata_init_conn
Unexecuted instantiation: dpif-netdev-lookup-autovalidator.c:pkt_metadata_init_conn
Unexecuted instantiation: dpif-netdev-lookup-generic.c:pkt_metadata_init_conn
162
163
static inline void
164
pkt_metadata_init(struct pkt_metadata *md, odp_port_t port)
165
4.07k
{
166
    /* This is called for every packet in userspace datapath and affects
167
     * performance if all the metadata is initialized. Hence, fields should
168
     * only be zeroed out when necessary.
169
     *
170
     * Initialize only till ct_state. Once the ct_state is zeroed out rest
171
     * of ct fields will not be looked at unless ct_state != 0.
172
     */
173
4.07k
    memset(md, 0, offsetof(struct pkt_metadata, ct_orig_tuple_ipv6));
174
175
    /* It can be expensive to zero out all of the tunnel metadata. However,
176
     * we can just zero out ip_dst and the rest of the data will never be
177
     * looked at. */
178
4.07k
    md->tunnel.ip_dst = 0;
179
4.07k
    md->tunnel.ipv6_dst = in6addr_any;
180
4.07k
    md->in_port.odp_port = port;
181
4.07k
    md->orig_in_port = port;
182
4.07k
    md->conn = NULL;
183
4.07k
}
Unexecuted instantiation: flow_extract_target.c:pkt_metadata_init
dp-packet.c:pkt_metadata_init
Line
Count
Source
165
4.07k
{
166
    /* This is called for every packet in userspace datapath and affects
167
     * performance if all the metadata is initialized. Hence, fields should
168
     * only be zeroed out when necessary.
169
     *
170
     * Initialize only till ct_state. Once the ct_state is zeroed out rest
171
     * of ct fields will not be looked at unless ct_state != 0.
172
     */
173
4.07k
    memset(md, 0, offsetof(struct pkt_metadata, ct_orig_tuple_ipv6));
174
175
    /* It can be expensive to zero out all of the tunnel metadata. However,
176
     * we can just zero out ip_dst and the rest of the data will never be
177
     * looked at. */
178
4.07k
    md->tunnel.ip_dst = 0;
179
4.07k
    md->tunnel.ipv6_dst = in6addr_any;
180
4.07k
    md->in_port.odp_port = port;
181
4.07k
    md->orig_in_port = port;
182
4.07k
    md->conn = NULL;
183
4.07k
}
Unexecuted instantiation: flow.c:pkt_metadata_init
Unexecuted instantiation: match.c:pkt_metadata_init
Unexecuted instantiation: netdev.c:pkt_metadata_init
Unexecuted instantiation: ofp-match.c:pkt_metadata_init
Unexecuted instantiation: ofp-port.c:pkt_metadata_init
Unexecuted instantiation: ofp-print.c:pkt_metadata_init
Unexecuted instantiation: ofp-queue.c:pkt_metadata_init
Unexecuted instantiation: ofp-table.c:pkt_metadata_init
Unexecuted instantiation: ofp-util.c:pkt_metadata_init
Unexecuted instantiation: ovs-router.c:pkt_metadata_init
Unexecuted instantiation: packets.c:pkt_metadata_init
Unexecuted instantiation: smap.c:pkt_metadata_init
Unexecuted instantiation: socket-util.c:pkt_metadata_init
Unexecuted instantiation: tnl-ports.c:pkt_metadata_init
Unexecuted instantiation: tun-metadata.c:pkt_metadata_init
Unexecuted instantiation: netdev-linux.c:pkt_metadata_init
Unexecuted instantiation: netdev-offload-tc.c:pkt_metadata_init
Unexecuted instantiation: rtnetlink.c:pkt_metadata_init
Unexecuted instantiation: route-table.c:pkt_metadata_init
Unexecuted instantiation: tc.c:pkt_metadata_init
Unexecuted instantiation: classifier.c:pkt_metadata_init
Unexecuted instantiation: dpif.c:pkt_metadata_init
Unexecuted instantiation: meta-flow.c:pkt_metadata_init
Unexecuted instantiation: netdev-offload.c:pkt_metadata_init
Unexecuted instantiation: netdev-vport.c:pkt_metadata_init
Unexecuted instantiation: netlink.c:pkt_metadata_init
Unexecuted instantiation: nx-match.c:pkt_metadata_init
Unexecuted instantiation: odp-execute.c:pkt_metadata_init
Unexecuted instantiation: odp-execute-private.c:pkt_metadata_init
Unexecuted instantiation: odp-util.c:pkt_metadata_init
Unexecuted instantiation: ofp-actions.c:pkt_metadata_init
Unexecuted instantiation: ofp-ct.c:pkt_metadata_init
Unexecuted instantiation: ofp-ed-props.c:pkt_metadata_init
Unexecuted instantiation: ofp-flow.c:pkt_metadata_init
Unexecuted instantiation: ofp-group.c:pkt_metadata_init
Unexecuted instantiation: ofp-meter.c:pkt_metadata_init
Unexecuted instantiation: ofp-monitor.c:pkt_metadata_init
Unexecuted instantiation: ofp-packet.c:pkt_metadata_init
Unexecuted instantiation: ofp-parse.c:pkt_metadata_init
Unexecuted instantiation: stream.c:pkt_metadata_init
Unexecuted instantiation: tnl-neigh-cache.c:pkt_metadata_init
Unexecuted instantiation: netdev-native-tnl.c:pkt_metadata_init
Unexecuted instantiation: stream-unix.c:pkt_metadata_init
Unexecuted instantiation: dpif-netlink.c:pkt_metadata_init
Unexecuted instantiation: dpif-netlink-rtnl.c:pkt_metadata_init
Unexecuted instantiation: netlink-conntrack.c:pkt_metadata_init
Unexecuted instantiation: stream-ssl.c:pkt_metadata_init
Unexecuted instantiation: bundle.c:pkt_metadata_init
Unexecuted instantiation: conntrack.c:pkt_metadata_init
Unexecuted instantiation: ct-dpif.c:pkt_metadata_init
Unexecuted instantiation: dpctl.c:pkt_metadata_init
Unexecuted instantiation: dpif-netdev.c:pkt_metadata_init
Unexecuted instantiation: dpif-netdev-private-dfc.c:pkt_metadata_init
Unexecuted instantiation: dpif-netdev-private-dpif.c:pkt_metadata_init
Unexecuted instantiation: dpif-netdev-private-extract.c:pkt_metadata_init
Unexecuted instantiation: ipf.c:pkt_metadata_init
Unexecuted instantiation: learn.c:pkt_metadata_init
Unexecuted instantiation: multipath.c:pkt_metadata_init
Unexecuted instantiation: stream-tcp.c:pkt_metadata_init
Unexecuted instantiation: conntrack-icmp.c:pkt_metadata_init
Unexecuted instantiation: conntrack-tcp.c:pkt_metadata_init
Unexecuted instantiation: conntrack-tp.c:pkt_metadata_init
Unexecuted instantiation: conntrack-other.c:pkt_metadata_init
Unexecuted instantiation: dpif-netdev-extract-study.c:pkt_metadata_init
Unexecuted instantiation: dpif-netdev-lookup.c:pkt_metadata_init
Unexecuted instantiation: dpif-netdev-lookup-autovalidator.c:pkt_metadata_init
Unexecuted instantiation: dpif-netdev-lookup-generic.c:pkt_metadata_init
184
185
/* This function prefetches the cachelines touched by pkt_metadata_init()
186
 * and pkt_metadata_init_tnl().  For performance reasons the two functions
187
 * should be kept in sync. */
188
static inline void
189
pkt_metadata_prefetch_init(struct pkt_metadata *md)
190
0
{
191
    /* Prefetch cacheline0 as members till ct_state and odp_port will
192
     * be initialized later in pkt_metadata_init(). */
193
0
    OVS_PREFETCH(md->cacheline0);
194
195
    /* Prefetch cacheline1 as members of this cacheline will be zeroed out
196
     * in pkt_metadata_init_tnl(). */
197
0
    OVS_PREFETCH(md->cacheline1);
198
199
    /* Prefetch cachline2 as ip_dst & ipv6_dst fields will be initialized. */
200
0
    OVS_PREFETCH(md->cacheline2);
201
0
}
Unexecuted instantiation: flow_extract_target.c:pkt_metadata_prefetch_init
Unexecuted instantiation: dp-packet.c:pkt_metadata_prefetch_init
Unexecuted instantiation: flow.c:pkt_metadata_prefetch_init
Unexecuted instantiation: match.c:pkt_metadata_prefetch_init
Unexecuted instantiation: netdev.c:pkt_metadata_prefetch_init
Unexecuted instantiation: ofp-match.c:pkt_metadata_prefetch_init
Unexecuted instantiation: ofp-port.c:pkt_metadata_prefetch_init
Unexecuted instantiation: ofp-print.c:pkt_metadata_prefetch_init
Unexecuted instantiation: ofp-queue.c:pkt_metadata_prefetch_init
Unexecuted instantiation: ofp-table.c:pkt_metadata_prefetch_init
Unexecuted instantiation: ofp-util.c:pkt_metadata_prefetch_init
Unexecuted instantiation: ovs-router.c:pkt_metadata_prefetch_init
Unexecuted instantiation: packets.c:pkt_metadata_prefetch_init
Unexecuted instantiation: smap.c:pkt_metadata_prefetch_init
Unexecuted instantiation: socket-util.c:pkt_metadata_prefetch_init
Unexecuted instantiation: tnl-ports.c:pkt_metadata_prefetch_init
Unexecuted instantiation: tun-metadata.c:pkt_metadata_prefetch_init
Unexecuted instantiation: netdev-linux.c:pkt_metadata_prefetch_init
Unexecuted instantiation: netdev-offload-tc.c:pkt_metadata_prefetch_init
Unexecuted instantiation: rtnetlink.c:pkt_metadata_prefetch_init
Unexecuted instantiation: route-table.c:pkt_metadata_prefetch_init
Unexecuted instantiation: tc.c:pkt_metadata_prefetch_init
Unexecuted instantiation: classifier.c:pkt_metadata_prefetch_init
Unexecuted instantiation: dpif.c:pkt_metadata_prefetch_init
Unexecuted instantiation: meta-flow.c:pkt_metadata_prefetch_init
Unexecuted instantiation: netdev-offload.c:pkt_metadata_prefetch_init
Unexecuted instantiation: netdev-vport.c:pkt_metadata_prefetch_init
Unexecuted instantiation: netlink.c:pkt_metadata_prefetch_init
Unexecuted instantiation: nx-match.c:pkt_metadata_prefetch_init
Unexecuted instantiation: odp-execute.c:pkt_metadata_prefetch_init
Unexecuted instantiation: odp-execute-private.c:pkt_metadata_prefetch_init
Unexecuted instantiation: odp-util.c:pkt_metadata_prefetch_init
Unexecuted instantiation: ofp-actions.c:pkt_metadata_prefetch_init
Unexecuted instantiation: ofp-ct.c:pkt_metadata_prefetch_init
Unexecuted instantiation: ofp-ed-props.c:pkt_metadata_prefetch_init
Unexecuted instantiation: ofp-flow.c:pkt_metadata_prefetch_init
Unexecuted instantiation: ofp-group.c:pkt_metadata_prefetch_init
Unexecuted instantiation: ofp-meter.c:pkt_metadata_prefetch_init
Unexecuted instantiation: ofp-monitor.c:pkt_metadata_prefetch_init
Unexecuted instantiation: ofp-packet.c:pkt_metadata_prefetch_init
Unexecuted instantiation: ofp-parse.c:pkt_metadata_prefetch_init
Unexecuted instantiation: stream.c:pkt_metadata_prefetch_init
Unexecuted instantiation: tnl-neigh-cache.c:pkt_metadata_prefetch_init
Unexecuted instantiation: netdev-native-tnl.c:pkt_metadata_prefetch_init
Unexecuted instantiation: stream-unix.c:pkt_metadata_prefetch_init
Unexecuted instantiation: dpif-netlink.c:pkt_metadata_prefetch_init
Unexecuted instantiation: dpif-netlink-rtnl.c:pkt_metadata_prefetch_init
Unexecuted instantiation: netlink-conntrack.c:pkt_metadata_prefetch_init
Unexecuted instantiation: stream-ssl.c:pkt_metadata_prefetch_init
Unexecuted instantiation: bundle.c:pkt_metadata_prefetch_init
Unexecuted instantiation: conntrack.c:pkt_metadata_prefetch_init
Unexecuted instantiation: ct-dpif.c:pkt_metadata_prefetch_init
Unexecuted instantiation: dpctl.c:pkt_metadata_prefetch_init
Unexecuted instantiation: dpif-netdev.c:pkt_metadata_prefetch_init
Unexecuted instantiation: dpif-netdev-private-dfc.c:pkt_metadata_prefetch_init
Unexecuted instantiation: dpif-netdev-private-dpif.c:pkt_metadata_prefetch_init
Unexecuted instantiation: dpif-netdev-private-extract.c:pkt_metadata_prefetch_init
Unexecuted instantiation: ipf.c:pkt_metadata_prefetch_init
Unexecuted instantiation: learn.c:pkt_metadata_prefetch_init
Unexecuted instantiation: multipath.c:pkt_metadata_prefetch_init
Unexecuted instantiation: stream-tcp.c:pkt_metadata_prefetch_init
Unexecuted instantiation: conntrack-icmp.c:pkt_metadata_prefetch_init
Unexecuted instantiation: conntrack-tcp.c:pkt_metadata_prefetch_init
Unexecuted instantiation: conntrack-tp.c:pkt_metadata_prefetch_init
Unexecuted instantiation: conntrack-other.c:pkt_metadata_prefetch_init
Unexecuted instantiation: dpif-netdev-extract-study.c:pkt_metadata_prefetch_init
Unexecuted instantiation: dpif-netdev-lookup.c:pkt_metadata_prefetch_init
Unexecuted instantiation: dpif-netdev-lookup-autovalidator.c:pkt_metadata_prefetch_init
Unexecuted instantiation: dpif-netdev-lookup-generic.c:pkt_metadata_prefetch_init
202
203
bool dpid_from_string(const char *s, uint64_t *dpidp);
204
205
10.3k
#define ETH_ADDR_LEN           6
206
207
static const struct eth_addr eth_addr_broadcast OVS_UNUSED
208
    = ETH_ADDR_C(ff,ff,ff,ff,ff,ff);
209
210
static const struct eth_addr eth_addr_exact OVS_UNUSED
211
    = ETH_ADDR_C(ff,ff,ff,ff,ff,ff);
212
213
static const struct eth_addr eth_addr_zero OVS_UNUSED
214
    = ETH_ADDR_C(00,00,00,00,00,00);
215
static const struct eth_addr64 eth_addr64_zero OVS_UNUSED
216
    = ETH_ADDR64_C(00,00,00,00,00,00,00,00);
217
218
static const struct eth_addr eth_addr_stp OVS_UNUSED
219
    = ETH_ADDR_C(01,80,c2,00,00,00);
220
221
static const struct eth_addr eth_addr_lacp OVS_UNUSED
222
    = ETH_ADDR_C(01,80,c2,00,00,02);
223
224
static const struct eth_addr eth_addr_bfd OVS_UNUSED
225
    = ETH_ADDR_C(00,23,20,00,00,01);
226
227
static inline bool eth_addr_is_broadcast(const struct eth_addr a)
228
0
{
229
0
    return (a.be16[0] & a.be16[1] & a.be16[2]) == htons(0xffff);
230
0
}
Unexecuted instantiation: flow_extract_target.c:eth_addr_is_broadcast
Unexecuted instantiation: dp-packet.c:eth_addr_is_broadcast
Unexecuted instantiation: flow.c:eth_addr_is_broadcast
Unexecuted instantiation: match.c:eth_addr_is_broadcast
Unexecuted instantiation: netdev.c:eth_addr_is_broadcast
Unexecuted instantiation: ofp-match.c:eth_addr_is_broadcast
Unexecuted instantiation: ofp-port.c:eth_addr_is_broadcast
Unexecuted instantiation: ofp-print.c:eth_addr_is_broadcast
Unexecuted instantiation: ofp-queue.c:eth_addr_is_broadcast
Unexecuted instantiation: ofp-table.c:eth_addr_is_broadcast
Unexecuted instantiation: ofp-util.c:eth_addr_is_broadcast
Unexecuted instantiation: ovs-router.c:eth_addr_is_broadcast
Unexecuted instantiation: packets.c:eth_addr_is_broadcast
Unexecuted instantiation: smap.c:eth_addr_is_broadcast
Unexecuted instantiation: socket-util.c:eth_addr_is_broadcast
Unexecuted instantiation: tnl-ports.c:eth_addr_is_broadcast
Unexecuted instantiation: tun-metadata.c:eth_addr_is_broadcast
Unexecuted instantiation: netdev-linux.c:eth_addr_is_broadcast
Unexecuted instantiation: netdev-offload-tc.c:eth_addr_is_broadcast
Unexecuted instantiation: rtnetlink.c:eth_addr_is_broadcast
Unexecuted instantiation: route-table.c:eth_addr_is_broadcast
Unexecuted instantiation: tc.c:eth_addr_is_broadcast
Unexecuted instantiation: classifier.c:eth_addr_is_broadcast
Unexecuted instantiation: dpif.c:eth_addr_is_broadcast
Unexecuted instantiation: meta-flow.c:eth_addr_is_broadcast
Unexecuted instantiation: netdev-offload.c:eth_addr_is_broadcast
Unexecuted instantiation: netdev-vport.c:eth_addr_is_broadcast
Unexecuted instantiation: netlink.c:eth_addr_is_broadcast
Unexecuted instantiation: nx-match.c:eth_addr_is_broadcast
Unexecuted instantiation: odp-execute.c:eth_addr_is_broadcast
Unexecuted instantiation: odp-execute-private.c:eth_addr_is_broadcast
Unexecuted instantiation: odp-util.c:eth_addr_is_broadcast
Unexecuted instantiation: ofp-actions.c:eth_addr_is_broadcast
Unexecuted instantiation: ofp-ct.c:eth_addr_is_broadcast
Unexecuted instantiation: ofp-ed-props.c:eth_addr_is_broadcast
Unexecuted instantiation: ofp-flow.c:eth_addr_is_broadcast
Unexecuted instantiation: ofp-group.c:eth_addr_is_broadcast
Unexecuted instantiation: ofp-meter.c:eth_addr_is_broadcast
Unexecuted instantiation: ofp-monitor.c:eth_addr_is_broadcast
Unexecuted instantiation: ofp-packet.c:eth_addr_is_broadcast
Unexecuted instantiation: ofp-parse.c:eth_addr_is_broadcast
Unexecuted instantiation: stream.c:eth_addr_is_broadcast
Unexecuted instantiation: tnl-neigh-cache.c:eth_addr_is_broadcast
Unexecuted instantiation: netdev-native-tnl.c:eth_addr_is_broadcast
Unexecuted instantiation: stream-unix.c:eth_addr_is_broadcast
Unexecuted instantiation: dpif-netlink.c:eth_addr_is_broadcast
Unexecuted instantiation: dpif-netlink-rtnl.c:eth_addr_is_broadcast
Unexecuted instantiation: netlink-conntrack.c:eth_addr_is_broadcast
Unexecuted instantiation: stream-ssl.c:eth_addr_is_broadcast
Unexecuted instantiation: bundle.c:eth_addr_is_broadcast
Unexecuted instantiation: conntrack.c:eth_addr_is_broadcast
Unexecuted instantiation: ct-dpif.c:eth_addr_is_broadcast
Unexecuted instantiation: dpctl.c:eth_addr_is_broadcast
Unexecuted instantiation: dpif-netdev.c:eth_addr_is_broadcast
Unexecuted instantiation: dpif-netdev-private-dfc.c:eth_addr_is_broadcast
Unexecuted instantiation: dpif-netdev-private-dpif.c:eth_addr_is_broadcast
Unexecuted instantiation: dpif-netdev-private-extract.c:eth_addr_is_broadcast
Unexecuted instantiation: ipf.c:eth_addr_is_broadcast
Unexecuted instantiation: learn.c:eth_addr_is_broadcast
Unexecuted instantiation: multipath.c:eth_addr_is_broadcast
Unexecuted instantiation: stream-tcp.c:eth_addr_is_broadcast
Unexecuted instantiation: conntrack-icmp.c:eth_addr_is_broadcast
Unexecuted instantiation: conntrack-tcp.c:eth_addr_is_broadcast
Unexecuted instantiation: conntrack-tp.c:eth_addr_is_broadcast
Unexecuted instantiation: conntrack-other.c:eth_addr_is_broadcast
Unexecuted instantiation: dpif-netdev-extract-study.c:eth_addr_is_broadcast
Unexecuted instantiation: dpif-netdev-lookup.c:eth_addr_is_broadcast
Unexecuted instantiation: dpif-netdev-lookup-autovalidator.c:eth_addr_is_broadcast
Unexecuted instantiation: dpif-netdev-lookup-generic.c:eth_addr_is_broadcast
231
232
static inline bool eth_addr_is_multicast(const struct eth_addr a)
233
0
{
234
0
    return a.ea[0] & 1;
235
0
}
Unexecuted instantiation: flow_extract_target.c:eth_addr_is_multicast
Unexecuted instantiation: dp-packet.c:eth_addr_is_multicast
Unexecuted instantiation: flow.c:eth_addr_is_multicast
Unexecuted instantiation: match.c:eth_addr_is_multicast
Unexecuted instantiation: netdev.c:eth_addr_is_multicast
Unexecuted instantiation: ofp-match.c:eth_addr_is_multicast
Unexecuted instantiation: ofp-port.c:eth_addr_is_multicast
Unexecuted instantiation: ofp-print.c:eth_addr_is_multicast
Unexecuted instantiation: ofp-queue.c:eth_addr_is_multicast
Unexecuted instantiation: ofp-table.c:eth_addr_is_multicast
Unexecuted instantiation: ofp-util.c:eth_addr_is_multicast
Unexecuted instantiation: ovs-router.c:eth_addr_is_multicast
Unexecuted instantiation: packets.c:eth_addr_is_multicast
Unexecuted instantiation: smap.c:eth_addr_is_multicast
Unexecuted instantiation: socket-util.c:eth_addr_is_multicast
Unexecuted instantiation: tnl-ports.c:eth_addr_is_multicast
Unexecuted instantiation: tun-metadata.c:eth_addr_is_multicast
Unexecuted instantiation: netdev-linux.c:eth_addr_is_multicast
Unexecuted instantiation: netdev-offload-tc.c:eth_addr_is_multicast
Unexecuted instantiation: rtnetlink.c:eth_addr_is_multicast
Unexecuted instantiation: route-table.c:eth_addr_is_multicast
Unexecuted instantiation: tc.c:eth_addr_is_multicast
Unexecuted instantiation: classifier.c:eth_addr_is_multicast
Unexecuted instantiation: dpif.c:eth_addr_is_multicast
Unexecuted instantiation: meta-flow.c:eth_addr_is_multicast
Unexecuted instantiation: netdev-offload.c:eth_addr_is_multicast
Unexecuted instantiation: netdev-vport.c:eth_addr_is_multicast
Unexecuted instantiation: netlink.c:eth_addr_is_multicast
Unexecuted instantiation: nx-match.c:eth_addr_is_multicast
Unexecuted instantiation: odp-execute.c:eth_addr_is_multicast
Unexecuted instantiation: odp-execute-private.c:eth_addr_is_multicast
Unexecuted instantiation: odp-util.c:eth_addr_is_multicast
Unexecuted instantiation: ofp-actions.c:eth_addr_is_multicast
Unexecuted instantiation: ofp-ct.c:eth_addr_is_multicast
Unexecuted instantiation: ofp-ed-props.c:eth_addr_is_multicast
Unexecuted instantiation: ofp-flow.c:eth_addr_is_multicast
Unexecuted instantiation: ofp-group.c:eth_addr_is_multicast
Unexecuted instantiation: ofp-meter.c:eth_addr_is_multicast
Unexecuted instantiation: ofp-monitor.c:eth_addr_is_multicast
Unexecuted instantiation: ofp-packet.c:eth_addr_is_multicast
Unexecuted instantiation: ofp-parse.c:eth_addr_is_multicast
Unexecuted instantiation: stream.c:eth_addr_is_multicast
Unexecuted instantiation: tnl-neigh-cache.c:eth_addr_is_multicast
Unexecuted instantiation: netdev-native-tnl.c:eth_addr_is_multicast
Unexecuted instantiation: stream-unix.c:eth_addr_is_multicast
Unexecuted instantiation: dpif-netlink.c:eth_addr_is_multicast
Unexecuted instantiation: dpif-netlink-rtnl.c:eth_addr_is_multicast
Unexecuted instantiation: netlink-conntrack.c:eth_addr_is_multicast
Unexecuted instantiation: stream-ssl.c:eth_addr_is_multicast
Unexecuted instantiation: bundle.c:eth_addr_is_multicast
Unexecuted instantiation: conntrack.c:eth_addr_is_multicast
Unexecuted instantiation: ct-dpif.c:eth_addr_is_multicast
Unexecuted instantiation: dpctl.c:eth_addr_is_multicast
Unexecuted instantiation: dpif-netdev.c:eth_addr_is_multicast
Unexecuted instantiation: dpif-netdev-private-dfc.c:eth_addr_is_multicast
Unexecuted instantiation: dpif-netdev-private-dpif.c:eth_addr_is_multicast
Unexecuted instantiation: dpif-netdev-private-extract.c:eth_addr_is_multicast
Unexecuted instantiation: ipf.c:eth_addr_is_multicast
Unexecuted instantiation: learn.c:eth_addr_is_multicast
Unexecuted instantiation: multipath.c:eth_addr_is_multicast
Unexecuted instantiation: stream-tcp.c:eth_addr_is_multicast
Unexecuted instantiation: conntrack-icmp.c:eth_addr_is_multicast
Unexecuted instantiation: conntrack-tcp.c:eth_addr_is_multicast
Unexecuted instantiation: conntrack-tp.c:eth_addr_is_multicast
Unexecuted instantiation: conntrack-other.c:eth_addr_is_multicast
Unexecuted instantiation: dpif-netdev-extract-study.c:eth_addr_is_multicast
Unexecuted instantiation: dpif-netdev-lookup.c:eth_addr_is_multicast
Unexecuted instantiation: dpif-netdev-lookup-autovalidator.c:eth_addr_is_multicast
Unexecuted instantiation: dpif-netdev-lookup-generic.c:eth_addr_is_multicast
236
237
static inline bool eth_addr_is_local(const struct eth_addr a)
238
0
{
239
0
    /* Local if it is either a locally administered address or a Nicira random
240
0
     * address. */
241
0
    return a.ea[0] & 2
242
0
        || (a.be16[0] == htons(0x0023)
243
0
            && (a.be16[1] & htons(0xff80)) == htons(0x2080));
244
0
}
Unexecuted instantiation: flow_extract_target.c:eth_addr_is_local
Unexecuted instantiation: dp-packet.c:eth_addr_is_local
Unexecuted instantiation: flow.c:eth_addr_is_local
Unexecuted instantiation: match.c:eth_addr_is_local
Unexecuted instantiation: netdev.c:eth_addr_is_local
Unexecuted instantiation: ofp-match.c:eth_addr_is_local
Unexecuted instantiation: ofp-port.c:eth_addr_is_local
Unexecuted instantiation: ofp-print.c:eth_addr_is_local
Unexecuted instantiation: ofp-queue.c:eth_addr_is_local
Unexecuted instantiation: ofp-table.c:eth_addr_is_local
Unexecuted instantiation: ofp-util.c:eth_addr_is_local
Unexecuted instantiation: ovs-router.c:eth_addr_is_local
Unexecuted instantiation: packets.c:eth_addr_is_local
Unexecuted instantiation: smap.c:eth_addr_is_local
Unexecuted instantiation: socket-util.c:eth_addr_is_local
Unexecuted instantiation: tnl-ports.c:eth_addr_is_local
Unexecuted instantiation: tun-metadata.c:eth_addr_is_local
Unexecuted instantiation: netdev-linux.c:eth_addr_is_local
Unexecuted instantiation: netdev-offload-tc.c:eth_addr_is_local
Unexecuted instantiation: rtnetlink.c:eth_addr_is_local
Unexecuted instantiation: route-table.c:eth_addr_is_local
Unexecuted instantiation: tc.c:eth_addr_is_local
Unexecuted instantiation: classifier.c:eth_addr_is_local
Unexecuted instantiation: dpif.c:eth_addr_is_local
Unexecuted instantiation: meta-flow.c:eth_addr_is_local
Unexecuted instantiation: netdev-offload.c:eth_addr_is_local
Unexecuted instantiation: netdev-vport.c:eth_addr_is_local
Unexecuted instantiation: netlink.c:eth_addr_is_local
Unexecuted instantiation: nx-match.c:eth_addr_is_local
Unexecuted instantiation: odp-execute.c:eth_addr_is_local
Unexecuted instantiation: odp-execute-private.c:eth_addr_is_local
Unexecuted instantiation: odp-util.c:eth_addr_is_local
Unexecuted instantiation: ofp-actions.c:eth_addr_is_local
Unexecuted instantiation: ofp-ct.c:eth_addr_is_local
Unexecuted instantiation: ofp-ed-props.c:eth_addr_is_local
Unexecuted instantiation: ofp-flow.c:eth_addr_is_local
Unexecuted instantiation: ofp-group.c:eth_addr_is_local
Unexecuted instantiation: ofp-meter.c:eth_addr_is_local
Unexecuted instantiation: ofp-monitor.c:eth_addr_is_local
Unexecuted instantiation: ofp-packet.c:eth_addr_is_local
Unexecuted instantiation: ofp-parse.c:eth_addr_is_local
Unexecuted instantiation: stream.c:eth_addr_is_local
Unexecuted instantiation: tnl-neigh-cache.c:eth_addr_is_local
Unexecuted instantiation: netdev-native-tnl.c:eth_addr_is_local
Unexecuted instantiation: stream-unix.c:eth_addr_is_local
Unexecuted instantiation: dpif-netlink.c:eth_addr_is_local
Unexecuted instantiation: dpif-netlink-rtnl.c:eth_addr_is_local
Unexecuted instantiation: netlink-conntrack.c:eth_addr_is_local
Unexecuted instantiation: stream-ssl.c:eth_addr_is_local
Unexecuted instantiation: bundle.c:eth_addr_is_local
Unexecuted instantiation: conntrack.c:eth_addr_is_local
Unexecuted instantiation: ct-dpif.c:eth_addr_is_local
Unexecuted instantiation: dpctl.c:eth_addr_is_local
Unexecuted instantiation: dpif-netdev.c:eth_addr_is_local
Unexecuted instantiation: dpif-netdev-private-dfc.c:eth_addr_is_local
Unexecuted instantiation: dpif-netdev-private-dpif.c:eth_addr_is_local
Unexecuted instantiation: dpif-netdev-private-extract.c:eth_addr_is_local
Unexecuted instantiation: ipf.c:eth_addr_is_local
Unexecuted instantiation: learn.c:eth_addr_is_local
Unexecuted instantiation: multipath.c:eth_addr_is_local
Unexecuted instantiation: stream-tcp.c:eth_addr_is_local
Unexecuted instantiation: conntrack-icmp.c:eth_addr_is_local
Unexecuted instantiation: conntrack-tcp.c:eth_addr_is_local
Unexecuted instantiation: conntrack-tp.c:eth_addr_is_local
Unexecuted instantiation: conntrack-other.c:eth_addr_is_local
Unexecuted instantiation: dpif-netdev-extract-study.c:eth_addr_is_local
Unexecuted instantiation: dpif-netdev-lookup.c:eth_addr_is_local
Unexecuted instantiation: dpif-netdev-lookup-autovalidator.c:eth_addr_is_local
Unexecuted instantiation: dpif-netdev-lookup-generic.c:eth_addr_is_local
245
static inline bool eth_addr_is_zero(const struct eth_addr a)
246
13.3k
{
247
13.3k
    return !(a.be16[0] | a.be16[1] | a.be16[2]);
248
13.3k
}
Unexecuted instantiation: flow_extract_target.c:eth_addr_is_zero
Unexecuted instantiation: dp-packet.c:eth_addr_is_zero
flow.c:eth_addr_is_zero
Line
Count
Source
246
618
{
247
618
    return !(a.be16[0] | a.be16[1] | a.be16[2]);
248
618
}
match.c:eth_addr_is_zero
Line
Count
Source
246
8.62k
{
247
8.62k
    return !(a.be16[0] | a.be16[1] | a.be16[2]);
248
8.62k
}
Unexecuted instantiation: netdev.c:eth_addr_is_zero
ofp-match.c:eth_addr_is_zero
Line
Count
Source
246
4.07k
{
247
4.07k
    return !(a.be16[0] | a.be16[1] | a.be16[2]);
248
4.07k
}
Unexecuted instantiation: ofp-port.c:eth_addr_is_zero
Unexecuted instantiation: ofp-print.c:eth_addr_is_zero
Unexecuted instantiation: ofp-queue.c:eth_addr_is_zero
Unexecuted instantiation: ofp-table.c:eth_addr_is_zero
Unexecuted instantiation: ofp-util.c:eth_addr_is_zero
Unexecuted instantiation: ovs-router.c:eth_addr_is_zero
Unexecuted instantiation: packets.c:eth_addr_is_zero
Unexecuted instantiation: smap.c:eth_addr_is_zero
Unexecuted instantiation: socket-util.c:eth_addr_is_zero
Unexecuted instantiation: tnl-ports.c:eth_addr_is_zero
Unexecuted instantiation: tun-metadata.c:eth_addr_is_zero
Unexecuted instantiation: netdev-linux.c:eth_addr_is_zero
Unexecuted instantiation: netdev-offload-tc.c:eth_addr_is_zero
Unexecuted instantiation: rtnetlink.c:eth_addr_is_zero
Unexecuted instantiation: route-table.c:eth_addr_is_zero
Unexecuted instantiation: tc.c:eth_addr_is_zero
Unexecuted instantiation: classifier.c:eth_addr_is_zero
Unexecuted instantiation: dpif.c:eth_addr_is_zero
Unexecuted instantiation: meta-flow.c:eth_addr_is_zero
Unexecuted instantiation: netdev-offload.c:eth_addr_is_zero
Unexecuted instantiation: netdev-vport.c:eth_addr_is_zero
Unexecuted instantiation: netlink.c:eth_addr_is_zero
Unexecuted instantiation: nx-match.c:eth_addr_is_zero
Unexecuted instantiation: odp-execute.c:eth_addr_is_zero
Unexecuted instantiation: odp-execute-private.c:eth_addr_is_zero
Unexecuted instantiation: odp-util.c:eth_addr_is_zero
Unexecuted instantiation: ofp-actions.c:eth_addr_is_zero
Unexecuted instantiation: ofp-ct.c:eth_addr_is_zero
Unexecuted instantiation: ofp-ed-props.c:eth_addr_is_zero
Unexecuted instantiation: ofp-flow.c:eth_addr_is_zero
Unexecuted instantiation: ofp-group.c:eth_addr_is_zero
Unexecuted instantiation: ofp-meter.c:eth_addr_is_zero
Unexecuted instantiation: ofp-monitor.c:eth_addr_is_zero
Unexecuted instantiation: ofp-packet.c:eth_addr_is_zero
Unexecuted instantiation: ofp-parse.c:eth_addr_is_zero
Unexecuted instantiation: stream.c:eth_addr_is_zero
Unexecuted instantiation: tnl-neigh-cache.c:eth_addr_is_zero
Unexecuted instantiation: netdev-native-tnl.c:eth_addr_is_zero
Unexecuted instantiation: stream-unix.c:eth_addr_is_zero
Unexecuted instantiation: dpif-netlink.c:eth_addr_is_zero
Unexecuted instantiation: dpif-netlink-rtnl.c:eth_addr_is_zero
Unexecuted instantiation: netlink-conntrack.c:eth_addr_is_zero
Unexecuted instantiation: stream-ssl.c:eth_addr_is_zero
Unexecuted instantiation: bundle.c:eth_addr_is_zero
Unexecuted instantiation: conntrack.c:eth_addr_is_zero
Unexecuted instantiation: ct-dpif.c:eth_addr_is_zero
Unexecuted instantiation: dpctl.c:eth_addr_is_zero
Unexecuted instantiation: dpif-netdev.c:eth_addr_is_zero
Unexecuted instantiation: dpif-netdev-private-dfc.c:eth_addr_is_zero
Unexecuted instantiation: dpif-netdev-private-dpif.c:eth_addr_is_zero
Unexecuted instantiation: dpif-netdev-private-extract.c:eth_addr_is_zero
Unexecuted instantiation: ipf.c:eth_addr_is_zero
Unexecuted instantiation: learn.c:eth_addr_is_zero
Unexecuted instantiation: multipath.c:eth_addr_is_zero
Unexecuted instantiation: stream-tcp.c:eth_addr_is_zero
Unexecuted instantiation: conntrack-icmp.c:eth_addr_is_zero
Unexecuted instantiation: conntrack-tcp.c:eth_addr_is_zero
Unexecuted instantiation: conntrack-tp.c:eth_addr_is_zero
Unexecuted instantiation: conntrack-other.c:eth_addr_is_zero
Unexecuted instantiation: dpif-netdev-extract-study.c:eth_addr_is_zero
Unexecuted instantiation: dpif-netdev-lookup.c:eth_addr_is_zero
Unexecuted instantiation: dpif-netdev-lookup-autovalidator.c:eth_addr_is_zero
Unexecuted instantiation: dpif-netdev-lookup-generic.c:eth_addr_is_zero
249
static inline bool eth_addr64_is_zero(const struct eth_addr64 a)
250
0
{
251
0
    return !(a.be16[0] | a.be16[1] | a.be16[2] | a.be16[3]);
252
0
}
Unexecuted instantiation: flow_extract_target.c:eth_addr64_is_zero
Unexecuted instantiation: dp-packet.c:eth_addr64_is_zero
Unexecuted instantiation: flow.c:eth_addr64_is_zero
Unexecuted instantiation: match.c:eth_addr64_is_zero
Unexecuted instantiation: netdev.c:eth_addr64_is_zero
Unexecuted instantiation: ofp-match.c:eth_addr64_is_zero
Unexecuted instantiation: ofp-port.c:eth_addr64_is_zero
Unexecuted instantiation: ofp-print.c:eth_addr64_is_zero
Unexecuted instantiation: ofp-queue.c:eth_addr64_is_zero
Unexecuted instantiation: ofp-table.c:eth_addr64_is_zero
Unexecuted instantiation: ofp-util.c:eth_addr64_is_zero
Unexecuted instantiation: ovs-router.c:eth_addr64_is_zero
Unexecuted instantiation: packets.c:eth_addr64_is_zero
Unexecuted instantiation: smap.c:eth_addr64_is_zero
Unexecuted instantiation: socket-util.c:eth_addr64_is_zero
Unexecuted instantiation: tnl-ports.c:eth_addr64_is_zero
Unexecuted instantiation: tun-metadata.c:eth_addr64_is_zero
Unexecuted instantiation: netdev-linux.c:eth_addr64_is_zero
Unexecuted instantiation: netdev-offload-tc.c:eth_addr64_is_zero
Unexecuted instantiation: rtnetlink.c:eth_addr64_is_zero
Unexecuted instantiation: route-table.c:eth_addr64_is_zero
Unexecuted instantiation: tc.c:eth_addr64_is_zero
Unexecuted instantiation: classifier.c:eth_addr64_is_zero
Unexecuted instantiation: dpif.c:eth_addr64_is_zero
Unexecuted instantiation: meta-flow.c:eth_addr64_is_zero
Unexecuted instantiation: netdev-offload.c:eth_addr64_is_zero
Unexecuted instantiation: netdev-vport.c:eth_addr64_is_zero
Unexecuted instantiation: netlink.c:eth_addr64_is_zero
Unexecuted instantiation: nx-match.c:eth_addr64_is_zero
Unexecuted instantiation: odp-execute.c:eth_addr64_is_zero
Unexecuted instantiation: odp-execute-private.c:eth_addr64_is_zero
Unexecuted instantiation: odp-util.c:eth_addr64_is_zero
Unexecuted instantiation: ofp-actions.c:eth_addr64_is_zero
Unexecuted instantiation: ofp-ct.c:eth_addr64_is_zero
Unexecuted instantiation: ofp-ed-props.c:eth_addr64_is_zero
Unexecuted instantiation: ofp-flow.c:eth_addr64_is_zero
Unexecuted instantiation: ofp-group.c:eth_addr64_is_zero
Unexecuted instantiation: ofp-meter.c:eth_addr64_is_zero
Unexecuted instantiation: ofp-monitor.c:eth_addr64_is_zero
Unexecuted instantiation: ofp-packet.c:eth_addr64_is_zero
Unexecuted instantiation: ofp-parse.c:eth_addr64_is_zero
Unexecuted instantiation: stream.c:eth_addr64_is_zero
Unexecuted instantiation: tnl-neigh-cache.c:eth_addr64_is_zero
Unexecuted instantiation: netdev-native-tnl.c:eth_addr64_is_zero
Unexecuted instantiation: stream-unix.c:eth_addr64_is_zero
Unexecuted instantiation: dpif-netlink.c:eth_addr64_is_zero
Unexecuted instantiation: dpif-netlink-rtnl.c:eth_addr64_is_zero
Unexecuted instantiation: netlink-conntrack.c:eth_addr64_is_zero
Unexecuted instantiation: stream-ssl.c:eth_addr64_is_zero
Unexecuted instantiation: bundle.c:eth_addr64_is_zero
Unexecuted instantiation: conntrack.c:eth_addr64_is_zero
Unexecuted instantiation: ct-dpif.c:eth_addr64_is_zero
Unexecuted instantiation: dpctl.c:eth_addr64_is_zero
Unexecuted instantiation: dpif-netdev.c:eth_addr64_is_zero
Unexecuted instantiation: dpif-netdev-private-dfc.c:eth_addr64_is_zero
Unexecuted instantiation: dpif-netdev-private-dpif.c:eth_addr64_is_zero
Unexecuted instantiation: dpif-netdev-private-extract.c:eth_addr64_is_zero
Unexecuted instantiation: ipf.c:eth_addr64_is_zero
Unexecuted instantiation: learn.c:eth_addr64_is_zero
Unexecuted instantiation: multipath.c:eth_addr64_is_zero
Unexecuted instantiation: stream-tcp.c:eth_addr64_is_zero
Unexecuted instantiation: conntrack-icmp.c:eth_addr64_is_zero
Unexecuted instantiation: conntrack-tcp.c:eth_addr64_is_zero
Unexecuted instantiation: conntrack-tp.c:eth_addr64_is_zero
Unexecuted instantiation: conntrack-other.c:eth_addr64_is_zero
Unexecuted instantiation: dpif-netdev-extract-study.c:eth_addr64_is_zero
Unexecuted instantiation: dpif-netdev-lookup.c:eth_addr64_is_zero
Unexecuted instantiation: dpif-netdev-lookup-autovalidator.c:eth_addr64_is_zero
Unexecuted instantiation: dpif-netdev-lookup-generic.c:eth_addr64_is_zero
253
254
static inline int eth_mask_is_exact(const struct eth_addr a)
255
8.51k
{
256
8.51k
    return (a.be16[0] & a.be16[1] & a.be16[2]) == htons(0xffff);
257
8.51k
}
Unexecuted instantiation: flow_extract_target.c:eth_mask_is_exact
Unexecuted instantiation: dp-packet.c:eth_mask_is_exact
Unexecuted instantiation: flow.c:eth_mask_is_exact
Unexecuted instantiation: match.c:eth_mask_is_exact
Unexecuted instantiation: netdev.c:eth_mask_is_exact
Unexecuted instantiation: ofp-match.c:eth_mask_is_exact
Unexecuted instantiation: ofp-port.c:eth_mask_is_exact
Unexecuted instantiation: ofp-print.c:eth_mask_is_exact
Unexecuted instantiation: ofp-queue.c:eth_mask_is_exact
Unexecuted instantiation: ofp-table.c:eth_mask_is_exact
Unexecuted instantiation: ofp-util.c:eth_mask_is_exact
Unexecuted instantiation: ovs-router.c:eth_mask_is_exact
packets.c:eth_mask_is_exact
Line
Count
Source
255
8.51k
{
256
8.51k
    return (a.be16[0] & a.be16[1] & a.be16[2]) == htons(0xffff);
257
8.51k
}
Unexecuted instantiation: smap.c:eth_mask_is_exact
Unexecuted instantiation: socket-util.c:eth_mask_is_exact
Unexecuted instantiation: tnl-ports.c:eth_mask_is_exact
Unexecuted instantiation: tun-metadata.c:eth_mask_is_exact
Unexecuted instantiation: netdev-linux.c:eth_mask_is_exact
Unexecuted instantiation: netdev-offload-tc.c:eth_mask_is_exact
Unexecuted instantiation: rtnetlink.c:eth_mask_is_exact
Unexecuted instantiation: route-table.c:eth_mask_is_exact
Unexecuted instantiation: tc.c:eth_mask_is_exact
Unexecuted instantiation: classifier.c:eth_mask_is_exact
Unexecuted instantiation: dpif.c:eth_mask_is_exact
Unexecuted instantiation: meta-flow.c:eth_mask_is_exact
Unexecuted instantiation: netdev-offload.c:eth_mask_is_exact
Unexecuted instantiation: netdev-vport.c:eth_mask_is_exact
Unexecuted instantiation: netlink.c:eth_mask_is_exact
Unexecuted instantiation: nx-match.c:eth_mask_is_exact
Unexecuted instantiation: odp-execute.c:eth_mask_is_exact
Unexecuted instantiation: odp-execute-private.c:eth_mask_is_exact
Unexecuted instantiation: odp-util.c:eth_mask_is_exact
Unexecuted instantiation: ofp-actions.c:eth_mask_is_exact
Unexecuted instantiation: ofp-ct.c:eth_mask_is_exact
Unexecuted instantiation: ofp-ed-props.c:eth_mask_is_exact
Unexecuted instantiation: ofp-flow.c:eth_mask_is_exact
Unexecuted instantiation: ofp-group.c:eth_mask_is_exact
Unexecuted instantiation: ofp-meter.c:eth_mask_is_exact
Unexecuted instantiation: ofp-monitor.c:eth_mask_is_exact
Unexecuted instantiation: ofp-packet.c:eth_mask_is_exact
Unexecuted instantiation: ofp-parse.c:eth_mask_is_exact
Unexecuted instantiation: stream.c:eth_mask_is_exact
Unexecuted instantiation: tnl-neigh-cache.c:eth_mask_is_exact
Unexecuted instantiation: netdev-native-tnl.c:eth_mask_is_exact
Unexecuted instantiation: stream-unix.c:eth_mask_is_exact
Unexecuted instantiation: dpif-netlink.c:eth_mask_is_exact
Unexecuted instantiation: dpif-netlink-rtnl.c:eth_mask_is_exact
Unexecuted instantiation: netlink-conntrack.c:eth_mask_is_exact
Unexecuted instantiation: stream-ssl.c:eth_mask_is_exact
Unexecuted instantiation: bundle.c:eth_mask_is_exact
Unexecuted instantiation: conntrack.c:eth_mask_is_exact
Unexecuted instantiation: ct-dpif.c:eth_mask_is_exact
Unexecuted instantiation: dpctl.c:eth_mask_is_exact
Unexecuted instantiation: dpif-netdev.c:eth_mask_is_exact
Unexecuted instantiation: dpif-netdev-private-dfc.c:eth_mask_is_exact
Unexecuted instantiation: dpif-netdev-private-dpif.c:eth_mask_is_exact
Unexecuted instantiation: dpif-netdev-private-extract.c:eth_mask_is_exact
Unexecuted instantiation: ipf.c:eth_mask_is_exact
Unexecuted instantiation: learn.c:eth_mask_is_exact
Unexecuted instantiation: multipath.c:eth_mask_is_exact
Unexecuted instantiation: stream-tcp.c:eth_mask_is_exact
Unexecuted instantiation: conntrack-icmp.c:eth_mask_is_exact
Unexecuted instantiation: conntrack-tcp.c:eth_mask_is_exact
Unexecuted instantiation: conntrack-tp.c:eth_mask_is_exact
Unexecuted instantiation: conntrack-other.c:eth_mask_is_exact
Unexecuted instantiation: dpif-netdev-extract-study.c:eth_mask_is_exact
Unexecuted instantiation: dpif-netdev-lookup.c:eth_mask_is_exact
Unexecuted instantiation: dpif-netdev-lookup-autovalidator.c:eth_mask_is_exact
Unexecuted instantiation: dpif-netdev-lookup-generic.c:eth_mask_is_exact
258
259
static inline int eth_addr_compare_3way(const struct eth_addr a,
260
                                        const struct eth_addr b)
261
0
{
262
0
    return memcmp(&a, &b, sizeof a);
263
0
}
Unexecuted instantiation: flow_extract_target.c:eth_addr_compare_3way
Unexecuted instantiation: dp-packet.c:eth_addr_compare_3way
Unexecuted instantiation: flow.c:eth_addr_compare_3way
Unexecuted instantiation: match.c:eth_addr_compare_3way
Unexecuted instantiation: netdev.c:eth_addr_compare_3way
Unexecuted instantiation: ofp-match.c:eth_addr_compare_3way
Unexecuted instantiation: ofp-port.c:eth_addr_compare_3way
Unexecuted instantiation: ofp-print.c:eth_addr_compare_3way
Unexecuted instantiation: ofp-queue.c:eth_addr_compare_3way
Unexecuted instantiation: ofp-table.c:eth_addr_compare_3way
Unexecuted instantiation: ofp-util.c:eth_addr_compare_3way
Unexecuted instantiation: ovs-router.c:eth_addr_compare_3way
Unexecuted instantiation: packets.c:eth_addr_compare_3way
Unexecuted instantiation: smap.c:eth_addr_compare_3way
Unexecuted instantiation: socket-util.c:eth_addr_compare_3way
Unexecuted instantiation: tnl-ports.c:eth_addr_compare_3way
Unexecuted instantiation: tun-metadata.c:eth_addr_compare_3way
Unexecuted instantiation: netdev-linux.c:eth_addr_compare_3way
Unexecuted instantiation: netdev-offload-tc.c:eth_addr_compare_3way
Unexecuted instantiation: rtnetlink.c:eth_addr_compare_3way
Unexecuted instantiation: route-table.c:eth_addr_compare_3way
Unexecuted instantiation: tc.c:eth_addr_compare_3way
Unexecuted instantiation: classifier.c:eth_addr_compare_3way
Unexecuted instantiation: dpif.c:eth_addr_compare_3way
Unexecuted instantiation: meta-flow.c:eth_addr_compare_3way
Unexecuted instantiation: netdev-offload.c:eth_addr_compare_3way
Unexecuted instantiation: netdev-vport.c:eth_addr_compare_3way
Unexecuted instantiation: netlink.c:eth_addr_compare_3way
Unexecuted instantiation: nx-match.c:eth_addr_compare_3way
Unexecuted instantiation: odp-execute.c:eth_addr_compare_3way
Unexecuted instantiation: odp-execute-private.c:eth_addr_compare_3way
Unexecuted instantiation: odp-util.c:eth_addr_compare_3way
Unexecuted instantiation: ofp-actions.c:eth_addr_compare_3way
Unexecuted instantiation: ofp-ct.c:eth_addr_compare_3way
Unexecuted instantiation: ofp-ed-props.c:eth_addr_compare_3way
Unexecuted instantiation: ofp-flow.c:eth_addr_compare_3way
Unexecuted instantiation: ofp-group.c:eth_addr_compare_3way
Unexecuted instantiation: ofp-meter.c:eth_addr_compare_3way
Unexecuted instantiation: ofp-monitor.c:eth_addr_compare_3way
Unexecuted instantiation: ofp-packet.c:eth_addr_compare_3way
Unexecuted instantiation: ofp-parse.c:eth_addr_compare_3way
Unexecuted instantiation: stream.c:eth_addr_compare_3way
Unexecuted instantiation: tnl-neigh-cache.c:eth_addr_compare_3way
Unexecuted instantiation: netdev-native-tnl.c:eth_addr_compare_3way
Unexecuted instantiation: stream-unix.c:eth_addr_compare_3way
Unexecuted instantiation: dpif-netlink.c:eth_addr_compare_3way
Unexecuted instantiation: dpif-netlink-rtnl.c:eth_addr_compare_3way
Unexecuted instantiation: netlink-conntrack.c:eth_addr_compare_3way
Unexecuted instantiation: stream-ssl.c:eth_addr_compare_3way
Unexecuted instantiation: bundle.c:eth_addr_compare_3way
Unexecuted instantiation: conntrack.c:eth_addr_compare_3way
Unexecuted instantiation: ct-dpif.c:eth_addr_compare_3way
Unexecuted instantiation: dpctl.c:eth_addr_compare_3way
Unexecuted instantiation: dpif-netdev.c:eth_addr_compare_3way
Unexecuted instantiation: dpif-netdev-private-dfc.c:eth_addr_compare_3way
Unexecuted instantiation: dpif-netdev-private-dpif.c:eth_addr_compare_3way
Unexecuted instantiation: dpif-netdev-private-extract.c:eth_addr_compare_3way
Unexecuted instantiation: ipf.c:eth_addr_compare_3way
Unexecuted instantiation: learn.c:eth_addr_compare_3way
Unexecuted instantiation: multipath.c:eth_addr_compare_3way
Unexecuted instantiation: stream-tcp.c:eth_addr_compare_3way
Unexecuted instantiation: conntrack-icmp.c:eth_addr_compare_3way
Unexecuted instantiation: conntrack-tcp.c:eth_addr_compare_3way
Unexecuted instantiation: conntrack-tp.c:eth_addr_compare_3way
Unexecuted instantiation: conntrack-other.c:eth_addr_compare_3way
Unexecuted instantiation: dpif-netdev-extract-study.c:eth_addr_compare_3way
Unexecuted instantiation: dpif-netdev-lookup.c:eth_addr_compare_3way
Unexecuted instantiation: dpif-netdev-lookup-autovalidator.c:eth_addr_compare_3way
Unexecuted instantiation: dpif-netdev-lookup-generic.c:eth_addr_compare_3way
264
static inline int eth_addr64_compare_3way(const struct eth_addr64 a,
265
                                          const struct eth_addr64 b)
266
0
{
267
0
    return memcmp(&a, &b, sizeof a);
268
0
}
Unexecuted instantiation: flow_extract_target.c:eth_addr64_compare_3way
Unexecuted instantiation: dp-packet.c:eth_addr64_compare_3way
Unexecuted instantiation: flow.c:eth_addr64_compare_3way
Unexecuted instantiation: match.c:eth_addr64_compare_3way
Unexecuted instantiation: netdev.c:eth_addr64_compare_3way
Unexecuted instantiation: ofp-match.c:eth_addr64_compare_3way
Unexecuted instantiation: ofp-port.c:eth_addr64_compare_3way
Unexecuted instantiation: ofp-print.c:eth_addr64_compare_3way
Unexecuted instantiation: ofp-queue.c:eth_addr64_compare_3way
Unexecuted instantiation: ofp-table.c:eth_addr64_compare_3way
Unexecuted instantiation: ofp-util.c:eth_addr64_compare_3way
Unexecuted instantiation: ovs-router.c:eth_addr64_compare_3way
Unexecuted instantiation: packets.c:eth_addr64_compare_3way
Unexecuted instantiation: smap.c:eth_addr64_compare_3way
Unexecuted instantiation: socket-util.c:eth_addr64_compare_3way
Unexecuted instantiation: tnl-ports.c:eth_addr64_compare_3way
Unexecuted instantiation: tun-metadata.c:eth_addr64_compare_3way
Unexecuted instantiation: netdev-linux.c:eth_addr64_compare_3way
Unexecuted instantiation: netdev-offload-tc.c:eth_addr64_compare_3way
Unexecuted instantiation: rtnetlink.c:eth_addr64_compare_3way
Unexecuted instantiation: route-table.c:eth_addr64_compare_3way
Unexecuted instantiation: tc.c:eth_addr64_compare_3way
Unexecuted instantiation: classifier.c:eth_addr64_compare_3way
Unexecuted instantiation: dpif.c:eth_addr64_compare_3way
Unexecuted instantiation: meta-flow.c:eth_addr64_compare_3way
Unexecuted instantiation: netdev-offload.c:eth_addr64_compare_3way
Unexecuted instantiation: netdev-vport.c:eth_addr64_compare_3way
Unexecuted instantiation: netlink.c:eth_addr64_compare_3way
Unexecuted instantiation: nx-match.c:eth_addr64_compare_3way
Unexecuted instantiation: odp-execute.c:eth_addr64_compare_3way
Unexecuted instantiation: odp-execute-private.c:eth_addr64_compare_3way
Unexecuted instantiation: odp-util.c:eth_addr64_compare_3way
Unexecuted instantiation: ofp-actions.c:eth_addr64_compare_3way
Unexecuted instantiation: ofp-ct.c:eth_addr64_compare_3way
Unexecuted instantiation: ofp-ed-props.c:eth_addr64_compare_3way
Unexecuted instantiation: ofp-flow.c:eth_addr64_compare_3way
Unexecuted instantiation: ofp-group.c:eth_addr64_compare_3way
Unexecuted instantiation: ofp-meter.c:eth_addr64_compare_3way
Unexecuted instantiation: ofp-monitor.c:eth_addr64_compare_3way
Unexecuted instantiation: ofp-packet.c:eth_addr64_compare_3way
Unexecuted instantiation: ofp-parse.c:eth_addr64_compare_3way
Unexecuted instantiation: stream.c:eth_addr64_compare_3way
Unexecuted instantiation: tnl-neigh-cache.c:eth_addr64_compare_3way
Unexecuted instantiation: netdev-native-tnl.c:eth_addr64_compare_3way
Unexecuted instantiation: stream-unix.c:eth_addr64_compare_3way
Unexecuted instantiation: dpif-netlink.c:eth_addr64_compare_3way
Unexecuted instantiation: dpif-netlink-rtnl.c:eth_addr64_compare_3way
Unexecuted instantiation: netlink-conntrack.c:eth_addr64_compare_3way
Unexecuted instantiation: stream-ssl.c:eth_addr64_compare_3way
Unexecuted instantiation: bundle.c:eth_addr64_compare_3way
Unexecuted instantiation: conntrack.c:eth_addr64_compare_3way
Unexecuted instantiation: ct-dpif.c:eth_addr64_compare_3way
Unexecuted instantiation: dpctl.c:eth_addr64_compare_3way
Unexecuted instantiation: dpif-netdev.c:eth_addr64_compare_3way
Unexecuted instantiation: dpif-netdev-private-dfc.c:eth_addr64_compare_3way
Unexecuted instantiation: dpif-netdev-private-dpif.c:eth_addr64_compare_3way
Unexecuted instantiation: dpif-netdev-private-extract.c:eth_addr64_compare_3way
Unexecuted instantiation: ipf.c:eth_addr64_compare_3way
Unexecuted instantiation: learn.c:eth_addr64_compare_3way
Unexecuted instantiation: multipath.c:eth_addr64_compare_3way
Unexecuted instantiation: stream-tcp.c:eth_addr64_compare_3way
Unexecuted instantiation: conntrack-icmp.c:eth_addr64_compare_3way
Unexecuted instantiation: conntrack-tcp.c:eth_addr64_compare_3way
Unexecuted instantiation: conntrack-tp.c:eth_addr64_compare_3way
Unexecuted instantiation: conntrack-other.c:eth_addr64_compare_3way
Unexecuted instantiation: dpif-netdev-extract-study.c:eth_addr64_compare_3way
Unexecuted instantiation: dpif-netdev-lookup.c:eth_addr64_compare_3way
Unexecuted instantiation: dpif-netdev-lookup-autovalidator.c:eth_addr64_compare_3way
Unexecuted instantiation: dpif-netdev-lookup-generic.c:eth_addr64_compare_3way
269
270
static inline bool eth_addr_equals(const struct eth_addr a,
271
                                   const struct eth_addr b)
272
0
{
273
0
    return !eth_addr_compare_3way(a, b);
274
0
}
Unexecuted instantiation: flow_extract_target.c:eth_addr_equals
Unexecuted instantiation: dp-packet.c:eth_addr_equals
Unexecuted instantiation: flow.c:eth_addr_equals
Unexecuted instantiation: match.c:eth_addr_equals
Unexecuted instantiation: netdev.c:eth_addr_equals
Unexecuted instantiation: ofp-match.c:eth_addr_equals
Unexecuted instantiation: ofp-port.c:eth_addr_equals
Unexecuted instantiation: ofp-print.c:eth_addr_equals
Unexecuted instantiation: ofp-queue.c:eth_addr_equals
Unexecuted instantiation: ofp-table.c:eth_addr_equals
Unexecuted instantiation: ofp-util.c:eth_addr_equals
Unexecuted instantiation: ovs-router.c:eth_addr_equals
Unexecuted instantiation: packets.c:eth_addr_equals
Unexecuted instantiation: smap.c:eth_addr_equals
Unexecuted instantiation: socket-util.c:eth_addr_equals
Unexecuted instantiation: tnl-ports.c:eth_addr_equals
Unexecuted instantiation: tun-metadata.c:eth_addr_equals
Unexecuted instantiation: netdev-linux.c:eth_addr_equals
Unexecuted instantiation: netdev-offload-tc.c:eth_addr_equals
Unexecuted instantiation: rtnetlink.c:eth_addr_equals
Unexecuted instantiation: route-table.c:eth_addr_equals
Unexecuted instantiation: tc.c:eth_addr_equals
Unexecuted instantiation: classifier.c:eth_addr_equals
Unexecuted instantiation: dpif.c:eth_addr_equals
Unexecuted instantiation: meta-flow.c:eth_addr_equals
Unexecuted instantiation: netdev-offload.c:eth_addr_equals
Unexecuted instantiation: netdev-vport.c:eth_addr_equals
Unexecuted instantiation: netlink.c:eth_addr_equals
Unexecuted instantiation: nx-match.c:eth_addr_equals
Unexecuted instantiation: odp-execute.c:eth_addr_equals
Unexecuted instantiation: odp-execute-private.c:eth_addr_equals
Unexecuted instantiation: odp-util.c:eth_addr_equals
Unexecuted instantiation: ofp-actions.c:eth_addr_equals
Unexecuted instantiation: ofp-ct.c:eth_addr_equals
Unexecuted instantiation: ofp-ed-props.c:eth_addr_equals
Unexecuted instantiation: ofp-flow.c:eth_addr_equals
Unexecuted instantiation: ofp-group.c:eth_addr_equals
Unexecuted instantiation: ofp-meter.c:eth_addr_equals
Unexecuted instantiation: ofp-monitor.c:eth_addr_equals
Unexecuted instantiation: ofp-packet.c:eth_addr_equals
Unexecuted instantiation: ofp-parse.c:eth_addr_equals
Unexecuted instantiation: stream.c:eth_addr_equals
Unexecuted instantiation: tnl-neigh-cache.c:eth_addr_equals
Unexecuted instantiation: netdev-native-tnl.c:eth_addr_equals
Unexecuted instantiation: stream-unix.c:eth_addr_equals
Unexecuted instantiation: dpif-netlink.c:eth_addr_equals
Unexecuted instantiation: dpif-netlink-rtnl.c:eth_addr_equals
Unexecuted instantiation: netlink-conntrack.c:eth_addr_equals
Unexecuted instantiation: stream-ssl.c:eth_addr_equals
Unexecuted instantiation: bundle.c:eth_addr_equals
Unexecuted instantiation: conntrack.c:eth_addr_equals
Unexecuted instantiation: ct-dpif.c:eth_addr_equals
Unexecuted instantiation: dpctl.c:eth_addr_equals
Unexecuted instantiation: dpif-netdev.c:eth_addr_equals
Unexecuted instantiation: dpif-netdev-private-dfc.c:eth_addr_equals
Unexecuted instantiation: dpif-netdev-private-dpif.c:eth_addr_equals
Unexecuted instantiation: dpif-netdev-private-extract.c:eth_addr_equals
Unexecuted instantiation: ipf.c:eth_addr_equals
Unexecuted instantiation: learn.c:eth_addr_equals
Unexecuted instantiation: multipath.c:eth_addr_equals
Unexecuted instantiation: stream-tcp.c:eth_addr_equals
Unexecuted instantiation: conntrack-icmp.c:eth_addr_equals
Unexecuted instantiation: conntrack-tcp.c:eth_addr_equals
Unexecuted instantiation: conntrack-tp.c:eth_addr_equals
Unexecuted instantiation: conntrack-other.c:eth_addr_equals
Unexecuted instantiation: dpif-netdev-extract-study.c:eth_addr_equals
Unexecuted instantiation: dpif-netdev-lookup.c:eth_addr_equals
Unexecuted instantiation: dpif-netdev-lookup-autovalidator.c:eth_addr_equals
Unexecuted instantiation: dpif-netdev-lookup-generic.c:eth_addr_equals
275
static inline bool eth_addr64_equals(const struct eth_addr64 a,
276
                                     const struct eth_addr64 b)
277
0
{
278
0
    return !eth_addr64_compare_3way(a, b);
279
0
}
Unexecuted instantiation: flow_extract_target.c:eth_addr64_equals
Unexecuted instantiation: dp-packet.c:eth_addr64_equals
Unexecuted instantiation: flow.c:eth_addr64_equals
Unexecuted instantiation: match.c:eth_addr64_equals
Unexecuted instantiation: netdev.c:eth_addr64_equals
Unexecuted instantiation: ofp-match.c:eth_addr64_equals
Unexecuted instantiation: ofp-port.c:eth_addr64_equals
Unexecuted instantiation: ofp-print.c:eth_addr64_equals
Unexecuted instantiation: ofp-queue.c:eth_addr64_equals
Unexecuted instantiation: ofp-table.c:eth_addr64_equals
Unexecuted instantiation: ofp-util.c:eth_addr64_equals
Unexecuted instantiation: ovs-router.c:eth_addr64_equals
Unexecuted instantiation: packets.c:eth_addr64_equals
Unexecuted instantiation: smap.c:eth_addr64_equals
Unexecuted instantiation: socket-util.c:eth_addr64_equals
Unexecuted instantiation: tnl-ports.c:eth_addr64_equals
Unexecuted instantiation: tun-metadata.c:eth_addr64_equals
Unexecuted instantiation: netdev-linux.c:eth_addr64_equals
Unexecuted instantiation: netdev-offload-tc.c:eth_addr64_equals
Unexecuted instantiation: rtnetlink.c:eth_addr64_equals
Unexecuted instantiation: route-table.c:eth_addr64_equals
Unexecuted instantiation: tc.c:eth_addr64_equals
Unexecuted instantiation: classifier.c:eth_addr64_equals
Unexecuted instantiation: dpif.c:eth_addr64_equals
Unexecuted instantiation: meta-flow.c:eth_addr64_equals
Unexecuted instantiation: netdev-offload.c:eth_addr64_equals
Unexecuted instantiation: netdev-vport.c:eth_addr64_equals
Unexecuted instantiation: netlink.c:eth_addr64_equals
Unexecuted instantiation: nx-match.c:eth_addr64_equals
Unexecuted instantiation: odp-execute.c:eth_addr64_equals
Unexecuted instantiation: odp-execute-private.c:eth_addr64_equals
Unexecuted instantiation: odp-util.c:eth_addr64_equals
Unexecuted instantiation: ofp-actions.c:eth_addr64_equals
Unexecuted instantiation: ofp-ct.c:eth_addr64_equals
Unexecuted instantiation: ofp-ed-props.c:eth_addr64_equals
Unexecuted instantiation: ofp-flow.c:eth_addr64_equals
Unexecuted instantiation: ofp-group.c:eth_addr64_equals
Unexecuted instantiation: ofp-meter.c:eth_addr64_equals
Unexecuted instantiation: ofp-monitor.c:eth_addr64_equals
Unexecuted instantiation: ofp-packet.c:eth_addr64_equals
Unexecuted instantiation: ofp-parse.c:eth_addr64_equals
Unexecuted instantiation: stream.c:eth_addr64_equals
Unexecuted instantiation: tnl-neigh-cache.c:eth_addr64_equals
Unexecuted instantiation: netdev-native-tnl.c:eth_addr64_equals
Unexecuted instantiation: stream-unix.c:eth_addr64_equals
Unexecuted instantiation: dpif-netlink.c:eth_addr64_equals
Unexecuted instantiation: dpif-netlink-rtnl.c:eth_addr64_equals
Unexecuted instantiation: netlink-conntrack.c:eth_addr64_equals
Unexecuted instantiation: stream-ssl.c:eth_addr64_equals
Unexecuted instantiation: bundle.c:eth_addr64_equals
Unexecuted instantiation: conntrack.c:eth_addr64_equals
Unexecuted instantiation: ct-dpif.c:eth_addr64_equals
Unexecuted instantiation: dpctl.c:eth_addr64_equals
Unexecuted instantiation: dpif-netdev.c:eth_addr64_equals
Unexecuted instantiation: dpif-netdev-private-dfc.c:eth_addr64_equals
Unexecuted instantiation: dpif-netdev-private-dpif.c:eth_addr64_equals
Unexecuted instantiation: dpif-netdev-private-extract.c:eth_addr64_equals
Unexecuted instantiation: ipf.c:eth_addr64_equals
Unexecuted instantiation: learn.c:eth_addr64_equals
Unexecuted instantiation: multipath.c:eth_addr64_equals
Unexecuted instantiation: stream-tcp.c:eth_addr64_equals
Unexecuted instantiation: conntrack-icmp.c:eth_addr64_equals
Unexecuted instantiation: conntrack-tcp.c:eth_addr64_equals
Unexecuted instantiation: conntrack-tp.c:eth_addr64_equals
Unexecuted instantiation: conntrack-other.c:eth_addr64_equals
Unexecuted instantiation: dpif-netdev-extract-study.c:eth_addr64_equals
Unexecuted instantiation: dpif-netdev-lookup.c:eth_addr64_equals
Unexecuted instantiation: dpif-netdev-lookup-autovalidator.c:eth_addr64_equals
Unexecuted instantiation: dpif-netdev-lookup-generic.c:eth_addr64_equals
280
281
static inline bool eth_addr_equal_except(const struct eth_addr a,
282
                                         const struct eth_addr b,
283
                                         const struct eth_addr mask)
284
0
{
285
0
    return !(((a.be16[0] ^ b.be16[0]) & mask.be16[0])
286
0
             || ((a.be16[1] ^ b.be16[1]) & mask.be16[1])
287
0
             || ((a.be16[2] ^ b.be16[2]) & mask.be16[2]));
288
0
}
Unexecuted instantiation: flow_extract_target.c:eth_addr_equal_except
Unexecuted instantiation: dp-packet.c:eth_addr_equal_except
Unexecuted instantiation: flow.c:eth_addr_equal_except
Unexecuted instantiation: match.c:eth_addr_equal_except
Unexecuted instantiation: netdev.c:eth_addr_equal_except
Unexecuted instantiation: ofp-match.c:eth_addr_equal_except
Unexecuted instantiation: ofp-port.c:eth_addr_equal_except
Unexecuted instantiation: ofp-print.c:eth_addr_equal_except
Unexecuted instantiation: ofp-queue.c:eth_addr_equal_except
Unexecuted instantiation: ofp-table.c:eth_addr_equal_except
Unexecuted instantiation: ofp-util.c:eth_addr_equal_except
Unexecuted instantiation: ovs-router.c:eth_addr_equal_except
Unexecuted instantiation: packets.c:eth_addr_equal_except
Unexecuted instantiation: smap.c:eth_addr_equal_except
Unexecuted instantiation: socket-util.c:eth_addr_equal_except
Unexecuted instantiation: tnl-ports.c:eth_addr_equal_except
Unexecuted instantiation: tun-metadata.c:eth_addr_equal_except
Unexecuted instantiation: netdev-linux.c:eth_addr_equal_except
Unexecuted instantiation: netdev-offload-tc.c:eth_addr_equal_except
Unexecuted instantiation: rtnetlink.c:eth_addr_equal_except
Unexecuted instantiation: route-table.c:eth_addr_equal_except
Unexecuted instantiation: tc.c:eth_addr_equal_except
Unexecuted instantiation: classifier.c:eth_addr_equal_except
Unexecuted instantiation: dpif.c:eth_addr_equal_except
Unexecuted instantiation: meta-flow.c:eth_addr_equal_except
Unexecuted instantiation: netdev-offload.c:eth_addr_equal_except
Unexecuted instantiation: netdev-vport.c:eth_addr_equal_except
Unexecuted instantiation: netlink.c:eth_addr_equal_except
Unexecuted instantiation: nx-match.c:eth_addr_equal_except
Unexecuted instantiation: odp-execute.c:eth_addr_equal_except
Unexecuted instantiation: odp-execute-private.c:eth_addr_equal_except
Unexecuted instantiation: odp-util.c:eth_addr_equal_except
Unexecuted instantiation: ofp-actions.c:eth_addr_equal_except
Unexecuted instantiation: ofp-ct.c:eth_addr_equal_except
Unexecuted instantiation: ofp-ed-props.c:eth_addr_equal_except
Unexecuted instantiation: ofp-flow.c:eth_addr_equal_except
Unexecuted instantiation: ofp-group.c:eth_addr_equal_except
Unexecuted instantiation: ofp-meter.c:eth_addr_equal_except
Unexecuted instantiation: ofp-monitor.c:eth_addr_equal_except
Unexecuted instantiation: ofp-packet.c:eth_addr_equal_except
Unexecuted instantiation: ofp-parse.c:eth_addr_equal_except
Unexecuted instantiation: stream.c:eth_addr_equal_except
Unexecuted instantiation: tnl-neigh-cache.c:eth_addr_equal_except
Unexecuted instantiation: netdev-native-tnl.c:eth_addr_equal_except
Unexecuted instantiation: stream-unix.c:eth_addr_equal_except
Unexecuted instantiation: dpif-netlink.c:eth_addr_equal_except
Unexecuted instantiation: dpif-netlink-rtnl.c:eth_addr_equal_except
Unexecuted instantiation: netlink-conntrack.c:eth_addr_equal_except
Unexecuted instantiation: stream-ssl.c:eth_addr_equal_except
Unexecuted instantiation: bundle.c:eth_addr_equal_except
Unexecuted instantiation: conntrack.c:eth_addr_equal_except
Unexecuted instantiation: ct-dpif.c:eth_addr_equal_except
Unexecuted instantiation: dpctl.c:eth_addr_equal_except
Unexecuted instantiation: dpif-netdev.c:eth_addr_equal_except
Unexecuted instantiation: dpif-netdev-private-dfc.c:eth_addr_equal_except
Unexecuted instantiation: dpif-netdev-private-dpif.c:eth_addr_equal_except
Unexecuted instantiation: dpif-netdev-private-extract.c:eth_addr_equal_except
Unexecuted instantiation: ipf.c:eth_addr_equal_except
Unexecuted instantiation: learn.c:eth_addr_equal_except
Unexecuted instantiation: multipath.c:eth_addr_equal_except
Unexecuted instantiation: stream-tcp.c:eth_addr_equal_except
Unexecuted instantiation: conntrack-icmp.c:eth_addr_equal_except
Unexecuted instantiation: conntrack-tcp.c:eth_addr_equal_except
Unexecuted instantiation: conntrack-tp.c:eth_addr_equal_except
Unexecuted instantiation: conntrack-other.c:eth_addr_equal_except
Unexecuted instantiation: dpif-netdev-extract-study.c:eth_addr_equal_except
Unexecuted instantiation: dpif-netdev-lookup.c:eth_addr_equal_except
Unexecuted instantiation: dpif-netdev-lookup-autovalidator.c:eth_addr_equal_except
Unexecuted instantiation: dpif-netdev-lookup-generic.c:eth_addr_equal_except
289
290
uint64_t eth_addr_to_uint64(const struct eth_addr ea);
291
292
static inline uint64_t eth_addr_vlan_to_uint64(const struct eth_addr ea,
293
                                               uint16_t vlan)
294
0
{
295
0
    return (((uint64_t)vlan << 48) | eth_addr_to_uint64(ea));
296
0
}
Unexecuted instantiation: flow_extract_target.c:eth_addr_vlan_to_uint64
Unexecuted instantiation: dp-packet.c:eth_addr_vlan_to_uint64
Unexecuted instantiation: flow.c:eth_addr_vlan_to_uint64
Unexecuted instantiation: match.c:eth_addr_vlan_to_uint64
Unexecuted instantiation: netdev.c:eth_addr_vlan_to_uint64
Unexecuted instantiation: ofp-match.c:eth_addr_vlan_to_uint64
Unexecuted instantiation: ofp-port.c:eth_addr_vlan_to_uint64
Unexecuted instantiation: ofp-print.c:eth_addr_vlan_to_uint64
Unexecuted instantiation: ofp-queue.c:eth_addr_vlan_to_uint64
Unexecuted instantiation: ofp-table.c:eth_addr_vlan_to_uint64
Unexecuted instantiation: ofp-util.c:eth_addr_vlan_to_uint64
Unexecuted instantiation: ovs-router.c:eth_addr_vlan_to_uint64
Unexecuted instantiation: packets.c:eth_addr_vlan_to_uint64
Unexecuted instantiation: smap.c:eth_addr_vlan_to_uint64
Unexecuted instantiation: socket-util.c:eth_addr_vlan_to_uint64
Unexecuted instantiation: tnl-ports.c:eth_addr_vlan_to_uint64
Unexecuted instantiation: tun-metadata.c:eth_addr_vlan_to_uint64
Unexecuted instantiation: netdev-linux.c:eth_addr_vlan_to_uint64
Unexecuted instantiation: netdev-offload-tc.c:eth_addr_vlan_to_uint64
Unexecuted instantiation: rtnetlink.c:eth_addr_vlan_to_uint64
Unexecuted instantiation: route-table.c:eth_addr_vlan_to_uint64
Unexecuted instantiation: tc.c:eth_addr_vlan_to_uint64
Unexecuted instantiation: classifier.c:eth_addr_vlan_to_uint64
Unexecuted instantiation: dpif.c:eth_addr_vlan_to_uint64
Unexecuted instantiation: meta-flow.c:eth_addr_vlan_to_uint64
Unexecuted instantiation: netdev-offload.c:eth_addr_vlan_to_uint64
Unexecuted instantiation: netdev-vport.c:eth_addr_vlan_to_uint64
Unexecuted instantiation: netlink.c:eth_addr_vlan_to_uint64
Unexecuted instantiation: nx-match.c:eth_addr_vlan_to_uint64
Unexecuted instantiation: odp-execute.c:eth_addr_vlan_to_uint64
Unexecuted instantiation: odp-execute-private.c:eth_addr_vlan_to_uint64
Unexecuted instantiation: odp-util.c:eth_addr_vlan_to_uint64
Unexecuted instantiation: ofp-actions.c:eth_addr_vlan_to_uint64
Unexecuted instantiation: ofp-ct.c:eth_addr_vlan_to_uint64
Unexecuted instantiation: ofp-ed-props.c:eth_addr_vlan_to_uint64
Unexecuted instantiation: ofp-flow.c:eth_addr_vlan_to_uint64
Unexecuted instantiation: ofp-group.c:eth_addr_vlan_to_uint64
Unexecuted instantiation: ofp-meter.c:eth_addr_vlan_to_uint64
Unexecuted instantiation: ofp-monitor.c:eth_addr_vlan_to_uint64
Unexecuted instantiation: ofp-packet.c:eth_addr_vlan_to_uint64
Unexecuted instantiation: ofp-parse.c:eth_addr_vlan_to_uint64
Unexecuted instantiation: stream.c:eth_addr_vlan_to_uint64
Unexecuted instantiation: tnl-neigh-cache.c:eth_addr_vlan_to_uint64
Unexecuted instantiation: netdev-native-tnl.c:eth_addr_vlan_to_uint64
Unexecuted instantiation: stream-unix.c:eth_addr_vlan_to_uint64
Unexecuted instantiation: dpif-netlink.c:eth_addr_vlan_to_uint64
Unexecuted instantiation: dpif-netlink-rtnl.c:eth_addr_vlan_to_uint64
Unexecuted instantiation: netlink-conntrack.c:eth_addr_vlan_to_uint64
Unexecuted instantiation: stream-ssl.c:eth_addr_vlan_to_uint64
Unexecuted instantiation: bundle.c:eth_addr_vlan_to_uint64
Unexecuted instantiation: conntrack.c:eth_addr_vlan_to_uint64
Unexecuted instantiation: ct-dpif.c:eth_addr_vlan_to_uint64
Unexecuted instantiation: dpctl.c:eth_addr_vlan_to_uint64
Unexecuted instantiation: dpif-netdev.c:eth_addr_vlan_to_uint64
Unexecuted instantiation: dpif-netdev-private-dfc.c:eth_addr_vlan_to_uint64
Unexecuted instantiation: dpif-netdev-private-dpif.c:eth_addr_vlan_to_uint64
Unexecuted instantiation: dpif-netdev-private-extract.c:eth_addr_vlan_to_uint64
Unexecuted instantiation: ipf.c:eth_addr_vlan_to_uint64
Unexecuted instantiation: learn.c:eth_addr_vlan_to_uint64
Unexecuted instantiation: multipath.c:eth_addr_vlan_to_uint64
Unexecuted instantiation: stream-tcp.c:eth_addr_vlan_to_uint64
Unexecuted instantiation: conntrack-icmp.c:eth_addr_vlan_to_uint64
Unexecuted instantiation: conntrack-tcp.c:eth_addr_vlan_to_uint64
Unexecuted instantiation: conntrack-tp.c:eth_addr_vlan_to_uint64
Unexecuted instantiation: conntrack-other.c:eth_addr_vlan_to_uint64
Unexecuted instantiation: dpif-netdev-extract-study.c:eth_addr_vlan_to_uint64
Unexecuted instantiation: dpif-netdev-lookup.c:eth_addr_vlan_to_uint64
Unexecuted instantiation: dpif-netdev-lookup-autovalidator.c:eth_addr_vlan_to_uint64
Unexecuted instantiation: dpif-netdev-lookup-generic.c:eth_addr_vlan_to_uint64
297
298
void eth_addr_from_uint64(uint64_t x, struct eth_addr *ea);
299
300
static inline struct eth_addr eth_addr_invert(const struct eth_addr src)
301
0
{
302
0
    struct eth_addr dst;
303
304
0
    for (int i = 0; i < ARRAY_SIZE(src.be16); i++) {
305
0
        dst.be16[i] = ~src.be16[i];
306
0
    }
307
308
0
    return dst;
309
0
}
Unexecuted instantiation: flow_extract_target.c:eth_addr_invert
Unexecuted instantiation: dp-packet.c:eth_addr_invert
Unexecuted instantiation: flow.c:eth_addr_invert
Unexecuted instantiation: match.c:eth_addr_invert
Unexecuted instantiation: netdev.c:eth_addr_invert
Unexecuted instantiation: ofp-match.c:eth_addr_invert
Unexecuted instantiation: ofp-port.c:eth_addr_invert
Unexecuted instantiation: ofp-print.c:eth_addr_invert
Unexecuted instantiation: ofp-queue.c:eth_addr_invert
Unexecuted instantiation: ofp-table.c:eth_addr_invert
Unexecuted instantiation: ofp-util.c:eth_addr_invert
Unexecuted instantiation: ovs-router.c:eth_addr_invert
Unexecuted instantiation: packets.c:eth_addr_invert
Unexecuted instantiation: smap.c:eth_addr_invert
Unexecuted instantiation: socket-util.c:eth_addr_invert
Unexecuted instantiation: tnl-ports.c:eth_addr_invert
Unexecuted instantiation: tun-metadata.c:eth_addr_invert
Unexecuted instantiation: netdev-linux.c:eth_addr_invert
Unexecuted instantiation: netdev-offload-tc.c:eth_addr_invert
Unexecuted instantiation: rtnetlink.c:eth_addr_invert
Unexecuted instantiation: route-table.c:eth_addr_invert
Unexecuted instantiation: tc.c:eth_addr_invert
Unexecuted instantiation: classifier.c:eth_addr_invert
Unexecuted instantiation: dpif.c:eth_addr_invert
Unexecuted instantiation: meta-flow.c:eth_addr_invert
Unexecuted instantiation: netdev-offload.c:eth_addr_invert
Unexecuted instantiation: netdev-vport.c:eth_addr_invert
Unexecuted instantiation: netlink.c:eth_addr_invert
Unexecuted instantiation: nx-match.c:eth_addr_invert
Unexecuted instantiation: odp-execute.c:eth_addr_invert
Unexecuted instantiation: odp-execute-private.c:eth_addr_invert
Unexecuted instantiation: odp-util.c:eth_addr_invert
Unexecuted instantiation: ofp-actions.c:eth_addr_invert
Unexecuted instantiation: ofp-ct.c:eth_addr_invert
Unexecuted instantiation: ofp-ed-props.c:eth_addr_invert
Unexecuted instantiation: ofp-flow.c:eth_addr_invert
Unexecuted instantiation: ofp-group.c:eth_addr_invert
Unexecuted instantiation: ofp-meter.c:eth_addr_invert
Unexecuted instantiation: ofp-monitor.c:eth_addr_invert
Unexecuted instantiation: ofp-packet.c:eth_addr_invert
Unexecuted instantiation: ofp-parse.c:eth_addr_invert
Unexecuted instantiation: stream.c:eth_addr_invert
Unexecuted instantiation: tnl-neigh-cache.c:eth_addr_invert
Unexecuted instantiation: netdev-native-tnl.c:eth_addr_invert
Unexecuted instantiation: stream-unix.c:eth_addr_invert
Unexecuted instantiation: dpif-netlink.c:eth_addr_invert
Unexecuted instantiation: dpif-netlink-rtnl.c:eth_addr_invert
Unexecuted instantiation: netlink-conntrack.c:eth_addr_invert
Unexecuted instantiation: stream-ssl.c:eth_addr_invert
Unexecuted instantiation: bundle.c:eth_addr_invert
Unexecuted instantiation: conntrack.c:eth_addr_invert
Unexecuted instantiation: ct-dpif.c:eth_addr_invert
Unexecuted instantiation: dpctl.c:eth_addr_invert
Unexecuted instantiation: dpif-netdev.c:eth_addr_invert
Unexecuted instantiation: dpif-netdev-private-dfc.c:eth_addr_invert
Unexecuted instantiation: dpif-netdev-private-dpif.c:eth_addr_invert
Unexecuted instantiation: dpif-netdev-private-extract.c:eth_addr_invert
Unexecuted instantiation: ipf.c:eth_addr_invert
Unexecuted instantiation: learn.c:eth_addr_invert
Unexecuted instantiation: multipath.c:eth_addr_invert
Unexecuted instantiation: stream-tcp.c:eth_addr_invert
Unexecuted instantiation: conntrack-icmp.c:eth_addr_invert
Unexecuted instantiation: conntrack-tcp.c:eth_addr_invert
Unexecuted instantiation: conntrack-tp.c:eth_addr_invert
Unexecuted instantiation: conntrack-other.c:eth_addr_invert
Unexecuted instantiation: dpif-netdev-extract-study.c:eth_addr_invert
Unexecuted instantiation: dpif-netdev-lookup.c:eth_addr_invert
Unexecuted instantiation: dpif-netdev-lookup-autovalidator.c:eth_addr_invert
Unexecuted instantiation: dpif-netdev-lookup-generic.c:eth_addr_invert
310
311
void eth_addr_mark_random(struct eth_addr *ea);
312
313
static inline void eth_addr_random(struct eth_addr *ea)
314
0
{
315
0
    random_bytes((uint8_t *)ea, sizeof *ea);
316
0
    eth_addr_mark_random(ea);
317
0
}
Unexecuted instantiation: flow_extract_target.c:eth_addr_random
Unexecuted instantiation: dp-packet.c:eth_addr_random
Unexecuted instantiation: flow.c:eth_addr_random
Unexecuted instantiation: match.c:eth_addr_random
Unexecuted instantiation: netdev.c:eth_addr_random
Unexecuted instantiation: ofp-match.c:eth_addr_random
Unexecuted instantiation: ofp-port.c:eth_addr_random
Unexecuted instantiation: ofp-print.c:eth_addr_random
Unexecuted instantiation: ofp-queue.c:eth_addr_random
Unexecuted instantiation: ofp-table.c:eth_addr_random
Unexecuted instantiation: ofp-util.c:eth_addr_random
Unexecuted instantiation: ovs-router.c:eth_addr_random
Unexecuted instantiation: packets.c:eth_addr_random
Unexecuted instantiation: smap.c:eth_addr_random
Unexecuted instantiation: socket-util.c:eth_addr_random
Unexecuted instantiation: tnl-ports.c:eth_addr_random
Unexecuted instantiation: tun-metadata.c:eth_addr_random
Unexecuted instantiation: netdev-linux.c:eth_addr_random
Unexecuted instantiation: netdev-offload-tc.c:eth_addr_random
Unexecuted instantiation: rtnetlink.c:eth_addr_random
Unexecuted instantiation: route-table.c:eth_addr_random
Unexecuted instantiation: tc.c:eth_addr_random
Unexecuted instantiation: classifier.c:eth_addr_random
Unexecuted instantiation: dpif.c:eth_addr_random
Unexecuted instantiation: meta-flow.c:eth_addr_random
Unexecuted instantiation: netdev-offload.c:eth_addr_random
Unexecuted instantiation: netdev-vport.c:eth_addr_random
Unexecuted instantiation: netlink.c:eth_addr_random
Unexecuted instantiation: nx-match.c:eth_addr_random
Unexecuted instantiation: odp-execute.c:eth_addr_random
Unexecuted instantiation: odp-execute-private.c:eth_addr_random
Unexecuted instantiation: odp-util.c:eth_addr_random
Unexecuted instantiation: ofp-actions.c:eth_addr_random
Unexecuted instantiation: ofp-ct.c:eth_addr_random
Unexecuted instantiation: ofp-ed-props.c:eth_addr_random
Unexecuted instantiation: ofp-flow.c:eth_addr_random
Unexecuted instantiation: ofp-group.c:eth_addr_random
Unexecuted instantiation: ofp-meter.c:eth_addr_random
Unexecuted instantiation: ofp-monitor.c:eth_addr_random
Unexecuted instantiation: ofp-packet.c:eth_addr_random
Unexecuted instantiation: ofp-parse.c:eth_addr_random
Unexecuted instantiation: stream.c:eth_addr_random
Unexecuted instantiation: tnl-neigh-cache.c:eth_addr_random
Unexecuted instantiation: netdev-native-tnl.c:eth_addr_random
Unexecuted instantiation: stream-unix.c:eth_addr_random
Unexecuted instantiation: dpif-netlink.c:eth_addr_random
Unexecuted instantiation: dpif-netlink-rtnl.c:eth_addr_random
Unexecuted instantiation: netlink-conntrack.c:eth_addr_random
Unexecuted instantiation: stream-ssl.c:eth_addr_random
Unexecuted instantiation: bundle.c:eth_addr_random
Unexecuted instantiation: conntrack.c:eth_addr_random
Unexecuted instantiation: ct-dpif.c:eth_addr_random
Unexecuted instantiation: dpctl.c:eth_addr_random
Unexecuted instantiation: dpif-netdev.c:eth_addr_random
Unexecuted instantiation: dpif-netdev-private-dfc.c:eth_addr_random
Unexecuted instantiation: dpif-netdev-private-dpif.c:eth_addr_random
Unexecuted instantiation: dpif-netdev-private-extract.c:eth_addr_random
Unexecuted instantiation: ipf.c:eth_addr_random
Unexecuted instantiation: learn.c:eth_addr_random
Unexecuted instantiation: multipath.c:eth_addr_random
Unexecuted instantiation: stream-tcp.c:eth_addr_random
Unexecuted instantiation: conntrack-icmp.c:eth_addr_random
Unexecuted instantiation: conntrack-tcp.c:eth_addr_random
Unexecuted instantiation: conntrack-tp.c:eth_addr_random
Unexecuted instantiation: conntrack-other.c:eth_addr_random
Unexecuted instantiation: dpif-netdev-extract-study.c:eth_addr_random
Unexecuted instantiation: dpif-netdev-lookup.c:eth_addr_random
Unexecuted instantiation: dpif-netdev-lookup-autovalidator.c:eth_addr_random
Unexecuted instantiation: dpif-netdev-lookup-generic.c:eth_addr_random
318
319
static inline void eth_addr_nicira_random(struct eth_addr *ea)
320
0
{
321
0
    eth_addr_random(ea);
322
0
323
0
    /* Set the OUI to the Nicira one. */
324
0
    ea->ea[0] = 0x00;
325
0
    ea->ea[1] = 0x23;
326
0
    ea->ea[2] = 0x20;
327
0
328
0
    /* Set the top bit to indicate random Nicira address. */
329
0
    ea->ea[3] |= 0x80;
330
0
}
Unexecuted instantiation: flow_extract_target.c:eth_addr_nicira_random
Unexecuted instantiation: dp-packet.c:eth_addr_nicira_random
Unexecuted instantiation: flow.c:eth_addr_nicira_random
Unexecuted instantiation: match.c:eth_addr_nicira_random
Unexecuted instantiation: netdev.c:eth_addr_nicira_random
Unexecuted instantiation: ofp-match.c:eth_addr_nicira_random
Unexecuted instantiation: ofp-port.c:eth_addr_nicira_random
Unexecuted instantiation: ofp-print.c:eth_addr_nicira_random
Unexecuted instantiation: ofp-queue.c:eth_addr_nicira_random
Unexecuted instantiation: ofp-table.c:eth_addr_nicira_random
Unexecuted instantiation: ofp-util.c:eth_addr_nicira_random
Unexecuted instantiation: ovs-router.c:eth_addr_nicira_random
Unexecuted instantiation: packets.c:eth_addr_nicira_random
Unexecuted instantiation: smap.c:eth_addr_nicira_random
Unexecuted instantiation: socket-util.c:eth_addr_nicira_random
Unexecuted instantiation: tnl-ports.c:eth_addr_nicira_random
Unexecuted instantiation: tun-metadata.c:eth_addr_nicira_random
Unexecuted instantiation: netdev-linux.c:eth_addr_nicira_random
Unexecuted instantiation: netdev-offload-tc.c:eth_addr_nicira_random
Unexecuted instantiation: rtnetlink.c:eth_addr_nicira_random
Unexecuted instantiation: route-table.c:eth_addr_nicira_random
Unexecuted instantiation: tc.c:eth_addr_nicira_random
Unexecuted instantiation: classifier.c:eth_addr_nicira_random
Unexecuted instantiation: dpif.c:eth_addr_nicira_random
Unexecuted instantiation: meta-flow.c:eth_addr_nicira_random
Unexecuted instantiation: netdev-offload.c:eth_addr_nicira_random
Unexecuted instantiation: netdev-vport.c:eth_addr_nicira_random
Unexecuted instantiation: netlink.c:eth_addr_nicira_random
Unexecuted instantiation: nx-match.c:eth_addr_nicira_random
Unexecuted instantiation: odp-execute.c:eth_addr_nicira_random
Unexecuted instantiation: odp-execute-private.c:eth_addr_nicira_random
Unexecuted instantiation: odp-util.c:eth_addr_nicira_random
Unexecuted instantiation: ofp-actions.c:eth_addr_nicira_random
Unexecuted instantiation: ofp-ct.c:eth_addr_nicira_random
Unexecuted instantiation: ofp-ed-props.c:eth_addr_nicira_random
Unexecuted instantiation: ofp-flow.c:eth_addr_nicira_random
Unexecuted instantiation: ofp-group.c:eth_addr_nicira_random
Unexecuted instantiation: ofp-meter.c:eth_addr_nicira_random
Unexecuted instantiation: ofp-monitor.c:eth_addr_nicira_random
Unexecuted instantiation: ofp-packet.c:eth_addr_nicira_random
Unexecuted instantiation: ofp-parse.c:eth_addr_nicira_random
Unexecuted instantiation: stream.c:eth_addr_nicira_random
Unexecuted instantiation: tnl-neigh-cache.c:eth_addr_nicira_random
Unexecuted instantiation: netdev-native-tnl.c:eth_addr_nicira_random
Unexecuted instantiation: stream-unix.c:eth_addr_nicira_random
Unexecuted instantiation: dpif-netlink.c:eth_addr_nicira_random
Unexecuted instantiation: dpif-netlink-rtnl.c:eth_addr_nicira_random
Unexecuted instantiation: netlink-conntrack.c:eth_addr_nicira_random
Unexecuted instantiation: stream-ssl.c:eth_addr_nicira_random
Unexecuted instantiation: bundle.c:eth_addr_nicira_random
Unexecuted instantiation: conntrack.c:eth_addr_nicira_random
Unexecuted instantiation: ct-dpif.c:eth_addr_nicira_random
Unexecuted instantiation: dpctl.c:eth_addr_nicira_random
Unexecuted instantiation: dpif-netdev.c:eth_addr_nicira_random
Unexecuted instantiation: dpif-netdev-private-dfc.c:eth_addr_nicira_random
Unexecuted instantiation: dpif-netdev-private-dpif.c:eth_addr_nicira_random
Unexecuted instantiation: dpif-netdev-private-extract.c:eth_addr_nicira_random
Unexecuted instantiation: ipf.c:eth_addr_nicira_random
Unexecuted instantiation: learn.c:eth_addr_nicira_random
Unexecuted instantiation: multipath.c:eth_addr_nicira_random
Unexecuted instantiation: stream-tcp.c:eth_addr_nicira_random
Unexecuted instantiation: conntrack-icmp.c:eth_addr_nicira_random
Unexecuted instantiation: conntrack-tcp.c:eth_addr_nicira_random
Unexecuted instantiation: conntrack-tp.c:eth_addr_nicira_random
Unexecuted instantiation: conntrack-other.c:eth_addr_nicira_random
Unexecuted instantiation: dpif-netdev-extract-study.c:eth_addr_nicira_random
Unexecuted instantiation: dpif-netdev-lookup.c:eth_addr_nicira_random
Unexecuted instantiation: dpif-netdev-lookup-autovalidator.c:eth_addr_nicira_random
Unexecuted instantiation: dpif-netdev-lookup-generic.c:eth_addr_nicira_random
331
static inline uint32_t hash_mac(const struct eth_addr ea,
332
                                const uint16_t vlan, const uint32_t basis)
333
0
{
334
0
    return hash_uint64_basis(eth_addr_vlan_to_uint64(ea, vlan), basis);
335
0
}
Unexecuted instantiation: flow_extract_target.c:hash_mac
Unexecuted instantiation: dp-packet.c:hash_mac
Unexecuted instantiation: flow.c:hash_mac
Unexecuted instantiation: match.c:hash_mac
Unexecuted instantiation: netdev.c:hash_mac
Unexecuted instantiation: ofp-match.c:hash_mac
Unexecuted instantiation: ofp-port.c:hash_mac
Unexecuted instantiation: ofp-print.c:hash_mac
Unexecuted instantiation: ofp-queue.c:hash_mac
Unexecuted instantiation: ofp-table.c:hash_mac
Unexecuted instantiation: ofp-util.c:hash_mac
Unexecuted instantiation: ovs-router.c:hash_mac
Unexecuted instantiation: packets.c:hash_mac
Unexecuted instantiation: smap.c:hash_mac
Unexecuted instantiation: socket-util.c:hash_mac
Unexecuted instantiation: tnl-ports.c:hash_mac
Unexecuted instantiation: tun-metadata.c:hash_mac
Unexecuted instantiation: netdev-linux.c:hash_mac
Unexecuted instantiation: netdev-offload-tc.c:hash_mac
Unexecuted instantiation: rtnetlink.c:hash_mac
Unexecuted instantiation: route-table.c:hash_mac
Unexecuted instantiation: tc.c:hash_mac
Unexecuted instantiation: classifier.c:hash_mac
Unexecuted instantiation: dpif.c:hash_mac
Unexecuted instantiation: meta-flow.c:hash_mac
Unexecuted instantiation: netdev-offload.c:hash_mac
Unexecuted instantiation: netdev-vport.c:hash_mac
Unexecuted instantiation: netlink.c:hash_mac
Unexecuted instantiation: nx-match.c:hash_mac
Unexecuted instantiation: odp-execute.c:hash_mac
Unexecuted instantiation: odp-execute-private.c:hash_mac
Unexecuted instantiation: odp-util.c:hash_mac
Unexecuted instantiation: ofp-actions.c:hash_mac
Unexecuted instantiation: ofp-ct.c:hash_mac
Unexecuted instantiation: ofp-ed-props.c:hash_mac
Unexecuted instantiation: ofp-flow.c:hash_mac
Unexecuted instantiation: ofp-group.c:hash_mac
Unexecuted instantiation: ofp-meter.c:hash_mac
Unexecuted instantiation: ofp-monitor.c:hash_mac
Unexecuted instantiation: ofp-packet.c:hash_mac
Unexecuted instantiation: ofp-parse.c:hash_mac
Unexecuted instantiation: stream.c:hash_mac
Unexecuted instantiation: tnl-neigh-cache.c:hash_mac
Unexecuted instantiation: netdev-native-tnl.c:hash_mac
Unexecuted instantiation: stream-unix.c:hash_mac
Unexecuted instantiation: dpif-netlink.c:hash_mac
Unexecuted instantiation: dpif-netlink-rtnl.c:hash_mac
Unexecuted instantiation: netlink-conntrack.c:hash_mac
Unexecuted instantiation: stream-ssl.c:hash_mac
Unexecuted instantiation: bundle.c:hash_mac
Unexecuted instantiation: conntrack.c:hash_mac
Unexecuted instantiation: ct-dpif.c:hash_mac
Unexecuted instantiation: dpctl.c:hash_mac
Unexecuted instantiation: dpif-netdev.c:hash_mac
Unexecuted instantiation: dpif-netdev-private-dfc.c:hash_mac
Unexecuted instantiation: dpif-netdev-private-dpif.c:hash_mac
Unexecuted instantiation: dpif-netdev-private-extract.c:hash_mac
Unexecuted instantiation: ipf.c:hash_mac
Unexecuted instantiation: learn.c:hash_mac
Unexecuted instantiation: multipath.c:hash_mac
Unexecuted instantiation: stream-tcp.c:hash_mac
Unexecuted instantiation: conntrack-icmp.c:hash_mac
Unexecuted instantiation: conntrack-tcp.c:hash_mac
Unexecuted instantiation: conntrack-tp.c:hash_mac
Unexecuted instantiation: conntrack-other.c:hash_mac
Unexecuted instantiation: dpif-netdev-extract-study.c:hash_mac
Unexecuted instantiation: dpif-netdev-lookup.c:hash_mac
Unexecuted instantiation: dpif-netdev-lookup-autovalidator.c:hash_mac
Unexecuted instantiation: dpif-netdev-lookup-generic.c:hash_mac
336
337
bool eth_addr_is_reserved(const struct eth_addr);
338
bool eth_addr_from_string(const char *, struct eth_addr *);
339
340
void compose_rarp(struct dp_packet *, const struct eth_addr);
341
342
void eth_push_vlan(struct dp_packet *, ovs_be16 tpid, ovs_be16 tci);
343
void eth_pop_vlan(struct dp_packet *);
344
345
const char *eth_from_hex(const char *hex, struct dp_packet **packetp);
346
void eth_format_masked(const struct eth_addr ea,
347
                       const struct eth_addr *mask, struct ds *s);
348
349
void set_mpls_lse(struct dp_packet *, ovs_be32 label);
350
void push_mpls(struct dp_packet *packet, ovs_be16 ethtype, ovs_be32 lse);
351
void pop_mpls(struct dp_packet *, ovs_be16 ethtype);
352
353
void set_mpls_lse_ttl(ovs_be32 *lse, uint8_t ttl);
354
void set_mpls_lse_tc(ovs_be32 *lse, uint8_t tc);
355
void set_mpls_lse_label(ovs_be32 *lse, ovs_be32 label);
356
void set_mpls_lse_bos(ovs_be32 *lse, uint8_t bos);
357
ovs_be32 set_mpls_lse_values(uint8_t ttl, uint8_t tc, uint8_t bos,
358
                             ovs_be32 label);
359
void add_mpls(struct dp_packet *packet, ovs_be16 ethtype, ovs_be32 lse,
360
              bool l3_encap);
361
362
/* Example:
363
 *
364
 * struct eth_addr mac;
365
 *    [...]
366
 * printf("The Ethernet address is "ETH_ADDR_FMT"\n", ETH_ADDR_ARGS(mac));
367
 *
368
 */
369
#define ETH_ADDR_FMT                                                    \
370
8.51k
    "%02"PRIx8":%02"PRIx8":%02"PRIx8":%02"PRIx8":%02"PRIx8":%02"PRIx8
371
8.51k
#define ETH_ADDR_ARGS(EA) ETH_ADDR_BYTES_ARGS((EA).ea)
372
#define ETH_ADDR_BYTES_ARGS(EAB) \
373
8.51k
         (EAB)[0], (EAB)[1], (EAB)[2], (EAB)[3], (EAB)[4], (EAB)[5]
374
#define ETH_ADDR_STRLEN 17
375
376
/* Example:
377
 *
378
 * struct eth_addr64 eui64;
379
 *    [...]
380
 * printf("The EUI-64 address is "ETH_ADDR64_FMT"\n", ETH_ADDR64_ARGS(mac));
381
 *
382
 */
383
#define ETH_ADDR64_FMT \
384
    "%02"PRIx8":%02"PRIx8":%02"PRIx8":%02"PRIx8":" \
385
    "%02"PRIx8":%02"PRIx8":%02"PRIx8":%02"PRIx8
386
#define ETH_ADDR64_ARGS(EA) ETH_ADDR64_BYTES_ARGS((EA).ea64)
387
#define ETH_ADDR64_BYTES_ARGS(EAB) \
388
         (EAB)[0], (EAB)[1], (EAB)[2], (EAB)[3], \
389
         (EAB)[4], (EAB)[5], (EAB)[6], (EAB)[7]
390
#define ETH_ADDR64_STRLEN 23
391
392
/* Example:
393
 *
394
 * char *string = "1 00:11:22:33:44:55 2";
395
 * struct eth_addr mac;
396
 * int a, b;
397
 *
398
 * if (ovs_scan(string, "%d"ETH_ADDR_SCAN_FMT"%d",
399
 *              &a, ETH_ADDR_SCAN_ARGS(mac), &b)) {
400
 *     ...
401
 * }
402
 */
403
0
#define ETH_ADDR_SCAN_FMT "%"SCNx8":%"SCNx8":%"SCNx8":%"SCNx8":%"SCNx8":%"SCNx8
404
#define ETH_ADDR_SCAN_ARGS(EA) \
405
0
    &(EA).ea[0], &(EA).ea[1], &(EA).ea[2], &(EA).ea[3], &(EA).ea[4], &(EA).ea[5]
406
407
0
#define ETH_TYPE_IP            0x0800
408
0
#define ETH_TYPE_ARP           0x0806
409
0
#define ETH_TYPE_TEB           0x6558
410
0
#define ETH_TYPE_VLAN_8021Q    0x8100
411
0
#define ETH_TYPE_VLAN          ETH_TYPE_VLAN_8021Q
412
#define ETH_TYPE_VLAN_8021AD   0x88a8
413
0
#define ETH_TYPE_IPV6          0x86dd
414
#define ETH_TYPE_LACP          0x8809
415
0
#define ETH_TYPE_RARP          0x8035
416
0
#define ETH_TYPE_MPLS          0x8847
417
0
#define ETH_TYPE_MPLS_MCAST    0x8848
418
0
#define ETH_TYPE_NSH           0x894f
419
0
#define ETH_TYPE_ERSPAN1       0x88be   /* version 1 type II */
420
0
#define ETH_TYPE_ERSPAN2       0x22eb   /* version 2 type III */
421
422
static inline bool eth_type_mpls(ovs_be16 eth_type)
423
7.63k
{
424
7.63k
    return eth_type == htons(ETH_TYPE_MPLS) ||
425
7.63k
        eth_type == htons(ETH_TYPE_MPLS_MCAST);
426
7.63k
}
Unexecuted instantiation: flow_extract_target.c:eth_type_mpls
Unexecuted instantiation: dp-packet.c:eth_type_mpls
flow.c:eth_type_mpls
Line
Count
Source
423
7.63k
{
424
7.63k
    return eth_type == htons(ETH_TYPE_MPLS) ||
425
7.63k
        eth_type == htons(ETH_TYPE_MPLS_MCAST);
426
7.63k
}
Unexecuted instantiation: match.c:eth_type_mpls
Unexecuted instantiation: netdev.c:eth_type_mpls
Unexecuted instantiation: ofp-match.c:eth_type_mpls
Unexecuted instantiation: ofp-port.c:eth_type_mpls
Unexecuted instantiation: ofp-print.c:eth_type_mpls
Unexecuted instantiation: ofp-queue.c:eth_type_mpls
Unexecuted instantiation: ofp-table.c:eth_type_mpls
Unexecuted instantiation: ofp-util.c:eth_type_mpls
Unexecuted instantiation: ovs-router.c:eth_type_mpls
Unexecuted instantiation: packets.c:eth_type_mpls
Unexecuted instantiation: smap.c:eth_type_mpls
Unexecuted instantiation: socket-util.c:eth_type_mpls
Unexecuted instantiation: tnl-ports.c:eth_type_mpls
Unexecuted instantiation: tun-metadata.c:eth_type_mpls
Unexecuted instantiation: netdev-linux.c:eth_type_mpls
Unexecuted instantiation: netdev-offload-tc.c:eth_type_mpls
Unexecuted instantiation: rtnetlink.c:eth_type_mpls
Unexecuted instantiation: route-table.c:eth_type_mpls
Unexecuted instantiation: tc.c:eth_type_mpls
Unexecuted instantiation: classifier.c:eth_type_mpls
Unexecuted instantiation: dpif.c:eth_type_mpls
Unexecuted instantiation: meta-flow.c:eth_type_mpls
Unexecuted instantiation: netdev-offload.c:eth_type_mpls
Unexecuted instantiation: netdev-vport.c:eth_type_mpls
Unexecuted instantiation: netlink.c:eth_type_mpls
Unexecuted instantiation: nx-match.c:eth_type_mpls
Unexecuted instantiation: odp-execute.c:eth_type_mpls
Unexecuted instantiation: odp-execute-private.c:eth_type_mpls
Unexecuted instantiation: odp-util.c:eth_type_mpls
Unexecuted instantiation: ofp-actions.c:eth_type_mpls
Unexecuted instantiation: ofp-ct.c:eth_type_mpls
Unexecuted instantiation: ofp-ed-props.c:eth_type_mpls
Unexecuted instantiation: ofp-flow.c:eth_type_mpls
Unexecuted instantiation: ofp-group.c:eth_type_mpls
Unexecuted instantiation: ofp-meter.c:eth_type_mpls
Unexecuted instantiation: ofp-monitor.c:eth_type_mpls
Unexecuted instantiation: ofp-packet.c:eth_type_mpls
Unexecuted instantiation: ofp-parse.c:eth_type_mpls
Unexecuted instantiation: stream.c:eth_type_mpls
Unexecuted instantiation: tnl-neigh-cache.c:eth_type_mpls
Unexecuted instantiation: netdev-native-tnl.c:eth_type_mpls
Unexecuted instantiation: stream-unix.c:eth_type_mpls
Unexecuted instantiation: dpif-netlink.c:eth_type_mpls
Unexecuted instantiation: dpif-netlink-rtnl.c:eth_type_mpls
Unexecuted instantiation: netlink-conntrack.c:eth_type_mpls
Unexecuted instantiation: stream-ssl.c:eth_type_mpls
Unexecuted instantiation: bundle.c:eth_type_mpls
Unexecuted instantiation: conntrack.c:eth_type_mpls
Unexecuted instantiation: ct-dpif.c:eth_type_mpls
Unexecuted instantiation: dpctl.c:eth_type_mpls
Unexecuted instantiation: dpif-netdev.c:eth_type_mpls
Unexecuted instantiation: dpif-netdev-private-dfc.c:eth_type_mpls
Unexecuted instantiation: dpif-netdev-private-dpif.c:eth_type_mpls
Unexecuted instantiation: dpif-netdev-private-extract.c:eth_type_mpls
Unexecuted instantiation: ipf.c:eth_type_mpls
Unexecuted instantiation: learn.c:eth_type_mpls
Unexecuted instantiation: multipath.c:eth_type_mpls
Unexecuted instantiation: stream-tcp.c:eth_type_mpls
Unexecuted instantiation: conntrack-icmp.c:eth_type_mpls
Unexecuted instantiation: conntrack-tcp.c:eth_type_mpls
Unexecuted instantiation: conntrack-tp.c:eth_type_mpls
Unexecuted instantiation: conntrack-other.c:eth_type_mpls
Unexecuted instantiation: dpif-netdev-extract-study.c:eth_type_mpls
Unexecuted instantiation: dpif-netdev-lookup.c:eth_type_mpls
Unexecuted instantiation: dpif-netdev-lookup-autovalidator.c:eth_type_mpls
Unexecuted instantiation: dpif-netdev-lookup-generic.c:eth_type_mpls
427
428
static inline bool eth_type_vlan(ovs_be16 eth_type)
429
6.29k
{
430
6.29k
    return eth_type == htons(ETH_TYPE_VLAN_8021Q) ||
431
6.29k
        eth_type == htons(ETH_TYPE_VLAN_8021AD);
432
6.29k
}
Unexecuted instantiation: flow_extract_target.c:eth_type_vlan
Unexecuted instantiation: dp-packet.c:eth_type_vlan
flow.c:eth_type_vlan
Line
Count
Source
429
6.29k
{
430
6.29k
    return eth_type == htons(ETH_TYPE_VLAN_8021Q) ||
431
6.29k
        eth_type == htons(ETH_TYPE_VLAN_8021AD);
432
6.29k
}
Unexecuted instantiation: match.c:eth_type_vlan
Unexecuted instantiation: netdev.c:eth_type_vlan
Unexecuted instantiation: ofp-match.c:eth_type_vlan
Unexecuted instantiation: ofp-port.c:eth_type_vlan
Unexecuted instantiation: ofp-print.c:eth_type_vlan
Unexecuted instantiation: ofp-queue.c:eth_type_vlan
Unexecuted instantiation: ofp-table.c:eth_type_vlan
Unexecuted instantiation: ofp-util.c:eth_type_vlan
Unexecuted instantiation: ovs-router.c:eth_type_vlan
Unexecuted instantiation: packets.c:eth_type_vlan
Unexecuted instantiation: smap.c:eth_type_vlan
Unexecuted instantiation: socket-util.c:eth_type_vlan
Unexecuted instantiation: tnl-ports.c:eth_type_vlan
Unexecuted instantiation: tun-metadata.c:eth_type_vlan
Unexecuted instantiation: netdev-linux.c:eth_type_vlan
Unexecuted instantiation: netdev-offload-tc.c:eth_type_vlan
Unexecuted instantiation: rtnetlink.c:eth_type_vlan
Unexecuted instantiation: route-table.c:eth_type_vlan
Unexecuted instantiation: tc.c:eth_type_vlan
Unexecuted instantiation: classifier.c:eth_type_vlan
Unexecuted instantiation: dpif.c:eth_type_vlan
Unexecuted instantiation: meta-flow.c:eth_type_vlan
Unexecuted instantiation: netdev-offload.c:eth_type_vlan
Unexecuted instantiation: netdev-vport.c:eth_type_vlan
Unexecuted instantiation: netlink.c:eth_type_vlan
Unexecuted instantiation: nx-match.c:eth_type_vlan
Unexecuted instantiation: odp-execute.c:eth_type_vlan
Unexecuted instantiation: odp-execute-private.c:eth_type_vlan
Unexecuted instantiation: odp-util.c:eth_type_vlan
Unexecuted instantiation: ofp-actions.c:eth_type_vlan
Unexecuted instantiation: ofp-ct.c:eth_type_vlan
Unexecuted instantiation: ofp-ed-props.c:eth_type_vlan
Unexecuted instantiation: ofp-flow.c:eth_type_vlan
Unexecuted instantiation: ofp-group.c:eth_type_vlan
Unexecuted instantiation: ofp-meter.c:eth_type_vlan
Unexecuted instantiation: ofp-monitor.c:eth_type_vlan
Unexecuted instantiation: ofp-packet.c:eth_type_vlan
Unexecuted instantiation: ofp-parse.c:eth_type_vlan
Unexecuted instantiation: stream.c:eth_type_vlan
Unexecuted instantiation: tnl-neigh-cache.c:eth_type_vlan
Unexecuted instantiation: netdev-native-tnl.c:eth_type_vlan
Unexecuted instantiation: stream-unix.c:eth_type_vlan
Unexecuted instantiation: dpif-netlink.c:eth_type_vlan
Unexecuted instantiation: dpif-netlink-rtnl.c:eth_type_vlan
Unexecuted instantiation: netlink-conntrack.c:eth_type_vlan
Unexecuted instantiation: stream-ssl.c:eth_type_vlan
Unexecuted instantiation: bundle.c:eth_type_vlan
Unexecuted instantiation: conntrack.c:eth_type_vlan
Unexecuted instantiation: ct-dpif.c:eth_type_vlan
Unexecuted instantiation: dpctl.c:eth_type_vlan
Unexecuted instantiation: dpif-netdev.c:eth_type_vlan
Unexecuted instantiation: dpif-netdev-private-dfc.c:eth_type_vlan
Unexecuted instantiation: dpif-netdev-private-dpif.c:eth_type_vlan
Unexecuted instantiation: dpif-netdev-private-extract.c:eth_type_vlan
Unexecuted instantiation: ipf.c:eth_type_vlan
Unexecuted instantiation: learn.c:eth_type_vlan
Unexecuted instantiation: multipath.c:eth_type_vlan
Unexecuted instantiation: stream-tcp.c:eth_type_vlan
Unexecuted instantiation: conntrack-icmp.c:eth_type_vlan
Unexecuted instantiation: conntrack-tcp.c:eth_type_vlan
Unexecuted instantiation: conntrack-tp.c:eth_type_vlan
Unexecuted instantiation: conntrack-other.c:eth_type_vlan
Unexecuted instantiation: dpif-netdev-extract-study.c:eth_type_vlan
Unexecuted instantiation: dpif-netdev-lookup.c:eth_type_vlan
Unexecuted instantiation: dpif-netdev-lookup-autovalidator.c:eth_type_vlan
Unexecuted instantiation: dpif-netdev-lookup-generic.c:eth_type_vlan
433
434
435
/* Minimum value for an Ethernet type.  Values below this are IEEE 802.2 frame
436
 * lengths. */
437
0
#define ETH_TYPE_MIN           0x600
438
439
2.03k
#define ETH_HEADER_LEN 14
440
0
#define ETH_PAYLOAD_MIN 46
441
0
#define ETH_PAYLOAD_MAX 1500
442
0
#define ETH_TOTAL_MIN (ETH_HEADER_LEN + ETH_PAYLOAD_MIN)
443
#define ETH_TOTAL_MAX (ETH_HEADER_LEN + ETH_PAYLOAD_MAX)
444
#define ETH_VLAN_TOTAL_MAX (ETH_HEADER_LEN + VLAN_HEADER_LEN + ETH_PAYLOAD_MAX)
445
struct eth_header {
446
    struct eth_addr eth_dst;
447
    struct eth_addr eth_src;
448
    ovs_be16 eth_type;
449
};
450
BUILD_ASSERT_DECL(ETH_HEADER_LEN == sizeof(struct eth_header));
451
452
void push_eth(struct dp_packet *packet, const struct eth_addr *dst,
453
              const struct eth_addr *src);
454
void pop_eth(struct dp_packet *packet);
455
456
void push_nsh(struct dp_packet *packet, const struct nsh_hdr *nsh_hdr_src);
457
bool pop_nsh(struct dp_packet *packet);
458
459
#define LLC_DSAP_SNAP 0xaa
460
#define LLC_SSAP_SNAP 0xaa
461
#define LLC_CNTL_SNAP 3
462
463
#define LLC_HEADER_LEN 3
464
struct llc_header {
465
    uint8_t llc_dsap;
466
    uint8_t llc_ssap;
467
    uint8_t llc_cntl;
468
};
469
BUILD_ASSERT_DECL(LLC_HEADER_LEN == sizeof(struct llc_header));
470
471
/* LLC field values used for STP frames. */
472
#define STP_LLC_SSAP 0x42
473
#define STP_LLC_DSAP 0x42
474
#define STP_LLC_CNTL 0x03
475
476
#define SNAP_ORG_ETHERNET "\0\0" /* The compiler adds a null byte, so
477
                                    sizeof(SNAP_ORG_ETHERNET) == 3. */
478
#define SNAP_HEADER_LEN 5
479
OVS_PACKED(
480
struct snap_header {
481
    uint8_t snap_org[3];
482
    ovs_be16 snap_type;
483
});
484
BUILD_ASSERT_DECL(SNAP_HEADER_LEN == sizeof(struct snap_header));
485
486
#define LLC_SNAP_HEADER_LEN (LLC_HEADER_LEN + SNAP_HEADER_LEN)
487
OVS_PACKED(
488
struct llc_snap_header {
489
    struct llc_header llc;
490
    struct snap_header snap;
491
});
492
BUILD_ASSERT_DECL(LLC_SNAP_HEADER_LEN == sizeof(struct llc_snap_header));
493
494
285
#define VLAN_VID_MASK 0x0fff
495
285
#define VLAN_VID_SHIFT 0
496
497
285
#define VLAN_PCP_MASK 0xe000
498
285
#define VLAN_PCP_SHIFT 13
499
500
0
#define VLAN_CFI 0x1000
501
0
#define VLAN_CFI_SHIFT 12
502
503
/* Given the vlan_tci field from an 802.1Q header, in network byte order,
504
 * returns the VLAN ID in host byte order. */
505
static inline uint16_t
506
vlan_tci_to_vid(ovs_be16 vlan_tci)
507
285
{
508
285
    return (ntohs(vlan_tci) & VLAN_VID_MASK) >> VLAN_VID_SHIFT;
509
285
}
Unexecuted instantiation: flow_extract_target.c:vlan_tci_to_vid
Unexecuted instantiation: dp-packet.c:vlan_tci_to_vid
Unexecuted instantiation: flow.c:vlan_tci_to_vid
match.c:vlan_tci_to_vid
Line
Count
Source
507
204
{
508
204
    return (ntohs(vlan_tci) & VLAN_VID_MASK) >> VLAN_VID_SHIFT;
509
204
}
Unexecuted instantiation: netdev.c:vlan_tci_to_vid
ofp-match.c:vlan_tci_to_vid
Line
Count
Source
507
81
{
508
81
    return (ntohs(vlan_tci) & VLAN_VID_MASK) >> VLAN_VID_SHIFT;
509
81
}
Unexecuted instantiation: ofp-port.c:vlan_tci_to_vid
Unexecuted instantiation: ofp-print.c:vlan_tci_to_vid
Unexecuted instantiation: ofp-queue.c:vlan_tci_to_vid
Unexecuted instantiation: ofp-table.c:vlan_tci_to_vid
Unexecuted instantiation: ofp-util.c:vlan_tci_to_vid
Unexecuted instantiation: ovs-router.c:vlan_tci_to_vid
Unexecuted instantiation: packets.c:vlan_tci_to_vid
Unexecuted instantiation: smap.c:vlan_tci_to_vid
Unexecuted instantiation: socket-util.c:vlan_tci_to_vid
Unexecuted instantiation: tnl-ports.c:vlan_tci_to_vid
Unexecuted instantiation: tun-metadata.c:vlan_tci_to_vid
Unexecuted instantiation: netdev-linux.c:vlan_tci_to_vid
Unexecuted instantiation: netdev-offload-tc.c:vlan_tci_to_vid
Unexecuted instantiation: rtnetlink.c:vlan_tci_to_vid
Unexecuted instantiation: route-table.c:vlan_tci_to_vid
Unexecuted instantiation: tc.c:vlan_tci_to_vid
Unexecuted instantiation: classifier.c:vlan_tci_to_vid
Unexecuted instantiation: dpif.c:vlan_tci_to_vid
Unexecuted instantiation: meta-flow.c:vlan_tci_to_vid
Unexecuted instantiation: netdev-offload.c:vlan_tci_to_vid
Unexecuted instantiation: netdev-vport.c:vlan_tci_to_vid
Unexecuted instantiation: netlink.c:vlan_tci_to_vid
Unexecuted instantiation: nx-match.c:vlan_tci_to_vid
Unexecuted instantiation: odp-execute.c:vlan_tci_to_vid
Unexecuted instantiation: odp-execute-private.c:vlan_tci_to_vid
Unexecuted instantiation: odp-util.c:vlan_tci_to_vid
Unexecuted instantiation: ofp-actions.c:vlan_tci_to_vid
Unexecuted instantiation: ofp-ct.c:vlan_tci_to_vid
Unexecuted instantiation: ofp-ed-props.c:vlan_tci_to_vid
Unexecuted instantiation: ofp-flow.c:vlan_tci_to_vid
Unexecuted instantiation: ofp-group.c:vlan_tci_to_vid
Unexecuted instantiation: ofp-meter.c:vlan_tci_to_vid
Unexecuted instantiation: ofp-monitor.c:vlan_tci_to_vid
Unexecuted instantiation: ofp-packet.c:vlan_tci_to_vid
Unexecuted instantiation: ofp-parse.c:vlan_tci_to_vid
Unexecuted instantiation: stream.c:vlan_tci_to_vid
Unexecuted instantiation: tnl-neigh-cache.c:vlan_tci_to_vid
Unexecuted instantiation: netdev-native-tnl.c:vlan_tci_to_vid
Unexecuted instantiation: stream-unix.c:vlan_tci_to_vid
Unexecuted instantiation: dpif-netlink.c:vlan_tci_to_vid
Unexecuted instantiation: dpif-netlink-rtnl.c:vlan_tci_to_vid
Unexecuted instantiation: netlink-conntrack.c:vlan_tci_to_vid
Unexecuted instantiation: stream-ssl.c:vlan_tci_to_vid
Unexecuted instantiation: bundle.c:vlan_tci_to_vid
Unexecuted instantiation: conntrack.c:vlan_tci_to_vid
Unexecuted instantiation: ct-dpif.c:vlan_tci_to_vid
Unexecuted instantiation: dpctl.c:vlan_tci_to_vid
Unexecuted instantiation: dpif-netdev.c:vlan_tci_to_vid
Unexecuted instantiation: dpif-netdev-private-dfc.c:vlan_tci_to_vid
Unexecuted instantiation: dpif-netdev-private-dpif.c:vlan_tci_to_vid
Unexecuted instantiation: dpif-netdev-private-extract.c:vlan_tci_to_vid
Unexecuted instantiation: ipf.c:vlan_tci_to_vid
Unexecuted instantiation: learn.c:vlan_tci_to_vid
Unexecuted instantiation: multipath.c:vlan_tci_to_vid
Unexecuted instantiation: stream-tcp.c:vlan_tci_to_vid
Unexecuted instantiation: conntrack-icmp.c:vlan_tci_to_vid
Unexecuted instantiation: conntrack-tcp.c:vlan_tci_to_vid
Unexecuted instantiation: conntrack-tp.c:vlan_tci_to_vid
Unexecuted instantiation: conntrack-other.c:vlan_tci_to_vid
Unexecuted instantiation: dpif-netdev-extract-study.c:vlan_tci_to_vid
Unexecuted instantiation: dpif-netdev-lookup.c:vlan_tci_to_vid
Unexecuted instantiation: dpif-netdev-lookup-autovalidator.c:vlan_tci_to_vid
Unexecuted instantiation: dpif-netdev-lookup-generic.c:vlan_tci_to_vid
510
511
/* Given the vlan_tci field from an 802.1Q header, in network byte order,
512
 * returns the priority code point (PCP) in host byte order. */
513
static inline int
514
vlan_tci_to_pcp(ovs_be16 vlan_tci)
515
285
{
516
285
    return (ntohs(vlan_tci) & VLAN_PCP_MASK) >> VLAN_PCP_SHIFT;
517
285
}
Unexecuted instantiation: flow_extract_target.c:vlan_tci_to_pcp
Unexecuted instantiation: dp-packet.c:vlan_tci_to_pcp
Unexecuted instantiation: flow.c:vlan_tci_to_pcp
match.c:vlan_tci_to_pcp
Line
Count
Source
515
204
{
516
204
    return (ntohs(vlan_tci) & VLAN_PCP_MASK) >> VLAN_PCP_SHIFT;
517
204
}
Unexecuted instantiation: netdev.c:vlan_tci_to_pcp
ofp-match.c:vlan_tci_to_pcp
Line
Count
Source
515
81
{
516
81
    return (ntohs(vlan_tci) & VLAN_PCP_MASK) >> VLAN_PCP_SHIFT;
517
81
}
Unexecuted instantiation: ofp-port.c:vlan_tci_to_pcp
Unexecuted instantiation: ofp-print.c:vlan_tci_to_pcp
Unexecuted instantiation: ofp-queue.c:vlan_tci_to_pcp
Unexecuted instantiation: ofp-table.c:vlan_tci_to_pcp
Unexecuted instantiation: ofp-util.c:vlan_tci_to_pcp
Unexecuted instantiation: ovs-router.c:vlan_tci_to_pcp
Unexecuted instantiation: packets.c:vlan_tci_to_pcp
Unexecuted instantiation: smap.c:vlan_tci_to_pcp
Unexecuted instantiation: socket-util.c:vlan_tci_to_pcp
Unexecuted instantiation: tnl-ports.c:vlan_tci_to_pcp
Unexecuted instantiation: tun-metadata.c:vlan_tci_to_pcp
Unexecuted instantiation: netdev-linux.c:vlan_tci_to_pcp
Unexecuted instantiation: netdev-offload-tc.c:vlan_tci_to_pcp
Unexecuted instantiation: rtnetlink.c:vlan_tci_to_pcp
Unexecuted instantiation: route-table.c:vlan_tci_to_pcp
Unexecuted instantiation: tc.c:vlan_tci_to_pcp
Unexecuted instantiation: classifier.c:vlan_tci_to_pcp
Unexecuted instantiation: dpif.c:vlan_tci_to_pcp
Unexecuted instantiation: meta-flow.c:vlan_tci_to_pcp
Unexecuted instantiation: netdev-offload.c:vlan_tci_to_pcp
Unexecuted instantiation: netdev-vport.c:vlan_tci_to_pcp
Unexecuted instantiation: netlink.c:vlan_tci_to_pcp
Unexecuted instantiation: nx-match.c:vlan_tci_to_pcp
Unexecuted instantiation: odp-execute.c:vlan_tci_to_pcp
Unexecuted instantiation: odp-execute-private.c:vlan_tci_to_pcp
Unexecuted instantiation: odp-util.c:vlan_tci_to_pcp
Unexecuted instantiation: ofp-actions.c:vlan_tci_to_pcp
Unexecuted instantiation: ofp-ct.c:vlan_tci_to_pcp
Unexecuted instantiation: ofp-ed-props.c:vlan_tci_to_pcp
Unexecuted instantiation: ofp-flow.c:vlan_tci_to_pcp
Unexecuted instantiation: ofp-group.c:vlan_tci_to_pcp
Unexecuted instantiation: ofp-meter.c:vlan_tci_to_pcp
Unexecuted instantiation: ofp-monitor.c:vlan_tci_to_pcp
Unexecuted instantiation: ofp-packet.c:vlan_tci_to_pcp
Unexecuted instantiation: ofp-parse.c:vlan_tci_to_pcp
Unexecuted instantiation: stream.c:vlan_tci_to_pcp
Unexecuted instantiation: tnl-neigh-cache.c:vlan_tci_to_pcp
Unexecuted instantiation: netdev-native-tnl.c:vlan_tci_to_pcp
Unexecuted instantiation: stream-unix.c:vlan_tci_to_pcp
Unexecuted instantiation: dpif-netlink.c:vlan_tci_to_pcp
Unexecuted instantiation: dpif-netlink-rtnl.c:vlan_tci_to_pcp
Unexecuted instantiation: netlink-conntrack.c:vlan_tci_to_pcp
Unexecuted instantiation: stream-ssl.c:vlan_tci_to_pcp
Unexecuted instantiation: bundle.c:vlan_tci_to_pcp
Unexecuted instantiation: conntrack.c:vlan_tci_to_pcp
Unexecuted instantiation: ct-dpif.c:vlan_tci_to_pcp
Unexecuted instantiation: dpctl.c:vlan_tci_to_pcp
Unexecuted instantiation: dpif-netdev.c:vlan_tci_to_pcp
Unexecuted instantiation: dpif-netdev-private-dfc.c:vlan_tci_to_pcp
Unexecuted instantiation: dpif-netdev-private-dpif.c:vlan_tci_to_pcp
Unexecuted instantiation: dpif-netdev-private-extract.c:vlan_tci_to_pcp
Unexecuted instantiation: ipf.c:vlan_tci_to_pcp
Unexecuted instantiation: learn.c:vlan_tci_to_pcp
Unexecuted instantiation: multipath.c:vlan_tci_to_pcp
Unexecuted instantiation: stream-tcp.c:vlan_tci_to_pcp
Unexecuted instantiation: conntrack-icmp.c:vlan_tci_to_pcp
Unexecuted instantiation: conntrack-tcp.c:vlan_tci_to_pcp
Unexecuted instantiation: conntrack-tp.c:vlan_tci_to_pcp
Unexecuted instantiation: conntrack-other.c:vlan_tci_to_pcp
Unexecuted instantiation: dpif-netdev-extract-study.c:vlan_tci_to_pcp
Unexecuted instantiation: dpif-netdev-lookup.c:vlan_tci_to_pcp
Unexecuted instantiation: dpif-netdev-lookup-autovalidator.c:vlan_tci_to_pcp
Unexecuted instantiation: dpif-netdev-lookup-generic.c:vlan_tci_to_pcp
518
519
/* Given the vlan_tci field from an 802.1Q header, in network byte order,
520
 * returns the Canonical Format Indicator (CFI). */
521
static inline int
522
vlan_tci_to_cfi(ovs_be16 vlan_tci)
523
0
{
524
0
    return (vlan_tci & htons(VLAN_CFI)) != 0;
525
0
}
Unexecuted instantiation: flow_extract_target.c:vlan_tci_to_cfi
Unexecuted instantiation: dp-packet.c:vlan_tci_to_cfi
Unexecuted instantiation: flow.c:vlan_tci_to_cfi
Unexecuted instantiation: match.c:vlan_tci_to_cfi
Unexecuted instantiation: netdev.c:vlan_tci_to_cfi
Unexecuted instantiation: ofp-match.c:vlan_tci_to_cfi
Unexecuted instantiation: ofp-port.c:vlan_tci_to_cfi
Unexecuted instantiation: ofp-print.c:vlan_tci_to_cfi
Unexecuted instantiation: ofp-queue.c:vlan_tci_to_cfi
Unexecuted instantiation: ofp-table.c:vlan_tci_to_cfi
Unexecuted instantiation: ofp-util.c:vlan_tci_to_cfi
Unexecuted instantiation: ovs-router.c:vlan_tci_to_cfi
Unexecuted instantiation: packets.c:vlan_tci_to_cfi
Unexecuted instantiation: smap.c:vlan_tci_to_cfi
Unexecuted instantiation: socket-util.c:vlan_tci_to_cfi
Unexecuted instantiation: tnl-ports.c:vlan_tci_to_cfi
Unexecuted instantiation: tun-metadata.c:vlan_tci_to_cfi
Unexecuted instantiation: netdev-linux.c:vlan_tci_to_cfi
Unexecuted instantiation: netdev-offload-tc.c:vlan_tci_to_cfi
Unexecuted instantiation: rtnetlink.c:vlan_tci_to_cfi
Unexecuted instantiation: route-table.c:vlan_tci_to_cfi
Unexecuted instantiation: tc.c:vlan_tci_to_cfi
Unexecuted instantiation: classifier.c:vlan_tci_to_cfi
Unexecuted instantiation: dpif.c:vlan_tci_to_cfi
Unexecuted instantiation: meta-flow.c:vlan_tci_to_cfi
Unexecuted instantiation: netdev-offload.c:vlan_tci_to_cfi
Unexecuted instantiation: netdev-vport.c:vlan_tci_to_cfi
Unexecuted instantiation: netlink.c:vlan_tci_to_cfi
Unexecuted instantiation: nx-match.c:vlan_tci_to_cfi
Unexecuted instantiation: odp-execute.c:vlan_tci_to_cfi
Unexecuted instantiation: odp-execute-private.c:vlan_tci_to_cfi
Unexecuted instantiation: odp-util.c:vlan_tci_to_cfi
Unexecuted instantiation: ofp-actions.c:vlan_tci_to_cfi
Unexecuted instantiation: ofp-ct.c:vlan_tci_to_cfi
Unexecuted instantiation: ofp-ed-props.c:vlan_tci_to_cfi
Unexecuted instantiation: ofp-flow.c:vlan_tci_to_cfi
Unexecuted instantiation: ofp-group.c:vlan_tci_to_cfi
Unexecuted instantiation: ofp-meter.c:vlan_tci_to_cfi
Unexecuted instantiation: ofp-monitor.c:vlan_tci_to_cfi
Unexecuted instantiation: ofp-packet.c:vlan_tci_to_cfi
Unexecuted instantiation: ofp-parse.c:vlan_tci_to_cfi
Unexecuted instantiation: stream.c:vlan_tci_to_cfi
Unexecuted instantiation: tnl-neigh-cache.c:vlan_tci_to_cfi
Unexecuted instantiation: netdev-native-tnl.c:vlan_tci_to_cfi
Unexecuted instantiation: stream-unix.c:vlan_tci_to_cfi
Unexecuted instantiation: dpif-netlink.c:vlan_tci_to_cfi
Unexecuted instantiation: dpif-netlink-rtnl.c:vlan_tci_to_cfi
Unexecuted instantiation: netlink-conntrack.c:vlan_tci_to_cfi
Unexecuted instantiation: stream-ssl.c:vlan_tci_to_cfi
Unexecuted instantiation: bundle.c:vlan_tci_to_cfi
Unexecuted instantiation: conntrack.c:vlan_tci_to_cfi
Unexecuted instantiation: ct-dpif.c:vlan_tci_to_cfi
Unexecuted instantiation: dpctl.c:vlan_tci_to_cfi
Unexecuted instantiation: dpif-netdev.c:vlan_tci_to_cfi
Unexecuted instantiation: dpif-netdev-private-dfc.c:vlan_tci_to_cfi
Unexecuted instantiation: dpif-netdev-private-dpif.c:vlan_tci_to_cfi
Unexecuted instantiation: dpif-netdev-private-extract.c:vlan_tci_to_cfi
Unexecuted instantiation: ipf.c:vlan_tci_to_cfi
Unexecuted instantiation: learn.c:vlan_tci_to_cfi
Unexecuted instantiation: multipath.c:vlan_tci_to_cfi
Unexecuted instantiation: stream-tcp.c:vlan_tci_to_cfi
Unexecuted instantiation: conntrack-icmp.c:vlan_tci_to_cfi
Unexecuted instantiation: conntrack-tcp.c:vlan_tci_to_cfi
Unexecuted instantiation: conntrack-tp.c:vlan_tci_to_cfi
Unexecuted instantiation: conntrack-other.c:vlan_tci_to_cfi
Unexecuted instantiation: dpif-netdev-extract-study.c:vlan_tci_to_cfi
Unexecuted instantiation: dpif-netdev-lookup.c:vlan_tci_to_cfi
Unexecuted instantiation: dpif-netdev-lookup-autovalidator.c:vlan_tci_to_cfi
Unexecuted instantiation: dpif-netdev-lookup-generic.c:vlan_tci_to_cfi
526
527
0
#define VLAN_HEADER_LEN 4
528
struct vlan_header {
529
    ovs_be16 vlan_tci;          /* Lowest 12 bits are VLAN ID. */
530
    ovs_be16 vlan_next_type;
531
};
532
BUILD_ASSERT_DECL(VLAN_HEADER_LEN == sizeof(struct vlan_header));
533
534
0
#define VLAN_ETH_HEADER_LEN (ETH_HEADER_LEN + VLAN_HEADER_LEN)
535
struct vlan_eth_header {
536
    struct eth_addr veth_dst;
537
    struct eth_addr veth_src;
538
    ovs_be16 veth_type;         /* Always htons(ETH_TYPE_VLAN). */
539
    ovs_be16 veth_tci;          /* Lowest 12 bits are VLAN ID. */
540
    ovs_be16 veth_next_type;
541
};
542
BUILD_ASSERT_DECL(VLAN_ETH_HEADER_LEN == sizeof(struct vlan_eth_header));
543
544
/* MPLS related definitions */
545
110
#define MPLS_TTL_MASK       0x000000ff
546
110
#define MPLS_TTL_SHIFT      0
547
548
0
#define MPLS_BOS_MASK       0x00000100
549
0
#define MPLS_BOS_SHIFT      8
550
551
110
#define MPLS_TC_MASK        0x00000e00
552
110
#define MPLS_TC_SHIFT       9
553
554
110
#define MPLS_LABEL_MASK     0xfffff000
555
110
#define MPLS_LABEL_SHIFT    12
556
557
0
#define MPLS_HLEN           4
558
559
struct mpls_hdr {
560
    ovs_16aligned_be32 mpls_lse;
561
};
562
BUILD_ASSERT_DECL(MPLS_HLEN == sizeof(struct mpls_hdr));
563
564
/* Given a mpls label stack entry in network byte order
565
 * return mpls label in host byte order */
566
static inline uint32_t
567
mpls_lse_to_label(ovs_be32 mpls_lse)
568
110
{
569
110
    return (ntohl(mpls_lse) & MPLS_LABEL_MASK) >> MPLS_LABEL_SHIFT;
570
110
}
Unexecuted instantiation: flow_extract_target.c:mpls_lse_to_label
Unexecuted instantiation: dp-packet.c:mpls_lse_to_label
Unexecuted instantiation: flow.c:mpls_lse_to_label
match.c:mpls_lse_to_label
Line
Count
Source
568
110
{
569
110
    return (ntohl(mpls_lse) & MPLS_LABEL_MASK) >> MPLS_LABEL_SHIFT;
570
110
}
Unexecuted instantiation: netdev.c:mpls_lse_to_label
Unexecuted instantiation: ofp-match.c:mpls_lse_to_label
Unexecuted instantiation: ofp-port.c:mpls_lse_to_label
Unexecuted instantiation: ofp-print.c:mpls_lse_to_label
Unexecuted instantiation: ofp-queue.c:mpls_lse_to_label
Unexecuted instantiation: ofp-table.c:mpls_lse_to_label
Unexecuted instantiation: ofp-util.c:mpls_lse_to_label
Unexecuted instantiation: ovs-router.c:mpls_lse_to_label
Unexecuted instantiation: packets.c:mpls_lse_to_label
Unexecuted instantiation: smap.c:mpls_lse_to_label
Unexecuted instantiation: socket-util.c:mpls_lse_to_label
Unexecuted instantiation: tnl-ports.c:mpls_lse_to_label
Unexecuted instantiation: tun-metadata.c:mpls_lse_to_label
Unexecuted instantiation: netdev-linux.c:mpls_lse_to_label
Unexecuted instantiation: netdev-offload-tc.c:mpls_lse_to_label
Unexecuted instantiation: rtnetlink.c:mpls_lse_to_label
Unexecuted instantiation: route-table.c:mpls_lse_to_label
Unexecuted instantiation: tc.c:mpls_lse_to_label
Unexecuted instantiation: classifier.c:mpls_lse_to_label
Unexecuted instantiation: dpif.c:mpls_lse_to_label
Unexecuted instantiation: meta-flow.c:mpls_lse_to_label
Unexecuted instantiation: netdev-offload.c:mpls_lse_to_label
Unexecuted instantiation: netdev-vport.c:mpls_lse_to_label
Unexecuted instantiation: netlink.c:mpls_lse_to_label
Unexecuted instantiation: nx-match.c:mpls_lse_to_label
Unexecuted instantiation: odp-execute.c:mpls_lse_to_label
Unexecuted instantiation: odp-execute-private.c:mpls_lse_to_label
Unexecuted instantiation: odp-util.c:mpls_lse_to_label
Unexecuted instantiation: ofp-actions.c:mpls_lse_to_label
Unexecuted instantiation: ofp-ct.c:mpls_lse_to_label
Unexecuted instantiation: ofp-ed-props.c:mpls_lse_to_label
Unexecuted instantiation: ofp-flow.c:mpls_lse_to_label
Unexecuted instantiation: ofp-group.c:mpls_lse_to_label
Unexecuted instantiation: ofp-meter.c:mpls_lse_to_label
Unexecuted instantiation: ofp-monitor.c:mpls_lse_to_label
Unexecuted instantiation: ofp-packet.c:mpls_lse_to_label
Unexecuted instantiation: ofp-parse.c:mpls_lse_to_label
Unexecuted instantiation: stream.c:mpls_lse_to_label
Unexecuted instantiation: tnl-neigh-cache.c:mpls_lse_to_label
Unexecuted instantiation: netdev-native-tnl.c:mpls_lse_to_label
Unexecuted instantiation: stream-unix.c:mpls_lse_to_label
Unexecuted instantiation: dpif-netlink.c:mpls_lse_to_label
Unexecuted instantiation: dpif-netlink-rtnl.c:mpls_lse_to_label
Unexecuted instantiation: netlink-conntrack.c:mpls_lse_to_label
Unexecuted instantiation: stream-ssl.c:mpls_lse_to_label
Unexecuted instantiation: bundle.c:mpls_lse_to_label
Unexecuted instantiation: conntrack.c:mpls_lse_to_label
Unexecuted instantiation: ct-dpif.c:mpls_lse_to_label
Unexecuted instantiation: dpctl.c:mpls_lse_to_label
Unexecuted instantiation: dpif-netdev.c:mpls_lse_to_label
Unexecuted instantiation: dpif-netdev-private-dfc.c:mpls_lse_to_label
Unexecuted instantiation: dpif-netdev-private-dpif.c:mpls_lse_to_label
Unexecuted instantiation: dpif-netdev-private-extract.c:mpls_lse_to_label
Unexecuted instantiation: ipf.c:mpls_lse_to_label
Unexecuted instantiation: learn.c:mpls_lse_to_label
Unexecuted instantiation: multipath.c:mpls_lse_to_label
Unexecuted instantiation: stream-tcp.c:mpls_lse_to_label
Unexecuted instantiation: conntrack-icmp.c:mpls_lse_to_label
Unexecuted instantiation: conntrack-tcp.c:mpls_lse_to_label
Unexecuted instantiation: conntrack-tp.c:mpls_lse_to_label
Unexecuted instantiation: conntrack-other.c:mpls_lse_to_label
Unexecuted instantiation: dpif-netdev-extract-study.c:mpls_lse_to_label
Unexecuted instantiation: dpif-netdev-lookup.c:mpls_lse_to_label
Unexecuted instantiation: dpif-netdev-lookup-autovalidator.c:mpls_lse_to_label
Unexecuted instantiation: dpif-netdev-lookup-generic.c:mpls_lse_to_label
571
572
/* Given a mpls label stack entry in network byte order
573
 * return mpls tc */
574
static inline uint8_t
575
mpls_lse_to_tc(ovs_be32 mpls_lse)
576
110
{
577
110
    return (ntohl(mpls_lse) & MPLS_TC_MASK) >> MPLS_TC_SHIFT;
578
110
}
Unexecuted instantiation: flow_extract_target.c:mpls_lse_to_tc
Unexecuted instantiation: dp-packet.c:mpls_lse_to_tc
Unexecuted instantiation: flow.c:mpls_lse_to_tc
match.c:mpls_lse_to_tc
Line
Count
Source
576
110
{
577
110
    return (ntohl(mpls_lse) & MPLS_TC_MASK) >> MPLS_TC_SHIFT;
578
110
}
Unexecuted instantiation: netdev.c:mpls_lse_to_tc
Unexecuted instantiation: ofp-match.c:mpls_lse_to_tc
Unexecuted instantiation: ofp-port.c:mpls_lse_to_tc
Unexecuted instantiation: ofp-print.c:mpls_lse_to_tc
Unexecuted instantiation: ofp-queue.c:mpls_lse_to_tc
Unexecuted instantiation: ofp-table.c:mpls_lse_to_tc
Unexecuted instantiation: ofp-util.c:mpls_lse_to_tc
Unexecuted instantiation: ovs-router.c:mpls_lse_to_tc
Unexecuted instantiation: packets.c:mpls_lse_to_tc
Unexecuted instantiation: smap.c:mpls_lse_to_tc
Unexecuted instantiation: socket-util.c:mpls_lse_to_tc
Unexecuted instantiation: tnl-ports.c:mpls_lse_to_tc
Unexecuted instantiation: tun-metadata.c:mpls_lse_to_tc
Unexecuted instantiation: netdev-linux.c:mpls_lse_to_tc
Unexecuted instantiation: netdev-offload-tc.c:mpls_lse_to_tc
Unexecuted instantiation: rtnetlink.c:mpls_lse_to_tc
Unexecuted instantiation: route-table.c:mpls_lse_to_tc
Unexecuted instantiation: tc.c:mpls_lse_to_tc
Unexecuted instantiation: classifier.c:mpls_lse_to_tc
Unexecuted instantiation: dpif.c:mpls_lse_to_tc
Unexecuted instantiation: meta-flow.c:mpls_lse_to_tc
Unexecuted instantiation: netdev-offload.c:mpls_lse_to_tc
Unexecuted instantiation: netdev-vport.c:mpls_lse_to_tc
Unexecuted instantiation: netlink.c:mpls_lse_to_tc
Unexecuted instantiation: nx-match.c:mpls_lse_to_tc
Unexecuted instantiation: odp-execute.c:mpls_lse_to_tc
Unexecuted instantiation: odp-execute-private.c:mpls_lse_to_tc
Unexecuted instantiation: odp-util.c:mpls_lse_to_tc
Unexecuted instantiation: ofp-actions.c:mpls_lse_to_tc
Unexecuted instantiation: ofp-ct.c:mpls_lse_to_tc
Unexecuted instantiation: ofp-ed-props.c:mpls_lse_to_tc
Unexecuted instantiation: ofp-flow.c:mpls_lse_to_tc
Unexecuted instantiation: ofp-group.c:mpls_lse_to_tc
Unexecuted instantiation: ofp-meter.c:mpls_lse_to_tc
Unexecuted instantiation: ofp-monitor.c:mpls_lse_to_tc
Unexecuted instantiation: ofp-packet.c:mpls_lse_to_tc
Unexecuted instantiation: ofp-parse.c:mpls_lse_to_tc
Unexecuted instantiation: stream.c:mpls_lse_to_tc
Unexecuted instantiation: tnl-neigh-cache.c:mpls_lse_to_tc
Unexecuted instantiation: netdev-native-tnl.c:mpls_lse_to_tc
Unexecuted instantiation: stream-unix.c:mpls_lse_to_tc
Unexecuted instantiation: dpif-netlink.c:mpls_lse_to_tc
Unexecuted instantiation: dpif-netlink-rtnl.c:mpls_lse_to_tc
Unexecuted instantiation: netlink-conntrack.c:mpls_lse_to_tc
Unexecuted instantiation: stream-ssl.c:mpls_lse_to_tc
Unexecuted instantiation: bundle.c:mpls_lse_to_tc
Unexecuted instantiation: conntrack.c:mpls_lse_to_tc
Unexecuted instantiation: ct-dpif.c:mpls_lse_to_tc
Unexecuted instantiation: dpctl.c:mpls_lse_to_tc
Unexecuted instantiation: dpif-netdev.c:mpls_lse_to_tc
Unexecuted instantiation: dpif-netdev-private-dfc.c:mpls_lse_to_tc
Unexecuted instantiation: dpif-netdev-private-dpif.c:mpls_lse_to_tc
Unexecuted instantiation: dpif-netdev-private-extract.c:mpls_lse_to_tc
Unexecuted instantiation: ipf.c:mpls_lse_to_tc
Unexecuted instantiation: learn.c:mpls_lse_to_tc
Unexecuted instantiation: multipath.c:mpls_lse_to_tc
Unexecuted instantiation: stream-tcp.c:mpls_lse_to_tc
Unexecuted instantiation: conntrack-icmp.c:mpls_lse_to_tc
Unexecuted instantiation: conntrack-tcp.c:mpls_lse_to_tc
Unexecuted instantiation: conntrack-tp.c:mpls_lse_to_tc
Unexecuted instantiation: conntrack-other.c:mpls_lse_to_tc
Unexecuted instantiation: dpif-netdev-extract-study.c:mpls_lse_to_tc
Unexecuted instantiation: dpif-netdev-lookup.c:mpls_lse_to_tc
Unexecuted instantiation: dpif-netdev-lookup-autovalidator.c:mpls_lse_to_tc
Unexecuted instantiation: dpif-netdev-lookup-generic.c:mpls_lse_to_tc
579
580
/* Given a mpls label stack entry in network byte order
581
 * return mpls ttl */
582
static inline uint8_t
583
mpls_lse_to_ttl(ovs_be32 mpls_lse)
584
110
{
585
110
    return (ntohl(mpls_lse) & MPLS_TTL_MASK) >> MPLS_TTL_SHIFT;
586
110
}
Unexecuted instantiation: flow_extract_target.c:mpls_lse_to_ttl
Unexecuted instantiation: dp-packet.c:mpls_lse_to_ttl
Unexecuted instantiation: flow.c:mpls_lse_to_ttl
match.c:mpls_lse_to_ttl
Line
Count
Source
584
110
{
585
110
    return (ntohl(mpls_lse) & MPLS_TTL_MASK) >> MPLS_TTL_SHIFT;
586
110
}
Unexecuted instantiation: netdev.c:mpls_lse_to_ttl
Unexecuted instantiation: ofp-match.c:mpls_lse_to_ttl
Unexecuted instantiation: ofp-port.c:mpls_lse_to_ttl
Unexecuted instantiation: ofp-print.c:mpls_lse_to_ttl
Unexecuted instantiation: ofp-queue.c:mpls_lse_to_ttl
Unexecuted instantiation: ofp-table.c:mpls_lse_to_ttl
Unexecuted instantiation: ofp-util.c:mpls_lse_to_ttl
Unexecuted instantiation: ovs-router.c:mpls_lse_to_ttl
Unexecuted instantiation: packets.c:mpls_lse_to_ttl
Unexecuted instantiation: smap.c:mpls_lse_to_ttl
Unexecuted instantiation: socket-util.c:mpls_lse_to_ttl
Unexecuted instantiation: tnl-ports.c:mpls_lse_to_ttl
Unexecuted instantiation: tun-metadata.c:mpls_lse_to_ttl
Unexecuted instantiation: netdev-linux.c:mpls_lse_to_ttl
Unexecuted instantiation: netdev-offload-tc.c:mpls_lse_to_ttl
Unexecuted instantiation: rtnetlink.c:mpls_lse_to_ttl
Unexecuted instantiation: route-table.c:mpls_lse_to_ttl
Unexecuted instantiation: tc.c:mpls_lse_to_ttl
Unexecuted instantiation: classifier.c:mpls_lse_to_ttl
Unexecuted instantiation: dpif.c:mpls_lse_to_ttl
Unexecuted instantiation: meta-flow.c:mpls_lse_to_ttl
Unexecuted instantiation: netdev-offload.c:mpls_lse_to_ttl
Unexecuted instantiation: netdev-vport.c:mpls_lse_to_ttl
Unexecuted instantiation: netlink.c:mpls_lse_to_ttl
Unexecuted instantiation: nx-match.c:mpls_lse_to_ttl
Unexecuted instantiation: odp-execute.c:mpls_lse_to_ttl
Unexecuted instantiation: odp-execute-private.c:mpls_lse_to_ttl
Unexecuted instantiation: odp-util.c:mpls_lse_to_ttl
Unexecuted instantiation: ofp-actions.c:mpls_lse_to_ttl
Unexecuted instantiation: ofp-ct.c:mpls_lse_to_ttl
Unexecuted instantiation: ofp-ed-props.c:mpls_lse_to_ttl
Unexecuted instantiation: ofp-flow.c:mpls_lse_to_ttl
Unexecuted instantiation: ofp-group.c:mpls_lse_to_ttl
Unexecuted instantiation: ofp-meter.c:mpls_lse_to_ttl
Unexecuted instantiation: ofp-monitor.c:mpls_lse_to_ttl
Unexecuted instantiation: ofp-packet.c:mpls_lse_to_ttl
Unexecuted instantiation: ofp-parse.c:mpls_lse_to_ttl
Unexecuted instantiation: stream.c:mpls_lse_to_ttl
Unexecuted instantiation: tnl-neigh-cache.c:mpls_lse_to_ttl
Unexecuted instantiation: netdev-native-tnl.c:mpls_lse_to_ttl
Unexecuted instantiation: stream-unix.c:mpls_lse_to_ttl
Unexecuted instantiation: dpif-netlink.c:mpls_lse_to_ttl
Unexecuted instantiation: dpif-netlink-rtnl.c:mpls_lse_to_ttl
Unexecuted instantiation: netlink-conntrack.c:mpls_lse_to_ttl
Unexecuted instantiation: stream-ssl.c:mpls_lse_to_ttl
Unexecuted instantiation: bundle.c:mpls_lse_to_ttl
Unexecuted instantiation: conntrack.c:mpls_lse_to_ttl
Unexecuted instantiation: ct-dpif.c:mpls_lse_to_ttl
Unexecuted instantiation: dpctl.c:mpls_lse_to_ttl
Unexecuted instantiation: dpif-netdev.c:mpls_lse_to_ttl
Unexecuted instantiation: dpif-netdev-private-dfc.c:mpls_lse_to_ttl
Unexecuted instantiation: dpif-netdev-private-dpif.c:mpls_lse_to_ttl
Unexecuted instantiation: dpif-netdev-private-extract.c:mpls_lse_to_ttl
Unexecuted instantiation: ipf.c:mpls_lse_to_ttl
Unexecuted instantiation: learn.c:mpls_lse_to_ttl
Unexecuted instantiation: multipath.c:mpls_lse_to_ttl
Unexecuted instantiation: stream-tcp.c:mpls_lse_to_ttl
Unexecuted instantiation: conntrack-icmp.c:mpls_lse_to_ttl
Unexecuted instantiation: conntrack-tcp.c:mpls_lse_to_ttl
Unexecuted instantiation: conntrack-tp.c:mpls_lse_to_ttl
Unexecuted instantiation: conntrack-other.c:mpls_lse_to_ttl
Unexecuted instantiation: dpif-netdev-extract-study.c:mpls_lse_to_ttl
Unexecuted instantiation: dpif-netdev-lookup.c:mpls_lse_to_ttl
Unexecuted instantiation: dpif-netdev-lookup-autovalidator.c:mpls_lse_to_ttl
Unexecuted instantiation: dpif-netdev-lookup-generic.c:mpls_lse_to_ttl
587
588
/* Set label in mpls lse. */
589
static inline void
590
flow_set_mpls_lse_label(ovs_be32 *mpls_lse, uint32_t label)
591
0
{
592
0
    *mpls_lse &= ~htonl(MPLS_LABEL_MASK);
593
0
    *mpls_lse |= htonl(label << MPLS_LABEL_SHIFT);
594
0
}
Unexecuted instantiation: flow_extract_target.c:flow_set_mpls_lse_label
Unexecuted instantiation: dp-packet.c:flow_set_mpls_lse_label
Unexecuted instantiation: flow.c:flow_set_mpls_lse_label
Unexecuted instantiation: match.c:flow_set_mpls_lse_label
Unexecuted instantiation: netdev.c:flow_set_mpls_lse_label
Unexecuted instantiation: ofp-match.c:flow_set_mpls_lse_label
Unexecuted instantiation: ofp-port.c:flow_set_mpls_lse_label
Unexecuted instantiation: ofp-print.c:flow_set_mpls_lse_label
Unexecuted instantiation: ofp-queue.c:flow_set_mpls_lse_label
Unexecuted instantiation: ofp-table.c:flow_set_mpls_lse_label
Unexecuted instantiation: ofp-util.c:flow_set_mpls_lse_label
Unexecuted instantiation: ovs-router.c:flow_set_mpls_lse_label
Unexecuted instantiation: packets.c:flow_set_mpls_lse_label
Unexecuted instantiation: smap.c:flow_set_mpls_lse_label
Unexecuted instantiation: socket-util.c:flow_set_mpls_lse_label
Unexecuted instantiation: tnl-ports.c:flow_set_mpls_lse_label
Unexecuted instantiation: tun-metadata.c:flow_set_mpls_lse_label
Unexecuted instantiation: netdev-linux.c:flow_set_mpls_lse_label
Unexecuted instantiation: netdev-offload-tc.c:flow_set_mpls_lse_label
Unexecuted instantiation: rtnetlink.c:flow_set_mpls_lse_label
Unexecuted instantiation: route-table.c:flow_set_mpls_lse_label
Unexecuted instantiation: tc.c:flow_set_mpls_lse_label
Unexecuted instantiation: classifier.c:flow_set_mpls_lse_label
Unexecuted instantiation: dpif.c:flow_set_mpls_lse_label
Unexecuted instantiation: meta-flow.c:flow_set_mpls_lse_label
Unexecuted instantiation: netdev-offload.c:flow_set_mpls_lse_label
Unexecuted instantiation: netdev-vport.c:flow_set_mpls_lse_label
Unexecuted instantiation: netlink.c:flow_set_mpls_lse_label
Unexecuted instantiation: nx-match.c:flow_set_mpls_lse_label
Unexecuted instantiation: odp-execute.c:flow_set_mpls_lse_label
Unexecuted instantiation: odp-execute-private.c:flow_set_mpls_lse_label
Unexecuted instantiation: odp-util.c:flow_set_mpls_lse_label
Unexecuted instantiation: ofp-actions.c:flow_set_mpls_lse_label
Unexecuted instantiation: ofp-ct.c:flow_set_mpls_lse_label
Unexecuted instantiation: ofp-ed-props.c:flow_set_mpls_lse_label
Unexecuted instantiation: ofp-flow.c:flow_set_mpls_lse_label
Unexecuted instantiation: ofp-group.c:flow_set_mpls_lse_label
Unexecuted instantiation: ofp-meter.c:flow_set_mpls_lse_label
Unexecuted instantiation: ofp-monitor.c:flow_set_mpls_lse_label
Unexecuted instantiation: ofp-packet.c:flow_set_mpls_lse_label
Unexecuted instantiation: ofp-parse.c:flow_set_mpls_lse_label
Unexecuted instantiation: stream.c:flow_set_mpls_lse_label
Unexecuted instantiation: tnl-neigh-cache.c:flow_set_mpls_lse_label
Unexecuted instantiation: netdev-native-tnl.c:flow_set_mpls_lse_label
Unexecuted instantiation: stream-unix.c:flow_set_mpls_lse_label
Unexecuted instantiation: dpif-netlink.c:flow_set_mpls_lse_label
Unexecuted instantiation: dpif-netlink-rtnl.c:flow_set_mpls_lse_label
Unexecuted instantiation: netlink-conntrack.c:flow_set_mpls_lse_label
Unexecuted instantiation: stream-ssl.c:flow_set_mpls_lse_label
Unexecuted instantiation: bundle.c:flow_set_mpls_lse_label
Unexecuted instantiation: conntrack.c:flow_set_mpls_lse_label
Unexecuted instantiation: ct-dpif.c:flow_set_mpls_lse_label
Unexecuted instantiation: dpctl.c:flow_set_mpls_lse_label
Unexecuted instantiation: dpif-netdev.c:flow_set_mpls_lse_label
Unexecuted instantiation: dpif-netdev-private-dfc.c:flow_set_mpls_lse_label
Unexecuted instantiation: dpif-netdev-private-dpif.c:flow_set_mpls_lse_label
Unexecuted instantiation: dpif-netdev-private-extract.c:flow_set_mpls_lse_label
Unexecuted instantiation: ipf.c:flow_set_mpls_lse_label
Unexecuted instantiation: learn.c:flow_set_mpls_lse_label
Unexecuted instantiation: multipath.c:flow_set_mpls_lse_label
Unexecuted instantiation: stream-tcp.c:flow_set_mpls_lse_label
Unexecuted instantiation: conntrack-icmp.c:flow_set_mpls_lse_label
Unexecuted instantiation: conntrack-tcp.c:flow_set_mpls_lse_label
Unexecuted instantiation: conntrack-tp.c:flow_set_mpls_lse_label
Unexecuted instantiation: conntrack-other.c:flow_set_mpls_lse_label
Unexecuted instantiation: dpif-netdev-extract-study.c:flow_set_mpls_lse_label
Unexecuted instantiation: dpif-netdev-lookup.c:flow_set_mpls_lse_label
Unexecuted instantiation: dpif-netdev-lookup-autovalidator.c:flow_set_mpls_lse_label
Unexecuted instantiation: dpif-netdev-lookup-generic.c:flow_set_mpls_lse_label
595
596
/* Set TC in mpls lse. */
597
static inline void
598
flow_set_mpls_lse_tc(ovs_be32 *mpls_lse, uint8_t tc)
599
0
{
600
0
    *mpls_lse &= ~htonl(MPLS_TC_MASK);
601
0
    *mpls_lse |= htonl((tc & 0x7) << MPLS_TC_SHIFT);
602
0
}
Unexecuted instantiation: flow_extract_target.c:flow_set_mpls_lse_tc
Unexecuted instantiation: dp-packet.c:flow_set_mpls_lse_tc
Unexecuted instantiation: flow.c:flow_set_mpls_lse_tc
Unexecuted instantiation: match.c:flow_set_mpls_lse_tc
Unexecuted instantiation: netdev.c:flow_set_mpls_lse_tc
Unexecuted instantiation: ofp-match.c:flow_set_mpls_lse_tc
Unexecuted instantiation: ofp-port.c:flow_set_mpls_lse_tc
Unexecuted instantiation: ofp-print.c:flow_set_mpls_lse_tc
Unexecuted instantiation: ofp-queue.c:flow_set_mpls_lse_tc
Unexecuted instantiation: ofp-table.c:flow_set_mpls_lse_tc
Unexecuted instantiation: ofp-util.c:flow_set_mpls_lse_tc
Unexecuted instantiation: ovs-router.c:flow_set_mpls_lse_tc
Unexecuted instantiation: packets.c:flow_set_mpls_lse_tc
Unexecuted instantiation: smap.c:flow_set_mpls_lse_tc
Unexecuted instantiation: socket-util.c:flow_set_mpls_lse_tc
Unexecuted instantiation: tnl-ports.c:flow_set_mpls_lse_tc
Unexecuted instantiation: tun-metadata.c:flow_set_mpls_lse_tc
Unexecuted instantiation: netdev-linux.c:flow_set_mpls_lse_tc
Unexecuted instantiation: netdev-offload-tc.c:flow_set_mpls_lse_tc
Unexecuted instantiation: rtnetlink.c:flow_set_mpls_lse_tc
Unexecuted instantiation: route-table.c:flow_set_mpls_lse_tc
Unexecuted instantiation: tc.c:flow_set_mpls_lse_tc
Unexecuted instantiation: classifier.c:flow_set_mpls_lse_tc
Unexecuted instantiation: dpif.c:flow_set_mpls_lse_tc
Unexecuted instantiation: meta-flow.c:flow_set_mpls_lse_tc
Unexecuted instantiation: netdev-offload.c:flow_set_mpls_lse_tc
Unexecuted instantiation: netdev-vport.c:flow_set_mpls_lse_tc
Unexecuted instantiation: netlink.c:flow_set_mpls_lse_tc
Unexecuted instantiation: nx-match.c:flow_set_mpls_lse_tc
Unexecuted instantiation: odp-execute.c:flow_set_mpls_lse_tc
Unexecuted instantiation: odp-execute-private.c:flow_set_mpls_lse_tc
Unexecuted instantiation: odp-util.c:flow_set_mpls_lse_tc
Unexecuted instantiation: ofp-actions.c:flow_set_mpls_lse_tc
Unexecuted instantiation: ofp-ct.c:flow_set_mpls_lse_tc
Unexecuted instantiation: ofp-ed-props.c:flow_set_mpls_lse_tc
Unexecuted instantiation: ofp-flow.c:flow_set_mpls_lse_tc
Unexecuted instantiation: ofp-group.c:flow_set_mpls_lse_tc
Unexecuted instantiation: ofp-meter.c:flow_set_mpls_lse_tc
Unexecuted instantiation: ofp-monitor.c:flow_set_mpls_lse_tc
Unexecuted instantiation: ofp-packet.c:flow_set_mpls_lse_tc
Unexecuted instantiation: ofp-parse.c:flow_set_mpls_lse_tc
Unexecuted instantiation: stream.c:flow_set_mpls_lse_tc
Unexecuted instantiation: tnl-neigh-cache.c:flow_set_mpls_lse_tc
Unexecuted instantiation: netdev-native-tnl.c:flow_set_mpls_lse_tc
Unexecuted instantiation: stream-unix.c:flow_set_mpls_lse_tc
Unexecuted instantiation: dpif-netlink.c:flow_set_mpls_lse_tc
Unexecuted instantiation: dpif-netlink-rtnl.c:flow_set_mpls_lse_tc
Unexecuted instantiation: netlink-conntrack.c:flow_set_mpls_lse_tc
Unexecuted instantiation: stream-ssl.c:flow_set_mpls_lse_tc
Unexecuted instantiation: bundle.c:flow_set_mpls_lse_tc
Unexecuted instantiation: conntrack.c:flow_set_mpls_lse_tc
Unexecuted instantiation: ct-dpif.c:flow_set_mpls_lse_tc
Unexecuted instantiation: dpctl.c:flow_set_mpls_lse_tc
Unexecuted instantiation: dpif-netdev.c:flow_set_mpls_lse_tc
Unexecuted instantiation: dpif-netdev-private-dfc.c:flow_set_mpls_lse_tc
Unexecuted instantiation: dpif-netdev-private-dpif.c:flow_set_mpls_lse_tc
Unexecuted instantiation: dpif-netdev-private-extract.c:flow_set_mpls_lse_tc
Unexecuted instantiation: ipf.c:flow_set_mpls_lse_tc
Unexecuted instantiation: learn.c:flow_set_mpls_lse_tc
Unexecuted instantiation: multipath.c:flow_set_mpls_lse_tc
Unexecuted instantiation: stream-tcp.c:flow_set_mpls_lse_tc
Unexecuted instantiation: conntrack-icmp.c:flow_set_mpls_lse_tc
Unexecuted instantiation: conntrack-tcp.c:flow_set_mpls_lse_tc
Unexecuted instantiation: conntrack-tp.c:flow_set_mpls_lse_tc
Unexecuted instantiation: conntrack-other.c:flow_set_mpls_lse_tc
Unexecuted instantiation: dpif-netdev-extract-study.c:flow_set_mpls_lse_tc
Unexecuted instantiation: dpif-netdev-lookup.c:flow_set_mpls_lse_tc
Unexecuted instantiation: dpif-netdev-lookup-autovalidator.c:flow_set_mpls_lse_tc
Unexecuted instantiation: dpif-netdev-lookup-generic.c:flow_set_mpls_lse_tc
603
604
/* Set BOS in mpls lse. */
605
static inline void
606
flow_set_mpls_lse_bos(ovs_be32 *mpls_lse, uint8_t bos)
607
0
{
608
0
    *mpls_lse &= ~htonl(MPLS_BOS_MASK);
609
0
    *mpls_lse |= htonl((bos & 0x1) << MPLS_BOS_SHIFT);
610
0
}
Unexecuted instantiation: flow_extract_target.c:flow_set_mpls_lse_bos
Unexecuted instantiation: dp-packet.c:flow_set_mpls_lse_bos
Unexecuted instantiation: flow.c:flow_set_mpls_lse_bos
Unexecuted instantiation: match.c:flow_set_mpls_lse_bos
Unexecuted instantiation: netdev.c:flow_set_mpls_lse_bos
Unexecuted instantiation: ofp-match.c:flow_set_mpls_lse_bos
Unexecuted instantiation: ofp-port.c:flow_set_mpls_lse_bos
Unexecuted instantiation: ofp-print.c:flow_set_mpls_lse_bos
Unexecuted instantiation: ofp-queue.c:flow_set_mpls_lse_bos
Unexecuted instantiation: ofp-table.c:flow_set_mpls_lse_bos
Unexecuted instantiation: ofp-util.c:flow_set_mpls_lse_bos
Unexecuted instantiation: ovs-router.c:flow_set_mpls_lse_bos
Unexecuted instantiation: packets.c:flow_set_mpls_lse_bos
Unexecuted instantiation: smap.c:flow_set_mpls_lse_bos
Unexecuted instantiation: socket-util.c:flow_set_mpls_lse_bos
Unexecuted instantiation: tnl-ports.c:flow_set_mpls_lse_bos
Unexecuted instantiation: tun-metadata.c:flow_set_mpls_lse_bos
Unexecuted instantiation: netdev-linux.c:flow_set_mpls_lse_bos
Unexecuted instantiation: netdev-offload-tc.c:flow_set_mpls_lse_bos
Unexecuted instantiation: rtnetlink.c:flow_set_mpls_lse_bos
Unexecuted instantiation: route-table.c:flow_set_mpls_lse_bos
Unexecuted instantiation: tc.c:flow_set_mpls_lse_bos
Unexecuted instantiation: classifier.c:flow_set_mpls_lse_bos
Unexecuted instantiation: dpif.c:flow_set_mpls_lse_bos
Unexecuted instantiation: meta-flow.c:flow_set_mpls_lse_bos
Unexecuted instantiation: netdev-offload.c:flow_set_mpls_lse_bos
Unexecuted instantiation: netdev-vport.c:flow_set_mpls_lse_bos
Unexecuted instantiation: netlink.c:flow_set_mpls_lse_bos
Unexecuted instantiation: nx-match.c:flow_set_mpls_lse_bos
Unexecuted instantiation: odp-execute.c:flow_set_mpls_lse_bos
Unexecuted instantiation: odp-execute-private.c:flow_set_mpls_lse_bos
Unexecuted instantiation: odp-util.c:flow_set_mpls_lse_bos
Unexecuted instantiation: ofp-actions.c:flow_set_mpls_lse_bos
Unexecuted instantiation: ofp-ct.c:flow_set_mpls_lse_bos
Unexecuted instantiation: ofp-ed-props.c:flow_set_mpls_lse_bos
Unexecuted instantiation: ofp-flow.c:flow_set_mpls_lse_bos
Unexecuted instantiation: ofp-group.c:flow_set_mpls_lse_bos
Unexecuted instantiation: ofp-meter.c:flow_set_mpls_lse_bos
Unexecuted instantiation: ofp-monitor.c:flow_set_mpls_lse_bos
Unexecuted instantiation: ofp-packet.c:flow_set_mpls_lse_bos
Unexecuted instantiation: ofp-parse.c:flow_set_mpls_lse_bos
Unexecuted instantiation: stream.c:flow_set_mpls_lse_bos
Unexecuted instantiation: tnl-neigh-cache.c:flow_set_mpls_lse_bos
Unexecuted instantiation: netdev-native-tnl.c:flow_set_mpls_lse_bos
Unexecuted instantiation: stream-unix.c:flow_set_mpls_lse_bos
Unexecuted instantiation: dpif-netlink.c:flow_set_mpls_lse_bos
Unexecuted instantiation: dpif-netlink-rtnl.c:flow_set_mpls_lse_bos
Unexecuted instantiation: netlink-conntrack.c:flow_set_mpls_lse_bos
Unexecuted instantiation: stream-ssl.c:flow_set_mpls_lse_bos
Unexecuted instantiation: bundle.c:flow_set_mpls_lse_bos
Unexecuted instantiation: conntrack.c:flow_set_mpls_lse_bos
Unexecuted instantiation: ct-dpif.c:flow_set_mpls_lse_bos
Unexecuted instantiation: dpctl.c:flow_set_mpls_lse_bos
Unexecuted instantiation: dpif-netdev.c:flow_set_mpls_lse_bos
Unexecuted instantiation: dpif-netdev-private-dfc.c:flow_set_mpls_lse_bos
Unexecuted instantiation: dpif-netdev-private-dpif.c:flow_set_mpls_lse_bos
Unexecuted instantiation: dpif-netdev-private-extract.c:flow_set_mpls_lse_bos
Unexecuted instantiation: ipf.c:flow_set_mpls_lse_bos
Unexecuted instantiation: learn.c:flow_set_mpls_lse_bos
Unexecuted instantiation: multipath.c:flow_set_mpls_lse_bos
Unexecuted instantiation: stream-tcp.c:flow_set_mpls_lse_bos
Unexecuted instantiation: conntrack-icmp.c:flow_set_mpls_lse_bos
Unexecuted instantiation: conntrack-tcp.c:flow_set_mpls_lse_bos
Unexecuted instantiation: conntrack-tp.c:flow_set_mpls_lse_bos
Unexecuted instantiation: conntrack-other.c:flow_set_mpls_lse_bos
Unexecuted instantiation: dpif-netdev-extract-study.c:flow_set_mpls_lse_bos
Unexecuted instantiation: dpif-netdev-lookup.c:flow_set_mpls_lse_bos
Unexecuted instantiation: dpif-netdev-lookup-autovalidator.c:flow_set_mpls_lse_bos
Unexecuted instantiation: dpif-netdev-lookup-generic.c:flow_set_mpls_lse_bos
611
612
/* Set TTL in mpls lse. */
613
static inline void
614
flow_set_mpls_lse_ttl(ovs_be32 *mpls_lse, uint8_t ttl)
615
0
{
616
0
    *mpls_lse &= ~htonl(MPLS_TTL_MASK);
617
0
    *mpls_lse |= htonl(ttl << MPLS_TTL_SHIFT);
618
0
}
Unexecuted instantiation: flow_extract_target.c:flow_set_mpls_lse_ttl
Unexecuted instantiation: dp-packet.c:flow_set_mpls_lse_ttl
Unexecuted instantiation: flow.c:flow_set_mpls_lse_ttl
Unexecuted instantiation: match.c:flow_set_mpls_lse_ttl
Unexecuted instantiation: netdev.c:flow_set_mpls_lse_ttl
Unexecuted instantiation: ofp-match.c:flow_set_mpls_lse_ttl
Unexecuted instantiation: ofp-port.c:flow_set_mpls_lse_ttl
Unexecuted instantiation: ofp-print.c:flow_set_mpls_lse_ttl
Unexecuted instantiation: ofp-queue.c:flow_set_mpls_lse_ttl
Unexecuted instantiation: ofp-table.c:flow_set_mpls_lse_ttl
Unexecuted instantiation: ofp-util.c:flow_set_mpls_lse_ttl
Unexecuted instantiation: ovs-router.c:flow_set_mpls_lse_ttl
Unexecuted instantiation: packets.c:flow_set_mpls_lse_ttl
Unexecuted instantiation: smap.c:flow_set_mpls_lse_ttl
Unexecuted instantiation: socket-util.c:flow_set_mpls_lse_ttl
Unexecuted instantiation: tnl-ports.c:flow_set_mpls_lse_ttl
Unexecuted instantiation: tun-metadata.c:flow_set_mpls_lse_ttl
Unexecuted instantiation: netdev-linux.c:flow_set_mpls_lse_ttl
Unexecuted instantiation: netdev-offload-tc.c:flow_set_mpls_lse_ttl
Unexecuted instantiation: rtnetlink.c:flow_set_mpls_lse_ttl
Unexecuted instantiation: route-table.c:flow_set_mpls_lse_ttl
Unexecuted instantiation: tc.c:flow_set_mpls_lse_ttl
Unexecuted instantiation: classifier.c:flow_set_mpls_lse_ttl
Unexecuted instantiation: dpif.c:flow_set_mpls_lse_ttl
Unexecuted instantiation: meta-flow.c:flow_set_mpls_lse_ttl
Unexecuted instantiation: netdev-offload.c:flow_set_mpls_lse_ttl
Unexecuted instantiation: netdev-vport.c:flow_set_mpls_lse_ttl
Unexecuted instantiation: netlink.c:flow_set_mpls_lse_ttl
Unexecuted instantiation: nx-match.c:flow_set_mpls_lse_ttl
Unexecuted instantiation: odp-execute.c:flow_set_mpls_lse_ttl
Unexecuted instantiation: odp-execute-private.c:flow_set_mpls_lse_ttl
Unexecuted instantiation: odp-util.c:flow_set_mpls_lse_ttl
Unexecuted instantiation: ofp-actions.c:flow_set_mpls_lse_ttl
Unexecuted instantiation: ofp-ct.c:flow_set_mpls_lse_ttl
Unexecuted instantiation: ofp-ed-props.c:flow_set_mpls_lse_ttl
Unexecuted instantiation: ofp-flow.c:flow_set_mpls_lse_ttl
Unexecuted instantiation: ofp-group.c:flow_set_mpls_lse_ttl
Unexecuted instantiation: ofp-meter.c:flow_set_mpls_lse_ttl
Unexecuted instantiation: ofp-monitor.c:flow_set_mpls_lse_ttl
Unexecuted instantiation: ofp-packet.c:flow_set_mpls_lse_ttl
Unexecuted instantiation: ofp-parse.c:flow_set_mpls_lse_ttl
Unexecuted instantiation: stream.c:flow_set_mpls_lse_ttl
Unexecuted instantiation: tnl-neigh-cache.c:flow_set_mpls_lse_ttl
Unexecuted instantiation: netdev-native-tnl.c:flow_set_mpls_lse_ttl
Unexecuted instantiation: stream-unix.c:flow_set_mpls_lse_ttl
Unexecuted instantiation: dpif-netlink.c:flow_set_mpls_lse_ttl
Unexecuted instantiation: dpif-netlink-rtnl.c:flow_set_mpls_lse_ttl
Unexecuted instantiation: netlink-conntrack.c:flow_set_mpls_lse_ttl
Unexecuted instantiation: stream-ssl.c:flow_set_mpls_lse_ttl
Unexecuted instantiation: bundle.c:flow_set_mpls_lse_ttl
Unexecuted instantiation: conntrack.c:flow_set_mpls_lse_ttl
Unexecuted instantiation: ct-dpif.c:flow_set_mpls_lse_ttl
Unexecuted instantiation: dpctl.c:flow_set_mpls_lse_ttl
Unexecuted instantiation: dpif-netdev.c:flow_set_mpls_lse_ttl
Unexecuted instantiation: dpif-netdev-private-dfc.c:flow_set_mpls_lse_ttl
Unexecuted instantiation: dpif-netdev-private-dpif.c:flow_set_mpls_lse_ttl
Unexecuted instantiation: dpif-netdev-private-extract.c:flow_set_mpls_lse_ttl
Unexecuted instantiation: ipf.c:flow_set_mpls_lse_ttl
Unexecuted instantiation: learn.c:flow_set_mpls_lse_ttl
Unexecuted instantiation: multipath.c:flow_set_mpls_lse_ttl
Unexecuted instantiation: stream-tcp.c:flow_set_mpls_lse_ttl
Unexecuted instantiation: conntrack-icmp.c:flow_set_mpls_lse_ttl
Unexecuted instantiation: conntrack-tcp.c:flow_set_mpls_lse_ttl
Unexecuted instantiation: conntrack-tp.c:flow_set_mpls_lse_ttl
Unexecuted instantiation: conntrack-other.c:flow_set_mpls_lse_ttl
Unexecuted instantiation: dpif-netdev-extract-study.c:flow_set_mpls_lse_ttl
Unexecuted instantiation: dpif-netdev-lookup.c:flow_set_mpls_lse_ttl
Unexecuted instantiation: dpif-netdev-lookup-autovalidator.c:flow_set_mpls_lse_ttl
Unexecuted instantiation: dpif-netdev-lookup-generic.c:flow_set_mpls_lse_ttl
619
620
/* Given a mpls label stack entry in network byte order
621
 * return mpls BoS bit  */
622
static inline uint8_t
623
mpls_lse_to_bos(ovs_be32 mpls_lse)
624
110
{
625
110
    return (mpls_lse & htonl(MPLS_BOS_MASK)) != 0;
626
110
}
Unexecuted instantiation: flow_extract_target.c:mpls_lse_to_bos
Unexecuted instantiation: dp-packet.c:mpls_lse_to_bos
Unexecuted instantiation: flow.c:mpls_lse_to_bos
match.c:mpls_lse_to_bos
Line
Count
Source
624
110
{
625
110
    return (mpls_lse & htonl(MPLS_BOS_MASK)) != 0;
626
110
}
Unexecuted instantiation: netdev.c:mpls_lse_to_bos
Unexecuted instantiation: ofp-match.c:mpls_lse_to_bos
Unexecuted instantiation: ofp-port.c:mpls_lse_to_bos
Unexecuted instantiation: ofp-print.c:mpls_lse_to_bos
Unexecuted instantiation: ofp-queue.c:mpls_lse_to_bos
Unexecuted instantiation: ofp-table.c:mpls_lse_to_bos
Unexecuted instantiation: ofp-util.c:mpls_lse_to_bos
Unexecuted instantiation: ovs-router.c:mpls_lse_to_bos
Unexecuted instantiation: packets.c:mpls_lse_to_bos
Unexecuted instantiation: smap.c:mpls_lse_to_bos
Unexecuted instantiation: socket-util.c:mpls_lse_to_bos
Unexecuted instantiation: tnl-ports.c:mpls_lse_to_bos
Unexecuted instantiation: tun-metadata.c:mpls_lse_to_bos
Unexecuted instantiation: netdev-linux.c:mpls_lse_to_bos
Unexecuted instantiation: netdev-offload-tc.c:mpls_lse_to_bos
Unexecuted instantiation: rtnetlink.c:mpls_lse_to_bos
Unexecuted instantiation: route-table.c:mpls_lse_to_bos
Unexecuted instantiation: tc.c:mpls_lse_to_bos
Unexecuted instantiation: classifier.c:mpls_lse_to_bos
Unexecuted instantiation: dpif.c:mpls_lse_to_bos
Unexecuted instantiation: meta-flow.c:mpls_lse_to_bos
Unexecuted instantiation: netdev-offload.c:mpls_lse_to_bos
Unexecuted instantiation: netdev-vport.c:mpls_lse_to_bos
Unexecuted instantiation: netlink.c:mpls_lse_to_bos
Unexecuted instantiation: nx-match.c:mpls_lse_to_bos
Unexecuted instantiation: odp-execute.c:mpls_lse_to_bos
Unexecuted instantiation: odp-execute-private.c:mpls_lse_to_bos
Unexecuted instantiation: odp-util.c:mpls_lse_to_bos
Unexecuted instantiation: ofp-actions.c:mpls_lse_to_bos
Unexecuted instantiation: ofp-ct.c:mpls_lse_to_bos
Unexecuted instantiation: ofp-ed-props.c:mpls_lse_to_bos
Unexecuted instantiation: ofp-flow.c:mpls_lse_to_bos
Unexecuted instantiation: ofp-group.c:mpls_lse_to_bos
Unexecuted instantiation: ofp-meter.c:mpls_lse_to_bos
Unexecuted instantiation: ofp-monitor.c:mpls_lse_to_bos
Unexecuted instantiation: ofp-packet.c:mpls_lse_to_bos
Unexecuted instantiation: ofp-parse.c:mpls_lse_to_bos
Unexecuted instantiation: stream.c:mpls_lse_to_bos
Unexecuted instantiation: tnl-neigh-cache.c:mpls_lse_to_bos
Unexecuted instantiation: netdev-native-tnl.c:mpls_lse_to_bos
Unexecuted instantiation: stream-unix.c:mpls_lse_to_bos
Unexecuted instantiation: dpif-netlink.c:mpls_lse_to_bos
Unexecuted instantiation: dpif-netlink-rtnl.c:mpls_lse_to_bos
Unexecuted instantiation: netlink-conntrack.c:mpls_lse_to_bos
Unexecuted instantiation: stream-ssl.c:mpls_lse_to_bos
Unexecuted instantiation: bundle.c:mpls_lse_to_bos
Unexecuted instantiation: conntrack.c:mpls_lse_to_bos
Unexecuted instantiation: ct-dpif.c:mpls_lse_to_bos
Unexecuted instantiation: dpctl.c:mpls_lse_to_bos
Unexecuted instantiation: dpif-netdev.c:mpls_lse_to_bos
Unexecuted instantiation: dpif-netdev-private-dfc.c:mpls_lse_to_bos
Unexecuted instantiation: dpif-netdev-private-dpif.c:mpls_lse_to_bos
Unexecuted instantiation: dpif-netdev-private-extract.c:mpls_lse_to_bos
Unexecuted instantiation: ipf.c:mpls_lse_to_bos
Unexecuted instantiation: learn.c:mpls_lse_to_bos
Unexecuted instantiation: multipath.c:mpls_lse_to_bos
Unexecuted instantiation: stream-tcp.c:mpls_lse_to_bos
Unexecuted instantiation: conntrack-icmp.c:mpls_lse_to_bos
Unexecuted instantiation: conntrack-tcp.c:mpls_lse_to_bos
Unexecuted instantiation: conntrack-tp.c:mpls_lse_to_bos
Unexecuted instantiation: conntrack-other.c:mpls_lse_to_bos
Unexecuted instantiation: dpif-netdev-extract-study.c:mpls_lse_to_bos
Unexecuted instantiation: dpif-netdev-lookup.c:mpls_lse_to_bos
Unexecuted instantiation: dpif-netdev-lookup-autovalidator.c:mpls_lse_to_bos
Unexecuted instantiation: dpif-netdev-lookup-generic.c:mpls_lse_to_bos
627
628
4.58k
#define IP_FMT "%"PRIu32".%"PRIu32".%"PRIu32".%"PRIu32
629
#define IP_ARGS(ip)                             \
630
4.58k
    ntohl(ip) >> 24,                            \
631
4.58k
    (ntohl(ip) >> 16) & 0xff,                   \
632
4.58k
    (ntohl(ip) >> 8) & 0xff,                    \
633
4.58k
    ntohl(ip) & 0xff
634
635
/* Example:
636
 *
637
 * char *string = "1 33.44.55.66 2";
638
 * ovs_be32 ip;
639
 * int a, b;
640
 *
641
 * if (ovs_scan(string, "%d"IP_SCAN_FMT"%d", &a, IP_SCAN_ARGS(&ip), &b)) {
642
 *     ...
643
 * }
644
 */
645
0
#define IP_SCAN_FMT "%"SCNu8".%"SCNu8".%"SCNu8".%"SCNu8
646
#define IP_SCAN_ARGS(ip)                                    \
647
0
        ((void) (ovs_be32) *(ip), &((uint8_t *) ip)[0]),    \
648
0
        &((uint8_t *) ip)[1],                               \
649
0
        &((uint8_t *) ip)[2],                               \
650
0
        &((uint8_t *) ip)[3]
651
652
0
#define IP_PORT_SCAN_FMT "%"SCNu8".%"SCNu8".%"SCNu8".%"SCNu8":%"SCNu16
653
#define IP_PORT_SCAN_ARGS(ip, port)                                    \
654
0
        ((void) (ovs_be32) *(ip), &((uint8_t *) ip)[0]),    \
655
0
        &((uint8_t *) ip)[1],                               \
656
0
        &((uint8_t *) ip)[2],                               \
657
0
        &((uint8_t *) ip)[3],                               \
658
0
        ((void) (ovs_be16) *(port), (uint16_t *) port)
659
660
/* Returns true if 'netmask' is a CIDR netmask, that is, if it consists of N
661
 * high-order 1-bits and 32-N low-order 0-bits. */
662
static inline bool
663
ip_is_cidr(ovs_be32 netmask)
664
0
{
665
0
    uint32_t x = ~ntohl(netmask);
666
0
    return !(x & (x + 1));
667
0
}
Unexecuted instantiation: flow_extract_target.c:ip_is_cidr
Unexecuted instantiation: dp-packet.c:ip_is_cidr
Unexecuted instantiation: flow.c:ip_is_cidr
Unexecuted instantiation: match.c:ip_is_cidr
Unexecuted instantiation: netdev.c:ip_is_cidr
Unexecuted instantiation: ofp-match.c:ip_is_cidr
Unexecuted instantiation: ofp-port.c:ip_is_cidr
Unexecuted instantiation: ofp-print.c:ip_is_cidr
Unexecuted instantiation: ofp-queue.c:ip_is_cidr
Unexecuted instantiation: ofp-table.c:ip_is_cidr
Unexecuted instantiation: ofp-util.c:ip_is_cidr
Unexecuted instantiation: ovs-router.c:ip_is_cidr
Unexecuted instantiation: packets.c:ip_is_cidr
Unexecuted instantiation: smap.c:ip_is_cidr
Unexecuted instantiation: socket-util.c:ip_is_cidr
Unexecuted instantiation: tnl-ports.c:ip_is_cidr
Unexecuted instantiation: tun-metadata.c:ip_is_cidr
Unexecuted instantiation: netdev-linux.c:ip_is_cidr
Unexecuted instantiation: netdev-offload-tc.c:ip_is_cidr
Unexecuted instantiation: rtnetlink.c:ip_is_cidr
Unexecuted instantiation: route-table.c:ip_is_cidr
Unexecuted instantiation: tc.c:ip_is_cidr
Unexecuted instantiation: classifier.c:ip_is_cidr
Unexecuted instantiation: dpif.c:ip_is_cidr
Unexecuted instantiation: meta-flow.c:ip_is_cidr
Unexecuted instantiation: netdev-offload.c:ip_is_cidr
Unexecuted instantiation: netdev-vport.c:ip_is_cidr
Unexecuted instantiation: netlink.c:ip_is_cidr
Unexecuted instantiation: nx-match.c:ip_is_cidr
Unexecuted instantiation: odp-execute.c:ip_is_cidr
Unexecuted instantiation: odp-execute-private.c:ip_is_cidr
Unexecuted instantiation: odp-util.c:ip_is_cidr
Unexecuted instantiation: ofp-actions.c:ip_is_cidr
Unexecuted instantiation: ofp-ct.c:ip_is_cidr
Unexecuted instantiation: ofp-ed-props.c:ip_is_cidr
Unexecuted instantiation: ofp-flow.c:ip_is_cidr
Unexecuted instantiation: ofp-group.c:ip_is_cidr
Unexecuted instantiation: ofp-meter.c:ip_is_cidr
Unexecuted instantiation: ofp-monitor.c:ip_is_cidr
Unexecuted instantiation: ofp-packet.c:ip_is_cidr
Unexecuted instantiation: ofp-parse.c:ip_is_cidr
Unexecuted instantiation: stream.c:ip_is_cidr
Unexecuted instantiation: tnl-neigh-cache.c:ip_is_cidr
Unexecuted instantiation: netdev-native-tnl.c:ip_is_cidr
Unexecuted instantiation: stream-unix.c:ip_is_cidr
Unexecuted instantiation: dpif-netlink.c:ip_is_cidr
Unexecuted instantiation: dpif-netlink-rtnl.c:ip_is_cidr
Unexecuted instantiation: netlink-conntrack.c:ip_is_cidr
Unexecuted instantiation: stream-ssl.c:ip_is_cidr
Unexecuted instantiation: bundle.c:ip_is_cidr
Unexecuted instantiation: conntrack.c:ip_is_cidr
Unexecuted instantiation: ct-dpif.c:ip_is_cidr
Unexecuted instantiation: dpctl.c:ip_is_cidr
Unexecuted instantiation: dpif-netdev.c:ip_is_cidr
Unexecuted instantiation: dpif-netdev-private-dfc.c:ip_is_cidr
Unexecuted instantiation: dpif-netdev-private-dpif.c:ip_is_cidr
Unexecuted instantiation: dpif-netdev-private-extract.c:ip_is_cidr
Unexecuted instantiation: ipf.c:ip_is_cidr
Unexecuted instantiation: learn.c:ip_is_cidr
Unexecuted instantiation: multipath.c:ip_is_cidr
Unexecuted instantiation: stream-tcp.c:ip_is_cidr
Unexecuted instantiation: conntrack-icmp.c:ip_is_cidr
Unexecuted instantiation: conntrack-tcp.c:ip_is_cidr
Unexecuted instantiation: conntrack-tp.c:ip_is_cidr
Unexecuted instantiation: conntrack-other.c:ip_is_cidr
Unexecuted instantiation: dpif-netdev-extract-study.c:ip_is_cidr
Unexecuted instantiation: dpif-netdev-lookup.c:ip_is_cidr
Unexecuted instantiation: dpif-netdev-lookup-autovalidator.c:ip_is_cidr
Unexecuted instantiation: dpif-netdev-lookup-generic.c:ip_is_cidr
668
static inline bool
669
ip_is_multicast(ovs_be32 ip)
670
0
{
671
0
    return (ip & htonl(0xf0000000)) == htonl(0xe0000000);
672
0
}
Unexecuted instantiation: flow_extract_target.c:ip_is_multicast
Unexecuted instantiation: dp-packet.c:ip_is_multicast
Unexecuted instantiation: flow.c:ip_is_multicast
Unexecuted instantiation: match.c:ip_is_multicast
Unexecuted instantiation: netdev.c:ip_is_multicast
Unexecuted instantiation: ofp-match.c:ip_is_multicast
Unexecuted instantiation: ofp-port.c:ip_is_multicast
Unexecuted instantiation: ofp-print.c:ip_is_multicast
Unexecuted instantiation: ofp-queue.c:ip_is_multicast
Unexecuted instantiation: ofp-table.c:ip_is_multicast
Unexecuted instantiation: ofp-util.c:ip_is_multicast
Unexecuted instantiation: ovs-router.c:ip_is_multicast
Unexecuted instantiation: packets.c:ip_is_multicast
Unexecuted instantiation: smap.c:ip_is_multicast
Unexecuted instantiation: socket-util.c:ip_is_multicast
Unexecuted instantiation: tnl-ports.c:ip_is_multicast
Unexecuted instantiation: tun-metadata.c:ip_is_multicast
Unexecuted instantiation: netdev-linux.c:ip_is_multicast
Unexecuted instantiation: netdev-offload-tc.c:ip_is_multicast
Unexecuted instantiation: rtnetlink.c:ip_is_multicast
Unexecuted instantiation: route-table.c:ip_is_multicast
Unexecuted instantiation: tc.c:ip_is_multicast
Unexecuted instantiation: classifier.c:ip_is_multicast
Unexecuted instantiation: dpif.c:ip_is_multicast
Unexecuted instantiation: meta-flow.c:ip_is_multicast
Unexecuted instantiation: netdev-offload.c:ip_is_multicast
Unexecuted instantiation: netdev-vport.c:ip_is_multicast
Unexecuted instantiation: netlink.c:ip_is_multicast
Unexecuted instantiation: nx-match.c:ip_is_multicast
Unexecuted instantiation: odp-execute.c:ip_is_multicast
Unexecuted instantiation: odp-execute-private.c:ip_is_multicast
Unexecuted instantiation: odp-util.c:ip_is_multicast
Unexecuted instantiation: ofp-actions.c:ip_is_multicast
Unexecuted instantiation: ofp-ct.c:ip_is_multicast
Unexecuted instantiation: ofp-ed-props.c:ip_is_multicast
Unexecuted instantiation: ofp-flow.c:ip_is_multicast
Unexecuted instantiation: ofp-group.c:ip_is_multicast
Unexecuted instantiation: ofp-meter.c:ip_is_multicast
Unexecuted instantiation: ofp-monitor.c:ip_is_multicast
Unexecuted instantiation: ofp-packet.c:ip_is_multicast
Unexecuted instantiation: ofp-parse.c:ip_is_multicast
Unexecuted instantiation: stream.c:ip_is_multicast
Unexecuted instantiation: tnl-neigh-cache.c:ip_is_multicast
Unexecuted instantiation: netdev-native-tnl.c:ip_is_multicast
Unexecuted instantiation: stream-unix.c:ip_is_multicast
Unexecuted instantiation: dpif-netlink.c:ip_is_multicast
Unexecuted instantiation: dpif-netlink-rtnl.c:ip_is_multicast
Unexecuted instantiation: netlink-conntrack.c:ip_is_multicast
Unexecuted instantiation: stream-ssl.c:ip_is_multicast
Unexecuted instantiation: bundle.c:ip_is_multicast
Unexecuted instantiation: conntrack.c:ip_is_multicast
Unexecuted instantiation: ct-dpif.c:ip_is_multicast
Unexecuted instantiation: dpctl.c:ip_is_multicast
Unexecuted instantiation: dpif-netdev.c:ip_is_multicast
Unexecuted instantiation: dpif-netdev-private-dfc.c:ip_is_multicast
Unexecuted instantiation: dpif-netdev-private-dpif.c:ip_is_multicast
Unexecuted instantiation: dpif-netdev-private-extract.c:ip_is_multicast
Unexecuted instantiation: ipf.c:ip_is_multicast
Unexecuted instantiation: learn.c:ip_is_multicast
Unexecuted instantiation: multipath.c:ip_is_multicast
Unexecuted instantiation: stream-tcp.c:ip_is_multicast
Unexecuted instantiation: conntrack-icmp.c:ip_is_multicast
Unexecuted instantiation: conntrack-tcp.c:ip_is_multicast
Unexecuted instantiation: conntrack-tp.c:ip_is_multicast
Unexecuted instantiation: conntrack-other.c:ip_is_multicast
Unexecuted instantiation: dpif-netdev-extract-study.c:ip_is_multicast
Unexecuted instantiation: dpif-netdev-lookup.c:ip_is_multicast
Unexecuted instantiation: dpif-netdev-lookup-autovalidator.c:ip_is_multicast
Unexecuted instantiation: dpif-netdev-lookup-generic.c:ip_is_multicast
673
static inline bool
674
ip_is_local_multicast(ovs_be32 ip)
675
0
{
676
0
    return (ip & htonl(0xffffff00)) == htonl(0xe0000000);
677
0
}
Unexecuted instantiation: flow_extract_target.c:ip_is_local_multicast
Unexecuted instantiation: dp-packet.c:ip_is_local_multicast
Unexecuted instantiation: flow.c:ip_is_local_multicast
Unexecuted instantiation: match.c:ip_is_local_multicast
Unexecuted instantiation: netdev.c:ip_is_local_multicast
Unexecuted instantiation: ofp-match.c:ip_is_local_multicast
Unexecuted instantiation: ofp-port.c:ip_is_local_multicast
Unexecuted instantiation: ofp-print.c:ip_is_local_multicast
Unexecuted instantiation: ofp-queue.c:ip_is_local_multicast
Unexecuted instantiation: ofp-table.c:ip_is_local_multicast
Unexecuted instantiation: ofp-util.c:ip_is_local_multicast
Unexecuted instantiation: ovs-router.c:ip_is_local_multicast
Unexecuted instantiation: packets.c:ip_is_local_multicast
Unexecuted instantiation: smap.c:ip_is_local_multicast
Unexecuted instantiation: socket-util.c:ip_is_local_multicast
Unexecuted instantiation: tnl-ports.c:ip_is_local_multicast
Unexecuted instantiation: tun-metadata.c:ip_is_local_multicast
Unexecuted instantiation: netdev-linux.c:ip_is_local_multicast
Unexecuted instantiation: netdev-offload-tc.c:ip_is_local_multicast
Unexecuted instantiation: rtnetlink.c:ip_is_local_multicast
Unexecuted instantiation: route-table.c:ip_is_local_multicast
Unexecuted instantiation: tc.c:ip_is_local_multicast
Unexecuted instantiation: classifier.c:ip_is_local_multicast
Unexecuted instantiation: dpif.c:ip_is_local_multicast
Unexecuted instantiation: meta-flow.c:ip_is_local_multicast
Unexecuted instantiation: netdev-offload.c:ip_is_local_multicast
Unexecuted instantiation: netdev-vport.c:ip_is_local_multicast
Unexecuted instantiation: netlink.c:ip_is_local_multicast
Unexecuted instantiation: nx-match.c:ip_is_local_multicast
Unexecuted instantiation: odp-execute.c:ip_is_local_multicast
Unexecuted instantiation: odp-execute-private.c:ip_is_local_multicast
Unexecuted instantiation: odp-util.c:ip_is_local_multicast
Unexecuted instantiation: ofp-actions.c:ip_is_local_multicast
Unexecuted instantiation: ofp-ct.c:ip_is_local_multicast
Unexecuted instantiation: ofp-ed-props.c:ip_is_local_multicast
Unexecuted instantiation: ofp-flow.c:ip_is_local_multicast
Unexecuted instantiation: ofp-group.c:ip_is_local_multicast
Unexecuted instantiation: ofp-meter.c:ip_is_local_multicast
Unexecuted instantiation: ofp-monitor.c:ip_is_local_multicast
Unexecuted instantiation: ofp-packet.c:ip_is_local_multicast
Unexecuted instantiation: ofp-parse.c:ip_is_local_multicast
Unexecuted instantiation: stream.c:ip_is_local_multicast
Unexecuted instantiation: tnl-neigh-cache.c:ip_is_local_multicast
Unexecuted instantiation: netdev-native-tnl.c:ip_is_local_multicast
Unexecuted instantiation: stream-unix.c:ip_is_local_multicast
Unexecuted instantiation: dpif-netlink.c:ip_is_local_multicast
Unexecuted instantiation: dpif-netlink-rtnl.c:ip_is_local_multicast
Unexecuted instantiation: netlink-conntrack.c:ip_is_local_multicast
Unexecuted instantiation: stream-ssl.c:ip_is_local_multicast
Unexecuted instantiation: bundle.c:ip_is_local_multicast
Unexecuted instantiation: conntrack.c:ip_is_local_multicast
Unexecuted instantiation: ct-dpif.c:ip_is_local_multicast
Unexecuted instantiation: dpctl.c:ip_is_local_multicast
Unexecuted instantiation: dpif-netdev.c:ip_is_local_multicast
Unexecuted instantiation: dpif-netdev-private-dfc.c:ip_is_local_multicast
Unexecuted instantiation: dpif-netdev-private-dpif.c:ip_is_local_multicast
Unexecuted instantiation: dpif-netdev-private-extract.c:ip_is_local_multicast
Unexecuted instantiation: ipf.c:ip_is_local_multicast
Unexecuted instantiation: learn.c:ip_is_local_multicast
Unexecuted instantiation: multipath.c:ip_is_local_multicast
Unexecuted instantiation: stream-tcp.c:ip_is_local_multicast
Unexecuted instantiation: conntrack-icmp.c:ip_is_local_multicast
Unexecuted instantiation: conntrack-tcp.c:ip_is_local_multicast
Unexecuted instantiation: conntrack-tp.c:ip_is_local_multicast
Unexecuted instantiation: conntrack-other.c:ip_is_local_multicast
Unexecuted instantiation: dpif-netdev-extract-study.c:ip_is_local_multicast
Unexecuted instantiation: dpif-netdev-lookup.c:ip_is_local_multicast
Unexecuted instantiation: dpif-netdev-lookup-autovalidator.c:ip_is_local_multicast
Unexecuted instantiation: dpif-netdev-lookup-generic.c:ip_is_local_multicast
678
int ip_count_cidr_bits(ovs_be32 netmask);
679
void ip_format_masked(ovs_be32 ip, ovs_be32 mask, struct ds *);
680
bool ip_parse(const char *s, ovs_be32 *ip);
681
char *ip_parse_port(const char *s, ovs_be32 *ip, ovs_be16 *port)
682
    OVS_WARN_UNUSED_RESULT;
683
char *ip_parse_masked(const char *s, ovs_be32 *ip, ovs_be32 *mask)
684
    OVS_WARN_UNUSED_RESULT;
685
char *ip_parse_cidr(const char *s, ovs_be32 *ip, unsigned int *plen)
686
    OVS_WARN_UNUSED_RESULT;
687
char *ip_parse_masked_len(const char *s, int *n, ovs_be32 *ip, ovs_be32 *mask)
688
    OVS_WARN_UNUSED_RESULT;
689
char *ip_parse_cidr_len(const char *s, int *n, ovs_be32 *ip,
690
                        unsigned int *plen)
691
    OVS_WARN_UNUSED_RESULT;
692
693
0
#define IP_VER(ip_ihl_ver) ((ip_ihl_ver) >> 4)
694
2.09k
#define IP_IHL(ip_ihl_ver) ((ip_ihl_ver) & 15)
695
0
#define IP_IHL_VER(ihl, ver) (((ver) << 4) | (ihl))
696
697
#ifndef IPPROTO_SCTP
698
#define IPPROTO_SCTP 132
699
#endif
700
701
#ifndef IPPROTO_DCCP
702
#define IPPROTO_DCCP 33
703
#endif
704
705
#ifndef IPPROTO_IGMP
706
#define IPPROTO_IGMP 2
707
#endif
708
709
#ifndef IPPROTO_UDPLITE
710
#define IPPROTO_UDPLITE 136
711
#endif
712
713
/* TOS fields. */
714
#define IP_ECN_NOT_ECT 0x0
715
#define IP_ECN_ECT_1 0x01
716
#define IP_ECN_ECT_0 0x02
717
0
#define IP_ECN_CE 0x03
718
7.14k
#define IP_ECN_MASK 0x03
719
#define IP_DSCP_CS6 0xc0
720
11.2k
#define IP_DSCP_MASK 0xfc
721
722
static inline int
723
IP_ECN_is_ce(uint8_t dsfield)
724
0
{
725
0
    return (dsfield & IP_ECN_MASK) == IP_ECN_CE;
726
0
}
Unexecuted instantiation: flow_extract_target.c:IP_ECN_is_ce
Unexecuted instantiation: dp-packet.c:IP_ECN_is_ce
Unexecuted instantiation: flow.c:IP_ECN_is_ce
Unexecuted instantiation: match.c:IP_ECN_is_ce
Unexecuted instantiation: netdev.c:IP_ECN_is_ce
Unexecuted instantiation: ofp-match.c:IP_ECN_is_ce
Unexecuted instantiation: ofp-port.c:IP_ECN_is_ce
Unexecuted instantiation: ofp-print.c:IP_ECN_is_ce
Unexecuted instantiation: ofp-queue.c:IP_ECN_is_ce
Unexecuted instantiation: ofp-table.c:IP_ECN_is_ce
Unexecuted instantiation: ofp-util.c:IP_ECN_is_ce
Unexecuted instantiation: ovs-router.c:IP_ECN_is_ce
Unexecuted instantiation: packets.c:IP_ECN_is_ce
Unexecuted instantiation: smap.c:IP_ECN_is_ce
Unexecuted instantiation: socket-util.c:IP_ECN_is_ce
Unexecuted instantiation: tnl-ports.c:IP_ECN_is_ce
Unexecuted instantiation: tun-metadata.c:IP_ECN_is_ce
Unexecuted instantiation: netdev-linux.c:IP_ECN_is_ce
Unexecuted instantiation: netdev-offload-tc.c:IP_ECN_is_ce
Unexecuted instantiation: rtnetlink.c:IP_ECN_is_ce
Unexecuted instantiation: route-table.c:IP_ECN_is_ce
Unexecuted instantiation: tc.c:IP_ECN_is_ce
Unexecuted instantiation: classifier.c:IP_ECN_is_ce
Unexecuted instantiation: dpif.c:IP_ECN_is_ce
Unexecuted instantiation: meta-flow.c:IP_ECN_is_ce
Unexecuted instantiation: netdev-offload.c:IP_ECN_is_ce
Unexecuted instantiation: netdev-vport.c:IP_ECN_is_ce
Unexecuted instantiation: netlink.c:IP_ECN_is_ce
Unexecuted instantiation: nx-match.c:IP_ECN_is_ce
Unexecuted instantiation: odp-execute.c:IP_ECN_is_ce
Unexecuted instantiation: odp-execute-private.c:IP_ECN_is_ce
Unexecuted instantiation: odp-util.c:IP_ECN_is_ce
Unexecuted instantiation: ofp-actions.c:IP_ECN_is_ce
Unexecuted instantiation: ofp-ct.c:IP_ECN_is_ce
Unexecuted instantiation: ofp-ed-props.c:IP_ECN_is_ce
Unexecuted instantiation: ofp-flow.c:IP_ECN_is_ce
Unexecuted instantiation: ofp-group.c:IP_ECN_is_ce
Unexecuted instantiation: ofp-meter.c:IP_ECN_is_ce
Unexecuted instantiation: ofp-monitor.c:IP_ECN_is_ce
Unexecuted instantiation: ofp-packet.c:IP_ECN_is_ce
Unexecuted instantiation: ofp-parse.c:IP_ECN_is_ce
Unexecuted instantiation: stream.c:IP_ECN_is_ce
Unexecuted instantiation: tnl-neigh-cache.c:IP_ECN_is_ce
Unexecuted instantiation: netdev-native-tnl.c:IP_ECN_is_ce
Unexecuted instantiation: stream-unix.c:IP_ECN_is_ce
Unexecuted instantiation: dpif-netlink.c:IP_ECN_is_ce
Unexecuted instantiation: dpif-netlink-rtnl.c:IP_ECN_is_ce
Unexecuted instantiation: netlink-conntrack.c:IP_ECN_is_ce
Unexecuted instantiation: stream-ssl.c:IP_ECN_is_ce
Unexecuted instantiation: bundle.c:IP_ECN_is_ce
Unexecuted instantiation: conntrack.c:IP_ECN_is_ce
Unexecuted instantiation: ct-dpif.c:IP_ECN_is_ce
Unexecuted instantiation: dpctl.c:IP_ECN_is_ce
Unexecuted instantiation: dpif-netdev.c:IP_ECN_is_ce
Unexecuted instantiation: dpif-netdev-private-dfc.c:IP_ECN_is_ce
Unexecuted instantiation: dpif-netdev-private-dpif.c:IP_ECN_is_ce
Unexecuted instantiation: dpif-netdev-private-extract.c:IP_ECN_is_ce
Unexecuted instantiation: ipf.c:IP_ECN_is_ce
Unexecuted instantiation: learn.c:IP_ECN_is_ce
Unexecuted instantiation: multipath.c:IP_ECN_is_ce
Unexecuted instantiation: stream-tcp.c:IP_ECN_is_ce
Unexecuted instantiation: conntrack-icmp.c:IP_ECN_is_ce
Unexecuted instantiation: conntrack-tcp.c:IP_ECN_is_ce
Unexecuted instantiation: conntrack-tp.c:IP_ECN_is_ce
Unexecuted instantiation: conntrack-other.c:IP_ECN_is_ce
Unexecuted instantiation: dpif-netdev-extract-study.c:IP_ECN_is_ce
Unexecuted instantiation: dpif-netdev-lookup.c:IP_ECN_is_ce
Unexecuted instantiation: dpif-netdev-lookup-autovalidator.c:IP_ECN_is_ce
Unexecuted instantiation: dpif-netdev-lookup-generic.c:IP_ECN_is_ce
727
728
#define IP_VERSION 4
729
730
#define IP_DONT_FRAGMENT  0x4000 /* Don't fragment. */
731
#define IP_MORE_FRAGMENTS 0x2000 /* More fragments. */
732
#define IP_FRAG_OFF_MASK  0x1fff /* Fragment offset. */
733
#define IP_IS_FRAGMENT(ip_frag_off) \
734
0
        ((ip_frag_off) & htons(IP_MORE_FRAGMENTS | IP_FRAG_OFF_MASK))
735
736
0
#define IP_HEADER_LEN 20
737
struct ip_header {
738
    uint8_t ip_ihl_ver;
739
    uint8_t ip_tos;
740
    ovs_be16 ip_tot_len;
741
    ovs_be16 ip_id;
742
    ovs_be16 ip_frag_off;
743
    uint8_t ip_ttl;
744
    uint8_t ip_proto;
745
    ovs_be16 ip_csum;
746
    ovs_16aligned_be32 ip_src;
747
    ovs_16aligned_be32 ip_dst;
748
};
749
BUILD_ASSERT_DECL(IP_HEADER_LEN == sizeof(struct ip_header));
750
751
/* ICMPv4 types. */
752
0
#define ICMP4_ECHO_REPLY 0
753
0
#define ICMP4_DST_UNREACH 3
754
0
#define ICMP4_SOURCEQUENCH 4
755
0
#define ICMP4_REDIRECT 5
756
0
#define ICMP4_ECHO_REQUEST 8
757
0
#define ICMP4_TIME_EXCEEDED 11
758
0
#define ICMP4_PARAM_PROB 12
759
0
#define ICMP4_TIMESTAMP 13
760
0
#define ICMP4_TIMESTAMPREPLY 14
761
0
#define ICMP4_INFOREQUEST 15
762
0
#define ICMP4_INFOREPLY 16
763
764
37
#define ICMP_HEADER_LEN 8
765
struct icmp_header {
766
    uint8_t icmp_type;
767
    uint8_t icmp_code;
768
    ovs_be16 icmp_csum;
769
    union {
770
        struct {
771
            ovs_be16 id;
772
            ovs_be16 seq;
773
        } echo;
774
        struct {
775
            ovs_be16 empty;
776
            ovs_be16 mtu;
777
        } frag;
778
        ovs_16aligned_be32 gateway;
779
    } icmp_fields;
780
};
781
BUILD_ASSERT_DECL(ICMP_HEADER_LEN == sizeof(struct icmp_header));
782
783
/* ICMPV4 */
784
0
#define ICMP_ERROR_DATA_L4_LEN 8
785
786
#define IGMP_HEADER_LEN 8
787
struct igmp_header {
788
    uint8_t igmp_type;
789
    uint8_t igmp_code;
790
    ovs_be16 igmp_csum;
791
    ovs_16aligned_be32 group;
792
};
793
BUILD_ASSERT_DECL(IGMP_HEADER_LEN == sizeof(struct igmp_header));
794
795
#define IGMPV3_HEADER_LEN 8
796
struct igmpv3_header {
797
    uint8_t type;
798
    uint8_t rsvr1;
799
    ovs_be16 csum;
800
    ovs_be16 rsvr2;
801
    ovs_be16 ngrp;
802
};
803
BUILD_ASSERT_DECL(IGMPV3_HEADER_LEN == sizeof(struct igmpv3_header));
804
805
#define IGMPV3_QUERY_HEADER_LEN 12
806
struct igmpv3_query_header {
807
    uint8_t type;
808
    uint8_t max_resp;
809
    ovs_be16 csum;
810
    ovs_16aligned_be32 group;
811
    uint8_t srs_qrv;
812
    uint8_t qqic;
813
    ovs_be16 nsrcs;
814
};
815
BUILD_ASSERT_DECL(
816
    IGMPV3_QUERY_HEADER_LEN == sizeof(struct igmpv3_query_header
817
));
818
819
#define IGMPV3_RECORD_LEN 8
820
struct igmpv3_record {
821
    uint8_t type;
822
    uint8_t aux_len;
823
    ovs_be16 nsrcs;
824
    ovs_16aligned_be32 maddr;
825
};
826
BUILD_ASSERT_DECL(IGMPV3_RECORD_LEN == sizeof(struct igmpv3_record));
827
828
0
#define IGMP_HOST_MEMBERSHIP_QUERY    0x11 /* From RFC1112 */
829
#define IGMP_HOST_MEMBERSHIP_REPORT   0x12 /* Ditto */
830
#define IGMPV2_HOST_MEMBERSHIP_REPORT 0x16 /* V2 version of 0x12 */
831
#define IGMP_HOST_LEAVE_MESSAGE       0x17
832
#define IGMPV3_HOST_MEMBERSHIP_REPORT 0x22 /* V3 version of 0x12 */
833
834
/*
835
 * IGMPv3 and MLDv2 use the same codes.
836
 */
837
#define IGMPV3_MODE_IS_INCLUDE 1
838
#define IGMPV3_MODE_IS_EXCLUDE 2
839
#define IGMPV3_CHANGE_TO_INCLUDE_MODE 3
840
#define IGMPV3_CHANGE_TO_EXCLUDE_MODE 4
841
#define IGMPV3_ALLOW_NEW_SOURCES 5
842
#define IGMPV3_BLOCK_OLD_SOURCES 6
843
844
32
#define SCTP_HEADER_LEN 12
845
struct sctp_header {
846
    ovs_be16 sctp_src;
847
    ovs_be16 sctp_dst;
848
    ovs_16aligned_be32 sctp_vtag;
849
    ovs_16aligned_be32 sctp_csum;
850
};
851
BUILD_ASSERT_DECL(SCTP_HEADER_LEN == sizeof(struct sctp_header));
852
853
288
#define UDP_HEADER_LEN 8
854
struct udp_header {
855
    ovs_be16 udp_src;
856
    ovs_be16 udp_dst;
857
    ovs_be16 udp_len;
858
    ovs_be16 udp_csum;
859
};
860
BUILD_ASSERT_DECL(UDP_HEADER_LEN == sizeof(struct udp_header));
861
862
#define ESP_HEADER_LEN 8
863
struct esp_header {
864
    ovs_be32 spi;
865
    ovs_be32 seq_no;
866
};
867
BUILD_ASSERT_DECL(ESP_HEADER_LEN == sizeof(struct esp_header));
868
869
#define ESP_TRAILER_LEN 2
870
struct esp_trailer {
871
    uint8_t pad_len;
872
    uint8_t next_hdr;
873
};
874
BUILD_ASSERT_DECL(ESP_TRAILER_LEN == sizeof(struct esp_trailer));
875
876
256
#define TCP_FIN 0x001
877
250
#define TCP_SYN 0x002
878
232
#define TCP_RST 0x004
879
278
#define TCP_PSH 0x008
880
294
#define TCP_ACK 0x010
881
148
#define TCP_URG 0x020
882
336
#define TCP_ECE 0x040
883
146
#define TCP_CWR 0x080
884
298
#define TCP_NS  0x100
885
886
0
#define TCP_CTL(flags, offset) (htons((flags) | ((offset) << 12)))
887
1.55k
#define TCP_FLAGS(tcp_ctl) (ntohs(tcp_ctl) & 0x0fff)
888
0
#define TCP_FLAGS_BE16(tcp_ctl) ((tcp_ctl) & htons(0x0fff))
889
588
#define TCP_OFFSET(tcp_ctl) (ntohs(tcp_ctl) >> 12)
890
891
633
#define TCP_HEADER_LEN 20
892
struct tcp_header {
893
    ovs_be16 tcp_src;
894
    ovs_be16 tcp_dst;
895
    ovs_16aligned_be32 tcp_seq;
896
    ovs_16aligned_be32 tcp_ack;
897
    ovs_be16 tcp_ctl;
898
    ovs_be16 tcp_winsz;
899
    ovs_be16 tcp_csum;
900
    ovs_be16 tcp_urg;
901
};
902
BUILD_ASSERT_DECL(TCP_HEADER_LEN == sizeof(struct tcp_header));
903
904
/* Connection states.
905
 *
906
 * Names like CS_RELATED are bit values, e.g. 1 << 2.
907
 * Names like CS_RELATED_BIT are bit indexes, e.g. 2. */
908
#define CS_STATES                               \
909
0
    CS_STATE(NEW,         0, "new")             \
910
0
    CS_STATE(ESTABLISHED, 1, "est")             \
911
0
    CS_STATE(RELATED,     2, "rel")             \
912
0
    CS_STATE(REPLY_DIR,   3, "rpl")             \
913
0
    CS_STATE(INVALID,     4, "inv")             \
914
0
    CS_STATE(TRACKED,     5, "trk")             \
915
0
    CS_STATE(SRC_NAT,     6, "snat")            \
916
0
    CS_STATE(DST_NAT,     7, "dnat")
917
918
enum {
919
#define CS_STATE(ENUM, INDEX, NAME) \
920
    CS_##ENUM = 1 << INDEX, \
921
    CS_##ENUM##_BIT = INDEX,
922
    CS_STATES
923
#undef CS_STATE
924
};
925
926
/* Undefined connection state bits. */
927
enum {
928
#define CS_STATE(ENUM, INDEX, NAME) +CS_##ENUM
929
    CS_SUPPORTED_MASK = CS_STATES
930
#undef CS_STATE
931
};
932
#define CS_UNSUPPORTED_MASK  (~(uint32_t)CS_SUPPORTED_MASK)
933
934
#define ARP_HRD_ETHERNET 1
935
#define ARP_PRO_IP 0x0800
936
0
#define ARP_OP_REQUEST 1
937
0
#define ARP_OP_REPLY 2
938
#define ARP_OP_RARP 3
939
940
148
#define ARP_ETH_HEADER_LEN 28
941
struct arp_eth_header {
942
    /* Generic members. */
943
    ovs_be16 ar_hrd;           /* Hardware type. */
944
    ovs_be16 ar_pro;           /* Protocol type. */
945
    uint8_t ar_hln;            /* Hardware address length. */
946
    uint8_t ar_pln;            /* Protocol address length. */
947
    ovs_be16 ar_op;            /* Opcode. */
948
949
    /* Ethernet+IPv4 specific members. */
950
    struct eth_addr ar_sha;     /* Sender hardware address. */
951
    ovs_16aligned_be32 ar_spa;  /* Sender protocol address. */
952
    struct eth_addr ar_tha;     /* Target hardware address. */
953
    ovs_16aligned_be32 ar_tpa;  /* Target protocol address. */
954
};
955
BUILD_ASSERT_DECL(ARP_ETH_HEADER_LEN == sizeof(struct arp_eth_header));
956
957
0
#define IPV6_HEADER_LEN 40
958
959
/* Like struct in6_addr, but whereas that struct requires 32-bit alignment on
960
 * most implementations, this one only requires 16-bit alignment. */
961
union ovs_16aligned_in6_addr {
962
    ovs_be16 be16[8];
963
    ovs_16aligned_be32 be32[4];
964
};
965
966
/* Like struct ip6_hdr, but whereas that struct requires 32-bit alignment, this
967
 * one only requires 16-bit alignment. */
968
struct ovs_16aligned_ip6_hdr {
969
    union {
970
        struct ovs_16aligned_ip6_hdrctl {
971
            ovs_16aligned_be32 ip6_un1_flow;
972
            ovs_be16 ip6_un1_plen;
973
            uint8_t ip6_un1_nxt;
974
            uint8_t ip6_un1_hlim;
975
        } ip6_un1;
976
        uint8_t ip6_un2_vfc;
977
    } ip6_ctlun;
978
    union ovs_16aligned_in6_addr ip6_src;
979
    union ovs_16aligned_in6_addr ip6_dst;
980
};
981
982
/* Like struct in6_frag, but whereas that struct requires 32-bit alignment,
983
 * this one only requires 16-bit alignment. */
984
struct ovs_16aligned_ip6_frag {
985
    uint8_t ip6f_nxt;
986
    uint8_t ip6f_reserved;
987
    ovs_be16 ip6f_offlg;
988
    ovs_16aligned_be32 ip6f_ident;
989
};
990
991
210
#define ICMP6_HEADER_LEN 4
992
struct icmp6_header {
993
    uint8_t icmp6_type;
994
    uint8_t icmp6_code;
995
    ovs_be16 icmp6_cksum;
996
};
997
BUILD_ASSERT_DECL(ICMP6_HEADER_LEN == sizeof(struct icmp6_header));
998
999
#define ICMP6_DATA_HEADER_LEN 8
1000
struct icmp6_data_header {
1001
    struct icmp6_header icmp6_base;
1002
    union {
1003
        ovs_16aligned_be32 be32[1];
1004
        ovs_be16           be16[2];
1005
        uint8_t            u8[4];
1006
    } icmp6_data;
1007
};
1008
BUILD_ASSERT_DECL(ICMP6_DATA_HEADER_LEN == sizeof(struct icmp6_data_header));
1009
1010
uint32_t packet_csum_pseudoheader6(const struct ovs_16aligned_ip6_hdr *);
1011
ovs_be16 packet_csum_upperlayer6(const struct ovs_16aligned_ip6_hdr *,
1012
                                 const void *, uint8_t, uint16_t);
1013
1014
/* Neighbor Discovery option field.
1015
 * ND options are always a multiple of 8 bytes in size. */
1016
1.82k
#define ND_LLA_OPT_LEN 8
1017
struct ovs_nd_lla_opt {
1018
    uint8_t type;               /* One of ND_OPT_*_LINKADDR. */
1019
    uint8_t len;
1020
    struct eth_addr mac;
1021
};
1022
BUILD_ASSERT_DECL(ND_LLA_OPT_LEN == sizeof(struct ovs_nd_lla_opt));
1023
1024
/* Neighbor Discovery option: Prefix Information. */
1025
0
#define ND_PREFIX_OPT_LEN 32
1026
struct ovs_nd_prefix_opt {
1027
    uint8_t type;               /* ND_OPT_PREFIX_INFORMATION. */
1028
    uint8_t len;                /* Always 4. */
1029
    uint8_t prefix_len;
1030
    uint8_t la_flags;           /* ND_PREFIX_* flags. */
1031
    ovs_16aligned_be32 valid_lifetime;
1032
    ovs_16aligned_be32 preferred_lifetime;
1033
    ovs_16aligned_be32 reserved;          /* Always 0. */
1034
    union ovs_16aligned_in6_addr prefix;
1035
};
1036
BUILD_ASSERT_DECL(ND_PREFIX_OPT_LEN == sizeof(struct ovs_nd_prefix_opt));
1037
1038
/* Neighbor Discovery option: MTU. */
1039
0
#define ND_MTU_OPT_LEN 8
1040
#define ND_MTU_DEFAULT 0
1041
struct ovs_nd_mtu_opt {
1042
    uint8_t  type;      /* ND_OPT_MTU */
1043
    uint8_t  len;       /* Always 1. */
1044
    ovs_be16 reserved;  /* Always 0. */
1045
    ovs_16aligned_be32 mtu;
1046
};
1047
BUILD_ASSERT_DECL(ND_MTU_OPT_LEN == sizeof(struct ovs_nd_mtu_opt));
1048
1049
/* Like struct nd_msg (from ndisc.h), but whereas that struct requires 32-bit
1050
 * alignment, this one only requires 16-bit alignment. */
1051
0
#define ND_MSG_LEN 24
1052
struct ovs_nd_msg {
1053
    struct icmp6_header icmph;
1054
    ovs_16aligned_be32 rso_flags;
1055
    union ovs_16aligned_in6_addr target;
1056
    struct ovs_nd_lla_opt options[0];
1057
};
1058
BUILD_ASSERT_DECL(ND_MSG_LEN == sizeof(struct ovs_nd_msg));
1059
1060
/* Neighbor Discovery packet flags. */
1061
#define ND_RSO_ROUTER    0x80000000
1062
#define ND_RSO_SOLICITED 0x40000000
1063
#define ND_RSO_OVERRIDE  0x20000000
1064
1065
0
#define RA_MSG_LEN 16
1066
struct ovs_ra_msg {
1067
    struct icmp6_header icmph;
1068
    uint8_t cur_hop_limit;
1069
    uint8_t mo_flags;  /* ND_RA_MANAGED_ADDRESS and ND_RA_OTHER_CONFIG flags. */
1070
    ovs_be16 router_lifetime;
1071
    ovs_be32 reachable_time;
1072
    ovs_be32 retrans_timer;
1073
    struct ovs_nd_lla_opt options[0];
1074
};
1075
BUILD_ASSERT_DECL(RA_MSG_LEN == sizeof(struct ovs_ra_msg));
1076
1077
#define ND_RA_MANAGED_ADDRESS 0x80
1078
#define ND_RA_OTHER_CONFIG    0x40
1079
1080
/* Defaults based on MaxRtrInterval and MinRtrInterval from RFC 4861 section
1081
 * 6.2.1
1082
 */
1083
#define ND_RA_MAX_INTERVAL_DEFAULT 600
1084
1085
static inline int
1086
nd_ra_min_interval_default(int max)
1087
0
{
1088
0
    return max >= 9 ? max / 3 : max * 3 / 4;
1089
0
}
Unexecuted instantiation: flow_extract_target.c:nd_ra_min_interval_default
Unexecuted instantiation: dp-packet.c:nd_ra_min_interval_default
Unexecuted instantiation: flow.c:nd_ra_min_interval_default
Unexecuted instantiation: match.c:nd_ra_min_interval_default
Unexecuted instantiation: netdev.c:nd_ra_min_interval_default
Unexecuted instantiation: ofp-match.c:nd_ra_min_interval_default
Unexecuted instantiation: ofp-port.c:nd_ra_min_interval_default
Unexecuted instantiation: ofp-print.c:nd_ra_min_interval_default
Unexecuted instantiation: ofp-queue.c:nd_ra_min_interval_default
Unexecuted instantiation: ofp-table.c:nd_ra_min_interval_default
Unexecuted instantiation: ofp-util.c:nd_ra_min_interval_default
Unexecuted instantiation: ovs-router.c:nd_ra_min_interval_default
Unexecuted instantiation: packets.c:nd_ra_min_interval_default
Unexecuted instantiation: smap.c:nd_ra_min_interval_default
Unexecuted instantiation: socket-util.c:nd_ra_min_interval_default
Unexecuted instantiation: tnl-ports.c:nd_ra_min_interval_default
Unexecuted instantiation: tun-metadata.c:nd_ra_min_interval_default
Unexecuted instantiation: netdev-linux.c:nd_ra_min_interval_default
Unexecuted instantiation: netdev-offload-tc.c:nd_ra_min_interval_default
Unexecuted instantiation: rtnetlink.c:nd_ra_min_interval_default
Unexecuted instantiation: route-table.c:nd_ra_min_interval_default
Unexecuted instantiation: tc.c:nd_ra_min_interval_default
Unexecuted instantiation: classifier.c:nd_ra_min_interval_default
Unexecuted instantiation: dpif.c:nd_ra_min_interval_default
Unexecuted instantiation: meta-flow.c:nd_ra_min_interval_default
Unexecuted instantiation: netdev-offload.c:nd_ra_min_interval_default
Unexecuted instantiation: netdev-vport.c:nd_ra_min_interval_default
Unexecuted instantiation: netlink.c:nd_ra_min_interval_default
Unexecuted instantiation: nx-match.c:nd_ra_min_interval_default
Unexecuted instantiation: odp-execute.c:nd_ra_min_interval_default
Unexecuted instantiation: odp-execute-private.c:nd_ra_min_interval_default
Unexecuted instantiation: odp-util.c:nd_ra_min_interval_default
Unexecuted instantiation: ofp-actions.c:nd_ra_min_interval_default
Unexecuted instantiation: ofp-ct.c:nd_ra_min_interval_default
Unexecuted instantiation: ofp-ed-props.c:nd_ra_min_interval_default
Unexecuted instantiation: ofp-flow.c:nd_ra_min_interval_default
Unexecuted instantiation: ofp-group.c:nd_ra_min_interval_default
Unexecuted instantiation: ofp-meter.c:nd_ra_min_interval_default
Unexecuted instantiation: ofp-monitor.c:nd_ra_min_interval_default
Unexecuted instantiation: ofp-packet.c:nd_ra_min_interval_default
Unexecuted instantiation: ofp-parse.c:nd_ra_min_interval_default
Unexecuted instantiation: stream.c:nd_ra_min_interval_default
Unexecuted instantiation: tnl-neigh-cache.c:nd_ra_min_interval_default
Unexecuted instantiation: netdev-native-tnl.c:nd_ra_min_interval_default
Unexecuted instantiation: stream-unix.c:nd_ra_min_interval_default
Unexecuted instantiation: dpif-netlink.c:nd_ra_min_interval_default
Unexecuted instantiation: dpif-netlink-rtnl.c:nd_ra_min_interval_default
Unexecuted instantiation: netlink-conntrack.c:nd_ra_min_interval_default
Unexecuted instantiation: stream-ssl.c:nd_ra_min_interval_default
Unexecuted instantiation: bundle.c:nd_ra_min_interval_default
Unexecuted instantiation: conntrack.c:nd_ra_min_interval_default
Unexecuted instantiation: ct-dpif.c:nd_ra_min_interval_default
Unexecuted instantiation: dpctl.c:nd_ra_min_interval_default
Unexecuted instantiation: dpif-netdev.c:nd_ra_min_interval_default
Unexecuted instantiation: dpif-netdev-private-dfc.c:nd_ra_min_interval_default
Unexecuted instantiation: dpif-netdev-private-dpif.c:nd_ra_min_interval_default
Unexecuted instantiation: dpif-netdev-private-extract.c:nd_ra_min_interval_default
Unexecuted instantiation: ipf.c:nd_ra_min_interval_default
Unexecuted instantiation: learn.c:nd_ra_min_interval_default
Unexecuted instantiation: multipath.c:nd_ra_min_interval_default
Unexecuted instantiation: stream-tcp.c:nd_ra_min_interval_default
Unexecuted instantiation: conntrack-icmp.c:nd_ra_min_interval_default
Unexecuted instantiation: conntrack-tcp.c:nd_ra_min_interval_default
Unexecuted instantiation: conntrack-tp.c:nd_ra_min_interval_default
Unexecuted instantiation: conntrack-other.c:nd_ra_min_interval_default
Unexecuted instantiation: dpif-netdev-extract-study.c:nd_ra_min_interval_default
Unexecuted instantiation: dpif-netdev-lookup.c:nd_ra_min_interval_default
Unexecuted instantiation: dpif-netdev-lookup-autovalidator.c:nd_ra_min_interval_default
Unexecuted instantiation: dpif-netdev-lookup-generic.c:nd_ra_min_interval_default
1090
1091
/*
1092
 * Use the same struct for MLD and MLD2, naming members as the defined fields in
1093
 * in the corresponding version of the protocol, though they are reserved in the
1094
 * other one.
1095
 */
1096
#define MLD_HEADER_LEN 8
1097
struct mld_header {
1098
    uint8_t type;
1099
    uint8_t code;
1100
    ovs_be16 csum;
1101
    ovs_be16 mrd;
1102
    ovs_be16 ngrp;
1103
};
1104
BUILD_ASSERT_DECL(MLD_HEADER_LEN == sizeof(struct mld_header));
1105
1106
#define MLD2_RECORD_LEN 20
1107
struct mld2_record {
1108
    uint8_t type;
1109
    uint8_t aux_len;
1110
    ovs_be16 nsrcs;
1111
    union ovs_16aligned_in6_addr maddr;
1112
};
1113
BUILD_ASSERT_DECL(MLD2_RECORD_LEN == sizeof(struct mld2_record));
1114
1115
#define MLD_QUERY 130
1116
#define MLD_REPORT 131
1117
#define MLD_DONE 132
1118
#define MLD2_REPORT 143
1119
1120
/* The IPv6 flow label is in the lower 20 bits of the first 32-bit word. */
1121
0
#define IPV6_LABEL_MASK 0x000fffff
1122
1123
/* Example:
1124
 *
1125
 * char *string = "1 ::1 2";
1126
 * char ipv6_s[IPV6_SCAN_LEN + 1];
1127
 * struct in6_addr ipv6;
1128
 *
1129
 * if (ovs_scan(string, "%d"IPV6_SCAN_FMT"%d", &a, ipv6_s, &b)
1130
 *     && inet_pton(AF_INET6, ipv6_s, &ipv6) == 1) {
1131
 *     ...
1132
 * }
1133
 */
1134
0
#define IPV6_SCAN_FMT "%46[0123456789abcdefABCDEF:.]"
1135
#define IPV6_SCAN_LEN 46
1136
1137
extern const struct in6_addr in6addr_exact;
1138
#define IN6ADDR_EXACT_INIT { { { 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, \
1139
                                 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff } } }
1140
1141
extern const struct in6_addr in6addr_all_hosts;
1142
#define IN6ADDR_ALL_HOSTS_INIT { { { 0xff,0x02,0x00,0x00,0x00,0x00,0x00,0x00, \
1143
                                     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01 } } }
1144
1145
extern const struct in6_addr in6addr_all_routers;
1146
#define IN6ADDR_ALL_ROUTERS_INIT { { { 0xff,0x02,0x00,0x00,0x00,0x00,0x00,0x00, \
1147
                                       0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02 } } }
1148
1149
static inline bool ipv6_addr_equals(const struct in6_addr *a,
1150
                                    const struct in6_addr *b)
1151
37.8k
{
1152
37.8k
#ifdef IN6_ARE_ADDR_EQUAL
1153
37.8k
    return IN6_ARE_ADDR_EQUAL(a, b);
1154
#else
1155
    return !memcmp(a, b, sizeof(*a));
1156
#endif
1157
37.8k
}
Unexecuted instantiation: flow_extract_target.c:ipv6_addr_equals
Unexecuted instantiation: dp-packet.c:ipv6_addr_equals
flow.c:ipv6_addr_equals
Line
Count
Source
1151
14.2k
{
1152
14.2k
#ifdef IN6_ARE_ADDR_EQUAL
1153
14.2k
    return IN6_ARE_ADDR_EQUAL(a, b);
1154
#else
1155
    return !memcmp(a, b, sizeof(*a));
1156
#endif
1157
14.2k
}
match.c:ipv6_addr_equals
Line
Count
Source
1151
19.2k
{
1152
19.2k
#ifdef IN6_ARE_ADDR_EQUAL
1153
19.2k
    return IN6_ARE_ADDR_EQUAL(a, b);
1154
#else
1155
    return !memcmp(a, b, sizeof(*a));
1156
#endif
1157
19.2k
}
Unexecuted instantiation: netdev.c:ipv6_addr_equals
Unexecuted instantiation: ofp-match.c:ipv6_addr_equals
Unexecuted instantiation: ofp-port.c:ipv6_addr_equals
Unexecuted instantiation: ofp-print.c:ipv6_addr_equals
Unexecuted instantiation: ofp-queue.c:ipv6_addr_equals
Unexecuted instantiation: ofp-table.c:ipv6_addr_equals
Unexecuted instantiation: ofp-util.c:ipv6_addr_equals
Unexecuted instantiation: ovs-router.c:ipv6_addr_equals
packets.c:ipv6_addr_equals
Line
Count
Source
1151
4.35k
{
1152
4.35k
#ifdef IN6_ARE_ADDR_EQUAL
1153
4.35k
    return IN6_ARE_ADDR_EQUAL(a, b);
1154
#else
1155
    return !memcmp(a, b, sizeof(*a));
1156
#endif
1157
4.35k
}
Unexecuted instantiation: smap.c:ipv6_addr_equals
Unexecuted instantiation: socket-util.c:ipv6_addr_equals
Unexecuted instantiation: tnl-ports.c:ipv6_addr_equals
Unexecuted instantiation: tun-metadata.c:ipv6_addr_equals
Unexecuted instantiation: netdev-linux.c:ipv6_addr_equals
Unexecuted instantiation: netdev-offload-tc.c:ipv6_addr_equals
Unexecuted instantiation: rtnetlink.c:ipv6_addr_equals
Unexecuted instantiation: route-table.c:ipv6_addr_equals
Unexecuted instantiation: tc.c:ipv6_addr_equals
Unexecuted instantiation: classifier.c:ipv6_addr_equals
Unexecuted instantiation: dpif.c:ipv6_addr_equals
Unexecuted instantiation: meta-flow.c:ipv6_addr_equals
Unexecuted instantiation: netdev-offload.c:ipv6_addr_equals
Unexecuted instantiation: netdev-vport.c:ipv6_addr_equals
Unexecuted instantiation: netlink.c:ipv6_addr_equals
Unexecuted instantiation: nx-match.c:ipv6_addr_equals
Unexecuted instantiation: odp-execute.c:ipv6_addr_equals
Unexecuted instantiation: odp-execute-private.c:ipv6_addr_equals
Unexecuted instantiation: odp-util.c:ipv6_addr_equals
Unexecuted instantiation: ofp-actions.c:ipv6_addr_equals
Unexecuted instantiation: ofp-ct.c:ipv6_addr_equals
Unexecuted instantiation: ofp-ed-props.c:ipv6_addr_equals
Unexecuted instantiation: ofp-flow.c:ipv6_addr_equals
Unexecuted instantiation: ofp-group.c:ipv6_addr_equals
Unexecuted instantiation: ofp-meter.c:ipv6_addr_equals
Unexecuted instantiation: ofp-monitor.c:ipv6_addr_equals
Unexecuted instantiation: ofp-packet.c:ipv6_addr_equals
Unexecuted instantiation: ofp-parse.c:ipv6_addr_equals
Unexecuted instantiation: stream.c:ipv6_addr_equals
Unexecuted instantiation: tnl-neigh-cache.c:ipv6_addr_equals
Unexecuted instantiation: netdev-native-tnl.c:ipv6_addr_equals
Unexecuted instantiation: stream-unix.c:ipv6_addr_equals
Unexecuted instantiation: dpif-netlink.c:ipv6_addr_equals
Unexecuted instantiation: dpif-netlink-rtnl.c:ipv6_addr_equals
Unexecuted instantiation: netlink-conntrack.c:ipv6_addr_equals
Unexecuted instantiation: stream-ssl.c:ipv6_addr_equals
Unexecuted instantiation: bundle.c:ipv6_addr_equals
Unexecuted instantiation: conntrack.c:ipv6_addr_equals
Unexecuted instantiation: ct-dpif.c:ipv6_addr_equals
Unexecuted instantiation: dpctl.c:ipv6_addr_equals
Unexecuted instantiation: dpif-netdev.c:ipv6_addr_equals
Unexecuted instantiation: dpif-netdev-private-dfc.c:ipv6_addr_equals
Unexecuted instantiation: dpif-netdev-private-dpif.c:ipv6_addr_equals
Unexecuted instantiation: dpif-netdev-private-extract.c:ipv6_addr_equals
Unexecuted instantiation: ipf.c:ipv6_addr_equals
Unexecuted instantiation: learn.c:ipv6_addr_equals
Unexecuted instantiation: multipath.c:ipv6_addr_equals
Unexecuted instantiation: stream-tcp.c:ipv6_addr_equals
Unexecuted instantiation: conntrack-icmp.c:ipv6_addr_equals
Unexecuted instantiation: conntrack-tcp.c:ipv6_addr_equals
Unexecuted instantiation: conntrack-tp.c:ipv6_addr_equals
Unexecuted instantiation: conntrack-other.c:ipv6_addr_equals
Unexecuted instantiation: dpif-netdev-extract-study.c:ipv6_addr_equals
Unexecuted instantiation: dpif-netdev-lookup.c:ipv6_addr_equals
Unexecuted instantiation: dpif-netdev-lookup-autovalidator.c:ipv6_addr_equals
Unexecuted instantiation: dpif-netdev-lookup-generic.c:ipv6_addr_equals
1158
1159
/* Checks the IPv6 address in 'mask' for all zeroes. */
1160
19.2k
static inline bool ipv6_mask_is_any(const struct in6_addr *mask) {
1161
19.2k
    return ipv6_addr_equals(mask, &in6addr_any);
1162
19.2k
}
Unexecuted instantiation: flow_extract_target.c:ipv6_mask_is_any
Unexecuted instantiation: dp-packet.c:ipv6_mask_is_any
Unexecuted instantiation: flow.c:ipv6_mask_is_any
match.c:ipv6_mask_is_any
Line
Count
Source
1160
19.2k
static inline bool ipv6_mask_is_any(const struct in6_addr *mask) {
1161
19.2k
    return ipv6_addr_equals(mask, &in6addr_any);
1162
19.2k
}
Unexecuted instantiation: netdev.c:ipv6_mask_is_any
Unexecuted instantiation: ofp-match.c:ipv6_mask_is_any
Unexecuted instantiation: ofp-port.c:ipv6_mask_is_any
Unexecuted instantiation: ofp-print.c:ipv6_mask_is_any
Unexecuted instantiation: ofp-queue.c:ipv6_mask_is_any
Unexecuted instantiation: ofp-table.c:ipv6_mask_is_any
Unexecuted instantiation: ofp-util.c:ipv6_mask_is_any
Unexecuted instantiation: ovs-router.c:ipv6_mask_is_any
Unexecuted instantiation: packets.c:ipv6_mask_is_any
Unexecuted instantiation: smap.c:ipv6_mask_is_any
Unexecuted instantiation: socket-util.c:ipv6_mask_is_any
Unexecuted instantiation: tnl-ports.c:ipv6_mask_is_any
Unexecuted instantiation: tun-metadata.c:ipv6_mask_is_any
Unexecuted instantiation: netdev-linux.c:ipv6_mask_is_any
Unexecuted instantiation: netdev-offload-tc.c:ipv6_mask_is_any
Unexecuted instantiation: rtnetlink.c:ipv6_mask_is_any
Unexecuted instantiation: route-table.c:ipv6_mask_is_any
Unexecuted instantiation: tc.c:ipv6_mask_is_any
Unexecuted instantiation: classifier.c:ipv6_mask_is_any
Unexecuted instantiation: dpif.c:ipv6_mask_is_any
Unexecuted instantiation: meta-flow.c:ipv6_mask_is_any
Unexecuted instantiation: netdev-offload.c:ipv6_mask_is_any
Unexecuted instantiation: netdev-vport.c:ipv6_mask_is_any
Unexecuted instantiation: netlink.c:ipv6_mask_is_any
Unexecuted instantiation: nx-match.c:ipv6_mask_is_any
Unexecuted instantiation: odp-execute.c:ipv6_mask_is_any
Unexecuted instantiation: odp-execute-private.c:ipv6_mask_is_any
Unexecuted instantiation: odp-util.c:ipv6_mask_is_any
Unexecuted instantiation: ofp-actions.c:ipv6_mask_is_any
Unexecuted instantiation: ofp-ct.c:ipv6_mask_is_any
Unexecuted instantiation: ofp-ed-props.c:ipv6_mask_is_any
Unexecuted instantiation: ofp-flow.c:ipv6_mask_is_any
Unexecuted instantiation: ofp-group.c:ipv6_mask_is_any
Unexecuted instantiation: ofp-meter.c:ipv6_mask_is_any
Unexecuted instantiation: ofp-monitor.c:ipv6_mask_is_any
Unexecuted instantiation: ofp-packet.c:ipv6_mask_is_any
Unexecuted instantiation: ofp-parse.c:ipv6_mask_is_any
Unexecuted instantiation: stream.c:ipv6_mask_is_any
Unexecuted instantiation: tnl-neigh-cache.c:ipv6_mask_is_any
Unexecuted instantiation: netdev-native-tnl.c:ipv6_mask_is_any
Unexecuted instantiation: stream-unix.c:ipv6_mask_is_any
Unexecuted instantiation: dpif-netlink.c:ipv6_mask_is_any
Unexecuted instantiation: dpif-netlink-rtnl.c:ipv6_mask_is_any
Unexecuted instantiation: netlink-conntrack.c:ipv6_mask_is_any
Unexecuted instantiation: stream-ssl.c:ipv6_mask_is_any
Unexecuted instantiation: bundle.c:ipv6_mask_is_any
Unexecuted instantiation: conntrack.c:ipv6_mask_is_any
Unexecuted instantiation: ct-dpif.c:ipv6_mask_is_any
Unexecuted instantiation: dpctl.c:ipv6_mask_is_any
Unexecuted instantiation: dpif-netdev.c:ipv6_mask_is_any
Unexecuted instantiation: dpif-netdev-private-dfc.c:ipv6_mask_is_any
Unexecuted instantiation: dpif-netdev-private-dpif.c:ipv6_mask_is_any
Unexecuted instantiation: dpif-netdev-private-extract.c:ipv6_mask_is_any
Unexecuted instantiation: ipf.c:ipv6_mask_is_any
Unexecuted instantiation: learn.c:ipv6_mask_is_any
Unexecuted instantiation: multipath.c:ipv6_mask_is_any
Unexecuted instantiation: stream-tcp.c:ipv6_mask_is_any
Unexecuted instantiation: conntrack-icmp.c:ipv6_mask_is_any
Unexecuted instantiation: conntrack-tcp.c:ipv6_mask_is_any
Unexecuted instantiation: conntrack-tp.c:ipv6_mask_is_any
Unexecuted instantiation: conntrack-other.c:ipv6_mask_is_any
Unexecuted instantiation: dpif-netdev-extract-study.c:ipv6_mask_is_any
Unexecuted instantiation: dpif-netdev-lookup.c:ipv6_mask_is_any
Unexecuted instantiation: dpif-netdev-lookup-autovalidator.c:ipv6_mask_is_any
Unexecuted instantiation: dpif-netdev-lookup-generic.c:ipv6_mask_is_any
1163
1164
4.35k
static inline bool ipv6_mask_is_exact(const struct in6_addr *mask) {
1165
4.35k
    return ipv6_addr_equals(mask, &in6addr_exact);
1166
4.35k
}
Unexecuted instantiation: flow_extract_target.c:ipv6_mask_is_exact
Unexecuted instantiation: dp-packet.c:ipv6_mask_is_exact
Unexecuted instantiation: flow.c:ipv6_mask_is_exact
Unexecuted instantiation: match.c:ipv6_mask_is_exact
Unexecuted instantiation: netdev.c:ipv6_mask_is_exact
Unexecuted instantiation: ofp-match.c:ipv6_mask_is_exact
Unexecuted instantiation: ofp-port.c:ipv6_mask_is_exact
Unexecuted instantiation: ofp-print.c:ipv6_mask_is_exact
Unexecuted instantiation: ofp-queue.c:ipv6_mask_is_exact
Unexecuted instantiation: ofp-table.c:ipv6_mask_is_exact
Unexecuted instantiation: ofp-util.c:ipv6_mask_is_exact
Unexecuted instantiation: ovs-router.c:ipv6_mask_is_exact
packets.c:ipv6_mask_is_exact
Line
Count
Source
1164
4.35k
static inline bool ipv6_mask_is_exact(const struct in6_addr *mask) {
1165
4.35k
    return ipv6_addr_equals(mask, &in6addr_exact);
1166
4.35k
}
Unexecuted instantiation: smap.c:ipv6_mask_is_exact
Unexecuted instantiation: socket-util.c:ipv6_mask_is_exact
Unexecuted instantiation: tnl-ports.c:ipv6_mask_is_exact
Unexecuted instantiation: tun-metadata.c:ipv6_mask_is_exact
Unexecuted instantiation: netdev-linux.c:ipv6_mask_is_exact
Unexecuted instantiation: netdev-offload-tc.c:ipv6_mask_is_exact
Unexecuted instantiation: rtnetlink.c:ipv6_mask_is_exact
Unexecuted instantiation: route-table.c:ipv6_mask_is_exact
Unexecuted instantiation: tc.c:ipv6_mask_is_exact
Unexecuted instantiation: classifier.c:ipv6_mask_is_exact
Unexecuted instantiation: dpif.c:ipv6_mask_is_exact
Unexecuted instantiation: meta-flow.c:ipv6_mask_is_exact
Unexecuted instantiation: netdev-offload.c:ipv6_mask_is_exact
Unexecuted instantiation: netdev-vport.c:ipv6_mask_is_exact
Unexecuted instantiation: netlink.c:ipv6_mask_is_exact
Unexecuted instantiation: nx-match.c:ipv6_mask_is_exact
Unexecuted instantiation: odp-execute.c:ipv6_mask_is_exact
Unexecuted instantiation: odp-execute-private.c:ipv6_mask_is_exact
Unexecuted instantiation: odp-util.c:ipv6_mask_is_exact
Unexecuted instantiation: ofp-actions.c:ipv6_mask_is_exact
Unexecuted instantiation: ofp-ct.c:ipv6_mask_is_exact
Unexecuted instantiation: ofp-ed-props.c:ipv6_mask_is_exact
Unexecuted instantiation: ofp-flow.c:ipv6_mask_is_exact
Unexecuted instantiation: ofp-group.c:ipv6_mask_is_exact
Unexecuted instantiation: ofp-meter.c:ipv6_mask_is_exact
Unexecuted instantiation: ofp-monitor.c:ipv6_mask_is_exact
Unexecuted instantiation: ofp-packet.c:ipv6_mask_is_exact
Unexecuted instantiation: ofp-parse.c:ipv6_mask_is_exact
Unexecuted instantiation: stream.c:ipv6_mask_is_exact
Unexecuted instantiation: tnl-neigh-cache.c:ipv6_mask_is_exact
Unexecuted instantiation: netdev-native-tnl.c:ipv6_mask_is_exact
Unexecuted instantiation: stream-unix.c:ipv6_mask_is_exact
Unexecuted instantiation: dpif-netlink.c:ipv6_mask_is_exact
Unexecuted instantiation: dpif-netlink-rtnl.c:ipv6_mask_is_exact
Unexecuted instantiation: netlink-conntrack.c:ipv6_mask_is_exact
Unexecuted instantiation: stream-ssl.c:ipv6_mask_is_exact
Unexecuted instantiation: bundle.c:ipv6_mask_is_exact
Unexecuted instantiation: conntrack.c:ipv6_mask_is_exact
Unexecuted instantiation: ct-dpif.c:ipv6_mask_is_exact
Unexecuted instantiation: dpctl.c:ipv6_mask_is_exact
Unexecuted instantiation: dpif-netdev.c:ipv6_mask_is_exact
Unexecuted instantiation: dpif-netdev-private-dfc.c:ipv6_mask_is_exact
Unexecuted instantiation: dpif-netdev-private-dpif.c:ipv6_mask_is_exact
Unexecuted instantiation: dpif-netdev-private-extract.c:ipv6_mask_is_exact
Unexecuted instantiation: ipf.c:ipv6_mask_is_exact
Unexecuted instantiation: learn.c:ipv6_mask_is_exact
Unexecuted instantiation: multipath.c:ipv6_mask_is_exact
Unexecuted instantiation: stream-tcp.c:ipv6_mask_is_exact
Unexecuted instantiation: conntrack-icmp.c:ipv6_mask_is_exact
Unexecuted instantiation: conntrack-tcp.c:ipv6_mask_is_exact
Unexecuted instantiation: conntrack-tp.c:ipv6_mask_is_exact
Unexecuted instantiation: conntrack-other.c:ipv6_mask_is_exact
Unexecuted instantiation: dpif-netdev-extract-study.c:ipv6_mask_is_exact
Unexecuted instantiation: dpif-netdev-lookup.c:ipv6_mask_is_exact
Unexecuted instantiation: dpif-netdev-lookup-autovalidator.c:ipv6_mask_is_exact
Unexecuted instantiation: dpif-netdev-lookup-generic.c:ipv6_mask_is_exact
1167
1168
0
static inline bool ipv6_is_all_hosts(const struct in6_addr *addr) {
1169
0
    return ipv6_addr_equals(addr, &in6addr_all_hosts);
1170
0
}
Unexecuted instantiation: flow_extract_target.c:ipv6_is_all_hosts
Unexecuted instantiation: dp-packet.c:ipv6_is_all_hosts
Unexecuted instantiation: flow.c:ipv6_is_all_hosts
Unexecuted instantiation: match.c:ipv6_is_all_hosts
Unexecuted instantiation: netdev.c:ipv6_is_all_hosts
Unexecuted instantiation: ofp-match.c:ipv6_is_all_hosts
Unexecuted instantiation: ofp-port.c:ipv6_is_all_hosts
Unexecuted instantiation: ofp-print.c:ipv6_is_all_hosts
Unexecuted instantiation: ofp-queue.c:ipv6_is_all_hosts
Unexecuted instantiation: ofp-table.c:ipv6_is_all_hosts
Unexecuted instantiation: ofp-util.c:ipv6_is_all_hosts
Unexecuted instantiation: ovs-router.c:ipv6_is_all_hosts
Unexecuted instantiation: packets.c:ipv6_is_all_hosts
Unexecuted instantiation: smap.c:ipv6_is_all_hosts
Unexecuted instantiation: socket-util.c:ipv6_is_all_hosts
Unexecuted instantiation: tnl-ports.c:ipv6_is_all_hosts
Unexecuted instantiation: tun-metadata.c:ipv6_is_all_hosts
Unexecuted instantiation: netdev-linux.c:ipv6_is_all_hosts
Unexecuted instantiation: netdev-offload-tc.c:ipv6_is_all_hosts
Unexecuted instantiation: rtnetlink.c:ipv6_is_all_hosts
Unexecuted instantiation: route-table.c:ipv6_is_all_hosts
Unexecuted instantiation: tc.c:ipv6_is_all_hosts
Unexecuted instantiation: classifier.c:ipv6_is_all_hosts
Unexecuted instantiation: dpif.c:ipv6_is_all_hosts
Unexecuted instantiation: meta-flow.c:ipv6_is_all_hosts
Unexecuted instantiation: netdev-offload.c:ipv6_is_all_hosts
Unexecuted instantiation: netdev-vport.c:ipv6_is_all_hosts
Unexecuted instantiation: netlink.c:ipv6_is_all_hosts
Unexecuted instantiation: nx-match.c:ipv6_is_all_hosts
Unexecuted instantiation: odp-execute.c:ipv6_is_all_hosts
Unexecuted instantiation: odp-execute-private.c:ipv6_is_all_hosts
Unexecuted instantiation: odp-util.c:ipv6_is_all_hosts
Unexecuted instantiation: ofp-actions.c:ipv6_is_all_hosts
Unexecuted instantiation: ofp-ct.c:ipv6_is_all_hosts
Unexecuted instantiation: ofp-ed-props.c:ipv6_is_all_hosts
Unexecuted instantiation: ofp-flow.c:ipv6_is_all_hosts
Unexecuted instantiation: ofp-group.c:ipv6_is_all_hosts
Unexecuted instantiation: ofp-meter.c:ipv6_is_all_hosts
Unexecuted instantiation: ofp-monitor.c:ipv6_is_all_hosts
Unexecuted instantiation: ofp-packet.c:ipv6_is_all_hosts
Unexecuted instantiation: ofp-parse.c:ipv6_is_all_hosts
Unexecuted instantiation: stream.c:ipv6_is_all_hosts
Unexecuted instantiation: tnl-neigh-cache.c:ipv6_is_all_hosts
Unexecuted instantiation: netdev-native-tnl.c:ipv6_is_all_hosts
Unexecuted instantiation: stream-unix.c:ipv6_is_all_hosts
Unexecuted instantiation: dpif-netlink.c:ipv6_is_all_hosts
Unexecuted instantiation: dpif-netlink-rtnl.c:ipv6_is_all_hosts
Unexecuted instantiation: netlink-conntrack.c:ipv6_is_all_hosts
Unexecuted instantiation: stream-ssl.c:ipv6_is_all_hosts
Unexecuted instantiation: bundle.c:ipv6_is_all_hosts
Unexecuted instantiation: conntrack.c:ipv6_is_all_hosts
Unexecuted instantiation: ct-dpif.c:ipv6_is_all_hosts
Unexecuted instantiation: dpctl.c:ipv6_is_all_hosts
Unexecuted instantiation: dpif-netdev.c:ipv6_is_all_hosts
Unexecuted instantiation: dpif-netdev-private-dfc.c:ipv6_is_all_hosts
Unexecuted instantiation: dpif-netdev-private-dpif.c:ipv6_is_all_hosts
Unexecuted instantiation: dpif-netdev-private-extract.c:ipv6_is_all_hosts
Unexecuted instantiation: ipf.c:ipv6_is_all_hosts
Unexecuted instantiation: learn.c:ipv6_is_all_hosts
Unexecuted instantiation: multipath.c:ipv6_is_all_hosts
Unexecuted instantiation: stream-tcp.c:ipv6_is_all_hosts
Unexecuted instantiation: conntrack-icmp.c:ipv6_is_all_hosts
Unexecuted instantiation: conntrack-tcp.c:ipv6_is_all_hosts
Unexecuted instantiation: conntrack-tp.c:ipv6_is_all_hosts
Unexecuted instantiation: conntrack-other.c:ipv6_is_all_hosts
Unexecuted instantiation: dpif-netdev-extract-study.c:ipv6_is_all_hosts
Unexecuted instantiation: dpif-netdev-lookup.c:ipv6_is_all_hosts
Unexecuted instantiation: dpif-netdev-lookup-autovalidator.c:ipv6_is_all_hosts
Unexecuted instantiation: dpif-netdev-lookup-generic.c:ipv6_is_all_hosts
1171
1172
14.2k
static inline bool ipv6_addr_is_set(const struct in6_addr *addr) {
1173
14.2k
    return !ipv6_addr_equals(addr, &in6addr_any);
1174
14.2k
}
Unexecuted instantiation: flow_extract_target.c:ipv6_addr_is_set
Unexecuted instantiation: dp-packet.c:ipv6_addr_is_set
flow.c:ipv6_addr_is_set
Line
Count
Source
1172
14.2k
static inline bool ipv6_addr_is_set(const struct in6_addr *addr) {
1173
14.2k
    return !ipv6_addr_equals(addr, &in6addr_any);
1174
14.2k
}
Unexecuted instantiation: match.c:ipv6_addr_is_set
Unexecuted instantiation: netdev.c:ipv6_addr_is_set
Unexecuted instantiation: ofp-match.c:ipv6_addr_is_set
Unexecuted instantiation: ofp-port.c:ipv6_addr_is_set
Unexecuted instantiation: ofp-print.c:ipv6_addr_is_set
Unexecuted instantiation: ofp-queue.c:ipv6_addr_is_set
Unexecuted instantiation: ofp-table.c:ipv6_addr_is_set
Unexecuted instantiation: ofp-util.c:ipv6_addr_is_set
Unexecuted instantiation: ovs-router.c:ipv6_addr_is_set
Unexecuted instantiation: packets.c:ipv6_addr_is_set
Unexecuted instantiation: smap.c:ipv6_addr_is_set
Unexecuted instantiation: socket-util.c:ipv6_addr_is_set
Unexecuted instantiation: tnl-ports.c:ipv6_addr_is_set
Unexecuted instantiation: tun-metadata.c:ipv6_addr_is_set
Unexecuted instantiation: netdev-linux.c:ipv6_addr_is_set
Unexecuted instantiation: netdev-offload-tc.c:ipv6_addr_is_set
Unexecuted instantiation: rtnetlink.c:ipv6_addr_is_set
Unexecuted instantiation: route-table.c:ipv6_addr_is_set
Unexecuted instantiation: tc.c:ipv6_addr_is_set
Unexecuted instantiation: classifier.c:ipv6_addr_is_set
Unexecuted instantiation: dpif.c:ipv6_addr_is_set
Unexecuted instantiation: meta-flow.c:ipv6_addr_is_set
Unexecuted instantiation: netdev-offload.c:ipv6_addr_is_set
Unexecuted instantiation: netdev-vport.c:ipv6_addr_is_set
Unexecuted instantiation: netlink.c:ipv6_addr_is_set
Unexecuted instantiation: nx-match.c:ipv6_addr_is_set
Unexecuted instantiation: odp-execute.c:ipv6_addr_is_set
Unexecuted instantiation: odp-execute-private.c:ipv6_addr_is_set
Unexecuted instantiation: odp-util.c:ipv6_addr_is_set
Unexecuted instantiation: ofp-actions.c:ipv6_addr_is_set
Unexecuted instantiation: ofp-ct.c:ipv6_addr_is_set
Unexecuted instantiation: ofp-ed-props.c:ipv6_addr_is_set
Unexecuted instantiation: ofp-flow.c:ipv6_addr_is_set
Unexecuted instantiation: ofp-group.c:ipv6_addr_is_set
Unexecuted instantiation: ofp-meter.c:ipv6_addr_is_set
Unexecuted instantiation: ofp-monitor.c:ipv6_addr_is_set
Unexecuted instantiation: ofp-packet.c:ipv6_addr_is_set
Unexecuted instantiation: ofp-parse.c:ipv6_addr_is_set
Unexecuted instantiation: stream.c:ipv6_addr_is_set
Unexecuted instantiation: tnl-neigh-cache.c:ipv6_addr_is_set
Unexecuted instantiation: netdev-native-tnl.c:ipv6_addr_is_set
Unexecuted instantiation: stream-unix.c:ipv6_addr_is_set
Unexecuted instantiation: dpif-netlink.c:ipv6_addr_is_set
Unexecuted instantiation: dpif-netlink-rtnl.c:ipv6_addr_is_set
Unexecuted instantiation: netlink-conntrack.c:ipv6_addr_is_set
Unexecuted instantiation: stream-ssl.c:ipv6_addr_is_set
Unexecuted instantiation: bundle.c:ipv6_addr_is_set
Unexecuted instantiation: conntrack.c:ipv6_addr_is_set
Unexecuted instantiation: ct-dpif.c:ipv6_addr_is_set
Unexecuted instantiation: dpctl.c:ipv6_addr_is_set
Unexecuted instantiation: dpif-netdev.c:ipv6_addr_is_set
Unexecuted instantiation: dpif-netdev-private-dfc.c:ipv6_addr_is_set
Unexecuted instantiation: dpif-netdev-private-dpif.c:ipv6_addr_is_set
Unexecuted instantiation: dpif-netdev-private-extract.c:ipv6_addr_is_set
Unexecuted instantiation: ipf.c:ipv6_addr_is_set
Unexecuted instantiation: learn.c:ipv6_addr_is_set
Unexecuted instantiation: multipath.c:ipv6_addr_is_set
Unexecuted instantiation: stream-tcp.c:ipv6_addr_is_set
Unexecuted instantiation: conntrack-icmp.c:ipv6_addr_is_set
Unexecuted instantiation: conntrack-tcp.c:ipv6_addr_is_set
Unexecuted instantiation: conntrack-tp.c:ipv6_addr_is_set
Unexecuted instantiation: conntrack-other.c:ipv6_addr_is_set
Unexecuted instantiation: dpif-netdev-extract-study.c:ipv6_addr_is_set
Unexecuted instantiation: dpif-netdev-lookup.c:ipv6_addr_is_set
Unexecuted instantiation: dpif-netdev-lookup-autovalidator.c:ipv6_addr_is_set
Unexecuted instantiation: dpif-netdev-lookup-generic.c:ipv6_addr_is_set
1175
1176
0
static inline bool ipv6_addr_is_multicast(const struct in6_addr *ip) {
1177
0
    return ip->s6_addr[0] == 0xff;
1178
0
}
Unexecuted instantiation: flow_extract_target.c:ipv6_addr_is_multicast
Unexecuted instantiation: dp-packet.c:ipv6_addr_is_multicast
Unexecuted instantiation: flow.c:ipv6_addr_is_multicast
Unexecuted instantiation: match.c:ipv6_addr_is_multicast
Unexecuted instantiation: netdev.c:ipv6_addr_is_multicast
Unexecuted instantiation: ofp-match.c:ipv6_addr_is_multicast
Unexecuted instantiation: ofp-port.c:ipv6_addr_is_multicast
Unexecuted instantiation: ofp-print.c:ipv6_addr_is_multicast
Unexecuted instantiation: ofp-queue.c:ipv6_addr_is_multicast
Unexecuted instantiation: ofp-table.c:ipv6_addr_is_multicast
Unexecuted instantiation: ofp-util.c:ipv6_addr_is_multicast
Unexecuted instantiation: ovs-router.c:ipv6_addr_is_multicast
Unexecuted instantiation: packets.c:ipv6_addr_is_multicast
Unexecuted instantiation: smap.c:ipv6_addr_is_multicast
Unexecuted instantiation: socket-util.c:ipv6_addr_is_multicast
Unexecuted instantiation: tnl-ports.c:ipv6_addr_is_multicast
Unexecuted instantiation: tun-metadata.c:ipv6_addr_is_multicast
Unexecuted instantiation: netdev-linux.c:ipv6_addr_is_multicast
Unexecuted instantiation: netdev-offload-tc.c:ipv6_addr_is_multicast
Unexecuted instantiation: rtnetlink.c:ipv6_addr_is_multicast
Unexecuted instantiation: route-table.c:ipv6_addr_is_multicast
Unexecuted instantiation: tc.c:ipv6_addr_is_multicast
Unexecuted instantiation: classifier.c:ipv6_addr_is_multicast
Unexecuted instantiation: dpif.c:ipv6_addr_is_multicast
Unexecuted instantiation: meta-flow.c:ipv6_addr_is_multicast
Unexecuted instantiation: netdev-offload.c:ipv6_addr_is_multicast
Unexecuted instantiation: netdev-vport.c:ipv6_addr_is_multicast
Unexecuted instantiation: netlink.c:ipv6_addr_is_multicast
Unexecuted instantiation: nx-match.c:ipv6_addr_is_multicast
Unexecuted instantiation: odp-execute.c:ipv6_addr_is_multicast
Unexecuted instantiation: odp-execute-private.c:ipv6_addr_is_multicast
Unexecuted instantiation: odp-util.c:ipv6_addr_is_multicast
Unexecuted instantiation: ofp-actions.c:ipv6_addr_is_multicast
Unexecuted instantiation: ofp-ct.c:ipv6_addr_is_multicast
Unexecuted instantiation: ofp-ed-props.c:ipv6_addr_is_multicast
Unexecuted instantiation: ofp-flow.c:ipv6_addr_is_multicast
Unexecuted instantiation: ofp-group.c:ipv6_addr_is_multicast
Unexecuted instantiation: ofp-meter.c:ipv6_addr_is_multicast
Unexecuted instantiation: ofp-monitor.c:ipv6_addr_is_multicast
Unexecuted instantiation: ofp-packet.c:ipv6_addr_is_multicast
Unexecuted instantiation: ofp-parse.c:ipv6_addr_is_multicast
Unexecuted instantiation: stream.c:ipv6_addr_is_multicast
Unexecuted instantiation: tnl-neigh-cache.c:ipv6_addr_is_multicast
Unexecuted instantiation: netdev-native-tnl.c:ipv6_addr_is_multicast
Unexecuted instantiation: stream-unix.c:ipv6_addr_is_multicast
Unexecuted instantiation: dpif-netlink.c:ipv6_addr_is_multicast
Unexecuted instantiation: dpif-netlink-rtnl.c:ipv6_addr_is_multicast
Unexecuted instantiation: netlink-conntrack.c:ipv6_addr_is_multicast
Unexecuted instantiation: stream-ssl.c:ipv6_addr_is_multicast
Unexecuted instantiation: bundle.c:ipv6_addr_is_multicast
Unexecuted instantiation: conntrack.c:ipv6_addr_is_multicast
Unexecuted instantiation: ct-dpif.c:ipv6_addr_is_multicast
Unexecuted instantiation: dpctl.c:ipv6_addr_is_multicast
Unexecuted instantiation: dpif-netdev.c:ipv6_addr_is_multicast
Unexecuted instantiation: dpif-netdev-private-dfc.c:ipv6_addr_is_multicast
Unexecuted instantiation: dpif-netdev-private-dpif.c:ipv6_addr_is_multicast
Unexecuted instantiation: dpif-netdev-private-extract.c:ipv6_addr_is_multicast
Unexecuted instantiation: ipf.c:ipv6_addr_is_multicast
Unexecuted instantiation: learn.c:ipv6_addr_is_multicast
Unexecuted instantiation: multipath.c:ipv6_addr_is_multicast
Unexecuted instantiation: stream-tcp.c:ipv6_addr_is_multicast
Unexecuted instantiation: conntrack-icmp.c:ipv6_addr_is_multicast
Unexecuted instantiation: conntrack-tcp.c:ipv6_addr_is_multicast
Unexecuted instantiation: conntrack-tp.c:ipv6_addr_is_multicast
Unexecuted instantiation: conntrack-other.c:ipv6_addr_is_multicast
Unexecuted instantiation: dpif-netdev-extract-study.c:ipv6_addr_is_multicast
Unexecuted instantiation: dpif-netdev-lookup.c:ipv6_addr_is_multicast
Unexecuted instantiation: dpif-netdev-lookup-autovalidator.c:ipv6_addr_is_multicast
Unexecuted instantiation: dpif-netdev-lookup-generic.c:ipv6_addr_is_multicast
1179
1180
static inline struct in6_addr
1181
in6_addr_mapped_ipv4(ovs_be32 ip4)
1182
0
{
1183
0
    struct in6_addr ip6;
1184
0
    memset(&ip6, 0, sizeof(ip6));
1185
0
    ip6.s6_addr[10] = 0xff, ip6.s6_addr[11] = 0xff;
1186
0
    memcpy(&ip6.s6_addr[12], &ip4, 4);
1187
0
    return ip6;
1188
0
}
Unexecuted instantiation: flow_extract_target.c:in6_addr_mapped_ipv4
Unexecuted instantiation: dp-packet.c:in6_addr_mapped_ipv4
Unexecuted instantiation: flow.c:in6_addr_mapped_ipv4
Unexecuted instantiation: match.c:in6_addr_mapped_ipv4
Unexecuted instantiation: netdev.c:in6_addr_mapped_ipv4
Unexecuted instantiation: ofp-match.c:in6_addr_mapped_ipv4
Unexecuted instantiation: ofp-port.c:in6_addr_mapped_ipv4
Unexecuted instantiation: ofp-print.c:in6_addr_mapped_ipv4
Unexecuted instantiation: ofp-queue.c:in6_addr_mapped_ipv4
Unexecuted instantiation: ofp-table.c:in6_addr_mapped_ipv4
Unexecuted instantiation: ofp-util.c:in6_addr_mapped_ipv4
Unexecuted instantiation: ovs-router.c:in6_addr_mapped_ipv4
Unexecuted instantiation: packets.c:in6_addr_mapped_ipv4
Unexecuted instantiation: smap.c:in6_addr_mapped_ipv4
Unexecuted instantiation: socket-util.c:in6_addr_mapped_ipv4
Unexecuted instantiation: tnl-ports.c:in6_addr_mapped_ipv4
Unexecuted instantiation: tun-metadata.c:in6_addr_mapped_ipv4
Unexecuted instantiation: netdev-linux.c:in6_addr_mapped_ipv4
Unexecuted instantiation: netdev-offload-tc.c:in6_addr_mapped_ipv4
Unexecuted instantiation: rtnetlink.c:in6_addr_mapped_ipv4
Unexecuted instantiation: route-table.c:in6_addr_mapped_ipv4
Unexecuted instantiation: tc.c:in6_addr_mapped_ipv4
Unexecuted instantiation: classifier.c:in6_addr_mapped_ipv4
Unexecuted instantiation: dpif.c:in6_addr_mapped_ipv4
Unexecuted instantiation: meta-flow.c:in6_addr_mapped_ipv4
Unexecuted instantiation: netdev-offload.c:in6_addr_mapped_ipv4
Unexecuted instantiation: netdev-vport.c:in6_addr_mapped_ipv4
Unexecuted instantiation: netlink.c:in6_addr_mapped_ipv4
Unexecuted instantiation: nx-match.c:in6_addr_mapped_ipv4
Unexecuted instantiation: odp-execute.c:in6_addr_mapped_ipv4
Unexecuted instantiation: odp-execute-private.c:in6_addr_mapped_ipv4
Unexecuted instantiation: odp-util.c:in6_addr_mapped_ipv4
Unexecuted instantiation: ofp-actions.c:in6_addr_mapped_ipv4
Unexecuted instantiation: ofp-ct.c:in6_addr_mapped_ipv4
Unexecuted instantiation: ofp-ed-props.c:in6_addr_mapped_ipv4
Unexecuted instantiation: ofp-flow.c:in6_addr_mapped_ipv4
Unexecuted instantiation: ofp-group.c:in6_addr_mapped_ipv4
Unexecuted instantiation: ofp-meter.c:in6_addr_mapped_ipv4
Unexecuted instantiation: ofp-monitor.c:in6_addr_mapped_ipv4
Unexecuted instantiation: ofp-packet.c:in6_addr_mapped_ipv4
Unexecuted instantiation: ofp-parse.c:in6_addr_mapped_ipv4
Unexecuted instantiation: stream.c:in6_addr_mapped_ipv4
Unexecuted instantiation: tnl-neigh-cache.c:in6_addr_mapped_ipv4
Unexecuted instantiation: netdev-native-tnl.c:in6_addr_mapped_ipv4
Unexecuted instantiation: stream-unix.c:in6_addr_mapped_ipv4
Unexecuted instantiation: dpif-netlink.c:in6_addr_mapped_ipv4
Unexecuted instantiation: dpif-netlink-rtnl.c:in6_addr_mapped_ipv4
Unexecuted instantiation: netlink-conntrack.c:in6_addr_mapped_ipv4
Unexecuted instantiation: stream-ssl.c:in6_addr_mapped_ipv4
Unexecuted instantiation: bundle.c:in6_addr_mapped_ipv4
Unexecuted instantiation: conntrack.c:in6_addr_mapped_ipv4
Unexecuted instantiation: ct-dpif.c:in6_addr_mapped_ipv4
Unexecuted instantiation: dpctl.c:in6_addr_mapped_ipv4
Unexecuted instantiation: dpif-netdev.c:in6_addr_mapped_ipv4
Unexecuted instantiation: dpif-netdev-private-dfc.c:in6_addr_mapped_ipv4
Unexecuted instantiation: dpif-netdev-private-dpif.c:in6_addr_mapped_ipv4
Unexecuted instantiation: dpif-netdev-private-extract.c:in6_addr_mapped_ipv4
Unexecuted instantiation: ipf.c:in6_addr_mapped_ipv4
Unexecuted instantiation: learn.c:in6_addr_mapped_ipv4
Unexecuted instantiation: multipath.c:in6_addr_mapped_ipv4
Unexecuted instantiation: stream-tcp.c:in6_addr_mapped_ipv4
Unexecuted instantiation: conntrack-icmp.c:in6_addr_mapped_ipv4
Unexecuted instantiation: conntrack-tcp.c:in6_addr_mapped_ipv4
Unexecuted instantiation: conntrack-tp.c:in6_addr_mapped_ipv4
Unexecuted instantiation: conntrack-other.c:in6_addr_mapped_ipv4
Unexecuted instantiation: dpif-netdev-extract-study.c:in6_addr_mapped_ipv4
Unexecuted instantiation: dpif-netdev-lookup.c:in6_addr_mapped_ipv4
Unexecuted instantiation: dpif-netdev-lookup-autovalidator.c:in6_addr_mapped_ipv4
Unexecuted instantiation: dpif-netdev-lookup-generic.c:in6_addr_mapped_ipv4
1189
1190
static inline void
1191
in6_addr_set_mapped_ipv4(struct in6_addr *ip6, ovs_be32 ip4)
1192
0
{
1193
0
    *ip6 = in6_addr_mapped_ipv4(ip4);
1194
0
}
Unexecuted instantiation: flow_extract_target.c:in6_addr_set_mapped_ipv4
Unexecuted instantiation: dp-packet.c:in6_addr_set_mapped_ipv4
Unexecuted instantiation: flow.c:in6_addr_set_mapped_ipv4
Unexecuted instantiation: match.c:in6_addr_set_mapped_ipv4
Unexecuted instantiation: netdev.c:in6_addr_set_mapped_ipv4
Unexecuted instantiation: ofp-match.c:in6_addr_set_mapped_ipv4
Unexecuted instantiation: ofp-port.c:in6_addr_set_mapped_ipv4
Unexecuted instantiation: ofp-print.c:in6_addr_set_mapped_ipv4
Unexecuted instantiation: ofp-queue.c:in6_addr_set_mapped_ipv4
Unexecuted instantiation: ofp-table.c:in6_addr_set_mapped_ipv4
Unexecuted instantiation: ofp-util.c:in6_addr_set_mapped_ipv4
Unexecuted instantiation: ovs-router.c:in6_addr_set_mapped_ipv4
Unexecuted instantiation: packets.c:in6_addr_set_mapped_ipv4
Unexecuted instantiation: smap.c:in6_addr_set_mapped_ipv4
Unexecuted instantiation: socket-util.c:in6_addr_set_mapped_ipv4
Unexecuted instantiation: tnl-ports.c:in6_addr_set_mapped_ipv4
Unexecuted instantiation: tun-metadata.c:in6_addr_set_mapped_ipv4
Unexecuted instantiation: netdev-linux.c:in6_addr_set_mapped_ipv4
Unexecuted instantiation: netdev-offload-tc.c:in6_addr_set_mapped_ipv4
Unexecuted instantiation: rtnetlink.c:in6_addr_set_mapped_ipv4
Unexecuted instantiation: route-table.c:in6_addr_set_mapped_ipv4
Unexecuted instantiation: tc.c:in6_addr_set_mapped_ipv4
Unexecuted instantiation: classifier.c:in6_addr_set_mapped_ipv4
Unexecuted instantiation: dpif.c:in6_addr_set_mapped_ipv4
Unexecuted instantiation: meta-flow.c:in6_addr_set_mapped_ipv4
Unexecuted instantiation: netdev-offload.c:in6_addr_set_mapped_ipv4
Unexecuted instantiation: netdev-vport.c:in6_addr_set_mapped_ipv4
Unexecuted instantiation: netlink.c:in6_addr_set_mapped_ipv4
Unexecuted instantiation: nx-match.c:in6_addr_set_mapped_ipv4
Unexecuted instantiation: odp-execute.c:in6_addr_set_mapped_ipv4
Unexecuted instantiation: odp-execute-private.c:in6_addr_set_mapped_ipv4
Unexecuted instantiation: odp-util.c:in6_addr_set_mapped_ipv4
Unexecuted instantiation: ofp-actions.c:in6_addr_set_mapped_ipv4
Unexecuted instantiation: ofp-ct.c:in6_addr_set_mapped_ipv4
Unexecuted instantiation: ofp-ed-props.c:in6_addr_set_mapped_ipv4
Unexecuted instantiation: ofp-flow.c:in6_addr_set_mapped_ipv4
Unexecuted instantiation: ofp-group.c:in6_addr_set_mapped_ipv4
Unexecuted instantiation: ofp-meter.c:in6_addr_set_mapped_ipv4
Unexecuted instantiation: ofp-monitor.c:in6_addr_set_mapped_ipv4
Unexecuted instantiation: ofp-packet.c:in6_addr_set_mapped_ipv4
Unexecuted instantiation: ofp-parse.c:in6_addr_set_mapped_ipv4
Unexecuted instantiation: stream.c:in6_addr_set_mapped_ipv4
Unexecuted instantiation: tnl-neigh-cache.c:in6_addr_set_mapped_ipv4
Unexecuted instantiation: netdev-native-tnl.c:in6_addr_set_mapped_ipv4
Unexecuted instantiation: stream-unix.c:in6_addr_set_mapped_ipv4
Unexecuted instantiation: dpif-netlink.c:in6_addr_set_mapped_ipv4
Unexecuted instantiation: dpif-netlink-rtnl.c:in6_addr_set_mapped_ipv4
Unexecuted instantiation: netlink-conntrack.c:in6_addr_set_mapped_ipv4
Unexecuted instantiation: stream-ssl.c:in6_addr_set_mapped_ipv4
Unexecuted instantiation: bundle.c:in6_addr_set_mapped_ipv4
Unexecuted instantiation: conntrack.c:in6_addr_set_mapped_ipv4
Unexecuted instantiation: ct-dpif.c:in6_addr_set_mapped_ipv4
Unexecuted instantiation: dpctl.c:in6_addr_set_mapped_ipv4
Unexecuted instantiation: dpif-netdev.c:in6_addr_set_mapped_ipv4
Unexecuted instantiation: dpif-netdev-private-dfc.c:in6_addr_set_mapped_ipv4
Unexecuted instantiation: dpif-netdev-private-dpif.c:in6_addr_set_mapped_ipv4
Unexecuted instantiation: dpif-netdev-private-extract.c:in6_addr_set_mapped_ipv4
Unexecuted instantiation: ipf.c:in6_addr_set_mapped_ipv4
Unexecuted instantiation: learn.c:in6_addr_set_mapped_ipv4
Unexecuted instantiation: multipath.c:in6_addr_set_mapped_ipv4
Unexecuted instantiation: stream-tcp.c:in6_addr_set_mapped_ipv4
Unexecuted instantiation: conntrack-icmp.c:in6_addr_set_mapped_ipv4
Unexecuted instantiation: conntrack-tcp.c:in6_addr_set_mapped_ipv4
Unexecuted instantiation: conntrack-tp.c:in6_addr_set_mapped_ipv4
Unexecuted instantiation: conntrack-other.c:in6_addr_set_mapped_ipv4
Unexecuted instantiation: dpif-netdev-extract-study.c:in6_addr_set_mapped_ipv4
Unexecuted instantiation: dpif-netdev-lookup.c:in6_addr_set_mapped_ipv4
Unexecuted instantiation: dpif-netdev-lookup-autovalidator.c:in6_addr_set_mapped_ipv4
Unexecuted instantiation: dpif-netdev-lookup-generic.c:in6_addr_set_mapped_ipv4
1195
1196
static inline ovs_be32
1197
in6_addr_get_mapped_ipv4(const struct in6_addr *addr)
1198
0
{
1199
0
    union ovs_16aligned_in6_addr *taddr =
1200
0
        (union ovs_16aligned_in6_addr *) addr;
1201
0
    if (IN6_IS_ADDR_V4MAPPED(addr)) {
1202
0
        return get_16aligned_be32(&taddr->be32[3]);
1203
0
    } else {
1204
0
        return INADDR_ANY;
1205
0
    }
1206
0
}
Unexecuted instantiation: flow_extract_target.c:in6_addr_get_mapped_ipv4
Unexecuted instantiation: dp-packet.c:in6_addr_get_mapped_ipv4
Unexecuted instantiation: flow.c:in6_addr_get_mapped_ipv4
Unexecuted instantiation: match.c:in6_addr_get_mapped_ipv4
Unexecuted instantiation: netdev.c:in6_addr_get_mapped_ipv4
Unexecuted instantiation: ofp-match.c:in6_addr_get_mapped_ipv4
Unexecuted instantiation: ofp-port.c:in6_addr_get_mapped_ipv4
Unexecuted instantiation: ofp-print.c:in6_addr_get_mapped_ipv4
Unexecuted instantiation: ofp-queue.c:in6_addr_get_mapped_ipv4
Unexecuted instantiation: ofp-table.c:in6_addr_get_mapped_ipv4
Unexecuted instantiation: ofp-util.c:in6_addr_get_mapped_ipv4
Unexecuted instantiation: ovs-router.c:in6_addr_get_mapped_ipv4
Unexecuted instantiation: packets.c:in6_addr_get_mapped_ipv4
Unexecuted instantiation: smap.c:in6_addr_get_mapped_ipv4
Unexecuted instantiation: socket-util.c:in6_addr_get_mapped_ipv4
Unexecuted instantiation: tnl-ports.c:in6_addr_get_mapped_ipv4
Unexecuted instantiation: tun-metadata.c:in6_addr_get_mapped_ipv4
Unexecuted instantiation: netdev-linux.c:in6_addr_get_mapped_ipv4
Unexecuted instantiation: netdev-offload-tc.c:in6_addr_get_mapped_ipv4
Unexecuted instantiation: rtnetlink.c:in6_addr_get_mapped_ipv4
Unexecuted instantiation: route-table.c:in6_addr_get_mapped_ipv4
Unexecuted instantiation: tc.c:in6_addr_get_mapped_ipv4
Unexecuted instantiation: classifier.c:in6_addr_get_mapped_ipv4
Unexecuted instantiation: dpif.c:in6_addr_get_mapped_ipv4
Unexecuted instantiation: meta-flow.c:in6_addr_get_mapped_ipv4
Unexecuted instantiation: netdev-offload.c:in6_addr_get_mapped_ipv4
Unexecuted instantiation: netdev-vport.c:in6_addr_get_mapped_ipv4
Unexecuted instantiation: netlink.c:in6_addr_get_mapped_ipv4
Unexecuted instantiation: nx-match.c:in6_addr_get_mapped_ipv4
Unexecuted instantiation: odp-execute.c:in6_addr_get_mapped_ipv4
Unexecuted instantiation: odp-execute-private.c:in6_addr_get_mapped_ipv4
Unexecuted instantiation: odp-util.c:in6_addr_get_mapped_ipv4
Unexecuted instantiation: ofp-actions.c:in6_addr_get_mapped_ipv4
Unexecuted instantiation: ofp-ct.c:in6_addr_get_mapped_ipv4
Unexecuted instantiation: ofp-ed-props.c:in6_addr_get_mapped_ipv4
Unexecuted instantiation: ofp-flow.c:in6_addr_get_mapped_ipv4
Unexecuted instantiation: ofp-group.c:in6_addr_get_mapped_ipv4
Unexecuted instantiation: ofp-meter.c:in6_addr_get_mapped_ipv4
Unexecuted instantiation: ofp-monitor.c:in6_addr_get_mapped_ipv4
Unexecuted instantiation: ofp-packet.c:in6_addr_get_mapped_ipv4
Unexecuted instantiation: ofp-parse.c:in6_addr_get_mapped_ipv4
Unexecuted instantiation: stream.c:in6_addr_get_mapped_ipv4
Unexecuted instantiation: tnl-neigh-cache.c:in6_addr_get_mapped_ipv4
Unexecuted instantiation: netdev-native-tnl.c:in6_addr_get_mapped_ipv4
Unexecuted instantiation: stream-unix.c:in6_addr_get_mapped_ipv4
Unexecuted instantiation: dpif-netlink.c:in6_addr_get_mapped_ipv4
Unexecuted instantiation: dpif-netlink-rtnl.c:in6_addr_get_mapped_ipv4
Unexecuted instantiation: netlink-conntrack.c:in6_addr_get_mapped_ipv4
Unexecuted instantiation: stream-ssl.c:in6_addr_get_mapped_ipv4
Unexecuted instantiation: bundle.c:in6_addr_get_mapped_ipv4
Unexecuted instantiation: conntrack.c:in6_addr_get_mapped_ipv4
Unexecuted instantiation: ct-dpif.c:in6_addr_get_mapped_ipv4
Unexecuted instantiation: dpctl.c:in6_addr_get_mapped_ipv4
Unexecuted instantiation: dpif-netdev.c:in6_addr_get_mapped_ipv4
Unexecuted instantiation: dpif-netdev-private-dfc.c:in6_addr_get_mapped_ipv4
Unexecuted instantiation: dpif-netdev-private-dpif.c:in6_addr_get_mapped_ipv4
Unexecuted instantiation: dpif-netdev-private-extract.c:in6_addr_get_mapped_ipv4
Unexecuted instantiation: ipf.c:in6_addr_get_mapped_ipv4
Unexecuted instantiation: learn.c:in6_addr_get_mapped_ipv4
Unexecuted instantiation: multipath.c:in6_addr_get_mapped_ipv4
Unexecuted instantiation: stream-tcp.c:in6_addr_get_mapped_ipv4
Unexecuted instantiation: conntrack-icmp.c:in6_addr_get_mapped_ipv4
Unexecuted instantiation: conntrack-tcp.c:in6_addr_get_mapped_ipv4
Unexecuted instantiation: conntrack-tp.c:in6_addr_get_mapped_ipv4
Unexecuted instantiation: conntrack-other.c:in6_addr_get_mapped_ipv4
Unexecuted instantiation: dpif-netdev-extract-study.c:in6_addr_get_mapped_ipv4
Unexecuted instantiation: dpif-netdev-lookup.c:in6_addr_get_mapped_ipv4
Unexecuted instantiation: dpif-netdev-lookup-autovalidator.c:in6_addr_get_mapped_ipv4
Unexecuted instantiation: dpif-netdev-lookup-generic.c:in6_addr_get_mapped_ipv4
1207
1208
void in6_addr_solicited_node(struct in6_addr *addr,
1209
                             const struct in6_addr *ip6);
1210
1211
void in6_generate_eui64(struct eth_addr ea, const struct in6_addr *prefix,
1212
                        struct in6_addr *lla);
1213
1214
void in6_generate_lla(struct eth_addr ea, struct in6_addr *lla);
1215
1216
/* Returns true if 'addr' is a link local address.  Otherwise, false. */
1217
bool in6_is_lla(struct in6_addr *addr);
1218
1219
void ipv6_multicast_to_ethernet(struct eth_addr *eth,
1220
                                const struct in6_addr *ip6);
1221
1222
static inline bool dl_type_is_ip_any(ovs_be16 dl_type)
1223
8.14k
{
1224
8.14k
    return dl_type == htons(ETH_TYPE_IP)
1225
8.14k
        || dl_type == htons(ETH_TYPE_IPV6);
1226
8.14k
}
Unexecuted instantiation: flow_extract_target.c:dl_type_is_ip_any
Unexecuted instantiation: dp-packet.c:dl_type_is_ip_any
flow.c:dl_type_is_ip_any
Line
Count
Source
1223
4.07k
{
1224
4.07k
    return dl_type == htons(ETH_TYPE_IP)
1225
4.07k
        || dl_type == htons(ETH_TYPE_IPV6);
1226
4.07k
}
match.c:dl_type_is_ip_any
Line
Count
Source
1223
4.07k
{
1224
4.07k
    return dl_type == htons(ETH_TYPE_IP)
1225
4.07k
        || dl_type == htons(ETH_TYPE_IPV6);
1226
4.07k
}
Unexecuted instantiation: netdev.c:dl_type_is_ip_any
Unexecuted instantiation: ofp-match.c:dl_type_is_ip_any
Unexecuted instantiation: ofp-port.c:dl_type_is_ip_any
Unexecuted instantiation: ofp-print.c:dl_type_is_ip_any
Unexecuted instantiation: ofp-queue.c:dl_type_is_ip_any
Unexecuted instantiation: ofp-table.c:dl_type_is_ip_any
Unexecuted instantiation: ofp-util.c:dl_type_is_ip_any
Unexecuted instantiation: ovs-router.c:dl_type_is_ip_any
Unexecuted instantiation: packets.c:dl_type_is_ip_any
Unexecuted instantiation: smap.c:dl_type_is_ip_any
Unexecuted instantiation: socket-util.c:dl_type_is_ip_any
Unexecuted instantiation: tnl-ports.c:dl_type_is_ip_any
Unexecuted instantiation: tun-metadata.c:dl_type_is_ip_any
Unexecuted instantiation: netdev-linux.c:dl_type_is_ip_any
Unexecuted instantiation: netdev-offload-tc.c:dl_type_is_ip_any
Unexecuted instantiation: rtnetlink.c:dl_type_is_ip_any
Unexecuted instantiation: route-table.c:dl_type_is_ip_any
Unexecuted instantiation: tc.c:dl_type_is_ip_any
Unexecuted instantiation: classifier.c:dl_type_is_ip_any
Unexecuted instantiation: dpif.c:dl_type_is_ip_any
Unexecuted instantiation: meta-flow.c:dl_type_is_ip_any
Unexecuted instantiation: netdev-offload.c:dl_type_is_ip_any
Unexecuted instantiation: netdev-vport.c:dl_type_is_ip_any
Unexecuted instantiation: netlink.c:dl_type_is_ip_any
Unexecuted instantiation: nx-match.c:dl_type_is_ip_any
Unexecuted instantiation: odp-execute.c:dl_type_is_ip_any
Unexecuted instantiation: odp-execute-private.c:dl_type_is_ip_any
Unexecuted instantiation: odp-util.c:dl_type_is_ip_any
Unexecuted instantiation: ofp-actions.c:dl_type_is_ip_any
Unexecuted instantiation: ofp-ct.c:dl_type_is_ip_any
Unexecuted instantiation: ofp-ed-props.c:dl_type_is_ip_any
Unexecuted instantiation: ofp-flow.c:dl_type_is_ip_any
Unexecuted instantiation: ofp-group.c:dl_type_is_ip_any
Unexecuted instantiation: ofp-meter.c:dl_type_is_ip_any
Unexecuted instantiation: ofp-monitor.c:dl_type_is_ip_any
Unexecuted instantiation: ofp-packet.c:dl_type_is_ip_any
Unexecuted instantiation: ofp-parse.c:dl_type_is_ip_any
Unexecuted instantiation: stream.c:dl_type_is_ip_any
Unexecuted instantiation: tnl-neigh-cache.c:dl_type_is_ip_any
Unexecuted instantiation: netdev-native-tnl.c:dl_type_is_ip_any
Unexecuted instantiation: stream-unix.c:dl_type_is_ip_any
Unexecuted instantiation: dpif-netlink.c:dl_type_is_ip_any
Unexecuted instantiation: dpif-netlink-rtnl.c:dl_type_is_ip_any
Unexecuted instantiation: netlink-conntrack.c:dl_type_is_ip_any
Unexecuted instantiation: stream-ssl.c:dl_type_is_ip_any
Unexecuted instantiation: bundle.c:dl_type_is_ip_any
Unexecuted instantiation: conntrack.c:dl_type_is_ip_any
Unexecuted instantiation: ct-dpif.c:dl_type_is_ip_any
Unexecuted instantiation: dpctl.c:dl_type_is_ip_any
Unexecuted instantiation: dpif-netdev.c:dl_type_is_ip_any
Unexecuted instantiation: dpif-netdev-private-dfc.c:dl_type_is_ip_any
Unexecuted instantiation: dpif-netdev-private-dpif.c:dl_type_is_ip_any
Unexecuted instantiation: dpif-netdev-private-extract.c:dl_type_is_ip_any
Unexecuted instantiation: ipf.c:dl_type_is_ip_any
Unexecuted instantiation: learn.c:dl_type_is_ip_any
Unexecuted instantiation: multipath.c:dl_type_is_ip_any
Unexecuted instantiation: stream-tcp.c:dl_type_is_ip_any
Unexecuted instantiation: conntrack-icmp.c:dl_type_is_ip_any
Unexecuted instantiation: conntrack-tcp.c:dl_type_is_ip_any
Unexecuted instantiation: conntrack-tp.c:dl_type_is_ip_any
Unexecuted instantiation: conntrack-other.c:dl_type_is_ip_any
Unexecuted instantiation: dpif-netdev-extract-study.c:dl_type_is_ip_any
Unexecuted instantiation: dpif-netdev-lookup.c:dl_type_is_ip_any
Unexecuted instantiation: dpif-netdev-lookup-autovalidator.c:dl_type_is_ip_any
Unexecuted instantiation: dpif-netdev-lookup-generic.c:dl_type_is_ip_any
1227
1228
/* Tunnel header */
1229
1230
/* GRE protocol header */
1231
struct gre_base_hdr {
1232
    ovs_be16 flags;
1233
    ovs_be16 protocol;
1234
};
1235
1236
#define GRE_CSUM        0x8000
1237
#define GRE_ROUTING     0x4000
1238
#define GRE_KEY         0x2000
1239
#define GRE_SEQ         0x1000
1240
#define GRE_STRICT      0x0800
1241
#define GRE_REC         0x0700
1242
#define GRE_FLAGS       0x00F8
1243
#define GRE_VERSION     0x0007
1244
1245
/*
1246
 * ERSPAN protocol header and metadata
1247
 *
1248
 * Version 1 (Type II) header (8 octets [42:49])
1249
 *  0                   1                   2                   3
1250
 *  0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
1251
 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1252
 * |  Ver  |          VLAN         | COS | En|T|    Session ID     |
1253
 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1254
 * |      Reserved         |                  Index                |
1255
 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1256
 *
1257
 *
1258
 *  ERSPAN Version 2 (Type III) header (12 octets [42:49])
1259
 *  0                   1                   2                   3
1260
 *  0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
1261
 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1262
 * |  Ver  |          VLAN         | COS |BSO|T|     Session ID    |
1263
 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1264
 * |                          Timestamp                            |
1265
 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1266
 * |             SGT               |P|    FT   |   Hw ID   |D|Gra|O|
1267
 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1268
 *
1269
 */
1270
1271
/* ERSPAN has fixed 8-byte GRE header */
1272
0
#define ERSPAN_GREHDR_LEN   8
1273
#define ERSPAN_HDR(gre_base_hdr) \
1274
0
    ((struct erspan_base_hdr *)((char *)gre_base_hdr + ERSPAN_GREHDR_LEN))
1275
1276
0
#define ERSPAN_V1_MDSIZE    4
1277
0
#define ERSPAN_V2_MDSIZE    8
1278
1279
0
#define ERSPAN_SID_MASK     0x03ff  /* 10-bit Session ID. */
1280
0
#define ERSPAN_IDX_MASK     0xfffff /* v1 Index */
1281
0
#define ERSPAN_HWID_MASK    0x03f0
1282
#define ERSPAN_DIR_MASK     0x0008
1283
1284
struct erspan_base_hdr {
1285
#ifdef WORDS_BIGENDIAN
1286
    uint8_t ver:4,
1287
            vlan_upper:4;
1288
    uint8_t vlan:8;
1289
    uint8_t cos:3,
1290
            en:2,
1291
            t:1,
1292
            session_id_upper:2;
1293
    uint8_t session_id:8;
1294
#else
1295
    uint8_t vlan_upper:4,
1296
            ver:4;
1297
    uint8_t vlan:8;
1298
    uint8_t session_id_upper:2,
1299
            t:1,
1300
            en:2,
1301
            cos:3;
1302
    uint8_t session_id:8;
1303
#endif
1304
};
1305
1306
struct erspan_md2 {
1307
    ovs_16aligned_be32 timestamp;
1308
    ovs_be16 sgt;
1309
#ifdef WORDS_BIGENDIAN
1310
    uint8_t p:1,
1311
            ft:5,
1312
            hwid_upper:2;
1313
    uint8_t hwid:4,
1314
            dir:1,
1315
            gra:2,
1316
            o:1;
1317
#else
1318
    uint8_t hwid_upper:2,
1319
            ft:5,
1320
            p:1;
1321
    uint8_t o:1,
1322
            gra:2,
1323
            dir:1,
1324
            hwid:4;
1325
#endif
1326
};
1327
1328
struct erspan_metadata {
1329
    int version;
1330
    union {
1331
        ovs_be32 index;         /* Version 1 (type II)*/
1332
        struct erspan_md2 md2;  /* Version 2 (type III) */
1333
    } u;
1334
};
1335
1336
static inline uint16_t get_sid(const struct erspan_base_hdr *ershdr)
1337
0
{
1338
0
    return (ershdr->session_id_upper << 8) + ershdr->session_id;
1339
0
}
Unexecuted instantiation: flow_extract_target.c:get_sid
Unexecuted instantiation: dp-packet.c:get_sid
Unexecuted instantiation: flow.c:get_sid
Unexecuted instantiation: match.c:get_sid
Unexecuted instantiation: netdev.c:get_sid
Unexecuted instantiation: ofp-match.c:get_sid
Unexecuted instantiation: ofp-port.c:get_sid
Unexecuted instantiation: ofp-print.c:get_sid
Unexecuted instantiation: ofp-queue.c:get_sid
Unexecuted instantiation: ofp-table.c:get_sid
Unexecuted instantiation: ofp-util.c:get_sid
Unexecuted instantiation: ovs-router.c:get_sid
Unexecuted instantiation: packets.c:get_sid
Unexecuted instantiation: smap.c:get_sid
Unexecuted instantiation: socket-util.c:get_sid
Unexecuted instantiation: tnl-ports.c:get_sid
Unexecuted instantiation: tun-metadata.c:get_sid
Unexecuted instantiation: netdev-linux.c:get_sid
Unexecuted instantiation: netdev-offload-tc.c:get_sid
Unexecuted instantiation: rtnetlink.c:get_sid
Unexecuted instantiation: route-table.c:get_sid
Unexecuted instantiation: tc.c:get_sid
Unexecuted instantiation: classifier.c:get_sid
Unexecuted instantiation: dpif.c:get_sid
Unexecuted instantiation: meta-flow.c:get_sid
Unexecuted instantiation: netdev-offload.c:get_sid
Unexecuted instantiation: netdev-vport.c:get_sid
Unexecuted instantiation: netlink.c:get_sid
Unexecuted instantiation: nx-match.c:get_sid
Unexecuted instantiation: odp-execute.c:get_sid
Unexecuted instantiation: odp-execute-private.c:get_sid
Unexecuted instantiation: odp-util.c:get_sid
Unexecuted instantiation: ofp-actions.c:get_sid
Unexecuted instantiation: ofp-ct.c:get_sid
Unexecuted instantiation: ofp-ed-props.c:get_sid
Unexecuted instantiation: ofp-flow.c:get_sid
Unexecuted instantiation: ofp-group.c:get_sid
Unexecuted instantiation: ofp-meter.c:get_sid
Unexecuted instantiation: ofp-monitor.c:get_sid
Unexecuted instantiation: ofp-packet.c:get_sid
Unexecuted instantiation: ofp-parse.c:get_sid
Unexecuted instantiation: stream.c:get_sid
Unexecuted instantiation: tnl-neigh-cache.c:get_sid
Unexecuted instantiation: netdev-native-tnl.c:get_sid
Unexecuted instantiation: stream-unix.c:get_sid
Unexecuted instantiation: dpif-netlink.c:get_sid
Unexecuted instantiation: dpif-netlink-rtnl.c:get_sid
Unexecuted instantiation: netlink-conntrack.c:get_sid
Unexecuted instantiation: stream-ssl.c:get_sid
Unexecuted instantiation: bundle.c:get_sid
Unexecuted instantiation: conntrack.c:get_sid
Unexecuted instantiation: ct-dpif.c:get_sid
Unexecuted instantiation: dpctl.c:get_sid
Unexecuted instantiation: dpif-netdev.c:get_sid
Unexecuted instantiation: dpif-netdev-private-dfc.c:get_sid
Unexecuted instantiation: dpif-netdev-private-dpif.c:get_sid
Unexecuted instantiation: dpif-netdev-private-extract.c:get_sid
Unexecuted instantiation: ipf.c:get_sid
Unexecuted instantiation: learn.c:get_sid
Unexecuted instantiation: multipath.c:get_sid
Unexecuted instantiation: stream-tcp.c:get_sid
Unexecuted instantiation: conntrack-icmp.c:get_sid
Unexecuted instantiation: conntrack-tcp.c:get_sid
Unexecuted instantiation: conntrack-tp.c:get_sid
Unexecuted instantiation: conntrack-other.c:get_sid
Unexecuted instantiation: dpif-netdev-extract-study.c:get_sid
Unexecuted instantiation: dpif-netdev-lookup.c:get_sid
Unexecuted instantiation: dpif-netdev-lookup-autovalidator.c:get_sid
Unexecuted instantiation: dpif-netdev-lookup-generic.c:get_sid
1340
1341
static inline void set_sid(struct erspan_base_hdr *ershdr, uint16_t id)
1342
0
{
1343
0
    ershdr->session_id = id & 0xff;
1344
0
    ershdr->session_id_upper = (id >> 8) &0x3;
1345
0
}
Unexecuted instantiation: flow_extract_target.c:set_sid
Unexecuted instantiation: dp-packet.c:set_sid
Unexecuted instantiation: flow.c:set_sid
Unexecuted instantiation: match.c:set_sid
Unexecuted instantiation: netdev.c:set_sid
Unexecuted instantiation: ofp-match.c:set_sid
Unexecuted instantiation: ofp-port.c:set_sid
Unexecuted instantiation: ofp-print.c:set_sid
Unexecuted instantiation: ofp-queue.c:set_sid
Unexecuted instantiation: ofp-table.c:set_sid
Unexecuted instantiation: ofp-util.c:set_sid
Unexecuted instantiation: ovs-router.c:set_sid
Unexecuted instantiation: packets.c:set_sid
Unexecuted instantiation: smap.c:set_sid
Unexecuted instantiation: socket-util.c:set_sid
Unexecuted instantiation: tnl-ports.c:set_sid
Unexecuted instantiation: tun-metadata.c:set_sid
Unexecuted instantiation: netdev-linux.c:set_sid
Unexecuted instantiation: netdev-offload-tc.c:set_sid
Unexecuted instantiation: rtnetlink.c:set_sid
Unexecuted instantiation: route-table.c:set_sid
Unexecuted instantiation: tc.c:set_sid
Unexecuted instantiation: classifier.c:set_sid
Unexecuted instantiation: dpif.c:set_sid
Unexecuted instantiation: meta-flow.c:set_sid
Unexecuted instantiation: netdev-offload.c:set_sid
Unexecuted instantiation: netdev-vport.c:set_sid
Unexecuted instantiation: netlink.c:set_sid
Unexecuted instantiation: nx-match.c:set_sid
Unexecuted instantiation: odp-execute.c:set_sid
Unexecuted instantiation: odp-execute-private.c:set_sid
Unexecuted instantiation: odp-util.c:set_sid
Unexecuted instantiation: ofp-actions.c:set_sid
Unexecuted instantiation: ofp-ct.c:set_sid
Unexecuted instantiation: ofp-ed-props.c:set_sid
Unexecuted instantiation: ofp-flow.c:set_sid
Unexecuted instantiation: ofp-group.c:set_sid
Unexecuted instantiation: ofp-meter.c:set_sid
Unexecuted instantiation: ofp-monitor.c:set_sid
Unexecuted instantiation: ofp-packet.c:set_sid
Unexecuted instantiation: ofp-parse.c:set_sid
Unexecuted instantiation: stream.c:set_sid
Unexecuted instantiation: tnl-neigh-cache.c:set_sid
Unexecuted instantiation: netdev-native-tnl.c:set_sid
Unexecuted instantiation: stream-unix.c:set_sid
Unexecuted instantiation: dpif-netlink.c:set_sid
Unexecuted instantiation: dpif-netlink-rtnl.c:set_sid
Unexecuted instantiation: netlink-conntrack.c:set_sid
Unexecuted instantiation: stream-ssl.c:set_sid
Unexecuted instantiation: bundle.c:set_sid
Unexecuted instantiation: conntrack.c:set_sid
Unexecuted instantiation: ct-dpif.c:set_sid
Unexecuted instantiation: dpctl.c:set_sid
Unexecuted instantiation: dpif-netdev.c:set_sid
Unexecuted instantiation: dpif-netdev-private-dfc.c:set_sid
Unexecuted instantiation: dpif-netdev-private-dpif.c:set_sid
Unexecuted instantiation: dpif-netdev-private-extract.c:set_sid
Unexecuted instantiation: ipf.c:set_sid
Unexecuted instantiation: learn.c:set_sid
Unexecuted instantiation: multipath.c:set_sid
Unexecuted instantiation: stream-tcp.c:set_sid
Unexecuted instantiation: conntrack-icmp.c:set_sid
Unexecuted instantiation: conntrack-tcp.c:set_sid
Unexecuted instantiation: conntrack-tp.c:set_sid
Unexecuted instantiation: conntrack-other.c:set_sid
Unexecuted instantiation: dpif-netdev-extract-study.c:set_sid
Unexecuted instantiation: dpif-netdev-lookup.c:set_sid
Unexecuted instantiation: dpif-netdev-lookup-autovalidator.c:set_sid
Unexecuted instantiation: dpif-netdev-lookup-generic.c:set_sid
1346
1347
static inline uint8_t get_hwid(const struct erspan_md2 *md2)
1348
0
{
1349
0
    return (md2->hwid_upper << 4) + md2->hwid;
1350
0
}
Unexecuted instantiation: flow_extract_target.c:get_hwid
Unexecuted instantiation: dp-packet.c:get_hwid
Unexecuted instantiation: flow.c:get_hwid
Unexecuted instantiation: match.c:get_hwid
Unexecuted instantiation: netdev.c:get_hwid
Unexecuted instantiation: ofp-match.c:get_hwid
Unexecuted instantiation: ofp-port.c:get_hwid
Unexecuted instantiation: ofp-print.c:get_hwid
Unexecuted instantiation: ofp-queue.c:get_hwid
Unexecuted instantiation: ofp-table.c:get_hwid
Unexecuted instantiation: ofp-util.c:get_hwid
Unexecuted instantiation: ovs-router.c:get_hwid
Unexecuted instantiation: packets.c:get_hwid
Unexecuted instantiation: smap.c:get_hwid
Unexecuted instantiation: socket-util.c:get_hwid
Unexecuted instantiation: tnl-ports.c:get_hwid
Unexecuted instantiation: tun-metadata.c:get_hwid
Unexecuted instantiation: netdev-linux.c:get_hwid
Unexecuted instantiation: netdev-offload-tc.c:get_hwid
Unexecuted instantiation: rtnetlink.c:get_hwid
Unexecuted instantiation: route-table.c:get_hwid
Unexecuted instantiation: tc.c:get_hwid
Unexecuted instantiation: classifier.c:get_hwid
Unexecuted instantiation: dpif.c:get_hwid
Unexecuted instantiation: meta-flow.c:get_hwid
Unexecuted instantiation: netdev-offload.c:get_hwid
Unexecuted instantiation: netdev-vport.c:get_hwid
Unexecuted instantiation: netlink.c:get_hwid
Unexecuted instantiation: nx-match.c:get_hwid
Unexecuted instantiation: odp-execute.c:get_hwid
Unexecuted instantiation: odp-execute-private.c:get_hwid
Unexecuted instantiation: odp-util.c:get_hwid
Unexecuted instantiation: ofp-actions.c:get_hwid
Unexecuted instantiation: ofp-ct.c:get_hwid
Unexecuted instantiation: ofp-ed-props.c:get_hwid
Unexecuted instantiation: ofp-flow.c:get_hwid
Unexecuted instantiation: ofp-group.c:get_hwid
Unexecuted instantiation: ofp-meter.c:get_hwid
Unexecuted instantiation: ofp-monitor.c:get_hwid
Unexecuted instantiation: ofp-packet.c:get_hwid
Unexecuted instantiation: ofp-parse.c:get_hwid
Unexecuted instantiation: stream.c:get_hwid
Unexecuted instantiation: tnl-neigh-cache.c:get_hwid
Unexecuted instantiation: netdev-native-tnl.c:get_hwid
Unexecuted instantiation: stream-unix.c:get_hwid
Unexecuted instantiation: dpif-netlink.c:get_hwid
Unexecuted instantiation: dpif-netlink-rtnl.c:get_hwid
Unexecuted instantiation: netlink-conntrack.c:get_hwid
Unexecuted instantiation: stream-ssl.c:get_hwid
Unexecuted instantiation: bundle.c:get_hwid
Unexecuted instantiation: conntrack.c:get_hwid
Unexecuted instantiation: ct-dpif.c:get_hwid
Unexecuted instantiation: dpctl.c:get_hwid
Unexecuted instantiation: dpif-netdev.c:get_hwid
Unexecuted instantiation: dpif-netdev-private-dfc.c:get_hwid
Unexecuted instantiation: dpif-netdev-private-dpif.c:get_hwid
Unexecuted instantiation: dpif-netdev-private-extract.c:get_hwid
Unexecuted instantiation: ipf.c:get_hwid
Unexecuted instantiation: learn.c:get_hwid
Unexecuted instantiation: multipath.c:get_hwid
Unexecuted instantiation: stream-tcp.c:get_hwid
Unexecuted instantiation: conntrack-icmp.c:get_hwid
Unexecuted instantiation: conntrack-tcp.c:get_hwid
Unexecuted instantiation: conntrack-tp.c:get_hwid
Unexecuted instantiation: conntrack-other.c:get_hwid
Unexecuted instantiation: dpif-netdev-extract-study.c:get_hwid
Unexecuted instantiation: dpif-netdev-lookup.c:get_hwid
Unexecuted instantiation: dpif-netdev-lookup-autovalidator.c:get_hwid
Unexecuted instantiation: dpif-netdev-lookup-generic.c:get_hwid
1351
1352
static inline void set_hwid(struct erspan_md2 *md2, uint8_t hwid)
1353
0
{
1354
0
    md2->hwid = hwid & 0xf;
1355
0
    md2->hwid_upper = (hwid >> 4) & 0x3;
1356
0
}
Unexecuted instantiation: flow_extract_target.c:set_hwid
Unexecuted instantiation: dp-packet.c:set_hwid
Unexecuted instantiation: flow.c:set_hwid
Unexecuted instantiation: match.c:set_hwid
Unexecuted instantiation: netdev.c:set_hwid
Unexecuted instantiation: ofp-match.c:set_hwid
Unexecuted instantiation: ofp-port.c:set_hwid
Unexecuted instantiation: ofp-print.c:set_hwid
Unexecuted instantiation: ofp-queue.c:set_hwid
Unexecuted instantiation: ofp-table.c:set_hwid
Unexecuted instantiation: ofp-util.c:set_hwid
Unexecuted instantiation: ovs-router.c:set_hwid
Unexecuted instantiation: packets.c:set_hwid
Unexecuted instantiation: smap.c:set_hwid
Unexecuted instantiation: socket-util.c:set_hwid
Unexecuted instantiation: tnl-ports.c:set_hwid
Unexecuted instantiation: tun-metadata.c:set_hwid
Unexecuted instantiation: netdev-linux.c:set_hwid
Unexecuted instantiation: netdev-offload-tc.c:set_hwid
Unexecuted instantiation: rtnetlink.c:set_hwid
Unexecuted instantiation: route-table.c:set_hwid
Unexecuted instantiation: tc.c:set_hwid
Unexecuted instantiation: classifier.c:set_hwid
Unexecuted instantiation: dpif.c:set_hwid
Unexecuted instantiation: meta-flow.c:set_hwid
Unexecuted instantiation: netdev-offload.c:set_hwid
Unexecuted instantiation: netdev-vport.c:set_hwid
Unexecuted instantiation: netlink.c:set_hwid
Unexecuted instantiation: nx-match.c:set_hwid
Unexecuted instantiation: odp-execute.c:set_hwid
Unexecuted instantiation: odp-execute-private.c:set_hwid
Unexecuted instantiation: odp-util.c:set_hwid
Unexecuted instantiation: ofp-actions.c:set_hwid
Unexecuted instantiation: ofp-ct.c:set_hwid
Unexecuted instantiation: ofp-ed-props.c:set_hwid
Unexecuted instantiation: ofp-flow.c:set_hwid
Unexecuted instantiation: ofp-group.c:set_hwid
Unexecuted instantiation: ofp-meter.c:set_hwid
Unexecuted instantiation: ofp-monitor.c:set_hwid
Unexecuted instantiation: ofp-packet.c:set_hwid
Unexecuted instantiation: ofp-parse.c:set_hwid
Unexecuted instantiation: stream.c:set_hwid
Unexecuted instantiation: tnl-neigh-cache.c:set_hwid
Unexecuted instantiation: netdev-native-tnl.c:set_hwid
Unexecuted instantiation: stream-unix.c:set_hwid
Unexecuted instantiation: dpif-netlink.c:set_hwid
Unexecuted instantiation: dpif-netlink-rtnl.c:set_hwid
Unexecuted instantiation: netlink-conntrack.c:set_hwid
Unexecuted instantiation: stream-ssl.c:set_hwid
Unexecuted instantiation: bundle.c:set_hwid
Unexecuted instantiation: conntrack.c:set_hwid
Unexecuted instantiation: ct-dpif.c:set_hwid
Unexecuted instantiation: dpctl.c:set_hwid
Unexecuted instantiation: dpif-netdev.c:set_hwid
Unexecuted instantiation: dpif-netdev-private-dfc.c:set_hwid
Unexecuted instantiation: dpif-netdev-private-dpif.c:set_hwid
Unexecuted instantiation: dpif-netdev-private-extract.c:set_hwid
Unexecuted instantiation: ipf.c:set_hwid
Unexecuted instantiation: learn.c:set_hwid
Unexecuted instantiation: multipath.c:set_hwid
Unexecuted instantiation: stream-tcp.c:set_hwid
Unexecuted instantiation: conntrack-icmp.c:set_hwid
Unexecuted instantiation: conntrack-tcp.c:set_hwid
Unexecuted instantiation: conntrack-tp.c:set_hwid
Unexecuted instantiation: conntrack-other.c:set_hwid
Unexecuted instantiation: dpif-netdev-extract-study.c:set_hwid
Unexecuted instantiation: dpif-netdev-lookup.c:set_hwid
Unexecuted instantiation: dpif-netdev-lookup-autovalidator.c:set_hwid
Unexecuted instantiation: dpif-netdev-lookup-generic.c:set_hwid
1357
1358
/* ERSPAN timestamp granularity
1359
 *   00b --> granularity = 100 microseconds
1360
 *   01b --> granularity = 100 nanoseconds
1361
 *   10b --> granularity = IEEE 1588
1362
 * Here we only support 100 microseconds.
1363
 */
1364
enum erspan_ts_gra {
1365
    ERSPAN_100US,
1366
    ERSPAN_100NS,
1367
    ERSPAN_IEEE1588,
1368
};
1369
1370
static inline ovs_be32 get_erspan_ts(enum erspan_ts_gra gra)
1371
0
{
1372
0
    ovs_be32 ts = 0;
1373
1374
0
    switch (gra) {
1375
0
    case ERSPAN_100US:
1376
0
        ts = htonl((uint32_t)(time_wall_usec() / 100));
1377
0
        break;
1378
0
    case ERSPAN_100NS:
1379
        /* fall back */
1380
0
    case ERSPAN_IEEE1588:
1381
        /* fall back */
1382
0
    default:
1383
0
        OVS_NOT_REACHED();
1384
0
        break;
1385
0
    }
1386
0
    return ts;
1387
0
}
Unexecuted instantiation: flow_extract_target.c:get_erspan_ts
Unexecuted instantiation: dp-packet.c:get_erspan_ts
Unexecuted instantiation: flow.c:get_erspan_ts
Unexecuted instantiation: match.c:get_erspan_ts
Unexecuted instantiation: netdev.c:get_erspan_ts
Unexecuted instantiation: ofp-match.c:get_erspan_ts
Unexecuted instantiation: ofp-port.c:get_erspan_ts
Unexecuted instantiation: ofp-print.c:get_erspan_ts
Unexecuted instantiation: ofp-queue.c:get_erspan_ts
Unexecuted instantiation: ofp-table.c:get_erspan_ts
Unexecuted instantiation: ofp-util.c:get_erspan_ts
Unexecuted instantiation: ovs-router.c:get_erspan_ts
Unexecuted instantiation: packets.c:get_erspan_ts
Unexecuted instantiation: smap.c:get_erspan_ts
Unexecuted instantiation: socket-util.c:get_erspan_ts
Unexecuted instantiation: tnl-ports.c:get_erspan_ts
Unexecuted instantiation: tun-metadata.c:get_erspan_ts
Unexecuted instantiation: netdev-linux.c:get_erspan_ts
Unexecuted instantiation: netdev-offload-tc.c:get_erspan_ts
Unexecuted instantiation: rtnetlink.c:get_erspan_ts
Unexecuted instantiation: route-table.c:get_erspan_ts
Unexecuted instantiation: tc.c:get_erspan_ts
Unexecuted instantiation: classifier.c:get_erspan_ts
Unexecuted instantiation: dpif.c:get_erspan_ts
Unexecuted instantiation: meta-flow.c:get_erspan_ts
Unexecuted instantiation: netdev-offload.c:get_erspan_ts
Unexecuted instantiation: netdev-vport.c:get_erspan_ts
Unexecuted instantiation: netlink.c:get_erspan_ts
Unexecuted instantiation: nx-match.c:get_erspan_ts
Unexecuted instantiation: odp-execute.c:get_erspan_ts
Unexecuted instantiation: odp-execute-private.c:get_erspan_ts
Unexecuted instantiation: odp-util.c:get_erspan_ts
Unexecuted instantiation: ofp-actions.c:get_erspan_ts
Unexecuted instantiation: ofp-ct.c:get_erspan_ts
Unexecuted instantiation: ofp-ed-props.c:get_erspan_ts
Unexecuted instantiation: ofp-flow.c:get_erspan_ts
Unexecuted instantiation: ofp-group.c:get_erspan_ts
Unexecuted instantiation: ofp-meter.c:get_erspan_ts
Unexecuted instantiation: ofp-monitor.c:get_erspan_ts
Unexecuted instantiation: ofp-packet.c:get_erspan_ts
Unexecuted instantiation: ofp-parse.c:get_erspan_ts
Unexecuted instantiation: stream.c:get_erspan_ts
Unexecuted instantiation: tnl-neigh-cache.c:get_erspan_ts
Unexecuted instantiation: netdev-native-tnl.c:get_erspan_ts
Unexecuted instantiation: stream-unix.c:get_erspan_ts
Unexecuted instantiation: dpif-netlink.c:get_erspan_ts
Unexecuted instantiation: dpif-netlink-rtnl.c:get_erspan_ts
Unexecuted instantiation: netlink-conntrack.c:get_erspan_ts
Unexecuted instantiation: stream-ssl.c:get_erspan_ts
Unexecuted instantiation: bundle.c:get_erspan_ts
Unexecuted instantiation: conntrack.c:get_erspan_ts
Unexecuted instantiation: ct-dpif.c:get_erspan_ts
Unexecuted instantiation: dpctl.c:get_erspan_ts
Unexecuted instantiation: dpif-netdev.c:get_erspan_ts
Unexecuted instantiation: dpif-netdev-private-dfc.c:get_erspan_ts
Unexecuted instantiation: dpif-netdev-private-dpif.c:get_erspan_ts
Unexecuted instantiation: dpif-netdev-private-extract.c:get_erspan_ts
Unexecuted instantiation: ipf.c:get_erspan_ts
Unexecuted instantiation: learn.c:get_erspan_ts
Unexecuted instantiation: multipath.c:get_erspan_ts
Unexecuted instantiation: stream-tcp.c:get_erspan_ts
Unexecuted instantiation: conntrack-icmp.c:get_erspan_ts
Unexecuted instantiation: conntrack-tcp.c:get_erspan_ts
Unexecuted instantiation: conntrack-tp.c:get_erspan_ts
Unexecuted instantiation: conntrack-other.c:get_erspan_ts
Unexecuted instantiation: dpif-netdev-extract-study.c:get_erspan_ts
Unexecuted instantiation: dpif-netdev-lookup.c:get_erspan_ts
Unexecuted instantiation: dpif-netdev-lookup-autovalidator.c:get_erspan_ts
Unexecuted instantiation: dpif-netdev-lookup-generic.c:get_erspan_ts
1388
1389
/*
1390
 * GTP-U protocol header and metadata
1391
 * See:
1392
 *   User Plane Protocol and Architectural Analysis on 3GPP 5G System
1393
 *                 draft-hmm-dmm-5g-uplane-analysis-00
1394
 *
1395
 * 0                   1                   2                   3
1396
 * 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
1397
 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1398
 * | Ver |P|R|E|S|N| Message Type|             Length              |
1399
 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1400
 * |                Tunnel Endpoint Identifier                     |
1401
 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1402
 * |      Sequence Number        |   N-PDU Number  |  Next-Ext-Hdr |
1403
 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1404
 *
1405
 * GTP-U Flags:
1406
 *   P: Protocol Type (Set to '1')
1407
 *   R: Reserved Bit (Set to '0')
1408
 *   E: Extension Header Flag (Set to '1' if extension header exists)
1409
 *   S: Sequence Number Flag (Set to '1' if sequence number exists)
1410
 *   N: N-PDU Number Flag (Set to '1' if N-PDU number exists)
1411
 *
1412
 * GTP-U Message Type:
1413
 *   Indicates the type of GTP-U message.
1414
 *
1415
 * GTP-U Length:
1416
 *   Indicates the length in octets of the payload.
1417
 *
1418
 * User payload is transmitted in G-PDU packets.
1419
 */
1420
1421
#define GTPU_VER_MASK   0xe0
1422
#define GTPU_P_MASK     0x10
1423
#define GTPU_E_MASK     0x04
1424
0
#define GTPU_S_MASK     0x02
1425
1426
/* GTP-U UDP port. */
1427
0
#define GTPU_DST_PORT   2152
1428
1429
/* Default GTP-U flags: Ver = 1 and P = 1. */
1430
0
#define GTPU_FLAGS_DEFAULT  0x30
1431
1432
/* GTP-U message type for normal user plane PDU. */
1433
#define GTPU_MSGTYPE_REQ    1   /* Echo Request. */
1434
#define GTPU_MSGTYPE_REPL   2   /* Echo Reply. */
1435
0
#define GTPU_MSGTYPE_GPDU   255 /* User Payload. */
1436
1437
struct gtpu_metadata {
1438
    uint8_t flags;
1439
    uint8_t msgtype;
1440
};
1441
BUILD_ASSERT_DECL(sizeof(struct gtpu_metadata) == 2);
1442
1443
struct gtpuhdr {
1444
    struct gtpu_metadata md;
1445
    ovs_be16 len;
1446
    ovs_16aligned_be32 teid;
1447
};
1448
BUILD_ASSERT_DECL(sizeof(struct gtpuhdr) == 8);
1449
1450
struct gtpuhdr_opt {
1451
    ovs_be16 seqno;
1452
    uint8_t pdu_number;
1453
    uint8_t next_ext_type;
1454
};
1455
BUILD_ASSERT_DECL(sizeof(struct gtpuhdr_opt) == 4);
1456
1457
/* VXLAN protocol header */
1458
struct vxlanhdr {
1459
    union {
1460
        ovs_16aligned_be32 vx_flags; /* VXLAN flags. */
1461
        struct {
1462
            uint8_t flags;           /* VXLAN GPE flags. */
1463
            uint8_t reserved[2];     /* 16 bits reserved. */
1464
            uint8_t next_protocol;   /* Next Protocol field for VXLAN GPE. */
1465
        } vx_gpe;
1466
    };
1467
    ovs_16aligned_be32 vx_vni;
1468
};
1469
BUILD_ASSERT_DECL(sizeof(struct vxlanhdr) == 8);
1470
1471
#define VXLAN_FLAGS 0x08000000  /* struct vxlanhdr.vx_flags required value. */
1472
1473
/*
1474
 * VXLAN Generic Protocol Extension (VXLAN_F_GPE):
1475
 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1476
 * |R|R|Ver|I|P|R|O|       Reserved                |Next Protocol  |
1477
 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1478
 * |                VXLAN Network Identifier (VNI) |   Reserved    |
1479
 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1480
 *
1481
 * Ver = Version. Indicates VXLAN GPE protocol version.
1482
 *
1483
 * P = Next Protocol Bit. The P bit is set to indicate that the
1484
 *     Next Protocol field is present.
1485
 *
1486
 * O = OAM Flag Bit. The O bit is set to indicate that the packet
1487
 *     is an OAM packet.
1488
 *
1489
 * Next Protocol = This 8 bit field indicates the protocol header
1490
 * immediately following the VXLAN GPE header.
1491
 *
1492
 * https://tools.ietf.org/html/draft-ietf-nvo3-vxlan-gpe-01
1493
 */
1494
1495
/* Fields in struct vxlanhdr.vx_gpe.flags */
1496
#define VXLAN_GPE_FLAGS_VER     0x30    /* Version. */
1497
#define VXLAN_GPE_FLAGS_P       0x04    /* Next Protocol Bit. */
1498
0
#define VXLAN_GPE_FLAGS_O       0x01    /* OAM Bit. */
1499
1500
/* VXLAN-GPE header flags. */
1501
#define VXLAN_HF_VER   ((1U <<29) | (1U <<28))
1502
#define VXLAN_HF_NP    (1U <<26)
1503
#define VXLAN_HF_OAM   (1U <<24)
1504
1505
#define VXLAN_GPE_USED_BITS (VXLAN_HF_VER | VXLAN_HF_NP | VXLAN_HF_OAM | \
1506
                            0xff)
1507
1508
/* VXLAN-GPE header Next Protocol. */
1509
0
#define VXLAN_GPE_NP_IPV4      0x01
1510
0
#define VXLAN_GPE_NP_IPV6      0x02
1511
0
#define VXLAN_GPE_NP_ETHERNET  0x03
1512
0
#define VXLAN_GPE_NP_NSH       0x04
1513
1514
#define VXLAN_F_GPE  0x4000
1515
#define VXLAN_HF_GPE 0x04000000
1516
1517
/* Input values for PACKET_TYPE macros have to be in host byte order.
1518
 * The _BE postfix indicates result is in network byte order. Otherwise result
1519
 * is in host byte order. */
1520
#define PACKET_TYPE(NS, NS_TYPE) ((uint32_t) ((NS) << 16 | (NS_TYPE)))
1521
0
#define PACKET_TYPE_BE(NS, NS_TYPE) (htonl((NS) << 16 | (NS_TYPE)))
1522
1523
/* Returns the host byte ordered namespace of 'packet type'. */
1524
static inline uint16_t
1525
pt_ns(ovs_be32 packet_type)
1526
2.03k
{
1527
2.03k
    return ntohl(packet_type) >> 16;
1528
2.03k
}
Unexecuted instantiation: flow_extract_target.c:pt_ns
Unexecuted instantiation: dp-packet.c:pt_ns
Unexecuted instantiation: flow.c:pt_ns
match.c:pt_ns
Line
Count
Source
1526
2.03k
{
1527
2.03k
    return ntohl(packet_type) >> 16;
1528
2.03k
}
Unexecuted instantiation: netdev.c:pt_ns
Unexecuted instantiation: ofp-match.c:pt_ns
Unexecuted instantiation: ofp-port.c:pt_ns
Unexecuted instantiation: ofp-print.c:pt_ns
Unexecuted instantiation: ofp-queue.c:pt_ns
Unexecuted instantiation: ofp-table.c:pt_ns
Unexecuted instantiation: ofp-util.c:pt_ns
Unexecuted instantiation: ovs-router.c:pt_ns
Unexecuted instantiation: packets.c:pt_ns
Unexecuted instantiation: smap.c:pt_ns
Unexecuted instantiation: socket-util.c:pt_ns
Unexecuted instantiation: tnl-ports.c:pt_ns
Unexecuted instantiation: tun-metadata.c:pt_ns
Unexecuted instantiation: netdev-linux.c:pt_ns
Unexecuted instantiation: netdev-offload-tc.c:pt_ns
Unexecuted instantiation: rtnetlink.c:pt_ns
Unexecuted instantiation: route-table.c:pt_ns
Unexecuted instantiation: tc.c:pt_ns
Unexecuted instantiation: classifier.c:pt_ns
Unexecuted instantiation: dpif.c:pt_ns
Unexecuted instantiation: meta-flow.c:pt_ns
Unexecuted instantiation: netdev-offload.c:pt_ns
Unexecuted instantiation: netdev-vport.c:pt_ns
Unexecuted instantiation: netlink.c:pt_ns
Unexecuted instantiation: nx-match.c:pt_ns
Unexecuted instantiation: odp-execute.c:pt_ns
Unexecuted instantiation: odp-execute-private.c:pt_ns
Unexecuted instantiation: odp-util.c:pt_ns
Unexecuted instantiation: ofp-actions.c:pt_ns
Unexecuted instantiation: ofp-ct.c:pt_ns
Unexecuted instantiation: ofp-ed-props.c:pt_ns
Unexecuted instantiation: ofp-flow.c:pt_ns
Unexecuted instantiation: ofp-group.c:pt_ns
Unexecuted instantiation: ofp-meter.c:pt_ns
Unexecuted instantiation: ofp-monitor.c:pt_ns
Unexecuted instantiation: ofp-packet.c:pt_ns
Unexecuted instantiation: ofp-parse.c:pt_ns
Unexecuted instantiation: stream.c:pt_ns
Unexecuted instantiation: tnl-neigh-cache.c:pt_ns
Unexecuted instantiation: netdev-native-tnl.c:pt_ns
Unexecuted instantiation: stream-unix.c:pt_ns
Unexecuted instantiation: dpif-netlink.c:pt_ns
Unexecuted instantiation: dpif-netlink-rtnl.c:pt_ns
Unexecuted instantiation: netlink-conntrack.c:pt_ns
Unexecuted instantiation: stream-ssl.c:pt_ns
Unexecuted instantiation: bundle.c:pt_ns
Unexecuted instantiation: conntrack.c:pt_ns
Unexecuted instantiation: ct-dpif.c:pt_ns
Unexecuted instantiation: dpctl.c:pt_ns
Unexecuted instantiation: dpif-netdev.c:pt_ns
Unexecuted instantiation: dpif-netdev-private-dfc.c:pt_ns
Unexecuted instantiation: dpif-netdev-private-dpif.c:pt_ns
Unexecuted instantiation: dpif-netdev-private-extract.c:pt_ns
Unexecuted instantiation: ipf.c:pt_ns
Unexecuted instantiation: learn.c:pt_ns
Unexecuted instantiation: multipath.c:pt_ns
Unexecuted instantiation: stream-tcp.c:pt_ns
Unexecuted instantiation: conntrack-icmp.c:pt_ns
Unexecuted instantiation: conntrack-tcp.c:pt_ns
Unexecuted instantiation: conntrack-tp.c:pt_ns
Unexecuted instantiation: conntrack-other.c:pt_ns
Unexecuted instantiation: dpif-netdev-extract-study.c:pt_ns
Unexecuted instantiation: dpif-netdev-lookup.c:pt_ns
Unexecuted instantiation: dpif-netdev-lookup-autovalidator.c:pt_ns
Unexecuted instantiation: dpif-netdev-lookup-generic.c:pt_ns
1529
1530
/* Returns the network byte ordered namespace type of 'packet type'. */
1531
static inline ovs_be16
1532
pt_ns_type_be(ovs_be32 packet_type)
1533
0
{
1534
0
    return be32_to_be16(packet_type);
1535
0
}
Unexecuted instantiation: flow_extract_target.c:pt_ns_type_be
Unexecuted instantiation: dp-packet.c:pt_ns_type_be
Unexecuted instantiation: flow.c:pt_ns_type_be
Unexecuted instantiation: match.c:pt_ns_type_be
Unexecuted instantiation: netdev.c:pt_ns_type_be
Unexecuted instantiation: ofp-match.c:pt_ns_type_be
Unexecuted instantiation: ofp-port.c:pt_ns_type_be
Unexecuted instantiation: ofp-print.c:pt_ns_type_be
Unexecuted instantiation: ofp-queue.c:pt_ns_type_be
Unexecuted instantiation: ofp-table.c:pt_ns_type_be
Unexecuted instantiation: ofp-util.c:pt_ns_type_be
Unexecuted instantiation: ovs-router.c:pt_ns_type_be
Unexecuted instantiation: packets.c:pt_ns_type_be
Unexecuted instantiation: smap.c:pt_ns_type_be
Unexecuted instantiation: socket-util.c:pt_ns_type_be
Unexecuted instantiation: tnl-ports.c:pt_ns_type_be
Unexecuted instantiation: tun-metadata.c:pt_ns_type_be
Unexecuted instantiation: netdev-linux.c:pt_ns_type_be
Unexecuted instantiation: netdev-offload-tc.c:pt_ns_type_be
Unexecuted instantiation: rtnetlink.c:pt_ns_type_be
Unexecuted instantiation: route-table.c:pt_ns_type_be
Unexecuted instantiation: tc.c:pt_ns_type_be
Unexecuted instantiation: classifier.c:pt_ns_type_be
Unexecuted instantiation: dpif.c:pt_ns_type_be
Unexecuted instantiation: meta-flow.c:pt_ns_type_be
Unexecuted instantiation: netdev-offload.c:pt_ns_type_be
Unexecuted instantiation: netdev-vport.c:pt_ns_type_be
Unexecuted instantiation: netlink.c:pt_ns_type_be
Unexecuted instantiation: nx-match.c:pt_ns_type_be
Unexecuted instantiation: odp-execute.c:pt_ns_type_be
Unexecuted instantiation: odp-execute-private.c:pt_ns_type_be
Unexecuted instantiation: odp-util.c:pt_ns_type_be
Unexecuted instantiation: ofp-actions.c:pt_ns_type_be
Unexecuted instantiation: ofp-ct.c:pt_ns_type_be
Unexecuted instantiation: ofp-ed-props.c:pt_ns_type_be
Unexecuted instantiation: ofp-flow.c:pt_ns_type_be
Unexecuted instantiation: ofp-group.c:pt_ns_type_be
Unexecuted instantiation: ofp-meter.c:pt_ns_type_be
Unexecuted instantiation: ofp-monitor.c:pt_ns_type_be
Unexecuted instantiation: ofp-packet.c:pt_ns_type_be
Unexecuted instantiation: ofp-parse.c:pt_ns_type_be
Unexecuted instantiation: stream.c:pt_ns_type_be
Unexecuted instantiation: tnl-neigh-cache.c:pt_ns_type_be
Unexecuted instantiation: netdev-native-tnl.c:pt_ns_type_be
Unexecuted instantiation: stream-unix.c:pt_ns_type_be
Unexecuted instantiation: dpif-netlink.c:pt_ns_type_be
Unexecuted instantiation: dpif-netlink-rtnl.c:pt_ns_type_be
Unexecuted instantiation: netlink-conntrack.c:pt_ns_type_be
Unexecuted instantiation: stream-ssl.c:pt_ns_type_be
Unexecuted instantiation: bundle.c:pt_ns_type_be
Unexecuted instantiation: conntrack.c:pt_ns_type_be
Unexecuted instantiation: ct-dpif.c:pt_ns_type_be
Unexecuted instantiation: dpctl.c:pt_ns_type_be
Unexecuted instantiation: dpif-netdev.c:pt_ns_type_be
Unexecuted instantiation: dpif-netdev-private-dfc.c:pt_ns_type_be
Unexecuted instantiation: dpif-netdev-private-dpif.c:pt_ns_type_be
Unexecuted instantiation: dpif-netdev-private-extract.c:pt_ns_type_be
Unexecuted instantiation: ipf.c:pt_ns_type_be
Unexecuted instantiation: learn.c:pt_ns_type_be
Unexecuted instantiation: multipath.c:pt_ns_type_be
Unexecuted instantiation: stream-tcp.c:pt_ns_type_be
Unexecuted instantiation: conntrack-icmp.c:pt_ns_type_be
Unexecuted instantiation: conntrack-tcp.c:pt_ns_type_be
Unexecuted instantiation: conntrack-tp.c:pt_ns_type_be
Unexecuted instantiation: conntrack-other.c:pt_ns_type_be
Unexecuted instantiation: dpif-netdev-extract-study.c:pt_ns_type_be
Unexecuted instantiation: dpif-netdev-lookup.c:pt_ns_type_be
Unexecuted instantiation: dpif-netdev-lookup-autovalidator.c:pt_ns_type_be
Unexecuted instantiation: dpif-netdev-lookup-generic.c:pt_ns_type_be
1536
1537
/* Returns the host byte ordered namespace type of 'packet type'. */
1538
static inline uint16_t
1539
pt_ns_type(ovs_be32 packet_type)
1540
0
{
1541
0
    return ntohs(pt_ns_type_be(packet_type));
1542
0
}
Unexecuted instantiation: flow_extract_target.c:pt_ns_type
Unexecuted instantiation: dp-packet.c:pt_ns_type
Unexecuted instantiation: flow.c:pt_ns_type
Unexecuted instantiation: match.c:pt_ns_type
Unexecuted instantiation: netdev.c:pt_ns_type
Unexecuted instantiation: ofp-match.c:pt_ns_type
Unexecuted instantiation: ofp-port.c:pt_ns_type
Unexecuted instantiation: ofp-print.c:pt_ns_type
Unexecuted instantiation: ofp-queue.c:pt_ns_type
Unexecuted instantiation: ofp-table.c:pt_ns_type
Unexecuted instantiation: ofp-util.c:pt_ns_type
Unexecuted instantiation: ovs-router.c:pt_ns_type
Unexecuted instantiation: packets.c:pt_ns_type
Unexecuted instantiation: smap.c:pt_ns_type
Unexecuted instantiation: socket-util.c:pt_ns_type
Unexecuted instantiation: tnl-ports.c:pt_ns_type
Unexecuted instantiation: tun-metadata.c:pt_ns_type
Unexecuted instantiation: netdev-linux.c:pt_ns_type
Unexecuted instantiation: netdev-offload-tc.c:pt_ns_type
Unexecuted instantiation: rtnetlink.c:pt_ns_type
Unexecuted instantiation: route-table.c:pt_ns_type
Unexecuted instantiation: tc.c:pt_ns_type
Unexecuted instantiation: classifier.c:pt_ns_type
Unexecuted instantiation: dpif.c:pt_ns_type
Unexecuted instantiation: meta-flow.c:pt_ns_type
Unexecuted instantiation: netdev-offload.c:pt_ns_type
Unexecuted instantiation: netdev-vport.c:pt_ns_type
Unexecuted instantiation: netlink.c:pt_ns_type
Unexecuted instantiation: nx-match.c:pt_ns_type
Unexecuted instantiation: odp-execute.c:pt_ns_type
Unexecuted instantiation: odp-execute-private.c:pt_ns_type
Unexecuted instantiation: odp-util.c:pt_ns_type
Unexecuted instantiation: ofp-actions.c:pt_ns_type
Unexecuted instantiation: ofp-ct.c:pt_ns_type
Unexecuted instantiation: ofp-ed-props.c:pt_ns_type
Unexecuted instantiation: ofp-flow.c:pt_ns_type
Unexecuted instantiation: ofp-group.c:pt_ns_type
Unexecuted instantiation: ofp-meter.c:pt_ns_type
Unexecuted instantiation: ofp-monitor.c:pt_ns_type
Unexecuted instantiation: ofp-packet.c:pt_ns_type
Unexecuted instantiation: ofp-parse.c:pt_ns_type
Unexecuted instantiation: stream.c:pt_ns_type
Unexecuted instantiation: tnl-neigh-cache.c:pt_ns_type
Unexecuted instantiation: netdev-native-tnl.c:pt_ns_type
Unexecuted instantiation: stream-unix.c:pt_ns_type
Unexecuted instantiation: dpif-netlink.c:pt_ns_type
Unexecuted instantiation: dpif-netlink-rtnl.c:pt_ns_type
Unexecuted instantiation: netlink-conntrack.c:pt_ns_type
Unexecuted instantiation: stream-ssl.c:pt_ns_type
Unexecuted instantiation: bundle.c:pt_ns_type
Unexecuted instantiation: conntrack.c:pt_ns_type
Unexecuted instantiation: ct-dpif.c:pt_ns_type
Unexecuted instantiation: dpctl.c:pt_ns_type
Unexecuted instantiation: dpif-netdev.c:pt_ns_type
Unexecuted instantiation: dpif-netdev-private-dfc.c:pt_ns_type
Unexecuted instantiation: dpif-netdev-private-dpif.c:pt_ns_type
Unexecuted instantiation: dpif-netdev-private-extract.c:pt_ns_type
Unexecuted instantiation: ipf.c:pt_ns_type
Unexecuted instantiation: learn.c:pt_ns_type
Unexecuted instantiation: multipath.c:pt_ns_type
Unexecuted instantiation: stream-tcp.c:pt_ns_type
Unexecuted instantiation: conntrack-icmp.c:pt_ns_type
Unexecuted instantiation: conntrack-tcp.c:pt_ns_type
Unexecuted instantiation: conntrack-tp.c:pt_ns_type
Unexecuted instantiation: conntrack-other.c:pt_ns_type
Unexecuted instantiation: dpif-netdev-extract-study.c:pt_ns_type
Unexecuted instantiation: dpif-netdev-lookup.c:pt_ns_type
Unexecuted instantiation: dpif-netdev-lookup-autovalidator.c:pt_ns_type
Unexecuted instantiation: dpif-netdev-lookup-generic.c:pt_ns_type
1543
1544
/* Well-known packet_type field values. */
1545
enum packet_type {
1546
    PT_ETH  = PACKET_TYPE(OFPHTN_ONF, 0x0000),  /* Default PT: Ethernet */
1547
    PT_USE_NEXT_PROTO = PACKET_TYPE(OFPHTN_ONF, 0xfffe),  /* Pseudo PT for decap. */
1548
    PT_IPV4 = PACKET_TYPE(OFPHTN_ETHERTYPE, ETH_TYPE_IP),
1549
    PT_IPV6 = PACKET_TYPE(OFPHTN_ETHERTYPE, ETH_TYPE_IPV6),
1550
    PT_MPLS = PACKET_TYPE(OFPHTN_ETHERTYPE, ETH_TYPE_MPLS),
1551
    PT_MPLS_MC = PACKET_TYPE(OFPHTN_ETHERTYPE, ETH_TYPE_MPLS_MCAST),
1552
    PT_NSH  = PACKET_TYPE(OFPHTN_ETHERTYPE, ETH_TYPE_NSH),
1553
    PT_UNKNOWN = PACKET_TYPE(0xffff, 0xffff),   /* Unknown packet type. */
1554
};
1555
1556
1557
void ipv6_format_addr(const struct in6_addr *addr, struct ds *);
1558
void ipv6_format_addr_bracket(const struct in6_addr *addr, struct ds *,
1559
                              bool bracket);
1560
void ipv6_format_mapped(const struct in6_addr *addr, struct ds *);
1561
void ipv6_format_masked(const struct in6_addr *addr,
1562
                        const struct in6_addr *mask, struct ds *);
1563
const char * ipv6_string_mapped(char *addr_str, const struct in6_addr *addr);
1564
struct in6_addr ipv6_addr_bitand(const struct in6_addr *src,
1565
                                 const struct in6_addr *mask);
1566
struct in6_addr ipv6_addr_bitxor(const struct in6_addr *a,
1567
                                 const struct in6_addr *b);
1568
bool ipv6_is_zero(const struct in6_addr *a);
1569
struct in6_addr ipv6_create_mask(int mask);
1570
int ipv6_count_cidr_bits(const struct in6_addr *netmask);
1571
bool ipv6_is_cidr(const struct in6_addr *netmask);
1572
1573
bool ipv6_parse(const char *s, struct in6_addr *ip);
1574
char *ipv6_parse_masked(const char *s, struct in6_addr *ipv6,
1575
                        struct in6_addr *mask);
1576
char *ipv6_parse_cidr(const char *s, struct in6_addr *ip, unsigned int *plen)
1577
    OVS_WARN_UNUSED_RESULT;
1578
char *ipv6_parse_masked_len(const char *s, int *n, struct in6_addr *ipv6,
1579
                            struct in6_addr *mask);
1580
char *ipv6_parse_cidr_len(const char *s, int *n, struct in6_addr *ip,
1581
                          unsigned int *plen)
1582
    OVS_WARN_UNUSED_RESULT;
1583
1584
void *eth_compose(struct dp_packet *, const struct eth_addr eth_dst,
1585
                  const struct eth_addr eth_src, uint16_t eth_type,
1586
                  size_t size);
1587
void *snap_compose(struct dp_packet *, const struct eth_addr eth_dst,
1588
                   const struct eth_addr eth_src,
1589
                   unsigned int oui, uint16_t snap_type, size_t size);
1590
void packet_set_ipv4(struct dp_packet *, ovs_be32 src, ovs_be32 dst, uint8_t tos,
1591
                     uint8_t ttl);
1592
void packet_set_ipv4_addr(struct dp_packet *packet, ovs_16aligned_be32 *addr,
1593
                          ovs_be32 new_addr);
1594
void packet_set_ipv6(struct dp_packet *, const struct in6_addr *src,
1595
                     const struct in6_addr *dst, uint8_t tc,
1596
                     ovs_be32 fl, uint8_t hlmit);
1597
void packet_set_ipv6_addr(struct dp_packet *packet, uint8_t proto,
1598
                          ovs_16aligned_be32 addr[4],
1599
                          const struct in6_addr *new_addr,
1600
                          bool recalculate_csum);
1601
void packet_set_tcp_port(struct dp_packet *, ovs_be16 src, ovs_be16 dst);
1602
void packet_set_udp_port(struct dp_packet *, ovs_be16 src, ovs_be16 dst);
1603
void packet_set_sctp_port(struct dp_packet *, ovs_be16 src, ovs_be16 dst);
1604
void packet_set_icmp(struct dp_packet *, uint8_t type, uint8_t code);
1605
void packet_set_nd(struct dp_packet *, const struct in6_addr *target,
1606
                   const struct eth_addr sll, const struct eth_addr tll);
1607
void packet_set_nd_ext(struct dp_packet *packet,
1608
                       const ovs_16aligned_be32 rso_flags,
1609
                       const uint8_t opt_type);
1610
void packet_set_igmp3_query(struct dp_packet *, uint8_t max_resp,
1611
                            ovs_be32 group, bool srs, uint8_t qrv,
1612
                            uint8_t qqic);
1613
void packet_format_tcp_flags(struct ds *, uint16_t);
1614
const char *packet_tcp_flag_to_string(uint32_t flag);
1615
void *compose_ipv6(struct dp_packet *packet, uint8_t proto,
1616
                   const struct in6_addr *src, const struct in6_addr *dst,
1617
                   uint8_t key_tc, ovs_be32 key_fl, uint8_t key_hl, int size);
1618
void compose_arp__(struct dp_packet *);
1619
void compose_arp(struct dp_packet *, uint16_t arp_op,
1620
                 const struct eth_addr arp_sha,
1621
                 const struct eth_addr arp_tha, bool broadcast,
1622
                 ovs_be32 arp_spa, ovs_be32 arp_tpa);
1623
void compose_nd_ns(struct dp_packet *, const struct eth_addr eth_src,
1624
                   const struct in6_addr *ipv6_src,
1625
                   const struct in6_addr *ipv6_dst);
1626
void compose_nd_na(struct dp_packet *, const struct eth_addr eth_src,
1627
                   const struct eth_addr eth_dst,
1628
                   const struct in6_addr *ipv6_src,
1629
                   const struct in6_addr *ipv6_dst,
1630
                   ovs_be32 rso_flags);
1631
void compose_nd_ra(struct dp_packet *,
1632
                   const struct eth_addr eth_src,
1633
                   const struct eth_addr eth_dst,
1634
                   const struct in6_addr *ipv6_src,
1635
                   const struct in6_addr *ipv6_dst,
1636
                   uint8_t cur_hop_limit, uint8_t mo_flags,
1637
                   ovs_be16 router_lt, ovs_be32 reachable_time,
1638
                   ovs_be32 retrans_timer, uint32_t mtu);
1639
void packet_put_ra_prefix_opt(struct dp_packet *,
1640
                              uint8_t plen, uint8_t la_flags,
1641
                              ovs_be32 valid_lifetime,
1642
                              ovs_be32 preferred_lifetime,
1643
                              const ovs_be128 router_prefix);
1644
uint32_t packet_csum_pseudoheader(const struct ip_header *);
1645
bool packet_rh_present(struct dp_packet *packet, uint8_t *nexthdr,
1646
                       bool *first_frag);
1647
void IP_ECN_set_ce(struct dp_packet *pkt, bool is_ipv6);
1648
1649
#define DNS_HEADER_LEN 12
1650
struct dns_header {
1651
    ovs_be16 id;
1652
    uint8_t lo_flag; /* QR (1), OPCODE (4), AA (1), TC (1) and RD (1) */
1653
    uint8_t hi_flag; /* RA (1), Z (3) and RCODE (4) */
1654
    ovs_be16 qdcount; /* Num of entries in the question section. */
1655
    ovs_be16 ancount; /* Num of resource records in the answer section. */
1656
1657
    /* Num of name server records in the authority record section. */
1658
    ovs_be16 nscount;
1659
1660
    /* Num of resource records in the additional records section. */
1661
    ovs_be16 arcount;
1662
};
1663
1664
BUILD_ASSERT_DECL(DNS_HEADER_LEN == sizeof(struct dns_header));
1665
1666
#define DNS_QUERY_TYPE_A        0x01
1667
#define DNS_QUERY_TYPE_AAAA     0x1c
1668
#define DNS_QUERY_TYPE_ANY      0xff
1669
1670
#define DNS_CLASS_IN            0x01
1671
#define DNS_DEFAULT_RR_TTL      3600
1672
1673
#endif /* packets.h */