Update copyright on all non-GPL files
[sliver-openvswitch.git] / switch / switch-flow.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 "switch-flow.h"
35 #include <arpa/inet.h>
36 #include <assert.h>
37 #include <stdlib.h>
38 #include <string.h>
39 #include "buffer.h"
40 #include "openflow.h"
41 #include "packets.h"
42
43 /* Internal function used to compare fields in flow. */
44 static inline
45 int flow_fields_match(const struct flow *a, const struct flow *b, uint16_t w)
46 {
47     return ((w & OFPFW_IN_PORT || a->in_port == b->in_port)
48             && (w & OFPFW_DL_VLAN || a->dl_vlan == b->dl_vlan)
49             && (w & OFPFW_DL_SRC || !memcmp(a->dl_src, b->dl_src, ETH_ADDR_LEN))
50             && (w & OFPFW_DL_DST || !memcmp(a->dl_dst, b->dl_dst, ETH_ADDR_LEN))
51             && (w & OFPFW_DL_TYPE || a->dl_type == b->dl_type)
52             && (w & OFPFW_NW_SRC || a->nw_src == b->nw_src)
53             && (w & OFPFW_NW_DST || a->nw_dst == b->nw_dst)
54             && (w & OFPFW_NW_PROTO || a->nw_proto == b->nw_proto)
55             && (w & OFPFW_TP_SRC || a->tp_src == b->tp_src)
56             && (w & OFPFW_TP_DST || a->tp_dst == b->tp_dst));
57 }
58
59 /* Returns nonzero if 'a' and 'b' match, that is, if their fields are equal
60  * modulo wildcards, zero otherwise. */
61 inline
62 int flow_matches(const struct sw_flow_key *a, const struct sw_flow_key *b)
63 {
64     return flow_fields_match(&a->flow, &b->flow, a->wildcards | b->wildcards);
65 }
66
67 /* Returns nonzero if 't' (the table entry's key) and 'd' (the key 
68  * describing the deletion) match, that is, if their fields are 
69  * equal modulo wildcards, zero otherwise.  If 'strict' is nonzero, the
70  * wildcards must match in both 't_key' and 'd_key'.  Note that the
71  * table's wildcards are ignored unless 'strict' is set. */
72 inline
73 int flow_del_matches(const struct sw_flow_key *t, const struct sw_flow_key *d, int strict)
74 {
75     if (strict && t->wildcards != d->wildcards)
76         return 0;
77
78     return flow_fields_match(&t->flow, &d->flow, d->wildcards);
79 }
80
81 void flow_extract_match(struct sw_flow_key* to, const struct ofp_match* from)
82 {
83     to->wildcards = ntohs(from->wildcards) & OFPFW_ALL;
84     to->flow.in_port   = from->in_port;
85     to->flow.dl_vlan   = from->dl_vlan;
86     memcpy(to->flow.dl_src, from->dl_src, ETH_ADDR_LEN);
87     memcpy(to->flow.dl_dst, from->dl_dst, ETH_ADDR_LEN);
88     to->flow.dl_type   = from->dl_type;
89     to->flow.nw_src   = from->nw_src;
90     to->flow.nw_dst   = from->nw_dst;
91     to->flow.nw_proto  = from->nw_proto;
92     to->flow.tp_src   = from->tp_src;
93     to->flow.tp_dst   = from->tp_dst;
94     to->flow.reserved = 0;
95 }
96
97 void flow_fill_match(struct ofp_match* to, const struct sw_flow_key* from)
98 {
99     to->wildcards = htons(from->wildcards);
100     to->in_port   = from->flow.in_port;
101     to->dl_vlan   = from->flow.dl_vlan;
102     memcpy(to->dl_src, from->flow.dl_src, ETH_ADDR_LEN);
103     memcpy(to->dl_dst, from->flow.dl_dst, ETH_ADDR_LEN);
104     to->dl_type   = from->flow.dl_type;
105     to->nw_src        = from->flow.nw_src;
106     to->nw_dst        = from->flow.nw_dst;
107     to->nw_proto  = from->flow.nw_proto;
108     to->tp_src        = from->flow.tp_src;
109     to->tp_dst        = from->flow.tp_dst;
110     memset(to->pad, '\0', sizeof(to->pad));
111 }
112
113 /* Allocates and returns a new flow with 'n_actions' action, using allocation
114  * flags 'flags'.  Returns the new flow or a null pointer on failure. */
115 struct sw_flow *flow_alloc(int n_actions)
116 {
117     struct sw_flow *flow = malloc(sizeof *flow);
118     if (!flow)
119         return NULL;
120
121     flow->n_actions = n_actions;
122     flow->actions = malloc(n_actions * sizeof *flow->actions);
123     if (!flow->actions && n_actions > 0) {
124         free(flow);
125         return NULL;
126     }
127     return flow;
128 }
129
130 /* Frees 'flow' immediately. */
131 void flow_free(struct sw_flow *flow)
132 {
133     if (!flow) {
134         return; 
135     }
136     free(flow->actions);
137     free(flow);
138 }
139
140 /* Prints a representation of 'key' to the kernel log. */
141 void print_flow(const struct sw_flow_key *key)
142 {
143     const struct flow *f = &key->flow;
144     printf("wild%04x port%04x:vlan%04x mac%02x:%02x:%02x:%02x:%02x:%02x"
145            "->%02x:%02x:%02x:%02x:%02x:%02x "
146            "proto%04x ip%u.%u.%u.%u->%u.%u.%u.%u port%d->%d\n",
147            key->wildcards, ntohs(f->in_port), ntohs(f->dl_vlan),
148            f->dl_src[0], f->dl_src[1], f->dl_src[2],
149            f->dl_src[3], f->dl_src[4], f->dl_src[5],
150            f->dl_dst[0], f->dl_dst[1], f->dl_dst[2],
151            f->dl_dst[3], f->dl_dst[4], f->dl_dst[5],
152            ntohs(f->dl_type),
153            ((unsigned char *)&f->nw_src)[0],
154            ((unsigned char *)&f->nw_src)[1],
155            ((unsigned char *)&f->nw_src)[2],
156            ((unsigned char *)&f->nw_src)[3],
157            ((unsigned char *)&f->nw_dst)[0],
158            ((unsigned char *)&f->nw_dst)[1],
159            ((unsigned char *)&f->nw_dst)[2],
160            ((unsigned char *)&f->nw_dst)[3],
161            ntohs(f->tp_src), ntohs(f->tp_dst));
162 }
163
164 int flow_timeout(struct sw_flow *flow)
165 {
166     if (flow->max_idle == OFP_FLOW_PERMANENT)
167         return 0;
168
169     /* FIXME */
170     return time(0) > flow->timeout;
171 }
172
173 void flow_used(struct sw_flow *flow, struct buffer *buffer)
174 {
175     if (flow->max_idle != OFP_FLOW_PERMANENT)
176         flow->timeout = time(0) + flow->max_idle;
177
178     flow->packet_count++;
179     flow->byte_count += buffer->size;
180 }