Merge branch 'locking'
[sliver-openvswitch.git] / datapath / hwtable_dummy / hwtable_dummy.c
1 /* Copyright (c) 2008 The Board of Trustees of The Leland Stanford
2  * Junior University
3  * 
4  * We are making the OpenFlow specification and associated documentation
5  * (Software) available for public use and benefit with the expectation
6  * that others will use, modify and enhance the Software and contribute
7  * those enhancements back to the community. However, since we would
8  * like to make the Software available for broadest use, with as few
9  * restrictions as possible permission is hereby granted, free of
10  * charge, to any person obtaining a copy of this Software to deal in
11  * the Software under the copyrights without restriction, including
12  * without limitation the rights to use, copy, modify, merge, publish,
13  * distribute, sublicense, and/or sell copies of the Software, and to
14  * permit persons to whom the Software is furnished to do so, subject to
15  * the following conditions:
16  * 
17  * The above copyright notice and this permission notice shall be
18  * included in all copies or substantial portions of the Software.
19  * 
20  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
23  * NONINFRINGEMENT.  IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
24  * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
25  * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
26  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
27  * SOFTWARE.
28  * 
29  * The name and trademarks of copyright holder(s) may NOT be used in
30  * advertising or publicity pertaining to the Software or any
31  * derivatives without specific, written prior permission.
32  */
33
34 #include <linux/module.h>
35 #include <linux/rcupdate.h>
36 #include <linux/slab.h>
37 #include <linux/list.h>
38 #include <linux/rculist.h>
39 #include <linux/delay.h>
40 #include <linux/if_arp.h>
41
42 #include "chain.h"
43 #include "table.h"
44 #include "flow.h"
45 #include "datapath.h"
46
47
48 /* Max number of flow entries supported by the hardware */
49 #define DUMMY_MAX_FLOW   8192
50
51
52 /* sw_flow private data for dummy table entries.  */
53 struct sw_flow_dummy {
54         struct list_head node;
55
56         /* xxx If per-entry data is needed, define it here. */
57 };
58
59 struct sw_table_dummy {
60         struct sw_table swt;
61
62         unsigned int max_flows;
63         unsigned int n_flows;
64         struct list_head flows;
65         struct list_head iter_flows;
66         unsigned long int next_serial;
67 };
68
69
70 static struct sw_flow *table_dummy_lookup(struct sw_table *swt,
71                                           const struct sw_flow_key *key)
72 {
73         struct sw_table_dummy *td = (struct sw_table_dummy *) swt;
74         struct sw_flow *flow;
75         list_for_each_entry (flow, &td->flows, node) {
76                 if (flow_matches(&flow->key, key)) {
77                         return flow; 
78                 }
79         }
80         return NULL;
81 }
82
83 static int table_dummy_insert(struct sw_table *swt, struct sw_flow *flow)
84 {
85         /* xxx Use a data cache? */
86         flow->private = kzalloc(sizeof(struct sw_flow_dummy), GFP_ATOMIC);
87         if (flow->private == NULL) 
88                 return 0;
89
90         /* xxx Do whatever needs to be done to insert an entry in hardware. 
91          * xxx If the entry can't be inserted, return 0.  This stub code
92          * xxx doesn't do anything yet, so we're going to return 0...you
93          * xxx shouldn't (and you should update n_flows in struct
94          * xxx sw_table_dummy, too).
95          */
96         kfree(flow->private);
97         return 0;
98 }
99
100
101 static int do_delete(struct sw_table *swt, struct sw_flow *flow)
102 {
103         /* xxx Remove the entry from hardware.  If you need to do any other
104          * xxx clean-up associated with the entry, do it here.
105          */
106         list_del_rcu(&flow->node);
107         list_del_rcu(&flow->iter_node);
108         return 1;
109 }
110
111 static int table_dummy_delete(struct sw_table *swt,
112                               const struct sw_flow_key *key, uint16_t priority, int strict)
113 {
114         struct sw_table_dummy *td = (struct sw_table_dummy *) swt;
115         struct sw_flow *flow;
116         unsigned int count = 0;
117
118         list_for_each_entry (flow, &td->flows, node) {
119                 if (flow_del_matches(&flow->key, key, strict)
120                     && (!strict || (flow->priority == priority)))
121                         count += do_delete(swt, flow);
122         }
123         td->n_flows -= count;
124         return count;
125 }
126
127
128 static int table_dummy_timeout(struct datapath *dp, struct sw_table *swt)
129 {
130         struct sw_table_dummy *td = (struct sw_table_dummy *) swt;
131         struct sw_flow *flow;
132         int del_count = 0;
133         uint64_t packet_count = 0;
134         int i = 0;
135
136         mutex_lock(&dp_mutex);
137         list_for_each_entry (flow, &td->flows, node) {
138                 /* xxx Retrieve the packet count associated with this entry
139                  * xxx and store it in "packet_count".
140                  */
141
142                 if ((packet_count > flow->packet_count)
143                     && (flow->max_idle != OFP_FLOW_PERMANENT)) {
144                         flow->packet_count = packet_count;
145                         flow->timeout = jiffies + HZ * flow->max_idle;
146                 }
147
148                 if (flow_timeout(flow)) {
149                         if (dp->flags & OFPC_SEND_FLOW_EXP) {
150                                 /* xxx Get byte count */
151                                 flow->byte_count = 0;
152                                 dp_send_flow_expired(dp, flow);
153                         }
154                         del_count += do_delete(swt, flow);
155                 }
156                 i++;
157         }
158         mutex_unlock(&dp_mutex);
159
160         td->n_flows -= del_count;
161         return del_count;
162 }
163
164
165 static void table_dummy_destroy(struct sw_table *swt)
166 {
167         struct sw_table_dummy *td = (struct sw_table_dummy *)swt;
168
169
170         /* xxx This table is being destroyed, so free any data that you
171          * xxx don't want to leak.
172          */
173
174
175         if (td) {
176                 while (!list_empty(&td->flows)) {
177                         struct sw_flow *flow = list_entry(td->flows.next,
178                                                           struct sw_flow, node);
179                         list_del(&flow->node);
180                         flow_free(flow);
181                 }
182                 kfree(td);
183         }
184 }
185
186 static int table_dummy_iterate(struct sw_table *swt,
187                                const struct sw_flow_key *key,
188                                struct sw_table_position *position,
189                                int (*callback)(struct sw_flow *, void *),
190                                void *private)
191 {
192         struct sw_table_dummy *tl = (struct sw_table_dummy *) swt;
193         struct sw_flow *flow;
194         unsigned long start;
195
196         start = ~position->private[0];
197         list_for_each_entry (flow, &tl->iter_flows, iter_node) {
198                 if (flow->serial <= start && flow_matches(key, &flow->key)) {
199                         int error = callback(flow, private);
200                         if (error) {
201                                 position->private[0] = ~flow->serial;
202                                 return error;
203                         }
204                 }
205         }
206         return 0;
207 }
208
209 static void table_dummy_stats(struct sw_table *swt,
210                               struct sw_table_stats *stats)
211 {
212         struct sw_table_dummy *td = (struct sw_table_dummy *) swt;
213         stats->name = "dummy";
214         stats->n_flows = td->n_flows;
215         stats->max_flows = td->max_flows;
216 }
217
218
219 static struct sw_table *table_dummy_create(void)
220 {
221         struct sw_table_dummy *td;
222         struct sw_table *swt;
223
224         td = kzalloc(sizeof *td, GFP_KERNEL);
225         if (td == NULL)
226                 return NULL;
227
228         swt = &td->swt;
229         swt->lookup = table_dummy_lookup;
230         swt->insert = table_dummy_insert;
231         swt->delete = table_dummy_delete;
232         swt->timeout = table_dummy_timeout;
233         swt->destroy = table_dummy_destroy;
234         swt->iterate = table_dummy_iterate;
235         swt->stats = table_dummy_stats;
236
237         td->max_flows = DUMMY_MAX_FLOW;
238         td->n_flows = 0;
239         INIT_LIST_HEAD(&td->flows);
240         INIT_LIST_HEAD(&td->iter_flows);
241         td->next_serial = 0;
242
243         return swt;
244 }
245
246 static int __init dummy_init(void)
247 {
248         return chain_set_hw_hook(table_dummy_create, THIS_MODULE);
249 }
250 module_init(dummy_init);
251
252 static void dummy_cleanup(void) 
253 {
254         chain_clear_hw_hook();
255 }
256 module_exit(dummy_cleanup);
257
258 MODULE_DESCRIPTION("Dummy hardware table driver");
259 MODULE_AUTHOR("Copyright (c) 2008 The Board of Trustees of The Leland Stanford Junior University");
260 MODULE_LICENSE("Stanford License");