blob: 771c11e13e3406c1e46812c815f9adecc84cc698 [file] [log] [blame]
Jesse Grossccb13522011-10-25 19:26:31 -07001/*
Raju Subramaniancaf2ee12012-05-03 18:55:23 -07002 * Copyright (c) 2007-2012 Nicira, Inc.
Jesse Grossccb13522011-10-25 19:26:31 -07003 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of version 2 of the GNU General Public
6 * License as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program; if not, write to the Free Software
15 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
16 * 02110-1301, USA
17 */
18
19#ifndef DATAPATH_H
20#define DATAPATH_H 1
21
22#include <asm/page.h>
23#include <linux/kernel.h>
24#include <linux/mutex.h>
25#include <linux/netdevice.h>
26#include <linux/skbuff.h>
27#include <linux/u64_stats_sync.h>
Jesse Grossccb13522011-10-25 19:26:31 -070028
29#include "flow.h"
Pravin B Shelar46df7b82012-02-22 19:58:59 -080030#include "vport.h"
Jesse Grossccb13522011-10-25 19:26:31 -070031
32#define DP_MAX_PORTS 1024
33#define SAMPLE_ACTION_DEPTH 3
34
35/**
36 * struct dp_stats_percpu - per-cpu packet processing statistics for a given
37 * datapath.
38 * @n_hit: Number of received packets for which a matching flow was found in
39 * the flow table.
40 * @n_miss: Number of received packets that had no matching flow in the flow
41 * table. The sum of @n_hit and @n_miss is the number of packets that have
42 * been received by the datapath.
43 * @n_lost: Number of received packets that had no matching flow in the flow
44 * table that could not be sent to userspace (normally due to an overflow in
45 * one of the datapath's queues).
46 */
47struct dp_stats_percpu {
48 u64 n_hit;
49 u64 n_missed;
50 u64 n_lost;
51 struct u64_stats_sync sync;
52};
53
54/**
55 * struct datapath - datapath for flow-based packet switching
56 * @rcu: RCU callback head for deferred destruction.
57 * @list_node: Element in global 'dps' list.
58 * @n_flows: Number of flows currently in flow table.
59 * @table: Current flow table. Protected by genl_lock and RCU.
60 * @ports: Map from port number to &struct vport. %OVSP_LOCAL port
61 * always exists, other ports may be %NULL. Protected by RTNL and RCU.
62 * @port_list: List of all ports in @ports in arbitrary order. RTNL required
63 * to iterate or modify.
64 * @stats_percpu: Per-CPU datapath statistics.
Pravin B Shelar46df7b82012-02-22 19:58:59 -080065 * @net: Reference to net namespace.
Jesse Grossccb13522011-10-25 19:26:31 -070066 *
67 * Context: See the comment on locking at the top of datapath.c for additional
68 * locking information.
69 */
70struct datapath {
71 struct rcu_head rcu;
72 struct list_head list_node;
73
74 /* Flow table. */
75 struct flow_table __rcu *table;
76
77 /* Switch ports. */
78 struct vport __rcu *ports[DP_MAX_PORTS];
79 struct list_head port_list;
80
81 /* Stats. */
82 struct dp_stats_percpu __percpu *stats_percpu;
Pravin B Shelar46df7b82012-02-22 19:58:59 -080083
84#ifdef CONFIG_NET_NS
85 /* Network namespace ref. */
86 struct net *net;
87#endif
Jesse Grossccb13522011-10-25 19:26:31 -070088};
89
90/**
91 * struct ovs_skb_cb - OVS data in skb CB
92 * @flow: The flow associated with this packet. May be %NULL if no flow.
93 */
94struct ovs_skb_cb {
95 struct sw_flow *flow;
96};
97#define OVS_CB(skb) ((struct ovs_skb_cb *)(skb)->cb)
98
99/**
100 * struct dp_upcall - metadata to include with a packet to send to userspace
101 * @cmd: One of %OVS_PACKET_CMD_*.
102 * @key: Becomes %OVS_PACKET_ATTR_KEY. Must be nonnull.
103 * @userdata: If nonnull, its u64 value is extracted and passed to userspace as
104 * %OVS_PACKET_ATTR_USERDATA.
105 * @pid: Netlink PID to which packet should be sent. If @pid is 0 then no
106 * packet is sent and the packet is accounted in the datapath's @n_lost
107 * counter.
108 */
109struct dp_upcall_info {
110 u8 cmd;
111 const struct sw_flow_key *key;
112 const struct nlattr *userdata;
113 u32 pid;
114};
115
Pravin B Shelar46df7b82012-02-22 19:58:59 -0800116static inline struct net *ovs_dp_get_net(struct datapath *dp)
117{
118 return read_pnet(&dp->net);
119}
120
121static inline void ovs_dp_set_net(struct datapath *dp, struct net *net)
122{
123 write_pnet(&dp->net, net);
124}
125
Jesse Grossccb13522011-10-25 19:26:31 -0700126extern struct notifier_block ovs_dp_device_notifier;
127extern struct genl_multicast_group ovs_dp_vport_multicast_group;
128
129void ovs_dp_process_received_packet(struct vport *, struct sk_buff *);
130void ovs_dp_detach_port(struct vport *);
131int ovs_dp_upcall(struct datapath *, struct sk_buff *,
132 const struct dp_upcall_info *);
133
134const char *ovs_dp_name(const struct datapath *dp);
135struct sk_buff *ovs_vport_cmd_build_info(struct vport *, u32 pid, u32 seq,
136 u8 cmd);
137
138int ovs_execute_actions(struct datapath *dp, struct sk_buff *skb);
139#endif /* datapath.h */