datapath: Change vport type from string to integer enumeration.
[sliver-openvswitch.git] / datapath / vport.h
1 /*
2  * Copyright (c) 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 #ifndef VPORT_H
10 #define VPORT_H 1
11
12 #include <linux/list.h>
13 #include <linux/seqlock.h>
14 #include <linux/skbuff.h>
15 #include <linux/spinlock.h>
16
17 #include "datapath.h"
18 #include "openvswitch/datapath-protocol.h"
19 #include "odp-compat.h"
20
21 struct vport;
22 struct vport_parms;
23
24 /* The following definitions are for users of the vport subsytem: */
25
26 int vport_user_mod(const struct odp_port __user *);
27
28 int vport_user_stats_get(struct odp_vport_stats_req __user *);
29 int vport_user_stats_set(struct odp_vport_stats_req __user *);
30 int vport_user_ether_get(struct odp_vport_ether __user *);
31 int vport_user_ether_set(struct odp_vport_ether __user *);
32 int vport_user_mtu_get(struct odp_vport_mtu __user *);
33 int vport_user_mtu_set(struct odp_vport_mtu __user *);
34
35 void vport_lock(void);
36 void vport_unlock(void);
37
38 int vport_init(void);
39 void vport_exit(void);
40
41 struct vport *vport_add(const struct vport_parms *);
42 int vport_mod(struct vport *, struct odp_port *);
43 int vport_del(struct vport *);
44
45 struct vport *vport_locate(const char *name);
46
47 int vport_set_mtu(struct vport *, int mtu);
48 int vport_set_addr(struct vport *, const unsigned char *);
49 int vport_set_stats(struct vport *, struct rtnl_link_stats64 *);
50
51 const char *vport_get_name(const struct vport *);
52 enum odp_vport_type vport_get_type(const struct vport *);
53 const unsigned char *vport_get_addr(const struct vport *);
54
55 struct kobject *vport_get_kobj(const struct vport *);
56 int vport_get_stats(struct vport *, struct rtnl_link_stats64 *);
57
58 unsigned vport_get_flags(const struct vport *);
59 int vport_is_running(const struct vport *);
60 unsigned char vport_get_operstate(const struct vport *);
61
62 int vport_get_ifindex(const struct vport *);
63 int vport_get_iflink(const struct vport *);
64
65 int vport_get_mtu(const struct vport *);
66 void vport_get_config(const struct vport *, void *);
67
68 int vport_send(struct vport *, struct sk_buff *);
69
70 /* The following definitions are for implementers of vport devices: */
71
72 struct vport_percpu_stats {
73         u64 rx_bytes;
74         u64 rx_packets;
75         u64 tx_bytes;
76         u64 tx_packets;
77         seqcount_t seqlock;
78 };
79
80 struct vport_err_stats {
81         u64 rx_dropped;
82         u64 rx_errors;
83         u64 tx_dropped;
84         u64 tx_errors;
85 };
86
87 /**
88  * struct vport - one port within a datapath
89  * @port_no: Index into @dp's @ports array.
90  * @dp: Datapath to which this port belongs.
91  * @kobj: Represents /sys/class/net/<devname>/brport.
92  * @linkname: The name of the link from /sys/class/net/<datapath>/brif to this
93  * &struct vport.  (We keep this around so that we can delete it if the
94  * device gets renamed.)  Set to the null string when no link exists.
95  * @node: Element in @dp's @port_list.
96  * @sflow_pool: Number of packets that were candidates for sFlow sampling,
97  * regardless of whether they were actually chosen and sent down to userspace.
98  * @hash_node: Element in @dev_table hash table in vport.c.
99  * @ops: Class structure.
100  * @percpu_stats: Points to per-CPU statistics used and maintained by the vport
101  * code if %VPORT_F_GEN_STATS is set to 1 in @ops flags, otherwise unused.
102  * @stats_lock: Protects @err_stats and @offset_stats.
103  * @err_stats: Points to error statistics used and maintained by the vport code
104  * if %VPORT_F_GEN_STATS is set to 1 in @ops flags, otherwise unused.
105  * @offset_stats: Added to actual statistics as a sop to compatibility with
106  * XAPI for Citrix XenServer.  Deprecated.
107  */
108 struct vport {
109         u16 port_no;
110         struct datapath *dp;
111         struct kobject kobj;
112         char linkname[IFNAMSIZ];
113         struct list_head node;
114         atomic_t sflow_pool;
115
116         struct hlist_node hash_node;
117         const struct vport_ops *ops;
118
119         struct vport_percpu_stats __percpu *percpu_stats;
120
121         spinlock_t stats_lock;
122         struct vport_err_stats err_stats;
123         struct rtnl_link_stats64 offset_stats;
124 };
125
126 #define VPORT_F_REQUIRED        (1 << 0) /* If init fails, module loading fails. */
127 #define VPORT_F_GEN_STATS       (1 << 1) /* Track stats at the generic layer. */
128 #define VPORT_F_FLOW            (1 << 2) /* Sets OVS_CB(skb)->flow. */
129 #define VPORT_F_TUN_ID          (1 << 3) /* Sets OVS_CB(skb)->tun_id. */
130
131 /**
132  * struct vport_parms - parameters for creating a new vport
133  *
134  * @name: New vport's name.
135  * @type: New vport's type.
136  * @config: Kernel copy of 'config' member of &struct odp_port describing
137  * configuration for new port.  Exactly %VPORT_CONFIG_SIZE bytes.
138  * @dp: New vport's datapath.
139  * @port_no: New vport's port number.
140  */
141 struct vport_parms {
142         const char *name;
143         enum odp_vport_type type;
144         const void *config;
145
146         /* For vport_alloc(). */
147         struct datapath *dp;
148         u16 port_no;
149 };
150
151 /**
152  * struct vport_ops - definition of a type of virtual port
153  *
154  * @type: %ODP_VPORT_TYPE_* value for this type of virtual port.
155  * @flags: Flags of type VPORT_F_* that influence how the generic vport layer
156  * handles this vport.
157  * @init: Called at module initialization.  If VPORT_F_REQUIRED is set then the
158  * failure of this function will cause the module to not load.  If the flag is
159  * not set and initialzation fails then no vports of this type can be created.
160  * @exit: Called at module unload.
161  * @create: Create a new vport configured as specified.  On success returns
162  * a new vport allocated with vport_alloc(), otherwise an ERR_PTR() value.
163  * @modify: Modify the configuration of an existing vport.  May be null if
164  * modification is not supported.
165  * @destroy: Detach and destroy a vport.
166  * @set_mtu: Set the device's MTU.  May be null if not supported.
167  * @set_addr: Set the device's MAC address.  May be null if not supported.
168  * @get_name: Get the device's name.
169  * @get_addr: Get the device's MAC address.
170  * @get_config: Get the device's configuration.
171  * @get_kobj: Get the kobj associated with the device (may return null).
172  * @get_stats: Fill in the transmit/receive stats.  May be null if stats are
173  * not supported or if generic stats are in use.  If defined and
174  * VPORT_F_GEN_STATS is also set, the error stats are added to those already
175  * collected.
176  * @get_dev_flags: Get the device's flags.
177  * @is_running: Checks whether the device is running.
178  * @get_operstate: Get the device's operating state.
179  * @get_ifindex: Get the system interface index associated with the device.
180  * May be null if the device does not have an ifindex.
181  * @get_iflink: Get the system interface index associated with the device that
182  * will be used to send packets (may be different than ifindex for tunnels).
183  * May be null if the device does not have an iflink.
184  * @get_mtu: Get the device's MTU.
185  * @send: Send a packet on the device.  Returns the length of the packet sent.
186  */
187 struct vport_ops {
188         enum odp_vport_type type;
189         u32 flags;
190
191         /* Called at module init and exit respectively. */
192         int (*init)(void);
193         void (*exit)(void);
194
195         /* Called with RTNL lock. */
196         struct vport *(*create)(const struct vport_parms *);
197         int (*modify)(struct vport *, struct odp_port *);
198         int (*destroy)(struct vport *);
199
200         int (*set_mtu)(struct vport *, int mtu);
201         int (*set_addr)(struct vport *, const unsigned char *);
202
203         /* Called with rcu_read_lock or RTNL lock. */
204         const char *(*get_name)(const struct vport *);
205         const unsigned char *(*get_addr)(const struct vport *);
206         void (*get_config)(const struct vport *, void *);
207         struct kobject *(*get_kobj)(const struct vport *);
208         int (*get_stats)(const struct vport *, struct rtnl_link_stats64 *);
209
210         unsigned (*get_dev_flags)(const struct vport *);
211         int (*is_running)(const struct vport *);
212         unsigned char (*get_operstate)(const struct vport *);
213
214         int (*get_ifindex)(const struct vport *);
215         int (*get_iflink)(const struct vport *);
216
217         int (*get_mtu)(const struct vport *);
218
219         int (*send)(struct vport *, struct sk_buff *);
220 };
221
222 enum vport_err_type {
223         VPORT_E_RX_DROPPED,
224         VPORT_E_RX_ERROR,
225         VPORT_E_TX_DROPPED,
226         VPORT_E_TX_ERROR,
227 };
228
229 struct vport *vport_alloc(int priv_size, const struct vport_ops *, const struct vport_parms *);
230 void vport_free(struct vport *);
231
232 #define VPORT_ALIGN 8
233
234 /**
235  *      vport_priv - access private data area of vport
236  *
237  * @vport: vport to access
238  *
239  * If a nonzero size was passed in priv_size of vport_alloc() a private data
240  * area was allocated on creation.  This allows that area to be accessed and
241  * used for any purpose needed by the vport implementer.
242  */
243 static inline void *vport_priv(const struct vport *vport)
244 {
245         return (u8 *)vport + ALIGN(sizeof(struct vport), VPORT_ALIGN);
246 }
247
248 /**
249  *      vport_from_priv - lookup vport from private data pointer
250  *
251  * @priv: Start of private data area.
252  *
253  * It is sometimes useful to translate from a pointer to the private data
254  * area to the vport, such as in the case where the private data pointer is
255  * the result of a hash table lookup.  @priv must point to the start of the
256  * private data area.
257  */
258 static inline struct vport *vport_from_priv(const void *priv)
259 {
260         return (struct vport *)(priv - ALIGN(sizeof(struct vport), VPORT_ALIGN));
261 }
262
263 void vport_receive(struct vport *, struct sk_buff *);
264 void vport_record_error(struct vport *, enum vport_err_type err_type);
265
266 /* List of statically compiled vport implementations.  Don't forget to also
267  * add yours to the list at the top of vport.c. */
268 extern const struct vport_ops netdev_vport_ops;
269 extern const struct vport_ops internal_vport_ops;
270 extern const struct vport_ops patch_vport_ops;
271 extern const struct vport_ops gre_vport_ops;
272 extern const struct vport_ops capwap_vport_ops;
273
274 #endif /* vport.h */