sFlow: Genericize/simplify kernel sFlow implementation
[sliver-openvswitch.git] / datapath / datapath.h
1 /*
2  * Copyright (c) 2009, 2010, 2011 Nicira Networks.
3  * Distributed under the terms of the GNU GPL version 2.
4  *
5  * Significant portions of this file may be copied from parts of the Linux
6  * kernel, by Linus Torvalds and others.
7  */
8
9 /* Interface exported by openvswitch_mod. */
10
11 #ifndef DATAPATH_H
12 #define DATAPATH_H 1
13
14 #include <asm/page.h>
15 #include <linux/kernel.h>
16 #include <linux/mutex.h>
17 #include <linux/netdevice.h>
18 #include <linux/seqlock.h>
19 #include <linux/skbuff.h>
20 #include <linux/version.h>
21
22 #include "checksum.h"
23 #include "compat.h"
24 #include "flow.h"
25 #include "dp_sysfs.h"
26 #include "vlan.h"
27
28 struct vport;
29
30 /* Mask for the priority bits in a vlan header.  If we ever merge upstream
31  * then this should go into include/linux/if_vlan.h. */
32 #define VLAN_PCP_MASK 0xe000
33 #define VLAN_PCP_SHIFT 13
34
35 #define DP_MAX_PORTS 1024
36
37 #define SAMPLE_ACTION_DEPTH 3
38
39 /**
40  * struct dp_stats_percpu - per-cpu packet processing statistics for a given
41  * datapath.
42  * @n_frags: Number of IP fragments processed by datapath.
43  * @n_hit: Number of received packets for which a matching flow was found in
44  * the flow table.
45  * @n_miss: Number of received packets that had no matching flow in the flow
46  * table.  The sum of @n_hit and @n_miss is the number of packets that have
47  * been received by the datapath.
48  * @n_lost: Number of received packets that had no matching flow in the flow
49  * table that could not be sent to userspace (normally due to an overflow in
50  * one of the datapath's queues).
51  */
52 struct dp_stats_percpu {
53         u64 n_frags;
54         u64 n_hit;
55         u64 n_missed;
56         u64 n_lost;
57         seqcount_t seqlock;
58 };
59
60 /**
61  * struct datapath - datapath for flow-based packet switching
62  * @rcu: RCU callback head for deferred destruction.
63  * @list_node: Element in global 'dps' list.
64  * @ifobj: Represents /sys/class/net/<devname>/brif.  Protected by RTNL.
65  * @drop_frags: Drop all IP fragments if nonzero.
66  * @n_flows: Number of flows currently in flow table.
67  * @table: Current flow table.  Protected by genl_lock and RCU.
68  * @ports: Map from port number to &struct vport.  %OVSP_LOCAL port
69  * always exists, other ports may be %NULL.  Protected by RTNL and RCU.
70  * @port_list: List of all ports in @ports in arbitrary order.  RTNL required
71  * to iterate or modify.
72  * @stats_percpu: Per-CPU datapath statistics.
73  *
74  * Context: See the comment on locking at the top of datapath.c for additional
75  * locking information.
76  */
77 struct datapath {
78         struct rcu_head rcu;
79         struct list_head list_node;
80         struct kobject ifobj;
81
82         int drop_frags;
83
84         /* Flow table. */
85         struct flow_table __rcu *table;
86
87         /* Switch ports. */
88         struct vport __rcu *ports[DP_MAX_PORTS];
89         struct list_head port_list;
90
91         /* Stats. */
92         struct dp_stats_percpu __percpu *stats_percpu;
93 };
94
95 /**
96  * struct ovs_skb_cb - OVS data in skb CB
97  * @vport: The datapath port on which the skb entered the switch.
98  * @flow: The flow associated with this packet.  May be %NULL if no flow.
99  * @tun_id: ID of the tunnel that encapsulated this packet.  It is 0 if the
100  * @ip_summed: Consistently stores L4 checksumming status across different
101  * kernel versions.
102  * @csum_start: Stores the offset from which to start checksumming independent
103  * of the transport header on all kernel versions.
104  * packet was not received on a tunnel.
105  * @vlan_tci: Provides a substitute for the skb->vlan_tci field on kernels
106  * before 2.6.27.
107  */
108 struct ovs_skb_cb {
109         struct vport            *vport;
110         struct sw_flow          *flow;
111         __be64                  tun_id;
112 #ifdef NEED_CSUM_NORMALIZE
113         enum csum_type          ip_summed;
114         u16                     csum_start;
115 #endif
116 #ifdef NEED_VLAN_FIELD
117         u16                     vlan_tci;
118 #endif
119 };
120 #define OVS_CB(skb) ((struct ovs_skb_cb *)(skb)->cb)
121
122 /**
123  * struct dp_upcall - metadata to include with a packet to send to userspace
124  * @cmd: One of %OVS_PACKET_CMD_*.
125  * @key: Becomes %OVS_PACKET_ATTR_KEY.  Must be nonnull.
126  * @userdata: Is passed to user-space as %OVS_PACKET_ATTR_USERDATA if @cmd is
127  * %OVS_PACKET_CMD_ACTION.
128  */
129 struct dp_upcall_info {
130         u8 cmd;
131         const struct sw_flow_key *key;
132         u64 userdata;
133 };
134
135 extern struct notifier_block dp_device_notifier;
136 extern struct genl_multicast_group dp_vport_multicast_group;
137 extern int (*dp_ioctl_hook)(struct net_device *dev, struct ifreq *rq, int cmd);
138
139 void dp_process_received_packet(struct vport *, struct sk_buff *);
140 void dp_detach_port(struct vport *);
141 int dp_upcall(struct datapath *, struct sk_buff *, const struct dp_upcall_info *);
142
143 struct datapath *get_dp(int dp_idx);
144 const char *dp_name(const struct datapath *dp);
145 struct sk_buff *ovs_vport_cmd_build_info(struct vport *, u32 pid, u32 seq,
146                                          u8 cmd);
147
148 #endif /* datapath.h */