Properly set in_port in skb for Flow Mod messages.
[sliver-openvswitch.git] / datapath / datapath.h
1 /* Interface exported by OpenFlow module. */
2
3 #ifndef DATAPATH_H
4 #define DATAPATH_H 1
5
6 #include <linux/mutex.h>
7 #include <linux/netlink.h>
8 #include <linux/netdevice.h>
9 #include <linux/workqueue.h>
10 #include <linux/skbuff.h>
11 #include "openflow.h"
12 #include "flow.h"
13
14
15 #define NL_FLOWS_PER_MESSAGE 100
16
17 #ifdef NDEBUG
18 #define dprintk(x...)
19 #else
20 #define dprintk(x...) printk(x)
21 #endif
22
23 /* Capabilities supported by this implementation. */
24 #define OFP_SUPPORTED_CAPABILITIES ( OFPC_FLOW_STATS \
25                 | OFPC_TABLE_STATS \
26                 | OFPC_PORT_STATS \
27                 | OFPC_MULTI_PHY_TX )
28
29 /* Actions supported by this implementation. */
30 #define OFP_SUPPORTED_ACTIONS ( (1 << OFPAT_OUTPUT) \
31                 | (1 << OFPAT_SET_VLAN_VID) \
32                 | (1 << OFPAT_SET_VLAN_PCP) \
33                 | (1 << OFPAT_STRIP_VLAN) \
34                 | (1 << OFPAT_SET_DL_SRC) \
35                 | (1 << OFPAT_SET_DL_DST) \
36                 | (1 << OFPAT_SET_NW_SRC) \
37                 | (1 << OFPAT_SET_NW_DST) \
38                 | (1 << OFPAT_SET_TP_SRC) \
39                 | (1 << OFPAT_SET_TP_DST) )
40
41 struct sk_buff;
42
43 struct datapath {
44         int dp_idx;
45
46         /* Unique identifier for this datapath, incorporates the dp_idx and
47          * a hardware address */
48         uint64_t  id;
49
50         struct timer_list timer;        /* Expiration timer. */
51         struct sw_chain *chain;  /* Forwarding rules. */
52         struct task_struct *dp_task; /* Kernel thread for maintenance. */
53
54         /* Data related to the "of" device of this datapath */
55         struct net_device *netdev;
56
57         /* Configuration set from controller */
58         uint16_t flags;
59         uint16_t miss_send_len;
60
61         /* Switch ports. */
62         struct net_bridge_port *ports[OFPP_MAX];
63         struct net_bridge_port *local_port; /* OFPP_LOCAL port. */
64         struct list_head port_list; /* All ports, including local_port. */
65 };
66
67 /* Information necessary to reply to the sender of an OpenFlow message. */
68 struct sender {
69         uint32_t xid;           /* OpenFlow transaction ID of request. */
70         uint32_t pid;           /* Netlink process ID of sending socket. */
71         uint32_t seq;           /* Netlink sequence ID of request. */
72 };
73
74 struct net_bridge_port {
75         u16     port_no;
76         u32 config;             /* Some subset of OFPPC_* flags. */
77         u32 state;              /* Some subset of OFPPS_* flags. */
78         spinlock_t lock;
79         struct work_struct port_task;
80         struct datapath *dp;
81         struct net_device *dev;
82         struct list_head node; /* Element in datapath.ports. */
83 };
84
85 extern struct mutex dp_mutex;
86 extern struct notifier_block dp_device_notifier;
87
88 int dp_del_switch_port(struct net_bridge_port *);
89 int dp_output_port(struct datapath *, struct sk_buff *, int out_port,
90                    int ignore_no_fwd);
91 int dp_output_control(struct datapath *, struct sk_buff *, uint32_t, 
92                         size_t, int);
93 int dp_set_origin(struct datapath *, uint16_t, struct sk_buff *);
94 int dp_send_features_reply(struct datapath *, const struct sender *);
95 int dp_send_config_reply(struct datapath *, const struct sender *);
96 int dp_send_port_status(struct net_bridge_port *p, uint8_t status);
97 int dp_send_flow_expired(struct datapath *, struct sw_flow *,
98                          enum ofp_flow_expired_reason);
99 int dp_send_error_msg(struct datapath *, const struct sender *, 
100                         uint16_t, uint16_t, const void *, size_t);
101 int dp_update_port_flags(struct datapath *dp, const struct ofp_port_mod *opm);
102 int dp_send_echo_reply(struct datapath *, const struct sender *,
103                        const struct ofp_header *);
104 int dp_send_hello(struct datapath *, const struct sender *,
105                   const struct ofp_header *);
106
107 /* Should hold at least RCU read lock when calling */
108 struct datapath *dp_get(int dp_idx);
109
110 #endif /* datapath.h */