Keep old stats when a Flow Add replaces an existing entry.
[openvswitch] / switch / table-linear.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 <config.h>
35 #include "table.h"
36 #include <stdlib.h>
37 #include "flow.h"
38 #include "list.h"
39 #include "switch-flow.h"
40 #include "datapath.h"
41
42 struct sw_table_linear {
43     struct sw_table swt;
44
45     unsigned int max_flows;
46     unsigned int n_flows;
47     struct list flows;
48     struct list iter_flows;
49     unsigned long int next_serial;
50 };
51
52 static struct sw_flow *table_linear_lookup(struct sw_table *swt,
53                                            const struct sw_flow_key *key)
54 {
55     struct sw_table_linear *tl = (struct sw_table_linear *) swt;
56     struct sw_flow *flow;
57     LIST_FOR_EACH (flow, struct sw_flow, node, &tl->flows) {
58         if (flow_matches_1wild(key, &flow->key))
59             return flow;
60     }
61     return NULL;
62 }
63
64 static int table_linear_insert(struct sw_table *swt, struct sw_flow *flow)
65 {
66     struct sw_table_linear *tl = (struct sw_table_linear *) swt;
67     struct sw_flow *f;
68
69     /* Loop through the existing list of entries.  New entries will
70      * always be placed behind those with equal priority.  Just replace 
71      * any flows that match exactly.
72      */
73     LIST_FOR_EACH (f, struct sw_flow, node, &tl->flows) {
74         if (f->priority == flow->priority
75                 && f->key.wildcards == flow->key.wildcards
76                 && flow_matches_2wild(&f->key, &flow->key)) {
77             /* Keep stats from the original flow */
78             flow->used = f->used;
79             flow->created = f->created;
80             flow->packet_count = f->packet_count;
81             flow->byte_count = f->byte_count;
82
83             flow->serial = f->serial;
84             list_replace(&flow->node, &f->node);
85             list_replace(&flow->iter_node, &f->iter_node);
86             flow_free(f);
87             return 1;
88         }
89
90         if (f->priority < flow->priority)
91             break;
92     }
93
94     /* Make sure there's room in the table. */
95     if (tl->n_flows >= tl->max_flows) {
96         return 0;
97     }
98     tl->n_flows++;
99
100     /* Insert the entry immediately in front of where we're pointing. */
101     flow->serial = tl->next_serial++;
102     list_insert(&f->node, &flow->node);
103     list_push_front(&tl->iter_flows, &flow->iter_node);
104
105     return 1;
106 }
107
108 static void
109 do_delete(struct sw_flow *flow) 
110 {
111     list_remove(&flow->node);
112     list_remove(&flow->iter_node);
113     flow_free(flow);
114 }
115
116 static int table_linear_delete(struct sw_table *swt,
117                                const struct sw_flow_key *key, 
118                                uint16_t priority, int strict)
119 {
120     struct sw_table_linear *tl = (struct sw_table_linear *) swt;
121     struct sw_flow *flow, *n;
122     unsigned int count = 0;
123
124     LIST_FOR_EACH_SAFE (flow, n, struct sw_flow, node, &tl->flows) {
125         if (flow_del_matches(&flow->key, key, strict)
126                 && (!strict || (flow->priority == priority))) {
127             do_delete(flow);
128             count++;
129         }
130     }
131     tl->n_flows -= count;
132     return count;
133 }
134
135 static void table_linear_timeout(struct sw_table *swt, struct list *deleted)
136 {
137     struct sw_table_linear *tl = (struct sw_table_linear *) swt;
138     struct sw_flow *flow, *n;
139
140     LIST_FOR_EACH_SAFE (flow, n, struct sw_flow, node, &tl->flows) {
141         if (flow_timeout(flow)) {
142             list_remove(&flow->node);
143             list_remove(&flow->iter_node);
144             list_push_back(deleted, &flow->node);
145             tl->n_flows--;
146         }
147     }
148 }
149
150 static void table_linear_destroy(struct sw_table *swt)
151 {
152     struct sw_table_linear *tl = (struct sw_table_linear *) swt;
153
154     while (!list_is_empty(&tl->flows)) {
155         struct sw_flow *flow = CONTAINER_OF(list_front(&tl->flows),
156                                             struct sw_flow, node);
157         list_remove(&flow->node);
158         flow_free(flow);
159     }
160     free(tl);
161 }
162
163 static int table_linear_iterate(struct sw_table *swt,
164                                 const struct sw_flow_key *key,
165                                 struct sw_table_position *position,
166                                 int (*callback)(struct sw_flow *, void *),
167                                 void *private)
168 {
169     struct sw_table_linear *tl = (struct sw_table_linear *) swt;
170     struct sw_flow *flow;
171     unsigned long start;
172
173     start = ~position->private[0];
174     LIST_FOR_EACH (flow, struct sw_flow, iter_node, &tl->iter_flows) {
175         if (flow->serial <= start && flow_matches_2wild(key, &flow->key)) {
176             int error = callback(flow, private);
177             if (error) {
178                 position->private[0] = ~(flow->serial - 1);
179                 return error;
180             }
181         }
182     }
183     return 0;
184 }
185
186 static void table_linear_stats(struct sw_table *swt,
187                                struct sw_table_stats *stats)
188 {
189     struct sw_table_linear *tl = (struct sw_table_linear *) swt;
190     stats->name = "linear";
191     stats->wildcards = OFPFW_ALL;
192     stats->n_flows   = tl->n_flows;
193     stats->max_flows = tl->max_flows;
194     stats->n_matched = swt->n_matched;
195 }
196
197
198 struct sw_table *table_linear_create(unsigned int max_flows)
199 {
200     struct sw_table_linear *tl;
201     struct sw_table *swt;
202
203     tl = calloc(1, sizeof *tl);
204     if (tl == NULL)
205         return NULL;
206
207     swt = &tl->swt;
208     swt->lookup = table_linear_lookup;
209     swt->insert = table_linear_insert;
210     swt->delete = table_linear_delete;
211     swt->timeout = table_linear_timeout;
212     swt->destroy = table_linear_destroy;
213     swt->iterate = table_linear_iterate;
214     swt->stats = table_linear_stats;
215
216     tl->max_flows = max_flows;
217     tl->n_flows = 0;
218     list_init(&tl->flows);
219     list_init(&tl->iter_flows);
220     tl->next_serial = 0;
221
222     return swt;
223 }