Get rid of mac.h, migrating its users to packets.h.
[sliver-openvswitch.git] / lib / 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 #include <sys/types.h>
34 #include "flow.h"
35 #include <inttypes.h>
36 #include <netinet/in.h>
37 #include <string.h>
38 #include "buffer.h"
39 #include "hash.h"
40 #include "ip.h"
41 #include "openflow.h"
42 #include "packets.h"
43
44 #include "vlog.h"
45 #define THIS_MODULE VLM_flow
46
47 void
48 flow_extract(struct buffer *packet, uint16_t in_port, struct flow *flow)
49 {
50     struct buffer b = *packet;
51     struct eth_header *eth;
52
53     if (b.size < ETH_TOTAL_MIN) {
54         VLOG_WARN("packet length %d less than minimum size %d",
55                   b.size, ETH_TOTAL_MIN);
56     }
57
58     memset(flow, 0, sizeof *flow);
59     flow->in_port = htons(in_port);
60
61     packet->l2 = b.data;
62     packet->l3 = NULL;
63     packet->l4 = NULL;
64
65     eth = buffer_at(&b, 0, sizeof *eth);
66     if (eth) {
67         buffer_pull(&b, ETH_HEADER_LEN);
68         if (ntohs(eth->eth_type) >= OFP_DL_TYPE_ETH2_CUTOFF) {
69             /* This is an Ethernet II frame */
70             flow->dl_type = eth->eth_type;
71         } else {
72             /* This is an 802.2 frame */
73             struct llc_snap_header *h = buffer_at(&b, 0, sizeof *h);
74             if (h == NULL) {
75                 return;
76             }
77             if (h->llc.llc_dsap == LLC_DSAP_SNAP
78                 && h->llc.llc_ssap == LLC_SSAP_SNAP
79                 && h->llc.llc_cntl == LLC_CNTL_SNAP
80                 && !memcmp(h->snap.snap_org, SNAP_ORG_ETHERNET,
81                            sizeof h->snap.snap_org)) {
82                 flow->dl_type = h->snap.snap_type;
83                 buffer_pull(&b, sizeof *h);
84             } else {
85                 flow->dl_type = OFP_DL_TYPE_NOT_ETH_TYPE;
86                 buffer_pull(&b, sizeof(struct llc_header));
87             }
88         }
89
90         /* Check for a VLAN tag */
91         if (flow->dl_type != htons(ETH_TYPE_VLAN)) {
92             flow->dl_vlan = htons(OFP_VLAN_NONE);
93         } else {
94             struct vlan_header *vh = buffer_at(&b, 0, sizeof *vh);
95             flow->dl_type = vh->vlan_next_type;
96             flow->dl_vlan = vh->vlan_tci & htons(VLAN_VID);
97             buffer_pull(&b, sizeof *vh);
98         }
99         memcpy(flow->dl_src, eth->eth_src, ETH_ADDR_LEN);
100         memcpy(flow->dl_dst, eth->eth_dst, ETH_ADDR_LEN);
101
102         packet->l3 = b.data;
103         if (flow->dl_type == htons(ETH_TYPE_IP)) {
104             const struct ip_header *nh = buffer_at(&b, 0, sizeof *nh);
105             if (nh) {
106                 int ip_len = IP_IHL(nh->ip_ihl_ver) * 4;
107                 if (ip_len < IP_HEADER_LEN) {
108                     return;
109                 }
110
111                 flow->nw_src = nh->ip_src;
112                 flow->nw_dst = nh->ip_dst;
113                 flow->nw_proto = nh->ip_proto;
114                 if (flow->nw_proto == IP_TYPE_TCP
115                     || flow->nw_proto == IP_TYPE_UDP) {
116                     const struct udp_header *th;
117                     th = packet->l4 = buffer_at(&b, ip_len, sizeof *th);
118                     if (th) {
119                         flow->tp_src = th->udp_src;
120                         flow->tp_dst = th->udp_dst;
121                     } else {
122                         /* Avoid tricking other code into thinking that this
123                          * packet has an L4 header. */
124                         flow->nw_proto = 0;
125                     }
126                 }
127             }
128         } else if (flow->dl_type == htons(ETH_TYPE_ARP)) {
129             const struct arp_eth_header *ah = buffer_at(&b, 0, sizeof *ah);
130             if (ah && ah->ar_hrd == htons(ARP_HRD_ETHERNET)
131                 && ah->ar_pro == htons(ARP_PRO_IP)
132                 && ah->ar_hln == ETH_ADDR_LEN
133                 && ah->ar_pln == sizeof flow->nw_src)
134             {
135                 /* check if sha/tha match dl_src/dl_dst? */
136                 flow->nw_src = ah->ar_spa;
137                 flow->nw_dst = ah->ar_tpa;
138             }
139         }
140     }
141 }
142
143 void
144 flow_print(FILE *stream, const struct flow *flow) 
145 {
146     fprintf(stream,
147             "port%04x:vlan%04x mac"ETH_ADDR_FMT"->"ETH_ADDR_FMT" "
148             "proto%04x ip"IP_FMT"->"IP_FMT" port%d->%d",
149             ntohs(flow->in_port), ntohs(flow->dl_vlan),
150             ETH_ADDR_ARGS(flow->dl_src), ETH_ADDR_ARGS(flow->dl_dst),
151             ntohs(flow->dl_type),
152             IP_ARGS(&flow->nw_src), IP_ARGS(&flow->nw_dst),
153             ntohs(flow->tp_src), ntohs(flow->tp_dst));
154 }
155
156 int
157 flow_compare(const struct flow *a, const struct flow *b)
158 {
159     return memcmp(a, b, sizeof *a);
160 }
161
162 unsigned long int
163 flow_hash(const struct flow *flow, uint32_t basis) 
164 {
165     return hash_fnv(flow, sizeof *flow, basis);
166 }