Print special ports by name in ofp_packet_in messages.
[openvswitch] / 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 "ofp-print.h"
35 #include "xtoxll.h"
36
37 #include <errno.h>
38 #include <inttypes.h>
39 #include <netinet/in.h>
40 #include <sys/wait.h>
41 #include <stdarg.h>
42 #include <stdlib.h>
43 #include <ctype.h>
44
45 #include "compiler.h"
46 #include "dynamic-string.h"
47 #include "util.h"
48 #include "openflow.h"
49 #include "packets.h"
50
51 static void ofp_print_port_name(struct ds *string, uint16_t port);
52
53 /* Returns a string that represents the contents of the Ethernet frame in the
54  * 'len' bytes starting at 'data' to 'stream' as output by tcpdump.
55  * 'total_len' specifies the full length of the Ethernet frame (of which 'len'
56  * bytes were captured).
57  *
58  * The caller must free the returned string.
59  *
60  * This starts and kills a tcpdump subprocess so it's quite expensive. */
61 char *
62 ofp_packet_to_string(const void *data, size_t len, size_t total_len)
63 {
64     struct pcap_hdr {
65         uint32_t magic_number;   /* magic number */
66         uint16_t version_major;  /* major version number */
67         uint16_t version_minor;  /* minor version number */
68         int32_t thiszone;        /* GMT to local correction */
69         uint32_t sigfigs;        /* accuracy of timestamps */
70         uint32_t snaplen;        /* max length of captured packets */
71         uint32_t network;        /* data link type */
72     } PACKED;
73
74     struct pcaprec_hdr {
75         uint32_t ts_sec;         /* timestamp seconds */
76         uint32_t ts_usec;        /* timestamp microseconds */
77         uint32_t incl_len;       /* number of octets of packet saved in file */
78         uint32_t orig_len;       /* actual length of packet */
79     } PACKED;
80
81     struct pcap_hdr ph;
82     struct pcaprec_hdr prh;
83
84     struct ds ds = DS_EMPTY_INITIALIZER;
85
86     char command[128];
87     FILE *pcap;
88     FILE *tcpdump;
89     int status;
90     int c;
91
92     pcap = tmpfile();
93     if (!pcap) {
94         error(errno, "tmpfile");
95         return xstrdup("<error>");
96     }
97
98     /* The pcap reader is responsible for figuring out endianness based on the
99      * magic number, so the lack of htonX calls here is intentional. */
100     ph.magic_number = 0xa1b2c3d4;
101     ph.version_major = 2;
102     ph.version_minor = 4;
103     ph.thiszone = 0;
104     ph.sigfigs = 0;
105     ph.snaplen = 1518;
106     ph.network = 1;             /* Ethernet */
107
108     prh.ts_sec = 0;
109     prh.ts_usec = 0;
110     prh.incl_len = len;
111     prh.orig_len = total_len;
112
113     fwrite(&ph, 1, sizeof ph, pcap);
114     fwrite(&prh, 1, sizeof prh, pcap);
115     fwrite(data, 1, len, pcap);
116
117     fflush(pcap);
118     if (ferror(pcap)) {
119         error(errno, "error writing temporary file");
120     }
121     rewind(pcap);
122
123     snprintf(command, sizeof command, "tcpdump -n -r /dev/fd/%d 2>/dev/null",
124              fileno(pcap));
125     tcpdump = popen(command, "r");
126     fclose(pcap);
127     if (!tcpdump) {
128         error(errno, "exec(\"%s\")", command);
129         return xstrdup("<error>");
130     }
131
132     while ((c = getc(tcpdump)) != EOF) {
133         ds_put_char(&ds, c);
134     }
135
136     status = pclose(tcpdump);
137     if (WIFEXITED(status)) {
138         if (WEXITSTATUS(status))
139             error(0, "tcpdump exited with status %d", WEXITSTATUS(status));
140     } else if (WIFSIGNALED(status)) {
141         error(0, "tcpdump exited with signal %d", WTERMSIG(status)); 
142     }
143     return ds_cstr(&ds);
144 }
145
146 /* Pretty-print the OFPT_PACKET_IN packet of 'len' bytes at 'oh' to 'stream'
147  * at the given 'verbosity' level. */
148 static void
149 ofp_packet_in(struct ds *string, const void *oh, size_t len, int verbosity)
150 {
151     const struct ofp_packet_in *op = oh;
152     size_t data_len;
153
154     ds_put_format(string, " total_len=%"PRIu16" in_port=",
155                   ntohs(op->total_len));
156     ofp_print_port_name(string, ntohs(op->in_port));
157
158     if (op->reason == OFPR_ACTION)
159         ds_put_cstr(string, " (via action)");
160     else if (op->reason != OFPR_NO_MATCH)
161         ds_put_format(string, " (***reason %"PRIu8"***)", op->reason);
162
163     data_len = len - offsetof(struct ofp_packet_in, data);
164     ds_put_format(string, " data_len=%zu", data_len);
165     if (htonl(op->buffer_id) == UINT32_MAX) {
166         ds_put_format(string, " (unbuffered)");
167         if (ntohs(op->total_len) != data_len)
168             ds_put_format(string, " (***total_len != data_len***)");
169     } else {
170         ds_put_format(string, " buffer=%08"PRIx32, ntohl(op->buffer_id));
171         if (ntohs(op->total_len) < data_len)
172             ds_put_format(string, " (***total_len < data_len***)");
173     }
174     ds_put_char(string, '\n');
175
176     if (verbosity > 0) {
177         char *packet = ofp_packet_to_string(op->data, data_len,
178                                             ntohs(op->total_len)); 
179         ds_put_cstr(string, packet);
180         free(packet);
181     }
182 }
183
184 static void ofp_print_port_name(struct ds *string, uint16_t port) 
185 {
186     const char *name;
187     switch (port) {
188     case OFPP_TABLE:
189         name = "TABLE";
190         break;
191     case OFPP_NORMAL:
192         name = "NORMAL";
193         break;
194     case OFPP_FLOOD:
195         name = "FLOOD";
196         break;
197     case OFPP_ALL:
198         name = "ALL";
199         break;
200     case OFPP_CONTROLLER:
201         name = "CONTROLLER";
202         break;
203     case OFPP_LOCAL:
204         name = "LOCAL";
205         break;
206     case OFPP_NONE:
207         name = "NONE";
208         break;
209     default:
210         ds_put_format(string, "%"PRIu16, port);
211         return;
212     }
213     ds_put_cstr(string, name);
214 }
215
216 static void
217 ofp_print_action(struct ds *string, const struct ofp_action *a) 
218 {
219     switch (ntohs(a->type)) {
220     case OFPAT_OUTPUT:
221         ds_put_cstr(string, "output(");
222         ofp_print_port_name(string, ntohs(a->arg.output.port));
223         if (a->arg.output.port == htons(OFPP_CONTROLLER)) {
224             ds_put_format(string, ", max %"PRIu16" bytes", ntohs(a->arg.output.max_len));
225         }
226         ds_put_cstr(string, ")");
227         break;
228
229     default:
230         ds_put_format(string, "(decoder %"PRIu16" not implemented)", ntohs(a->type));
231         break;
232     }
233 }
234
235 static void ofp_print_actions(struct ds *string,
236                               const struct ofp_action actions[],
237                               size_t n_bytes) 
238 {
239     size_t i;
240
241     ds_put_cstr(string, " actions[");
242     for (i = 0; i < n_bytes / sizeof *actions; i++) {
243         if (i) {
244             ds_put_cstr(string, "; ");
245         }
246         ofp_print_action(string, &actions[i]);
247     }
248     if (n_bytes % sizeof *actions) {
249         if (i) {
250             ds_put_cstr(string, "; ");
251         }
252         ds_put_cstr(string, "; ***trailing garbage***");
253     }
254     ds_put_cstr(string, "]");
255 }
256
257 /* Pretty-print the OFPT_PACKET_OUT packet of 'len' bytes at 'oh' to 'string'
258  * at the given 'verbosity' level. */
259 static void ofp_packet_out(struct ds *string, const void *oh, size_t len,
260                            int verbosity) 
261 {
262     const struct ofp_packet_out *opo = oh;
263
264     ds_put_cstr(string, " in_port=");
265     ofp_print_port_name(string, ntohs(opo->in_port));
266
267     if (ntohl(opo->buffer_id) == UINT32_MAX) {
268         ds_put_cstr(string, " out_port=");
269         ofp_print_port_name(string, ntohs(opo->out_port));
270         if (verbosity > 0 && len > sizeof *opo) {
271             char *packet = ofp_packet_to_string(opo->u.data, len - sizeof *opo,
272                                                 len - sizeof *opo);
273             ds_put_char(string, '\n');
274             ds_put_cstr(string, packet);
275             free(packet);
276         }
277     } else {
278         ds_put_format(string, " buffer=%08"PRIx32, ntohl(opo->buffer_id));
279         ofp_print_actions(string, opo->u.actions, len - sizeof *opo);
280     }
281     ds_put_char(string, '\n');
282 }
283
284 /* qsort comparison function. */
285 static int
286 compare_ports(const void *a_, const void *b_)
287 {
288     const struct ofp_phy_port *a = a_;
289     const struct ofp_phy_port *b = b_;
290     uint16_t ap = ntohs(a->port_no);
291     uint16_t bp = ntohs(b->port_no);
292
293     return ap < bp ? -1 : ap > bp;
294 }
295
296 static void
297 ofp_print_phy_port(struct ds *string, const struct ofp_phy_port *port)
298 {
299     uint8_t name[OFP_MAX_PORT_NAME_LEN];
300     int j;
301
302     memcpy(name, port->name, sizeof name);
303     for (j = 0; j < sizeof name - 1; j++) {
304         if (!isprint(name[j])) {
305             break;
306         }
307     }
308     name[j] = '\0';
309
310     ds_put_format(string, " %2d(%s): addr:"ETH_ADDR_FMT", speed:%d, flags:%#x, "
311             "feat:%#x\n", ntohs(port->port_no), name, 
312             ETH_ADDR_ARGS(port->hw_addr), ntohl(port->speed),
313             ntohl(port->flags), ntohl(port->features));
314 }
315
316 /* Pretty-print the struct ofp_switch_features of 'len' bytes at 'oh' to
317  * 'string' at the given 'verbosity' level. */
318 static void
319 ofp_print_switch_features(struct ds *string, const void *oh, size_t len,
320                           int verbosity)
321 {
322     const struct ofp_switch_features *osf = oh;
323     struct ofp_phy_port port_list[OFPP_MAX];
324     int n_ports;
325     int i;
326
327     ds_put_format(string, "dp id:%"PRIx64"\n", ntohll(osf->datapath_id));
328     ds_put_format(string, "tables: exact:%d, compressed:%d, general:%d\n",
329            ntohl(osf->n_exact), 
330            ntohl(osf->n_compression), ntohl(osf->n_general));
331     ds_put_format(string, "buffers: size:%d, number:%d\n",
332            ntohl(osf->buffer_mb), ntohl(osf->n_buffers));
333     ds_put_format(string, "features: capabilities:%#x, actions:%#x\n",
334            ntohl(osf->capabilities), ntohl(osf->actions));
335
336     if (ntohs(osf->header.length) >= sizeof *osf) {
337         len = MIN(len, ntohs(osf->header.length));
338     }
339     n_ports = (len - sizeof *osf) / sizeof *osf->ports;
340
341     memcpy(port_list, osf->ports, (len - sizeof *osf));
342     qsort(port_list, n_ports, sizeof port_list[0], compare_ports);
343     for (i = 0; i < n_ports; i++) {
344         ofp_print_phy_port(string, &port_list[i]);
345     }
346 }
347
348 /* Pretty-print the struct ofp_switch_config of 'len' bytes at 'oh' to 'string'
349  * at the given 'verbosity' level. */
350 static void
351 ofp_print_switch_config(struct ds *string, const void *oh, size_t len,
352                         int verbosity)
353 {
354     const struct ofp_switch_config *osc = oh;
355     uint16_t flags;
356
357     flags = ntohs(osc->flags);
358     if (flags & OFPC_SEND_FLOW_EXP) {
359         flags &= ~OFPC_SEND_FLOW_EXP;
360         ds_put_format(string, " (sending flow expirations)");
361     }
362     if (flags) {
363         ds_put_format(string, " ***unknown flags %04"PRIx16"***", flags);
364     }
365
366     ds_put_format(string, " miss_send_len=%"PRIu16"\n", ntohs(osc->miss_send_len));
367 }
368
369 static void print_wild(struct ds *string, const char *leader, int is_wild,
370             const char *format, ...) __attribute__((format(printf, 4, 5)));
371
372 static void print_wild(struct ds *string, const char *leader, int is_wild,
373                        const char *format, ...) 
374 {
375     ds_put_cstr(string, leader);
376     if (!is_wild) {
377         va_list args;
378
379         va_start(args, format);
380         ds_put_format_valist(string, format, args);
381         va_end(args);
382     } else {
383         ds_put_char(string, '?');
384     }
385 }
386
387 /* Pretty-print the ofp_match structure */
388 static void ofp_print_match(struct ds *f, const struct ofp_match *om)
389 {
390     uint16_t w = ntohs(om->wildcards);
391
392     print_wild(f, " inport", w & OFPFW_IN_PORT, "%d", ntohs(om->in_port));
393     print_wild(f, ":vlan", w & OFPFW_DL_VLAN, "%04x", ntohs(om->dl_vlan));
394     print_wild(f, " mac[", w & OFPFW_DL_SRC,
395                ETH_ADDR_FMT, ETH_ADDR_ARGS(om->dl_src));
396     print_wild(f, "->", w & OFPFW_DL_DST,
397                ETH_ADDR_FMT, ETH_ADDR_ARGS(om->dl_dst));
398     print_wild(f, "] type", w & OFPFW_DL_TYPE, "%04x", ntohs(om->dl_type));
399     print_wild(f, " ip[", w & OFPFW_NW_SRC, IP_FMT, IP_ARGS(&om->nw_src));
400     print_wild(f, "->", w & OFPFW_NW_DST, IP_FMT, IP_ARGS(&om->nw_dst));
401     print_wild(f, "] proto", w & OFPFW_NW_PROTO, "%u", om->nw_proto);
402     print_wild(f, " tport[", w & OFPFW_TP_SRC, "%d", ntohs(om->tp_src));
403     print_wild(f, "->", w & OFPFW_TP_DST, "%d", ntohs(om->tp_dst));
404     ds_put_cstr(f, "]");
405 }
406
407 /* Pretty-print the OFPT_FLOW_MOD packet of 'len' bytes at 'oh' to 'string'
408  * at the given 'verbosity' level. */
409 static void
410 ofp_print_flow_mod(struct ds *string, const void *oh, size_t len, 
411                    int verbosity)
412 {
413     const struct ofp_flow_mod *ofm = oh;
414
415     ofp_print_match(string, &ofm->match);
416     ds_put_format(string, " cmd:%d idle:%d pri:%d buf:%#x\n", 
417             ntohs(ofm->command), ntohs(ofm->max_idle), 
418             ofm->match.wildcards ? ntohs(ofm->priority) : (uint16_t)-1,
419             ntohl(ofm->buffer_id));
420 }
421
422 /* Pretty-print the OFPT_FLOW_EXPIRED packet of 'len' bytes at 'oh' to 'string'
423  * at the given 'verbosity' level. */
424 static void
425 ofp_print_flow_expired(struct ds *string, const void *oh, size_t len, 
426                        int verbosity)
427 {
428     const struct ofp_flow_expired *ofe = oh;
429
430     ofp_print_match(string, &ofe->match);
431     ds_put_format(string, 
432          " pri%"PRIu16" secs%"PRIu32" pkts%"PRIu64" bytes%"PRIu64"\n", 
433          ofe->match.wildcards ? ntohs(ofe->priority) : (uint16_t)-1,
434          ntohl(ofe->duration), ntohll(ofe->packet_count), 
435          ntohll(ofe->byte_count));
436 }
437
438 /* Pretty-print the OFPT_ERROR_MSG packet of 'len' bytes at 'oh' to 'string'
439  * at the given 'verbosity' level. */
440 static void
441 ofp_print_error_msg(struct ds *string, const void *oh, size_t len, 
442                        int verbosity)
443 {
444     const struct ofp_error_msg *oem = oh;
445
446     ds_put_format(string, 
447          " type%d code%d\n", ntohs(oem->type), ntohs(oem->code));
448 }
449
450 /* Pretty-print the OFPT_PORT_STATUS packet of 'len' bytes at 'oh' to 'string'
451  * at the given 'verbosity' level. */
452 static void
453 ofp_print_port_status(struct ds *string, const void *oh, size_t len, 
454                       int verbosity)
455 {
456     const struct ofp_port_status *ops = oh;
457
458     if (ops->reason == OFPPR_ADD) {
459         ds_put_format(string, "add:");
460     } else if (ops->reason == OFPPR_DELETE) {
461         ds_put_format(string, "del:");
462     } else if (ops->reason == OFPPR_MOD) {
463         ds_put_format(string, "mod:");
464     } else {
465         ds_put_format(string, "err:");
466     }
467
468     ofp_print_phy_port(string, &ops->desc);
469 }
470
471 static void
472 ofp_flow_stats_request(struct ds *string, const void *oh, size_t len,
473                       int verbosity) 
474 {
475     const struct ofp_flow_stats_request *fsr = oh;
476
477     if (fsr->table_id == 0xff) {
478         ds_put_format(string, " table_id=any, ");
479     } else {
480         ds_put_format(string, " table_id=%"PRIu8", ", fsr->table_id);
481     }
482
483     ofp_print_match(string, &fsr->match);
484 }
485
486 static void
487 ofp_flow_stats_reply(struct ds *string, const void *body_, size_t len,
488                      int verbosity)
489 {
490     const char *body = body_;
491     const char *pos = body;
492     for (;;) {
493         const struct ofp_flow_stats *fs;
494         ptrdiff_t bytes_left = body + len - pos;
495         size_t length;
496
497         if (bytes_left < sizeof *fs) {
498             if (bytes_left != 0) {
499                 ds_put_format(string, " ***%td leftover bytes at end***",
500                               bytes_left);
501             }
502             break;
503         }
504
505         fs = (const void *) pos;
506         length = ntohs(fs->length);
507         if (length < sizeof *fs) {
508             ds_put_format(string, " ***length=%zu shorter than minimum %zu***",
509                           length, sizeof *fs);
510             break;
511         } else if (length > bytes_left) {
512             ds_put_format(string,
513                           " ***length=%zu but only %td bytes left***",
514                           length, bytes_left);
515             break;
516         } else if ((length - sizeof *fs) % sizeof fs->actions[0]) {
517             ds_put_format(string,
518                           " ***length=%zu has %zu bytes leftover in "
519                           "final action***",
520                           length,
521                           (length - sizeof *fs) % sizeof fs->actions[0]);
522             break;
523         }
524
525         ds_put_format(string, "  duration=%"PRIu32"s, ", ntohl(fs->duration));
526         ds_put_format(string, "table_id=%"PRIu8", ", fs->table_id);
527         ds_put_format(string, "priority=%"PRIu16", ", 
528                     fs->match.wildcards ? ntohs(fs->priority) : (uint16_t)-1);
529         ds_put_format(string, "n_packets=%"PRIu64", ",
530                     ntohll(fs->packet_count));
531         ds_put_format(string, "n_bytes=%"PRIu64", ", ntohll(fs->byte_count));
532         ds_put_format(string, "max_idle=%"PRIu16",", ntohs(fs->max_idle));
533         ofp_print_match(string, &fs->match);
534         ofp_print_actions(string, fs->actions, length - sizeof *fs);
535         ds_put_char(string, '\n');
536
537         pos += length;
538      }
539 }
540
541 static void
542 ofp_aggregate_stats_request(struct ds *string, const void *oh, size_t len,
543                             int verbosity) 
544 {
545     const struct ofp_aggregate_stats_request *asr = oh;
546
547     if (asr->table_id == 0xff) {
548         ds_put_format(string, " table_id=any, ");
549     } else {
550         ds_put_format(string, " table_id=%"PRIu8", ", asr->table_id);
551     }
552
553     ofp_print_match(string, &asr->match);
554 }
555
556 static void
557 ofp_aggregate_stats_reply(struct ds *string, const void *body_, size_t len,
558                           int verbosity)
559 {
560     const struct ofp_aggregate_stats_reply *asr = body_;
561
562     ds_put_format(string, " packet_count=%"PRIu64, ntohll(asr->packet_count));
563     ds_put_format(string, " byte_count=%"PRIu64, ntohll(asr->byte_count));
564     ds_put_format(string, " flow_count=%"PRIu32, ntohl(asr->flow_count));
565 }
566
567 static void
568 ofp_port_stats_reply(struct ds *string, const void *body, size_t len,
569                      int verbosity)
570 {
571     const struct ofp_port_stats *ps = body;
572     size_t n = len / sizeof *ps;
573     ds_put_format(string, " %zu ports\n", n);
574     if (verbosity < 1) {
575         return;
576     }
577
578     for (; n--; ps++) {
579         ds_put_format(string, "  port %"PRIu16": ", ntohs(ps->port_no));
580         ds_put_format(string, "rx %"PRIu64", ", ntohll(ps->rx_count));
581         ds_put_format(string, "tx %"PRIu64", ", ntohll(ps->tx_count));
582         ds_put_format(string, "dropped %"PRIu64"\n", ntohll(ps->drop_count));
583     }
584 }
585
586 static void
587 ofp_table_stats_reply(struct ds *string, const void *body, size_t len,
588                      int verbosity)
589 {
590     const struct ofp_table_stats *ts = body;
591     size_t n = len / sizeof *ts;
592     ds_put_format(string, " %zu tables\n", n);
593     if (verbosity < 1) {
594         return;
595     }
596
597     for (; n--; ts++) {
598         char name[OFP_MAX_TABLE_NAME_LEN + 1];
599         strncpy(name, ts->name, sizeof name);
600         name[OFP_MAX_TABLE_NAME_LEN] = '\0';
601
602         ds_put_format(string, "  table %"PRIu8": ", ts->table_id);
603         ds_put_format(string, "name %-8s, ", name);
604         ds_put_format(string, "max %6"PRIu32", ", ntohl(ts->max_entries));
605         ds_put_format(string, "active %6"PRIu32", ", ntohl(ts->active_count));
606         ds_put_format(string, "matched %6"PRIu64"\n",
607                       ntohll(ts->matched_count));
608      }
609 }
610
611 enum stats_direction {
612     REQUEST,
613     REPLY
614 };
615
616 static void
617 print_stats(struct ds *string, int type, const void *body, size_t body_len,
618             int verbosity, enum stats_direction direction)
619 {
620     struct stats_msg {
621         size_t min_body, max_body;
622         void (*printer)(struct ds *, const void *, size_t len, int verbosity);
623     };
624
625     struct stats_type {
626         const char *name;
627         struct stats_msg request;
628         struct stats_msg reply;
629     };
630
631     static const struct stats_type stats_types[] = {
632         [OFPST_FLOW] = {
633             "flow",
634             { sizeof(struct ofp_flow_stats_request),
635               sizeof(struct ofp_flow_stats_request),
636               ofp_flow_stats_request },
637             { 0, SIZE_MAX, ofp_flow_stats_reply },
638         },
639         [OFPST_AGGREGATE] = {
640             "aggregate",
641             { sizeof(struct ofp_aggregate_stats_request),
642               sizeof(struct ofp_aggregate_stats_request),
643               ofp_aggregate_stats_request },
644             { sizeof(struct ofp_aggregate_stats_reply),
645               sizeof(struct ofp_aggregate_stats_reply),
646               ofp_aggregate_stats_reply },
647         },
648         [OFPST_TABLE] = {
649             "table",
650             { 0, 0, NULL },
651             { 0, SIZE_MAX, ofp_table_stats_reply },
652         },
653         [OFPST_PORT] = {
654             "port",
655             { 0, 0, NULL, },
656             { 0, SIZE_MAX, ofp_port_stats_reply },
657         },
658     };
659
660     const struct stats_type *s;
661     const struct stats_msg *m;
662
663     if (type >= ARRAY_SIZE(stats_types) || !stats_types[type].name) {
664         ds_put_format(string, " ***unknown type %d***", type);
665         return;
666     }
667     s = &stats_types[type];
668     ds_put_format(string, " type=%d(%s)\n", type, s->name);
669
670     m = direction == REQUEST ? &s->request : &s->reply;
671     if (body_len < m->min_body || body_len > m->max_body) {
672         ds_put_format(string, " ***body_len=%zu not in %zu...%zu***",
673                       body_len, m->min_body, m->max_body);
674         return;
675     }
676     if (m->printer) {
677         m->printer(string, body, body_len, verbosity);
678     }
679 }
680
681 static void
682 ofp_stats_request(struct ds *string, const void *oh, size_t len, int verbosity)
683 {
684     const struct ofp_stats_request *srq = oh;
685
686     if (srq->flags) {
687         ds_put_format(string, " ***unknown flags %04"PRIx16"***",
688                       ntohs(srq->flags));
689     }
690
691     print_stats(string, ntohs(srq->type), srq->body,
692                 len - offsetof(struct ofp_stats_request, body),
693                 verbosity, REQUEST);
694 }
695
696 static void
697 ofp_stats_reply(struct ds *string, const void *oh, size_t len, int verbosity)
698 {
699     const struct ofp_stats_reply *srp = oh;
700
701     ds_put_cstr(string, " flags=");
702     if (!srp->flags) {
703         ds_put_cstr(string, "none");
704     } else {
705         uint16_t flags = ntohs(srp->flags);
706         if (flags & OFPSF_REPLY_MORE) {
707             ds_put_cstr(string, "[more]");
708             flags &= ~OFPSF_REPLY_MORE;
709         }
710         if (flags) {
711             ds_put_format(string, "[***unknown%04"PRIx16"***]", flags);
712         }
713     }
714
715     print_stats(string, ntohs(srp->type), srp->body,
716                 len - offsetof(struct ofp_stats_reply, body),
717                 verbosity, REPLY);
718 }
719
720 struct openflow_packet {
721     const char *name;
722     size_t min_size;
723     void (*printer)(struct ds *, const void *, size_t len, int verbosity);
724 };
725
726 static const struct openflow_packet packets[] = {
727     [OFPT_FEATURES_REQUEST] = {
728         "features_request",
729         sizeof (struct ofp_header),
730         NULL,
731     },
732     [OFPT_FEATURES_REPLY] = {
733         "features_reply",
734         sizeof (struct ofp_switch_features),
735         ofp_print_switch_features,
736     },
737     [OFPT_GET_CONFIG_REQUEST] = {
738         "get_config_request",
739         sizeof (struct ofp_header),
740         NULL,
741     },
742     [OFPT_GET_CONFIG_REPLY] = {
743         "get_config_reply",
744         sizeof (struct ofp_switch_config),
745         ofp_print_switch_config,
746     },
747     [OFPT_SET_CONFIG] = {
748         "set_config",
749         sizeof (struct ofp_switch_config),
750         ofp_print_switch_config,
751     },
752     [OFPT_PACKET_IN] = {
753         "packet_in",
754         offsetof(struct ofp_packet_in, data),
755         ofp_packet_in,
756     },
757     [OFPT_PACKET_OUT] = {
758         "packet_out",
759         sizeof (struct ofp_packet_out),
760         ofp_packet_out,
761     },
762     [OFPT_FLOW_MOD] = {
763         "flow_mod",
764         sizeof (struct ofp_flow_mod),
765         ofp_print_flow_mod,
766     },
767     [OFPT_FLOW_EXPIRED] = {
768         "flow_expired",
769         sizeof (struct ofp_flow_expired),
770         ofp_print_flow_expired,
771     },
772     [OFPT_PORT_MOD] = {
773         "port_mod",
774         sizeof (struct ofp_port_mod),
775         NULL,
776     },
777     [OFPT_PORT_STATUS] = {
778         "port_status",
779         sizeof (struct ofp_port_status),
780         ofp_print_port_status
781     },
782     [OFPT_ERROR_MSG] = {
783         "error_msg",
784         sizeof (struct ofp_error_msg),
785         ofp_print_error_msg,
786     },
787     [OFPT_STATS_REQUEST] = {
788         "stats_request",
789         sizeof (struct ofp_stats_request),
790         ofp_stats_request,
791     },
792     [OFPT_STATS_REPLY] = {
793         "stats_reply",
794         sizeof (struct ofp_stats_reply),
795         ofp_stats_reply,
796     },
797 };
798
799 /* Composes and returns a string representing the OpenFlow packet of 'len'
800  * bytes at 'oh' at the given 'verbosity' level.  0 is a minimal amount of
801  * verbosity and higher numbers increase verbosity.  The caller is responsible
802  * for freeing the string. */
803 char *
804 ofp_to_string(const void *oh_, size_t len, int verbosity)
805 {
806     struct ds string = DS_EMPTY_INITIALIZER;
807     const struct ofp_header *oh = oh_;
808     const struct openflow_packet *pkt;
809
810     if (len < sizeof(struct ofp_header)) {
811         ds_put_cstr(&string, "OpenFlow packet too short:\n");
812         ds_put_hex_dump(&string, oh, len, 0, true);
813         return ds_cstr(&string);
814     } else if (oh->version != OFP_VERSION) {
815         ds_put_format(&string, "Bad OpenFlow version %"PRIu8":\n", oh->version);
816         ds_put_hex_dump(&string, oh, len, 0, true);
817         return ds_cstr(&string);
818     } else if (oh->type >= ARRAY_SIZE(packets) || !packets[oh->type].name) {
819         ds_put_format(&string, "Unknown OpenFlow packet type %"PRIu8":\n",
820                 oh->type);
821         ds_put_hex_dump(&string, oh, len, 0, true);
822         return ds_cstr(&string);
823     }
824
825     pkt = &packets[oh->type];
826     ds_put_format(&string, "%s (xid=%"PRIx32"):", pkt->name, oh->xid);
827
828     if (ntohs(oh->length) > len)
829         ds_put_format(&string, " (***truncated to %zu bytes from %"PRIu16"***)",
830                 len, ntohs(oh->length));
831     else if (ntohs(oh->length) < len) {
832         ds_put_format(&string, " (***only uses %"PRIu16" bytes out of %zu***)\n",
833                 ntohs(oh->length), len);
834         len = ntohs(oh->length);
835     }
836
837     if (len < pkt->min_size) {
838         ds_put_format(&string, " (***length=%zu < min_size=%zu***)\n",
839                 len, pkt->min_size);
840     } else if (!pkt->printer) {
841         if (len > sizeof *oh) {
842             ds_put_format(&string, " length=%"PRIu16" (decoder not implemented)\n",
843                           ntohs(oh->length)); 
844         }
845     } else {
846         pkt->printer(&string, oh, len, verbosity);
847     }
848     if (verbosity >= 3) {
849         ds_put_hex_dump(&string, oh, len, 0, true);
850     }
851     if (string.string[string.length - 1] != '\n') {
852         ds_put_char(&string, '\n');
853     }
854     return ds_cstr(&string);
855 }
856 \f
857 static void
858 print_and_free(FILE *stream, char *string) 
859 {
860     fputs(string, stream);
861     free(string);
862 }
863
864 /* Pretty-print the OpenFlow packet of 'len' bytes at 'oh' to 'stream' at the
865  * given 'verbosity' level.  0 is a minimal amount of verbosity and higher
866  * numbers increase verbosity. */
867 void
868 ofp_print(FILE *stream, const void *oh, size_t len, int verbosity)
869 {
870     print_and_free(stream, ofp_to_string(oh, len, verbosity));
871 }
872
873 /* Dumps the contents of the Ethernet frame in the 'len' bytes starting at
874  * 'data' to 'stream' using tcpdump.  'total_len' specifies the full length of
875  * the Ethernet frame (of which 'len' bytes were captured).
876  *
877  * This starts and kills a tcpdump subprocess so it's quite expensive. */
878 void
879 ofp_print_packet(FILE *stream, const void *data, size_t len, size_t total_len)
880 {
881     print_and_free(stream, ofp_packet_to_string(data, len, total_len));
882 }