datapath: Remove unused ->set_stats() function from vport_ops.
[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 const char *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         const char *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: Name of port type, such as "netdev" or "internal" to be matched
155  * against the device type when a new port needs to be created.
156  * @flags: Flags of type VPORT_F_* that influence how the generic vport layer
157  * handles this vport.
158  * @init: Called at module initialization.  If VPORT_F_REQUIRED is set then the
159  * failure of this function will cause the module to not load.  If the flag is
160  * not set and initialzation fails then no vports of this type can be created.
161  * @exit: Called at module unload.
162  * @create: Create a new vport configured as specified.  On success returns
163  * a new vport allocated with vport_alloc(), otherwise an ERR_PTR() value.
164  * @modify: Modify the configuration of an existing vport.  May be null if
165  * modification is not supported.
166  * @destroy: Detach and destroy a vport.
167  * @set_mtu: Set the device's MTU.  May be null if not supported.
168  * @set_addr: Set the device's MAC address.  May be null if not supported.
169  * @get_name: Get the device's name.
170  * @get_addr: Get the device's MAC address.
171  * @get_config: Get the device's configuration.
172  * @get_kobj: Get the kobj associated with the device (may return null).
173  * @get_stats: Fill in the transmit/receive stats.  May be null if stats are
174  * not supported or if generic stats are in use.  If defined and
175  * VPORT_F_GEN_STATS is also set, the error stats are added to those already
176  * collected.
177  * @get_dev_flags: Get the device's flags.
178  * @is_running: Checks whether the device is running.
179  * @get_operstate: Get the device's operating state.
180  * @get_ifindex: Get the system interface index associated with the device.
181  * May be null if the device does not have an ifindex.
182  * @get_iflink: Get the system interface index associated with the device that
183  * will be used to send packets (may be different than ifindex for tunnels).
184  * May be null if the device does not have an iflink.
185  * @get_mtu: Get the device's MTU.
186  * @send: Send a packet on the device.  Returns the length of the packet sent.
187  */
188 struct vport_ops {
189         const char *type;
190         u32 flags;
191
192         /* Called at module init and exit respectively. */
193         int (*init)(void);
194         void (*exit)(void);
195
196         /* Called with RTNL lock. */
197         struct vport *(*create)(const struct vport_parms *);
198         int (*modify)(struct vport *, struct odp_port *);
199         int (*destroy)(struct vport *);
200
201         int (*set_mtu)(struct vport *, int mtu);
202         int (*set_addr)(struct vport *, const unsigned char *);
203
204         /* Called with rcu_read_lock or RTNL lock. */
205         const char *(*get_name)(const struct vport *);
206         const unsigned char *(*get_addr)(const struct vport *);
207         void (*get_config)(const struct vport *, void *);
208         struct kobject *(*get_kobj)(const struct vport *);
209         int (*get_stats)(const struct vport *, struct rtnl_link_stats64 *);
210
211         unsigned (*get_dev_flags)(const struct vport *);
212         int (*is_running)(const struct vport *);
213         unsigned char (*get_operstate)(const struct vport *);
214
215         int (*get_ifindex)(const struct vport *);
216         int (*get_iflink)(const struct vport *);
217
218         int (*get_mtu)(const struct vport *);
219
220         int (*send)(struct vport *, struct sk_buff *);
221 };
222
223 enum vport_err_type {
224         VPORT_E_RX_DROPPED,
225         VPORT_E_RX_ERROR,
226         VPORT_E_TX_DROPPED,
227         VPORT_E_TX_ERROR,
228 };
229
230 struct vport *vport_alloc(int priv_size, const struct vport_ops *, const struct vport_parms *);
231 void vport_free(struct vport *);
232
233 #define VPORT_ALIGN 8
234
235 /**
236  *      vport_priv - access private data area of vport
237  *
238  * @vport: vport to access
239  *
240  * If a nonzero size was passed in priv_size of vport_alloc() a private data
241  * area was allocated on creation.  This allows that area to be accessed and
242  * used for any purpose needed by the vport implementer.
243  */
244 static inline void *vport_priv(const struct vport *vport)
245 {
246         return (u8 *)vport + ALIGN(sizeof(struct vport), VPORT_ALIGN);
247 }
248
249 /**
250  *      vport_from_priv - lookup vport from private data pointer
251  *
252  * @priv: Start of private data area.
253  *
254  * It is sometimes useful to translate from a pointer to the private data
255  * area to the vport, such as in the case where the private data pointer is
256  * the result of a hash table lookup.  @priv must point to the start of the
257  * private data area.
258  */
259 static inline struct vport *vport_from_priv(const void *priv)
260 {
261         return (struct vport *)(priv - ALIGN(sizeof(struct vport), VPORT_ALIGN));
262 }
263
264 void vport_receive(struct vport *, struct sk_buff *);
265 void vport_record_error(struct vport *, enum vport_err_type err_type);
266
267 /* List of statically compiled vport implementations.  Don't forget to also
268  * add yours to the list at the top of vport.c. */
269 extern const struct vport_ops netdev_vport_ops;
270 extern const struct vport_ops internal_vport_ops;
271 extern const struct vport_ops patch_vport_ops;
272 extern const struct vport_ops gre_vport_ops;
273 extern const struct vport_ops capwap_vport_ops;
274
275 #endif /* vport.h */