rconn: Never report being in failure mode while connected.
[sliver-openvswitch.git] / lib / ofp-print.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 "ofp-print.h"
36 #include "xtoxll.h"
37
38 #include <errno.h>
39 #include <inttypes.h>
40 #include <netinet/in.h>
41 #include <sys/wait.h>
42 #include <stdarg.h>
43 #include <stdlib.h>
44 #include <ctype.h>
45
46 #include "compiler.h"
47 #include "dynamic-string.h"
48 #include "flow.h"
49 #include "ofpbuf.h"
50 #include "openflow.h"
51 #include "nicira-ext.h"
52 #include "packets.h"
53 #include "util.h"
54
55 static void ofp_print_port_name(struct ds *string, uint16_t port);
56 static void ofp_print_match(struct ds *, const struct ofp_match *,
57                             int verbosity);
58
59 /* Returns a string that represents the contents of the Ethernet frame in the
60  * 'len' bytes starting at 'data' to 'stream' as output by tcpdump.
61  * 'total_len' specifies the full length of the Ethernet frame (of which 'len'
62  * bytes were captured).
63  *
64  * The caller must free the returned string.
65  *
66  * This starts and kills a tcpdump subprocess so it's quite expensive. */
67 char *
68 ofp_packet_to_string(const void *data, size_t len, size_t total_len)
69 {
70     struct pcap_hdr {
71         uint32_t magic_number;   /* magic number */
72         uint16_t version_major;  /* major version number */
73         uint16_t version_minor;  /* minor version number */
74         int32_t thiszone;        /* GMT to local correction */
75         uint32_t sigfigs;        /* accuracy of timestamps */
76         uint32_t snaplen;        /* max length of captured packets */
77         uint32_t network;        /* data link type */
78     } PACKED;
79
80     struct pcaprec_hdr {
81         uint32_t ts_sec;         /* timestamp seconds */
82         uint32_t ts_usec;        /* timestamp microseconds */
83         uint32_t incl_len;       /* number of octets of packet saved in file */
84         uint32_t orig_len;       /* actual length of packet */
85     } PACKED;
86
87     struct pcap_hdr ph;
88     struct pcaprec_hdr prh;
89
90     struct ds ds = DS_EMPTY_INITIALIZER;
91
92     char command[128];
93     FILE *pcap;
94     FILE *tcpdump;
95     int status;
96     int c;
97
98     pcap = tmpfile();
99     if (!pcap) {
100         ofp_error(errno, "tmpfile");
101         return xstrdup("<error>");
102     }
103
104     /* The pcap reader is responsible for figuring out endianness based on the
105      * magic number, so the lack of htonX calls here is intentional. */
106     ph.magic_number = 0xa1b2c3d4;
107     ph.version_major = 2;
108     ph.version_minor = 4;
109     ph.thiszone = 0;
110     ph.sigfigs = 0;
111     ph.snaplen = 1518;
112     ph.network = 1;             /* Ethernet */
113
114     prh.ts_sec = 0;
115     prh.ts_usec = 0;
116     prh.incl_len = len;
117     prh.orig_len = total_len;
118
119     fwrite(&ph, 1, sizeof ph, pcap);
120     fwrite(&prh, 1, sizeof prh, pcap);
121     fwrite(data, 1, len, pcap);
122
123     fflush(pcap);
124     if (ferror(pcap)) {
125         ofp_error(errno, "error writing temporary file");
126     }
127     rewind(pcap);
128
129     snprintf(command, sizeof command, "tcpdump -e -n -r /dev/fd/%d 2>/dev/null",
130              fileno(pcap));
131     tcpdump = popen(command, "r");
132     fclose(pcap);
133     if (!tcpdump) {
134         ofp_error(errno, "exec(\"%s\")", command);
135         return xstrdup("<error>");
136     }
137
138     while ((c = getc(tcpdump)) != EOF) {
139         ds_put_char(&ds, c);
140     }
141
142     status = pclose(tcpdump);
143     if (WIFEXITED(status)) {
144         if (WEXITSTATUS(status))
145             ofp_error(0, "tcpdump exited with status %d", WEXITSTATUS(status));
146     } else if (WIFSIGNALED(status)) {
147         ofp_error(0, "tcpdump exited with signal %d", WTERMSIG(status)); 
148     }
149     return ds_cstr(&ds);
150 }
151
152 /* Pretty-print the OFPT_PACKET_IN packet of 'len' bytes at 'oh' to 'stream'
153  * at the given 'verbosity' level. */
154 static void
155 ofp_packet_in(struct ds *string, const void *oh, size_t len, int verbosity)
156 {
157     const struct ofp_packet_in *op = oh;
158     size_t data_len;
159
160     ds_put_format(string, " total_len=%"PRIu16" in_port=",
161                   ntohs(op->total_len));
162     ofp_print_port_name(string, ntohs(op->in_port));
163
164     if (op->reason == OFPR_ACTION)
165         ds_put_cstr(string, " (via action)");
166     else if (op->reason != OFPR_NO_MATCH)
167         ds_put_format(string, " (***reason %"PRIu8"***)", op->reason);
168
169     data_len = len - offsetof(struct ofp_packet_in, data);
170     ds_put_format(string, " data_len=%zu", data_len);
171     if (htonl(op->buffer_id) == UINT32_MAX) {
172         ds_put_format(string, " (unbuffered)");
173         if (ntohs(op->total_len) != data_len)
174             ds_put_format(string, " (***total_len != data_len***)");
175     } else {
176         ds_put_format(string, " buffer=0x%08"PRIx32, ntohl(op->buffer_id));
177         if (ntohs(op->total_len) < data_len)
178             ds_put_format(string, " (***total_len < data_len***)");
179     }
180     ds_put_char(string, '\n');
181
182     if (verbosity > 0) {
183         struct flow flow;
184         struct ofpbuf packet;
185         struct ofp_match match;
186         packet.data = (void *) op->data;
187         packet.size = data_len;
188         flow_extract(&packet, ntohs(op->in_port), &flow);
189         match.wildcards = 0;
190         match.in_port = flow.in_port;
191         memcpy(match.dl_src, flow.dl_src, ETH_ADDR_LEN);
192         memcpy(match.dl_dst, flow.dl_dst, ETH_ADDR_LEN);
193         match.dl_vlan = flow.dl_vlan;
194         match.dl_type = flow.dl_type;
195         match.nw_proto = flow.nw_proto;
196         match.pad = 0;
197         match.nw_src = flow.nw_src;
198         match.nw_dst = flow.nw_dst;
199         match.tp_src = flow.tp_src;
200         match.tp_dst = flow.tp_dst;
201         ofp_print_match(string, &match, verbosity);
202         ds_put_char(string, '\n');
203     }
204     if (verbosity > 1) {
205         char *packet = ofp_packet_to_string(op->data, data_len,
206                                             ntohs(op->total_len)); 
207         ds_put_cstr(string, packet);
208         free(packet);
209     }
210 }
211
212 static void ofp_print_port_name(struct ds *string, uint16_t port) 
213 {
214     const char *name;
215     switch (port) {
216     case OFPP_IN_PORT:
217         name = "IN_PORT";
218         break;
219     case OFPP_TABLE:
220         name = "TABLE";
221         break;
222     case OFPP_NORMAL:
223         name = "NORMAL";
224         break;
225     case OFPP_FLOOD:
226         name = "FLOOD";
227         break;
228     case OFPP_ALL:
229         name = "ALL";
230         break;
231     case OFPP_CONTROLLER:
232         name = "CONTROLLER";
233         break;
234     case OFPP_LOCAL:
235         name = "LOCAL";
236         break;
237     case OFPP_NONE:
238         name = "NONE";
239         break;
240     default:
241         ds_put_format(string, "%"PRIu16, port);
242         return;
243     }
244     ds_put_cstr(string, name);
245 }
246
247 static void
248 ofp_print_nx_action(struct ds *string, const struct nx_action_header *nah)
249 {
250
251     if (nah->subtype == htonl(NXAST_SNAT)) {
252         const struct nx_action_snat *nas = (struct nx_action_snat *)nah;
253         uint16_t port = ntohs(nas->port);
254
255         if (port < OFPP_MAX) {
256             ds_put_format(string, "nat:%"PRIu16, port);
257         } else {
258             ds_put_format(string, "nat:%"PRIu16" (invalid port)", port);
259         }
260     } else {
261         ds_put_format(string, "***unknown Nicira action:%d***\n", 
262                 ntohl(nah->subtype));
263     }
264 }
265
266 static int
267 ofp_print_action(struct ds *string, const struct ofp_action_header *ah, 
268         size_t actions_len) 
269 {
270     uint16_t type;
271     size_t len;
272
273     struct openflow_action {
274         size_t min_size;
275         size_t max_size;
276     };
277
278     const struct openflow_action of_actions[] = {
279         [OFPAT_OUTPUT] = {
280             sizeof(struct ofp_action_output),
281             sizeof(struct ofp_action_output),
282         },
283         [OFPAT_SET_VLAN_VID] = {
284             sizeof(struct ofp_action_vlan_vid),
285             sizeof(struct ofp_action_vlan_vid),
286         },
287         [OFPAT_SET_VLAN_PCP] = {
288             sizeof(struct ofp_action_vlan_pcp),
289             sizeof(struct ofp_action_vlan_pcp),
290         },
291         [OFPAT_STRIP_VLAN] = {
292             sizeof(struct ofp_action_header),
293             sizeof(struct ofp_action_header),
294         },
295         [OFPAT_SET_DL_SRC] = {
296             sizeof(struct ofp_action_dl_addr),
297             sizeof(struct ofp_action_dl_addr),
298         },
299         [OFPAT_SET_DL_DST] = {
300             sizeof(struct ofp_action_dl_addr),
301             sizeof(struct ofp_action_dl_addr),
302         },
303         [OFPAT_SET_NW_SRC] = {
304             sizeof(struct ofp_action_nw_addr),
305             sizeof(struct ofp_action_nw_addr),
306         },
307         [OFPAT_SET_NW_DST] = {
308             sizeof(struct ofp_action_nw_addr),
309             sizeof(struct ofp_action_nw_addr),
310         },
311         [OFPAT_SET_TP_SRC] = {
312             sizeof(struct ofp_action_tp_port),
313             sizeof(struct ofp_action_tp_port),
314         },
315         [OFPAT_SET_TP_DST] = {
316             sizeof(struct ofp_action_tp_port),
317             sizeof(struct ofp_action_tp_port),
318         }
319         /* OFPAT_VENDOR is not here, since it would blow up the array size. */
320     };
321
322     if (actions_len < sizeof *ah) {
323         ds_put_format(string, "***action array too short for next action***\n");
324         return -1;
325     }
326
327     type = ntohs(ah->type);
328     len = ntohs(ah->len);
329     if (actions_len < len) {
330         ds_put_format(string, "***truncated action %"PRIu16"***\n", type);
331         return -1;
332     }
333
334     if ((len % 8) != 0) {
335         ds_put_format(string, 
336                 "***action %"PRIu16" length not a multiple of 8***\n",
337                 type);
338         return -1;
339     }
340
341     if (type < ARRAY_SIZE(of_actions)) {
342         const struct openflow_action *act = &of_actions[type];
343         if ((len < act->min_size) || (len > act->max_size)) {
344             ds_put_format(string, 
345                     "***action %"PRIu16" wrong length: %"PRIu16"***\n", 
346                     type, len);
347             return -1;
348         }
349     }
350     
351     switch (type) {
352     case OFPAT_OUTPUT: {
353         struct ofp_action_output *oa = (struct ofp_action_output *)ah;
354         uint16_t port = ntohs(oa->port); 
355         if (port < OFPP_MAX) {
356             ds_put_format(string, "output:%"PRIu16, port);
357         } else {
358             ofp_print_port_name(string, port);
359             if (port == OFPP_CONTROLLER) {
360                 if (oa->max_len) {
361                     ds_put_format(string, ":%"PRIu16, ntohs(oa->max_len));
362                 } else {
363                     ds_put_cstr(string, ":all");
364                 }
365             }
366         }
367         break;
368     }
369
370     case OFPAT_SET_VLAN_VID: {
371         struct ofp_action_vlan_vid *va = (struct ofp_action_vlan_vid *)ah;
372         ds_put_format(string, "mod_vlan_vid:%"PRIu16, ntohs(va->vlan_vid));
373         break;
374     }
375
376     case OFPAT_SET_VLAN_PCP: {
377         struct ofp_action_vlan_pcp *va = (struct ofp_action_vlan_pcp *)ah;
378         ds_put_format(string, "mod_vlan_pcp:%"PRIu8, va->vlan_pcp);
379         break;
380     }
381
382     case OFPAT_STRIP_VLAN:
383         ds_put_cstr(string, "strip_vlan");
384         break;
385
386     case OFPAT_SET_DL_SRC: {
387         struct ofp_action_dl_addr *da = (struct ofp_action_dl_addr *)ah;
388         ds_put_format(string, "mod_dl_src:"ETH_ADDR_FMT, 
389                 ETH_ADDR_ARGS(da->dl_addr));
390         break;
391     }
392
393     case OFPAT_SET_DL_DST: {
394         struct ofp_action_dl_addr *da = (struct ofp_action_dl_addr *)ah;
395         ds_put_format(string, "mod_dl_dst:"ETH_ADDR_FMT, 
396                 ETH_ADDR_ARGS(da->dl_addr));
397         break;
398     }
399
400     case OFPAT_SET_NW_SRC: {
401         struct ofp_action_nw_addr *na = (struct ofp_action_nw_addr *)ah;
402         ds_put_format(string, "mod_nw_src:"IP_FMT, IP_ARGS(na->nw_addr));
403         break;
404     }
405
406     case OFPAT_SET_NW_DST: {
407         struct ofp_action_nw_addr *na = (struct ofp_action_nw_addr *)ah;
408         ds_put_format(string, "mod_nw_dst:"IP_FMT, IP_ARGS(na->nw_addr));
409         break;
410     }
411
412     case OFPAT_SET_TP_SRC: {
413         struct ofp_action_tp_port *ta = (struct ofp_action_tp_port *)ah;
414         ds_put_format(string, "mod_tp_src:%d", ntohs(ta->tp_port));
415         break;
416     }
417
418     case OFPAT_SET_TP_DST: {
419         struct ofp_action_tp_port *ta = (struct ofp_action_tp_port *)ah;
420         ds_put_format(string, "mod_tp_dst:%d", ntohs(ta->tp_port));
421         break;
422     }
423
424     case OFPAT_VENDOR: {
425         struct ofp_action_vendor_header *avh 
426                 = (struct ofp_action_vendor_header *)ah;
427         if (len < sizeof *avh) {
428             ds_put_format(string, "***ofpat_vendor truncated***\n");
429             return -1;
430         }
431         if (avh->vendor == htonl(NX_VENDOR_ID)) {
432             ofp_print_nx_action(string, (struct nx_action_header *)avh);
433         } else {
434             ds_put_format(string, "vendor action:0x%x", ntohl(avh->vendor));
435         }
436         break;
437     }
438
439     default:
440         ds_put_format(string, "(decoder %"PRIu16" not implemented)", type);
441         break;
442     }
443
444     return len;
445 }
446
447 static void 
448 ofp_print_actions(struct ds *string, const struct ofp_action_header *action,
449                   size_t actions_len) 
450 {
451     uint8_t *p = (uint8_t *)action;
452     size_t len = 0;
453
454     ds_put_cstr(string, "actions=");
455     while (actions_len > 0) {
456         if (len) {
457             ds_put_cstr(string, ",");
458         }
459         len = ofp_print_action(string, (struct ofp_action_header *)p, 
460                 actions_len);
461         if (len < 0) {
462             return;
463         }
464         p += len;
465         actions_len -= len;
466     }
467 }
468
469 /* Pretty-print the OFPT_PACKET_OUT packet of 'len' bytes at 'oh' to 'string'
470  * at the given 'verbosity' level. */
471 static void ofp_packet_out(struct ds *string, const void *oh, size_t len,
472                            int verbosity) 
473 {
474     const struct ofp_packet_out *opo = oh;
475     size_t actions_len = ntohs(opo->actions_len);
476
477     ds_put_cstr(string, " in_port=");
478     ofp_print_port_name(string, ntohs(opo->in_port));
479
480     ds_put_format(string, " actions_len=%zu ", actions_len);
481     if (actions_len > (ntohs(opo->header.length) - sizeof *opo)) {
482         ds_put_format(string, "***packet too short for action length***\n");
483         return;
484     }
485     ofp_print_actions(string, opo->actions, actions_len);
486
487     if (ntohl(opo->buffer_id) == UINT32_MAX) {
488         int data_len = len - sizeof *opo - actions_len;
489         ds_put_format(string, " data_len=%d", data_len);
490         if (verbosity > 0 && len > sizeof *opo) {
491             char *packet = ofp_packet_to_string(
492                     (uint8_t *)opo->actions + actions_len, data_len, data_len);
493             ds_put_char(string, '\n');
494             ds_put_cstr(string, packet);
495             free(packet);
496         }
497     } else {
498         ds_put_format(string, " buffer=0x%08"PRIx32, ntohl(opo->buffer_id));
499     }
500     ds_put_char(string, '\n');
501 }
502
503 /* qsort comparison function. */
504 static int
505 compare_ports(const void *a_, const void *b_)
506 {
507     const struct ofp_phy_port *a = a_;
508     const struct ofp_phy_port *b = b_;
509     uint16_t ap = ntohs(a->port_no);
510     uint16_t bp = ntohs(b->port_no);
511
512     return ap < bp ? -1 : ap > bp;
513 }
514
515 static void ofp_print_port_features(struct ds *string, uint32_t features)
516 {
517     if (features == 0) {
518         ds_put_cstr(string, "Unsupported\n");
519         return;
520     }
521     if (features & OFPPF_10MB_HD) {
522         ds_put_cstr(string, "10MB-HD ");
523     }
524     if (features & OFPPF_10MB_FD) {
525         ds_put_cstr(string, "10MB-FD ");
526     }
527     if (features & OFPPF_100MB_HD) {
528         ds_put_cstr(string, "100MB-HD ");
529     }
530     if (features & OFPPF_100MB_FD) {
531         ds_put_cstr(string, "100MB-FD ");
532     }
533     if (features & OFPPF_1GB_HD) {
534         ds_put_cstr(string, "1GB-HD ");
535     }
536     if (features & OFPPF_1GB_FD) {
537         ds_put_cstr(string, "1GB-FD ");
538     }
539     if (features & OFPPF_10GB_FD) {
540         ds_put_cstr(string, "10GB-FD ");
541     }
542     if (features & OFPPF_COPPER) {
543         ds_put_cstr(string, "COPPER ");
544     }
545     if (features & OFPPF_FIBER) {
546         ds_put_cstr(string, "FIBER ");
547     }
548     if (features & OFPPF_AUTONEG) {
549         ds_put_cstr(string, "AUTO_NEG ");
550     }
551     if (features & OFPPF_PAUSE) {
552         ds_put_cstr(string, "AUTO_PAUSE ");
553     }
554     if (features & OFPPF_PAUSE_ASYM) {
555         ds_put_cstr(string, "AUTO_PAUSE_ASYM ");
556     }
557     ds_put_char(string, '\n');
558 }
559
560 static void
561 ofp_print_phy_port(struct ds *string, const struct ofp_phy_port *port)
562 {
563     uint8_t name[OFP_MAX_PORT_NAME_LEN];
564     int j;
565
566     memcpy(name, port->name, sizeof name);
567     for (j = 0; j < sizeof name - 1; j++) {
568         if (!isprint(name[j])) {
569             break;
570         }
571     }
572     name[j] = '\0';
573
574     ds_put_char(string, ' ');
575     ofp_print_port_name(string, ntohs(port->port_no));
576     ds_put_format(string, "(%s): addr:"ETH_ADDR_FMT", config: %#x, state:%#x\n",
577             name, ETH_ADDR_ARGS(port->hw_addr), ntohl(port->config),
578             ntohl(port->state));
579     if (port->curr) {
580         ds_put_format(string, "     current:    ");
581         ofp_print_port_features(string, ntohl(port->curr));
582     }
583     if (port->advertised) {
584         ds_put_format(string, "     advertised: ");
585         ofp_print_port_features(string, ntohl(port->advertised));
586     }
587     if (port->supported) {
588         ds_put_format(string, "     supported:  ");
589         ofp_print_port_features(string, ntohl(port->supported));
590     }
591     if (port->peer) {
592         ds_put_format(string, "     peer:       ");
593         ofp_print_port_features(string, ntohl(port->peer));
594     }
595 }
596
597 /* Pretty-print the struct ofp_switch_features of 'len' bytes at 'oh' to
598  * 'string' at the given 'verbosity' level. */
599 static void
600 ofp_print_switch_features(struct ds *string, const void *oh, size_t len,
601                           int verbosity)
602 {
603     const struct ofp_switch_features *osf = oh;
604     struct ofp_phy_port port_list[OFPP_MAX];
605     int n_ports;
606     int i;
607
608     ds_put_format(string, " ver:0x%x, dpid:%"PRIx64"\n", 
609             osf->header.version, ntohll(osf->datapath_id));
610     ds_put_format(string, "n_tables:%d, n_buffers:%d\n", osf->n_tables,
611             ntohl(osf->n_buffers));
612     ds_put_format(string, "features: capabilities:%#x, actions:%#x\n",
613            ntohl(osf->capabilities), ntohl(osf->actions));
614
615     if (ntohs(osf->header.length) >= sizeof *osf) {
616         len = MIN(len, ntohs(osf->header.length));
617     }
618     n_ports = (len - sizeof *osf) / sizeof *osf->ports;
619
620     memcpy(port_list, osf->ports, (len - sizeof *osf));
621     qsort(port_list, n_ports, sizeof port_list[0], compare_ports);
622     for (i = 0; i < n_ports; i++) {
623         ofp_print_phy_port(string, &port_list[i]);
624     }
625 }
626
627 /* Pretty-print the struct ofp_switch_config of 'len' bytes at 'oh' to 'string'
628  * at the given 'verbosity' level. */
629 static void
630 ofp_print_switch_config(struct ds *string, const void *oh, size_t len,
631                         int verbosity)
632 {
633     const struct ofp_switch_config *osc = oh;
634     uint16_t flags;
635
636     flags = ntohs(osc->flags);
637     if (flags & OFPC_SEND_FLOW_EXP) {
638         flags &= ~OFPC_SEND_FLOW_EXP;
639         ds_put_format(string, " (sending flow expirations)");
640     }
641     if (flags) {
642         ds_put_format(string, " ***unknown flags 0x%04"PRIx16"***", flags);
643     }
644
645     ds_put_format(string, " miss_send_len=%"PRIu16"\n", ntohs(osc->miss_send_len));
646 }
647
648 static void print_wild(struct ds *string, const char *leader, int is_wild,
649             int verbosity, const char *format, ...) 
650             __attribute__((format(printf, 5, 6)));
651
652 static void print_wild(struct ds *string, const char *leader, int is_wild,
653                        int verbosity, const char *format, ...) 
654 {
655     if (is_wild && verbosity < 2) {
656         return;
657     }
658     ds_put_cstr(string, leader);
659     if (!is_wild) {
660         va_list args;
661
662         va_start(args, format);
663         ds_put_format_valist(string, format, args);
664         va_end(args);
665     } else {
666         ds_put_char(string, '*');
667     }
668     ds_put_char(string, ',');
669 }
670
671 static void
672 print_ip_netmask(struct ds *string, const char *leader, uint32_t ip,
673                  uint32_t wild_bits, int verbosity)
674 {
675     if (wild_bits >= 32 && verbosity < 2) {
676         return;
677     }
678     ds_put_cstr(string, leader);
679     if (wild_bits < 32) {
680         ds_put_format(string, IP_FMT, IP_ARGS(&ip));
681         if (wild_bits) {
682             ds_put_format(string, "/%d", 32 - wild_bits);
683         }
684     } else {
685         ds_put_char(string, '*');
686     }
687     ds_put_char(string, ',');
688 }
689
690 /* Pretty-print the ofp_match structure */
691 static void ofp_print_match(struct ds *f, const struct ofp_match *om, 
692         int verbosity)
693 {
694     uint32_t w = ntohl(om->wildcards);
695     bool skip_type = false;
696     bool skip_proto = false;
697
698     if (!(w & OFPFW_DL_TYPE)) {
699         skip_type = true;
700         if (om->dl_type == htons(ETH_TYPE_IP)) {
701             if (!(w & OFPFW_NW_PROTO)) {
702                 skip_proto = true;
703                 if (om->nw_proto == IP_TYPE_ICMP) {
704                     ds_put_cstr(f, "icmp,");
705                 } else if (om->nw_proto == IP_TYPE_TCP) {
706                     ds_put_cstr(f, "tcp,");
707                 } else if (om->nw_proto == IP_TYPE_UDP) {
708                     ds_put_cstr(f, "udp,");
709                 } else {
710                     ds_put_cstr(f, "ip,");
711                     skip_proto = false;
712                 }
713             } else {
714                 ds_put_cstr(f, "ip,");
715             }
716         } else if (om->dl_type == htons(ETH_TYPE_ARP)) {
717             ds_put_cstr(f, "arp,");
718         } else {
719             skip_type = false;
720         }
721     }
722     print_wild(f, "in_port=", w & OFPFW_IN_PORT, verbosity,
723                "%d", ntohs(om->in_port));
724     print_wild(f, "dl_vlan=", w & OFPFW_DL_VLAN, verbosity,
725                "0x%04x", ntohs(om->dl_vlan));
726     print_wild(f, "dl_src=", w & OFPFW_DL_SRC, verbosity,
727                ETH_ADDR_FMT, ETH_ADDR_ARGS(om->dl_src));
728     print_wild(f, "dl_dst=", w & OFPFW_DL_DST, verbosity,
729                ETH_ADDR_FMT, ETH_ADDR_ARGS(om->dl_dst));
730     if (!skip_type) {
731         print_wild(f, "dl_type=", w & OFPFW_DL_TYPE, verbosity,
732                    "0x%04x", ntohs(om->dl_type));
733     }
734     print_ip_netmask(f, "nw_src=", om->nw_src,
735                      (w & OFPFW_NW_SRC_MASK) >> OFPFW_NW_SRC_SHIFT, verbosity);
736     print_ip_netmask(f, "nw_dst=", om->nw_dst,
737                      (w & OFPFW_NW_DST_MASK) >> OFPFW_NW_DST_SHIFT, verbosity);
738     if (!skip_proto) {
739         print_wild(f, "nw_proto=", w & OFPFW_NW_PROTO, verbosity,
740                    "%u", om->nw_proto);
741     }
742     print_wild(f, "tp_src=", w & OFPFW_TP_SRC, verbosity,
743                "%d", ntohs(om->tp_src));
744     print_wild(f, "tp_dst=", w & OFPFW_TP_DST, verbosity,
745                "%d", ntohs(om->tp_dst));
746 }
747
748 /* Pretty-print the OFPT_FLOW_MOD packet of 'len' bytes at 'oh' to 'string'
749  * at the given 'verbosity' level. */
750 static void
751 ofp_print_flow_mod(struct ds *string, const void *oh, size_t len, 
752                    int verbosity)
753 {
754     const struct ofp_flow_mod *ofm = oh;
755
756     ofp_print_match(string, &ofm->match, verbosity);
757     switch (ntohs(ofm->command)) {
758     case OFPFC_ADD:
759         ds_put_cstr(string, " ADD: ");
760         break;
761     case OFPFC_MODIFY:
762         ds_put_cstr(string, " MOD: ");
763         break;
764     case OFPFC_MODIFY_STRICT:
765         ds_put_cstr(string, " MOD_STRICT: ");
766         break;
767     case OFPFC_DELETE:
768         ds_put_cstr(string, " DEL: ");
769         break;
770     case OFPFC_DELETE_STRICT:
771         ds_put_cstr(string, " DEL_STRICT: ");
772         break;
773     default:
774         ds_put_format(string, " cmd:%d ", ntohs(ofm->command));
775     }
776     ds_put_format(string, "idle:%d hard:%d pri:%d buf:%#x", 
777             ntohs(ofm->idle_timeout), ntohs(ofm->hard_timeout),
778             ofm->match.wildcards ? ntohs(ofm->priority) : (uint16_t)-1,
779             ntohl(ofm->buffer_id));
780     ofp_print_actions(string, ofm->actions,
781                       len - offsetof(struct ofp_flow_mod, actions));
782     ds_put_char(string, '\n');
783 }
784
785 /* Pretty-print the OFPT_FLOW_EXPIRED packet of 'len' bytes at 'oh' to 'string'
786  * at the given 'verbosity' level. */
787 static void
788 ofp_print_flow_expired(struct ds *string, const void *oh, size_t len, 
789                        int verbosity)
790 {
791     const struct ofp_flow_expired *ofe = oh;
792
793     ofp_print_match(string, &ofe->match, verbosity);
794     ds_put_cstr(string, " reason=");
795     switch (ofe->reason) {
796     case OFPER_IDLE_TIMEOUT:
797         ds_put_cstr(string, "idle");
798         break;
799     case OFPER_HARD_TIMEOUT:
800         ds_put_cstr(string, "hard");
801         break;
802     default:
803         ds_put_format(string, "**%"PRIu8"**", ofe->reason);
804         break;
805     }
806     ds_put_format(string, 
807          " pri%"PRIu16" secs%"PRIu32" pkts%"PRIu64" bytes%"PRIu64"\n", 
808          ofe->match.wildcards ? ntohs(ofe->priority) : (uint16_t)-1,
809          ntohl(ofe->duration), ntohll(ofe->packet_count), 
810          ntohll(ofe->byte_count));
811 }
812
813 static void
814 ofp_print_port_mod(struct ds *string, const void *oh, size_t len,
815                    int verbosity)
816 {
817     const struct ofp_port_mod *opm = oh;
818
819     ds_put_format(string, "port: %d: addr:"ETH_ADDR_FMT", config: %#x, mask:%#x\n",
820             ntohs(opm->port_no), ETH_ADDR_ARGS(opm->hw_addr), 
821             ntohl(opm->config), ntohl(opm->mask));
822     ds_put_format(string, "     advertise: ");
823     if (opm->advertise) {
824         ofp_print_port_features(string, ntohl(opm->advertise));
825     } else {
826         ds_put_format(string, "UNCHANGED\n");
827     }
828 }
829
830 struct error_type {
831     int type;
832     int code;
833     const char *name;
834 };
835
836 static const struct error_type error_types[] = {
837 #define ERROR_TYPE(TYPE) {TYPE, -1, #TYPE}
838 #define ERROR_CODE(TYPE, CODE) {TYPE, CODE, #CODE}
839     ERROR_TYPE(OFPET_HELLO_FAILED),
840     ERROR_CODE(OFPET_HELLO_FAILED, OFPHFC_INCOMPATIBLE),
841
842     ERROR_TYPE(OFPET_BAD_REQUEST),
843     ERROR_CODE(OFPET_BAD_REQUEST, OFPBRC_BAD_VERSION),
844     ERROR_CODE(OFPET_BAD_REQUEST, OFPBRC_BAD_TYPE),
845     ERROR_CODE(OFPET_BAD_REQUEST, OFPBRC_BAD_STAT),
846     ERROR_CODE(OFPET_BAD_REQUEST, OFPBRC_BAD_VERSION),
847
848     ERROR_TYPE(OFPET_BAD_ACTION),
849     ERROR_CODE(OFPET_BAD_ACTION, OFPBAC_BAD_TYPE),
850     ERROR_CODE(OFPET_BAD_ACTION, OFPBAC_BAD_LEN),
851     ERROR_CODE(OFPET_BAD_ACTION, OFPBAC_BAD_VENDOR),
852     ERROR_CODE(OFPET_BAD_ACTION, OFPBAC_BAD_VENDOR_TYPE),
853     ERROR_CODE(OFPET_BAD_ACTION, OFPBAC_BAD_OUT_PORT),
854 };
855 #define N_ERROR_TYPES ARRAY_SIZE(error_types)
856
857 static const char *
858 lookup_error_type(int type)
859 {
860     const struct error_type *t;
861
862     for (t = error_types; t < &error_types[N_ERROR_TYPES]; t++) {
863         if (t->type == type && t->code == -1) {
864             return t->name;
865         }
866     }
867     return "?";
868 }
869
870 static const char *
871 lookup_error_code(int type, int code)
872 {
873     const struct error_type *t;
874
875     for (t = error_types; t < &error_types[N_ERROR_TYPES]; t++) {
876         if (t->type == type && t->code == code) {
877             return t->name;
878         }
879     }
880     return "?";
881 }
882
883 /* Pretty-print the OFPT_ERROR packet of 'len' bytes at 'oh' to 'string'
884  * at the given 'verbosity' level. */
885 static void
886 ofp_print_error_msg(struct ds *string, const void *oh, size_t len, 
887                        int verbosity)
888 {
889     const struct ofp_error_msg *oem = oh;
890     int type = ntohs(oem->type);
891     int code = ntohs(oem->code);
892     char *s;
893
894     ds_put_format(string, " type%d(%s) code%d(%s) payload:\n",
895                   type, lookup_error_type(type),
896                   code, lookup_error_code(type, code));
897
898     switch (type) {
899     case OFPET_HELLO_FAILED:
900         ds_put_printable(string, (char *) oem->data, len - sizeof *oem);
901         break;
902
903     case OFPET_BAD_REQUEST:
904         s = ofp_to_string(oem->data, len - sizeof *oem, 1);
905         ds_put_cstr(string, s);
906         free(s);
907         break;
908
909     default:
910         ds_put_hex_dump(string, oem->data, len - sizeof *oem, 0, true);
911         break;
912     }
913 }
914
915 /* Pretty-print the OFPT_PORT_STATUS packet of 'len' bytes at 'oh' to 'string'
916  * at the given 'verbosity' level. */
917 static void
918 ofp_print_port_status(struct ds *string, const void *oh, size_t len, 
919                       int verbosity)
920 {
921     const struct ofp_port_status *ops = oh;
922
923     if (ops->reason == OFPPR_ADD) {
924         ds_put_format(string, " ADD:");
925     } else if (ops->reason == OFPPR_DELETE) {
926         ds_put_format(string, " DEL:");
927     } else if (ops->reason == OFPPR_MODIFY) {
928         ds_put_format(string, " MOD:");
929     }
930
931     ofp_print_phy_port(string, &ops->desc);
932 }
933
934 static void
935 ofp_desc_stats_reply(struct ds *string, const void *body, size_t len,
936                      int verbosity)
937 {
938     const struct ofp_desc_stats *ods = body;
939
940     ds_put_format(string, "Manufacturer: %s\n", ods->mfr_desc);
941     ds_put_format(string, "Hardware: %s\n", ods->hw_desc);
942     ds_put_format(string, "Software: %s\n", ods->sw_desc);
943     ds_put_format(string, "Serial Num: %s\n", ods->serial_num);
944 }
945
946 static void
947 ofp_flow_stats_request(struct ds *string, const void *oh, size_t len,
948                       int verbosity) 
949 {
950     const struct ofp_flow_stats_request *fsr = oh;
951
952     if (fsr->table_id == 0xff) {
953         ds_put_format(string, " table_id=any, ");
954     } else {
955         ds_put_format(string, " table_id=%"PRIu8", ", fsr->table_id);
956     }
957
958     ofp_print_match(string, &fsr->match, verbosity);
959 }
960
961 static void
962 ofp_flow_stats_reply(struct ds *string, const void *body_, size_t len,
963                      int verbosity)
964 {
965     const char *body = body_;
966     const char *pos = body;
967     for (;;) {
968         const struct ofp_flow_stats *fs;
969         ptrdiff_t bytes_left = body + len - pos;
970         size_t length;
971
972         if (bytes_left < sizeof *fs) {
973             if (bytes_left != 0) {
974                 ds_put_format(string, " ***%td leftover bytes at end***",
975                               bytes_left);
976             }
977             break;
978         }
979
980         fs = (const void *) pos;
981         length = ntohs(fs->length);
982         if (length < sizeof *fs) {
983             ds_put_format(string, " ***length=%zu shorter than minimum %zu***",
984                           length, sizeof *fs);
985             break;
986         } else if (length > bytes_left) {
987             ds_put_format(string,
988                           " ***length=%zu but only %td bytes left***",
989                           length, bytes_left);
990             break;
991         } else if ((length - sizeof *fs) % sizeof fs->actions[0]) {
992             ds_put_format(string,
993                           " ***length=%zu has %zu bytes leftover in "
994                           "final action***",
995                           length,
996                           (length - sizeof *fs) % sizeof fs->actions[0]);
997             break;
998         }
999
1000         ds_put_format(string, "  duration=%"PRIu32"s, ", ntohl(fs->duration));
1001         ds_put_format(string, "table_id=%"PRIu8", ", fs->table_id);
1002         ds_put_format(string, "priority=%"PRIu16", ", 
1003                     fs->match.wildcards ? ntohs(fs->priority) : (uint16_t)-1);
1004         ds_put_format(string, "n_packets=%"PRIu64", ",
1005                     ntohll(fs->packet_count));
1006         ds_put_format(string, "n_bytes=%"PRIu64", ", ntohll(fs->byte_count));
1007         ds_put_format(string, "idle_timeout=%"PRIu16",",
1008                       ntohs(fs->idle_timeout));
1009         ds_put_format(string, "hard_timeout=%"PRIu16",",
1010                       ntohs(fs->hard_timeout));
1011         ofp_print_match(string, &fs->match, verbosity);
1012         ofp_print_actions(string, fs->actions, length - sizeof *fs);
1013         ds_put_char(string, '\n');
1014
1015         pos += length;
1016      }
1017 }
1018
1019 static void
1020 ofp_aggregate_stats_request(struct ds *string, const void *oh, size_t len,
1021                             int verbosity) 
1022 {
1023     const struct ofp_aggregate_stats_request *asr = oh;
1024
1025     if (asr->table_id == 0xff) {
1026         ds_put_format(string, " table_id=any, ");
1027     } else {
1028         ds_put_format(string, " table_id=%"PRIu8", ", asr->table_id);
1029     }
1030
1031     ofp_print_match(string, &asr->match, verbosity);
1032 }
1033
1034 static void
1035 ofp_aggregate_stats_reply(struct ds *string, const void *body_, size_t len,
1036                           int verbosity)
1037 {
1038     const struct ofp_aggregate_stats_reply *asr = body_;
1039
1040     ds_put_format(string, " packet_count=%"PRIu64, ntohll(asr->packet_count));
1041     ds_put_format(string, " byte_count=%"PRIu64, ntohll(asr->byte_count));
1042     ds_put_format(string, " flow_count=%"PRIu32, ntohl(asr->flow_count));
1043 }
1044
1045 static void print_port_stat(struct ds *string, const char *leader, 
1046                             uint64_t stat, int more)
1047 {
1048     ds_put_cstr(string, leader);
1049     if (stat != -1) {
1050         ds_put_format(string, "%"PRIu64, stat);
1051     } else {
1052         ds_put_char(string, '?');
1053     }
1054     if (more) {
1055         ds_put_cstr(string, ", ");
1056     } else {
1057         ds_put_cstr(string, "\n");
1058     }
1059 }
1060
1061 static void
1062 ofp_port_stats_reply(struct ds *string, const void *body, size_t len,
1063                      int verbosity)
1064 {
1065     const struct ofp_port_stats *ps = body;
1066     size_t n = len / sizeof *ps;
1067     ds_put_format(string, " %zu ports\n", n);
1068     if (verbosity < 1) {
1069         return;
1070     }
1071
1072     for (; n--; ps++) {
1073         ds_put_format(string, "  port %2"PRIu16": ", ntohs(ps->port_no));
1074
1075         ds_put_cstr(string, "rx ");
1076         print_port_stat(string, "pkts=", ntohll(ps->rx_packets), 1);
1077         print_port_stat(string, "bytes=", ntohll(ps->rx_bytes), 1);
1078         print_port_stat(string, "drop=", ntohll(ps->rx_dropped), 1);
1079         print_port_stat(string, "errs=", ntohll(ps->rx_errors), 1);
1080         print_port_stat(string, "frame=", ntohll(ps->rx_frame_err), 1);
1081         print_port_stat(string, "over=", ntohll(ps->rx_over_err), 1);
1082         print_port_stat(string, "crc=", ntohll(ps->rx_crc_err), 0);
1083
1084         ds_put_cstr(string, "           tx ");
1085         print_port_stat(string, "pkts=", ntohll(ps->tx_packets), 1);
1086         print_port_stat(string, "bytes=", ntohll(ps->tx_bytes), 1);
1087         print_port_stat(string, "drop=", ntohll(ps->tx_dropped), 1);
1088         print_port_stat(string, "errs=", ntohll(ps->tx_errors), 1);
1089         print_port_stat(string, "coll=", ntohll(ps->collisions), 0);
1090     }
1091 }
1092
1093 static void
1094 ofp_table_stats_reply(struct ds *string, const void *body, size_t len,
1095                      int verbosity)
1096 {
1097     const struct ofp_table_stats *ts = body;
1098     size_t n = len / sizeof *ts;
1099     ds_put_format(string, " %zu tables\n", n);
1100     if (verbosity < 1) {
1101         return;
1102     }
1103
1104     for (; n--; ts++) {
1105         char name[OFP_MAX_TABLE_NAME_LEN + 1];
1106         strncpy(name, ts->name, sizeof name);
1107         name[OFP_MAX_TABLE_NAME_LEN] = '\0';
1108
1109         ds_put_format(string, "  %d: %-8s: ", ts->table_id, name);
1110         ds_put_format(string, "wild=0x%05"PRIx32", ", ntohl(ts->wildcards));
1111         ds_put_format(string, "max=%6"PRIu32", ", ntohl(ts->max_entries));
1112         ds_put_format(string, "active=%"PRIu32"\n", ntohl(ts->active_count));
1113         ds_put_cstr(string, "               ");
1114         ds_put_format(string, "lookup=%"PRIu64", ", 
1115                     ntohll(ts->lookup_count));
1116         ds_put_format(string, "matched=%"PRIu64"\n",
1117                     ntohll(ts->matched_count));
1118      }
1119 }
1120
1121 static void
1122 vendor_stat(struct ds *string, const void *body, size_t len,
1123             int verbosity UNUSED)
1124 {
1125     ds_put_format(string, " vendor=%08"PRIx32, ntohl(*(uint32_t *) body));
1126     ds_put_format(string, " %zu bytes additional data",
1127                   len - sizeof(uint32_t));
1128 }
1129
1130 enum stats_direction {
1131     REQUEST,
1132     REPLY
1133 };
1134
1135 static void
1136 print_stats(struct ds *string, int type, const void *body, size_t body_len,
1137             int verbosity, enum stats_direction direction)
1138 {
1139     struct stats_msg {
1140         size_t min_body, max_body;
1141         void (*printer)(struct ds *, const void *, size_t len, int verbosity);
1142     };
1143
1144     struct stats_type {
1145         int type;
1146         const char *name;
1147         struct stats_msg request;
1148         struct stats_msg reply;
1149     };
1150
1151     static const struct stats_type stats_types[] = {
1152         {
1153             OFPST_DESC,
1154             "description",
1155             { 0, 0, NULL },
1156             { 0, SIZE_MAX, ofp_desc_stats_reply },
1157         },
1158         {
1159             OFPST_FLOW,
1160             "flow",
1161             { sizeof(struct ofp_flow_stats_request),
1162               sizeof(struct ofp_flow_stats_request),
1163               ofp_flow_stats_request },
1164             { 0, SIZE_MAX, ofp_flow_stats_reply },
1165         },
1166         {
1167             OFPST_AGGREGATE,
1168             "aggregate",
1169             { sizeof(struct ofp_aggregate_stats_request),
1170               sizeof(struct ofp_aggregate_stats_request),
1171               ofp_aggregate_stats_request },
1172             { sizeof(struct ofp_aggregate_stats_reply),
1173               sizeof(struct ofp_aggregate_stats_reply),
1174               ofp_aggregate_stats_reply },
1175         },
1176         {
1177             OFPST_TABLE,
1178             "table",
1179             { 0, 0, NULL },
1180             { 0, SIZE_MAX, ofp_table_stats_reply },
1181         },
1182         {
1183             OFPST_PORT,
1184             "port",
1185             { 0, 0, NULL, },
1186             { 0, SIZE_MAX, ofp_port_stats_reply },
1187         },
1188         {
1189             OFPST_VENDOR,
1190             "vendor-specific",
1191             { sizeof(uint32_t), SIZE_MAX, vendor_stat },
1192             { sizeof(uint32_t), SIZE_MAX, vendor_stat },
1193         },
1194         {
1195             -1,
1196             "unknown",
1197             { 0, 0, NULL, },
1198             { 0, 0, NULL, },
1199         },
1200     };
1201
1202     const struct stats_type *s;
1203     const struct stats_msg *m;
1204
1205     if (type >= ARRAY_SIZE(stats_types) || !stats_types[type].name) {
1206         ds_put_format(string, " ***unknown type %d***", type);
1207         return;
1208     }
1209     for (s = stats_types; s->type >= 0; s++) {
1210         if (s->type == type) {
1211             break;
1212         }
1213     }
1214     ds_put_format(string, " type=%d(%s)\n", type, s->name);
1215
1216     m = direction == REQUEST ? &s->request : &s->reply;
1217     if (body_len < m->min_body || body_len > m->max_body) {
1218         ds_put_format(string, " ***body_len=%zu not in %zu...%zu***",
1219                       body_len, m->min_body, m->max_body);
1220         return;
1221     }
1222     if (m->printer) {
1223         m->printer(string, body, body_len, verbosity);
1224     }
1225 }
1226
1227 static void
1228 ofp_stats_request(struct ds *string, const void *oh, size_t len, int verbosity)
1229 {
1230     const struct ofp_stats_request *srq = oh;
1231
1232     if (srq->flags) {
1233         ds_put_format(string, " ***unknown flags 0x%04"PRIx16"***",
1234                       ntohs(srq->flags));
1235     }
1236
1237     print_stats(string, ntohs(srq->type), srq->body,
1238                 len - offsetof(struct ofp_stats_request, body),
1239                 verbosity, REQUEST);
1240 }
1241
1242 static void
1243 ofp_stats_reply(struct ds *string, const void *oh, size_t len, int verbosity)
1244 {
1245     const struct ofp_stats_reply *srp = oh;
1246
1247     ds_put_cstr(string, " flags=");
1248     if (!srp->flags) {
1249         ds_put_cstr(string, "none");
1250     } else {
1251         uint16_t flags = ntohs(srp->flags);
1252         if (flags & OFPSF_REPLY_MORE) {
1253             ds_put_cstr(string, "[more]");
1254             flags &= ~OFPSF_REPLY_MORE;
1255         }
1256         if (flags) {
1257             ds_put_format(string, "[***unknown flags 0x%04"PRIx16"***]", flags);
1258         }
1259     }
1260
1261     print_stats(string, ntohs(srp->type), srp->body,
1262                 len - offsetof(struct ofp_stats_reply, body),
1263                 verbosity, REPLY);
1264 }
1265
1266 static void
1267 ofp_echo(struct ds *string, const void *oh, size_t len, int verbosity)
1268 {
1269     const struct ofp_header *hdr = oh;
1270
1271     ds_put_format(string, " %zu bytes of payload\n", len - sizeof *hdr);
1272     if (verbosity > 1) {
1273         ds_put_hex_dump(string, hdr, len - sizeof *hdr, 0, true); 
1274     }
1275 }
1276
1277 struct openflow_packet {
1278     uint8_t type;
1279     const char *name;
1280     size_t min_size;
1281     void (*printer)(struct ds *, const void *, size_t len, int verbosity);
1282 };
1283
1284 static const struct openflow_packet packets[] = {
1285     {
1286         OFPT_HELLO,
1287         "hello",
1288         sizeof (struct ofp_header),
1289         NULL,
1290     },
1291     {
1292         OFPT_FEATURES_REQUEST,
1293         "features_request",
1294         sizeof (struct ofp_header),
1295         NULL,
1296     },
1297     {
1298         OFPT_FEATURES_REPLY,
1299         "features_reply",
1300         sizeof (struct ofp_switch_features),
1301         ofp_print_switch_features,
1302     },
1303     {
1304         OFPT_GET_CONFIG_REQUEST,
1305         "get_config_request",
1306         sizeof (struct ofp_header),
1307         NULL,
1308     },
1309     {
1310         OFPT_GET_CONFIG_REPLY,
1311         "get_config_reply",
1312         sizeof (struct ofp_switch_config),
1313         ofp_print_switch_config,
1314     },
1315     {
1316         OFPT_SET_CONFIG,
1317         "set_config",
1318         sizeof (struct ofp_switch_config),
1319         ofp_print_switch_config,
1320     },
1321     {
1322         OFPT_PACKET_IN,
1323         "packet_in",
1324         offsetof(struct ofp_packet_in, data),
1325         ofp_packet_in,
1326     },
1327     {
1328         OFPT_PACKET_OUT,
1329         "packet_out",
1330         sizeof (struct ofp_packet_out),
1331         ofp_packet_out,
1332     },
1333     {
1334         OFPT_FLOW_MOD,
1335         "flow_mod",
1336         sizeof (struct ofp_flow_mod),
1337         ofp_print_flow_mod,
1338     },
1339     {
1340         OFPT_FLOW_EXPIRED,
1341         "flow_expired",
1342         sizeof (struct ofp_flow_expired),
1343         ofp_print_flow_expired,
1344     },
1345     {
1346         OFPT_PORT_MOD,
1347         "port_mod",
1348         sizeof (struct ofp_port_mod),
1349         ofp_print_port_mod,
1350     },
1351     {
1352         OFPT_PORT_STATUS,
1353         "port_status",
1354         sizeof (struct ofp_port_status),
1355         ofp_print_port_status
1356     },
1357     {
1358         OFPT_ERROR,
1359         "error_msg",
1360         sizeof (struct ofp_error_msg),
1361         ofp_print_error_msg,
1362     },
1363     {
1364         OFPT_STATS_REQUEST,
1365         "stats_request",
1366         sizeof (struct ofp_stats_request),
1367         ofp_stats_request,
1368     },
1369     {
1370         OFPT_STATS_REPLY,
1371         "stats_reply",
1372         sizeof (struct ofp_stats_reply),
1373         ofp_stats_reply,
1374     },
1375     {
1376         OFPT_ECHO_REQUEST,
1377         "echo_request",
1378         sizeof (struct ofp_header),
1379         ofp_echo,
1380     },
1381     {
1382         OFPT_ECHO_REPLY,
1383         "echo_reply",
1384         sizeof (struct ofp_header),
1385         ofp_echo,
1386     },
1387 };
1388
1389 /* Composes and returns a string representing the OpenFlow packet of 'len'
1390  * bytes at 'oh' at the given 'verbosity' level.  0 is a minimal amount of
1391  * verbosity and higher numbers increase verbosity.  The caller is responsible
1392  * for freeing the string. */
1393 char *
1394 ofp_to_string(const void *oh_, size_t len, int verbosity)
1395 {
1396     struct ds string = DS_EMPTY_INITIALIZER;
1397     const struct ofp_header *oh = oh_;
1398     const struct openflow_packet *pkt;
1399
1400     if (len < sizeof(struct ofp_header)) {
1401         ds_put_cstr(&string, "OpenFlow packet too short:\n");
1402         ds_put_hex_dump(&string, oh, len, 0, true);
1403         return ds_cstr(&string);
1404     } else if (oh->version != OFP_VERSION) {
1405         ds_put_format(&string, "Bad OpenFlow version %"PRIu8":\n", oh->version);
1406         ds_put_hex_dump(&string, oh, len, 0, true);
1407         return ds_cstr(&string);
1408     }
1409
1410     for (pkt = packets; ; pkt++) {
1411         if (pkt >= &packets[ARRAY_SIZE(packets)]) {
1412             ds_put_format(&string, "Unknown OpenFlow packet type %"PRIu8":\n",
1413                           oh->type);
1414             ds_put_hex_dump(&string, oh, len, 0, true);
1415             return ds_cstr(&string);
1416         } else if (oh->type == pkt->type) {
1417             break;
1418         }
1419     }
1420
1421     ds_put_format(&string, "%s (xid=0x%"PRIx32"):", pkt->name, oh->xid);
1422
1423     if (ntohs(oh->length) > len)
1424         ds_put_format(&string, " (***truncated to %zu bytes from %"PRIu16"***)",
1425                 len, ntohs(oh->length));
1426     else if (ntohs(oh->length) < len) {
1427         ds_put_format(&string, " (***only uses %"PRIu16" bytes out of %zu***)\n",
1428                 ntohs(oh->length), len);
1429         len = ntohs(oh->length);
1430     }
1431
1432     if (len < pkt->min_size) {
1433         ds_put_format(&string, " (***length=%zu < min_size=%zu***)\n",
1434                 len, pkt->min_size);
1435     } else if (!pkt->printer) {
1436         if (len > sizeof *oh) {
1437             ds_put_format(&string, " length=%"PRIu16" (decoder not implemented)\n",
1438                           ntohs(oh->length)); 
1439         }
1440     } else {
1441         pkt->printer(&string, oh, len, verbosity);
1442     }
1443     if (verbosity >= 3) {
1444         ds_put_hex_dump(&string, oh, len, 0, true);
1445     }
1446     if (string.string[string.length - 1] != '\n') {
1447         ds_put_char(&string, '\n');
1448     }
1449     return ds_cstr(&string);
1450 }
1451 \f
1452 static void
1453 print_and_free(FILE *stream, char *string) 
1454 {
1455     fputs(string, stream);
1456     free(string);
1457 }
1458
1459 /* Pretty-print the OpenFlow packet of 'len' bytes at 'oh' to 'stream' at the
1460  * given 'verbosity' level.  0 is a minimal amount of verbosity and higher
1461  * numbers increase verbosity. */
1462 void
1463 ofp_print(FILE *stream, const void *oh, size_t len, int verbosity)
1464 {
1465     print_and_free(stream, ofp_to_string(oh, len, verbosity));
1466 }
1467
1468 /* Dumps the contents of the Ethernet frame in the 'len' bytes starting at
1469  * 'data' to 'stream' using tcpdump.  'total_len' specifies the full length of
1470  * the Ethernet frame (of which 'len' bytes were captured).
1471  *
1472  * This starts and kills a tcpdump subprocess so it's quite expensive. */
1473 void
1474 ofp_print_packet(FILE *stream, const void *data, size_t len, size_t total_len)
1475 {
1476     print_and_free(stream, ofp_packet_to_string(data, len, total_len));
1477 }