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