timeval: Make time_init() static and remove calls to it.
[sliver-openvswitch.git] / tests / test-flows.c
1 /*
2  * Copyright (c) 2009, 2010 Nicira Networks.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at:
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #include <config.h>
18 #include "flow.h"
19 #include <errno.h>
20 #include <stdlib.h>
21 #include <string.h>
22 #include "openflow/openflow.h"
23 #include "timeval.h"
24 #include "ofpbuf.h"
25 #include "ofp-print.h"
26 #include "pcap.h"
27 #include "util.h"
28 #include "vlog.h"
29
30 #undef NDEBUG
31 #include <assert.h>
32
33 int
34 main(int argc OVS_UNUSED, char *argv[])
35 {
36     struct ofp_match expected_match;
37     FILE *flows, *pcap;
38     int retval;
39     int n = 0, errors = 0;
40
41     set_program_name(argv[0]);
42     vlog_init();
43
44     flows = stdin;
45     pcap = fdopen(3, "rb");
46     if (!pcap) {
47         ovs_fatal(errno, "failed to open fd 3 for reading");
48     }
49
50     retval = pcap_read_header(pcap);
51     if (retval) {
52         ovs_fatal(retval > 0 ? retval : 0, "reading pcap header failed");
53     }
54
55     while (fread(&expected_match, sizeof expected_match, 1, flows)) {
56         struct ofpbuf *packet;
57         struct ofp_match extracted_match;
58         flow_t flow;
59
60         n++;
61
62         retval = pcap_read(pcap, &packet);
63         if (retval == EOF) {
64             ovs_fatal(0, "unexpected end of file reading pcap file");
65         } else if (retval) {
66             ovs_fatal(retval, "error reading pcap file");
67         }
68
69         flow_extract(packet, 0, 1, &flow);
70         flow_to_match(&flow, 0, false, &extracted_match);
71
72         if (memcmp(&expected_match, &extracted_match, sizeof expected_match)) {
73             char *exp_s = ofp_match_to_string(&expected_match, 2);
74             char *got_s = ofp_match_to_string(&extracted_match, 2);
75             errors++;
76             printf("mismatch on packet #%d (1-based).\n", n);
77             printf("Packet:\n");
78             ofp_print_packet(stdout, packet->data, packet->size, packet->size);
79             printf("Expected flow:\n%s\n", exp_s);
80             printf("Actually extracted flow:\n%s\n", got_s);
81             printf("\n");
82             free(exp_s);
83             free(got_s);
84         }
85
86         ofpbuf_delete(packet);
87     }
88     printf("checked %d packets, %d errors\n", n, errors);
89     return errors != 0;
90 }
91