ofp-print: Print durations more readably.
[sliver-openvswitch.git] / lib / ofp-print.c
1 /*
2  * Copyright (c) 2008, 2009, 2010 Nicira Networks.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at:
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #include <config.h>
18 #include "ofp-print.h"
19
20 #include <errno.h>
21 #include <inttypes.h>
22 #include <sys/types.h>
23 #include <netinet/in.h>
24 #include <sys/wait.h>
25 #include <stdarg.h>
26 #include <stdlib.h>
27 #include <ctype.h>
28
29 #include "byte-order.h"
30 #include "compiler.h"
31 #include "dynamic-string.h"
32 #include "flow.h"
33 #include "nx-match.h"
34 #include "ofp-util.h"
35 #include "ofpbuf.h"
36 #include "openflow/openflow.h"
37 #include "openflow/nicira-ext.h"
38 #include "packets.h"
39 #include "pcap.h"
40 #include "util.h"
41
42 static void ofp_print_port_name(struct ds *string, uint16_t port);
43 static void ofp_print_queue_name(struct ds *string, uint32_t port);
44 static void ofp_print_error(struct ds *, int error);
45
46
47 /* Returns a string that represents the contents of the Ethernet frame in the
48  * 'len' bytes starting at 'data' to 'stream' as output by tcpdump.
49  * 'total_len' specifies the full length of the Ethernet frame (of which 'len'
50  * bytes were captured).
51  *
52  * The caller must free the returned string.
53  *
54  * This starts and kills a tcpdump subprocess so it's quite expensive. */
55 char *
56 ofp_packet_to_string(const void *data, size_t len, size_t total_len OVS_UNUSED)
57 {
58     struct ds ds = DS_EMPTY_INITIALIZER;
59     struct ofpbuf buf;
60
61     char command[128];
62     FILE *pcap;
63     FILE *tcpdump;
64     int status;
65     int c;
66
67     ofpbuf_use_const(&buf, data, len);
68
69     pcap = tmpfile();
70     if (!pcap) {
71         ovs_error(errno, "tmpfile");
72         return xstrdup("<error>");
73     }
74     pcap_write_header(pcap);
75     pcap_write(pcap, &buf);
76     fflush(pcap);
77     if (ferror(pcap)) {
78         ovs_error(errno, "error writing temporary file");
79     }
80     rewind(pcap);
81
82     snprintf(command, sizeof command, "/usr/sbin/tcpdump -e -n -r /dev/fd/%d 2>/dev/null",
83              fileno(pcap));
84     tcpdump = popen(command, "r");
85     fclose(pcap);
86     if (!tcpdump) {
87         ovs_error(errno, "exec(\"%s\")", command);
88         return xstrdup("<error>");
89     }
90
91     while ((c = getc(tcpdump)) != EOF) {
92         ds_put_char(&ds, c);
93     }
94
95     status = pclose(tcpdump);
96     if (WIFEXITED(status)) {
97         if (WEXITSTATUS(status))
98             ovs_error(0, "tcpdump exited with status %d", WEXITSTATUS(status));
99     } else if (WIFSIGNALED(status)) {
100         ovs_error(0, "tcpdump exited with signal %d", WTERMSIG(status));
101     }
102     return ds_cstr(&ds);
103 }
104
105 static void
106 ofp_print_packet_in(struct ds *string, const struct ofp_packet_in *op,
107                     int verbosity)
108 {
109     size_t len = ntohs(op->header.length);
110     size_t data_len;
111
112     ds_put_format(string, " total_len=%"PRIu16" in_port=",
113                   ntohs(op->total_len));
114     ofp_print_port_name(string, ntohs(op->in_port));
115
116     if (op->reason == OFPR_ACTION)
117         ds_put_cstr(string, " (via action)");
118     else if (op->reason != OFPR_NO_MATCH)
119         ds_put_format(string, " (***reason %"PRIu8"***)", op->reason);
120
121     data_len = len - offsetof(struct ofp_packet_in, data);
122     ds_put_format(string, " data_len=%zu", data_len);
123     if (htonl(op->buffer_id) == UINT32_MAX) {
124         ds_put_format(string, " (unbuffered)");
125         if (ntohs(op->total_len) != data_len)
126             ds_put_format(string, " (***total_len != data_len***)");
127     } else {
128         ds_put_format(string, " buffer=0x%08"PRIx32, ntohl(op->buffer_id));
129         if (ntohs(op->total_len) < data_len)
130             ds_put_format(string, " (***total_len < data_len***)");
131     }
132     ds_put_char(string, '\n');
133
134     if (verbosity > 0) {
135         struct flow flow;
136         struct ofpbuf packet;
137
138         ofpbuf_use_const(&packet, op->data, data_len);
139         flow_extract(&packet, 0, ntohs(op->in_port), &flow);
140         flow_format(string, &flow);
141         ds_put_char(string, '\n');
142     }
143     if (verbosity > 1) {
144         char *packet = ofp_packet_to_string(op->data, data_len,
145                                             ntohs(op->total_len));
146         ds_put_cstr(string, packet);
147         free(packet);
148     }
149 }
150
151 static void ofp_print_port_name(struct ds *string, uint16_t port)
152 {
153     const char *name;
154     switch (port) {
155     case OFPP_IN_PORT:
156         name = "IN_PORT";
157         break;
158     case OFPP_TABLE:
159         name = "TABLE";
160         break;
161     case OFPP_NORMAL:
162         name = "NORMAL";
163         break;
164     case OFPP_FLOOD:
165         name = "FLOOD";
166         break;
167     case OFPP_ALL:
168         name = "ALL";
169         break;
170     case OFPP_CONTROLLER:
171         name = "CONTROLLER";
172         break;
173     case OFPP_LOCAL:
174         name = "LOCAL";
175         break;
176     case OFPP_NONE:
177         name = "NONE";
178         break;
179     default:
180         ds_put_format(string, "%"PRIu16, port);
181         return;
182     }
183     ds_put_cstr(string, name);
184 }
185
186 static void
187 print_note(struct ds *string, const struct nx_action_note *nan)
188 {
189     size_t len;
190     size_t i;
191
192     ds_put_cstr(string, "note:");
193     len = ntohs(nan->len) - offsetof(struct nx_action_note, note);
194     for (i = 0; i < len; i++) {
195         if (i) {
196             ds_put_char(string, '.');
197         }
198         ds_put_format(string, "%02"PRIx8, nan->note[i]);
199     }
200 }
201
202 static void
203 ofp_print_nx_action(struct ds *string, const struct nx_action_header *nah)
204 {
205     switch (ntohs(nah->subtype)) {
206     case NXAST_RESUBMIT: {
207         const struct nx_action_resubmit *nar = (struct nx_action_resubmit *)nah;
208         ds_put_format(string, "resubmit:");
209         ofp_print_port_name(string, ntohs(nar->in_port));
210         break;
211     }
212
213     case NXAST_SET_TUNNEL: {
214         const struct nx_action_set_tunnel *nast =
215                                             (struct nx_action_set_tunnel *)nah;
216         ds_put_format(string, "set_tunnel:%#"PRIx32, ntohl(nast->tun_id));
217         break;
218     }
219
220     case NXAST_DROP_SPOOFED_ARP:
221         ds_put_cstr(string, "drop_spoofed_arp");
222         break;
223
224     case NXAST_SET_QUEUE: {
225         const struct nx_action_set_queue *nasq =
226                                             (struct nx_action_set_queue *)nah;
227         ds_put_format(string, "set_queue:%u", ntohl(nasq->queue_id));
228         break;
229     }
230
231     case NXAST_POP_QUEUE:
232         ds_put_cstr(string, "pop_queue");
233         break;
234
235     case NXAST_NOTE:
236         print_note(string, (const struct nx_action_note *) nah);
237         break;
238
239     default:
240         ds_put_format(string, "***unknown Nicira action:%d***",
241                       ntohs(nah->subtype));
242     }
243 }
244
245 static int
246 ofp_print_action(struct ds *string, const struct ofp_action_header *ah,
247         size_t actions_len)
248 {
249     uint16_t type;
250     size_t len;
251
252     struct openflow_action {
253         size_t min_size;
254         size_t max_size;
255     };
256
257     const struct openflow_action of_actions[] = {
258         [OFPAT_OUTPUT] = {
259             sizeof(struct ofp_action_output),
260             sizeof(struct ofp_action_output),
261         },
262         [OFPAT_SET_VLAN_VID] = {
263             sizeof(struct ofp_action_vlan_vid),
264             sizeof(struct ofp_action_vlan_vid),
265         },
266         [OFPAT_SET_VLAN_PCP] = {
267             sizeof(struct ofp_action_vlan_pcp),
268             sizeof(struct ofp_action_vlan_pcp),
269         },
270         [OFPAT_STRIP_VLAN] = {
271             sizeof(struct ofp_action_header),
272             sizeof(struct ofp_action_header),
273         },
274         [OFPAT_SET_DL_SRC] = {
275             sizeof(struct ofp_action_dl_addr),
276             sizeof(struct ofp_action_dl_addr),
277         },
278         [OFPAT_SET_DL_DST] = {
279             sizeof(struct ofp_action_dl_addr),
280             sizeof(struct ofp_action_dl_addr),
281         },
282         [OFPAT_SET_NW_SRC] = {
283             sizeof(struct ofp_action_nw_addr),
284             sizeof(struct ofp_action_nw_addr),
285         },
286         [OFPAT_SET_NW_DST] = {
287             sizeof(struct ofp_action_nw_addr),
288             sizeof(struct ofp_action_nw_addr),
289         },
290         [OFPAT_SET_NW_TOS] = {
291             sizeof(struct ofp_action_nw_tos),
292             sizeof(struct ofp_action_nw_tos),
293         },
294         [OFPAT_SET_TP_SRC] = {
295             sizeof(struct ofp_action_tp_port),
296             sizeof(struct ofp_action_tp_port),
297         },
298         [OFPAT_SET_TP_DST] = {
299             sizeof(struct ofp_action_tp_port),
300             sizeof(struct ofp_action_tp_port),
301         },
302         [OFPAT_ENQUEUE] = {
303             sizeof(struct ofp_action_enqueue),
304             sizeof(struct ofp_action_enqueue),
305         }
306         /* OFPAT_VENDOR is not here, since it would blow up the array size. */
307     };
308
309     if (actions_len < sizeof *ah) {
310         ds_put_format(string, "***action array too short for next action***\n");
311         return -1;
312     }
313
314     type = ntohs(ah->type);
315     len = ntohs(ah->len);
316     if (actions_len < len) {
317         ds_put_format(string, "***truncated action %"PRIu16"***\n", type);
318         return -1;
319     }
320
321     if (!len) {
322         ds_put_format(string, "***zero-length action***\n");
323         return 8;
324     }
325
326     if ((len % OFP_ACTION_ALIGN) != 0) {
327         ds_put_format(string,
328                       "***action %"PRIu16" length not a multiple of %d***\n",
329                       type, OFP_ACTION_ALIGN);
330         return -1;
331     }
332
333     if (type < ARRAY_SIZE(of_actions)) {
334         const struct openflow_action *act = &of_actions[type];
335         if ((len < act->min_size) || (len > act->max_size)) {
336             ds_put_format(string,
337                     "***action %"PRIu16" wrong length: %zu***\n", type, len);
338             return -1;
339         }
340     }
341
342     switch (type) {
343     case OFPAT_OUTPUT: {
344         struct ofp_action_output *oa = (struct ofp_action_output *)ah;
345         uint16_t port = ntohs(oa->port);
346         if (port < OFPP_MAX) {
347             ds_put_format(string, "output:%"PRIu16, port);
348         } else {
349             ofp_print_port_name(string, port);
350             if (port == OFPP_CONTROLLER) {
351                 if (oa->max_len) {
352                     ds_put_format(string, ":%"PRIu16, ntohs(oa->max_len));
353                 } else {
354                     ds_put_cstr(string, ":all");
355                 }
356             }
357         }
358         break;
359     }
360
361     case OFPAT_ENQUEUE: {
362         struct ofp_action_enqueue *ea = (struct ofp_action_enqueue *)ah;
363         unsigned int port = ntohs(ea->port);
364         unsigned int queue_id = ntohl(ea->queue_id);
365         ds_put_format(string, "enqueue:");
366         if (port != OFPP_IN_PORT) {
367             ds_put_format(string, "%u", port);
368         } else {
369             ds_put_cstr(string, "IN_PORT");
370         }
371         ds_put_format(string, "q%u", queue_id);
372         break;
373     }
374
375     case OFPAT_SET_VLAN_VID: {
376         struct ofp_action_vlan_vid *va = (struct ofp_action_vlan_vid *)ah;
377         ds_put_format(string, "mod_vlan_vid:%"PRIu16, ntohs(va->vlan_vid));
378         break;
379     }
380
381     case OFPAT_SET_VLAN_PCP: {
382         struct ofp_action_vlan_pcp *va = (struct ofp_action_vlan_pcp *)ah;
383         ds_put_format(string, "mod_vlan_pcp:%"PRIu8, va->vlan_pcp);
384         break;
385     }
386
387     case OFPAT_STRIP_VLAN:
388         ds_put_cstr(string, "strip_vlan");
389         break;
390
391     case OFPAT_SET_DL_SRC: {
392         struct ofp_action_dl_addr *da = (struct ofp_action_dl_addr *)ah;
393         ds_put_format(string, "mod_dl_src:"ETH_ADDR_FMT,
394                 ETH_ADDR_ARGS(da->dl_addr));
395         break;
396     }
397
398     case OFPAT_SET_DL_DST: {
399         struct ofp_action_dl_addr *da = (struct ofp_action_dl_addr *)ah;
400         ds_put_format(string, "mod_dl_dst:"ETH_ADDR_FMT,
401                 ETH_ADDR_ARGS(da->dl_addr));
402         break;
403     }
404
405     case OFPAT_SET_NW_SRC: {
406         struct ofp_action_nw_addr *na = (struct ofp_action_nw_addr *)ah;
407         ds_put_format(string, "mod_nw_src:"IP_FMT, IP_ARGS(&na->nw_addr));
408         break;
409     }
410
411     case OFPAT_SET_NW_DST: {
412         struct ofp_action_nw_addr *na = (struct ofp_action_nw_addr *)ah;
413         ds_put_format(string, "mod_nw_dst:"IP_FMT, IP_ARGS(&na->nw_addr));
414         break;
415     }
416
417     case OFPAT_SET_NW_TOS: {
418         struct ofp_action_nw_tos *nt = (struct ofp_action_nw_tos *)ah;
419         ds_put_format(string, "mod_nw_tos:%d", nt->nw_tos);
420         break;
421     }
422
423     case OFPAT_SET_TP_SRC: {
424         struct ofp_action_tp_port *ta = (struct ofp_action_tp_port *)ah;
425         ds_put_format(string, "mod_tp_src:%d", ntohs(ta->tp_port));
426         break;
427     }
428
429     case OFPAT_SET_TP_DST: {
430         struct ofp_action_tp_port *ta = (struct ofp_action_tp_port *)ah;
431         ds_put_format(string, "mod_tp_dst:%d", ntohs(ta->tp_port));
432         break;
433     }
434
435     case OFPAT_VENDOR: {
436         struct ofp_action_vendor_header *avh
437                 = (struct ofp_action_vendor_header *)ah;
438         if (len < sizeof *avh) {
439             ds_put_format(string, "***ofpat_vendor truncated***\n");
440             return -1;
441         }
442         if (avh->vendor == htonl(NX_VENDOR_ID)) {
443             ofp_print_nx_action(string, (struct nx_action_header *)avh);
444         } else {
445             ds_put_format(string, "vendor action:0x%x", ntohl(avh->vendor));
446         }
447         break;
448     }
449
450     default:
451         ds_put_format(string, "(decoder %"PRIu16" not implemented)", type);
452         break;
453     }
454
455     return len;
456 }
457
458 void
459 ofp_print_actions(struct ds *string, const struct ofp_action_header *action,
460                   size_t actions_len)
461 {
462     uint8_t *p = (uint8_t *)action;
463     int len = 0;
464
465     ds_put_cstr(string, "actions=");
466     if (!actions_len) {
467         ds_put_cstr(string, "drop");
468     }
469     while (actions_len > 0) {
470         if (len) {
471             ds_put_cstr(string, ",");
472         }
473         len = ofp_print_action(string, (struct ofp_action_header *)p,
474                 actions_len);
475         if (len < 0) {
476             return;
477         }
478         p += len;
479         actions_len -= len;
480     }
481 }
482
483 static void
484 ofp_print_packet_out(struct ds *string, const struct ofp_packet_out *opo,
485                      int verbosity)
486 {
487     size_t len = ntohs(opo->header.length);
488     size_t actions_len = ntohs(opo->actions_len);
489
490     ds_put_cstr(string, " in_port=");
491     ofp_print_port_name(string, ntohs(opo->in_port));
492
493     ds_put_format(string, " actions_len=%zu ", actions_len);
494     if (actions_len > (ntohs(opo->header.length) - sizeof *opo)) {
495         ds_put_format(string, "***packet too short for action length***\n");
496         return;
497     }
498     ofp_print_actions(string, opo->actions, actions_len);
499
500     if (ntohl(opo->buffer_id) == UINT32_MAX) {
501         int data_len = len - sizeof *opo - actions_len;
502         ds_put_format(string, " data_len=%d", data_len);
503         if (verbosity > 0 && len > sizeof *opo) {
504             char *packet = ofp_packet_to_string(
505                     (uint8_t *)opo->actions + actions_len, data_len, data_len);
506             ds_put_char(string, '\n');
507             ds_put_cstr(string, packet);
508             free(packet);
509         }
510     } else {
511         ds_put_format(string, " buffer=0x%08"PRIx32, ntohl(opo->buffer_id));
512     }
513     ds_put_char(string, '\n');
514 }
515
516 /* qsort comparison function. */
517 static int
518 compare_ports(const void *a_, const void *b_)
519 {
520     const struct ofp_phy_port *a = a_;
521     const struct ofp_phy_port *b = b_;
522     uint16_t ap = ntohs(a->port_no);
523     uint16_t bp = ntohs(b->port_no);
524
525     return ap < bp ? -1 : ap > bp;
526 }
527
528 static void ofp_print_port_features(struct ds *string, uint32_t features)
529 {
530     if (features == 0) {
531         ds_put_cstr(string, "Unsupported\n");
532         return;
533     }
534     if (features & OFPPF_10MB_HD) {
535         ds_put_cstr(string, "10MB-HD ");
536     }
537     if (features & OFPPF_10MB_FD) {
538         ds_put_cstr(string, "10MB-FD ");
539     }
540     if (features & OFPPF_100MB_HD) {
541         ds_put_cstr(string, "100MB-HD ");
542     }
543     if (features & OFPPF_100MB_FD) {
544         ds_put_cstr(string, "100MB-FD ");
545     }
546     if (features & OFPPF_1GB_HD) {
547         ds_put_cstr(string, "1GB-HD ");
548     }
549     if (features & OFPPF_1GB_FD) {
550         ds_put_cstr(string, "1GB-FD ");
551     }
552     if (features & OFPPF_10GB_FD) {
553         ds_put_cstr(string, "10GB-FD ");
554     }
555     if (features & OFPPF_COPPER) {
556         ds_put_cstr(string, "COPPER ");
557     }
558     if (features & OFPPF_FIBER) {
559         ds_put_cstr(string, "FIBER ");
560     }
561     if (features & OFPPF_AUTONEG) {
562         ds_put_cstr(string, "AUTO_NEG ");
563     }
564     if (features & OFPPF_PAUSE) {
565         ds_put_cstr(string, "AUTO_PAUSE ");
566     }
567     if (features & OFPPF_PAUSE_ASYM) {
568         ds_put_cstr(string, "AUTO_PAUSE_ASYM ");
569     }
570     ds_put_char(string, '\n');
571 }
572
573 static void
574 ofp_print_phy_port(struct ds *string, const struct ofp_phy_port *port)
575 {
576     char name[OFP_MAX_PORT_NAME_LEN];
577     int j;
578
579     memcpy(name, port->name, sizeof name);
580     for (j = 0; j < sizeof name - 1; j++) {
581         if (!isprint(name[j])) {
582             break;
583         }
584     }
585     name[j] = '\0';
586
587     ds_put_char(string, ' ');
588     ofp_print_port_name(string, ntohs(port->port_no));
589     ds_put_format(string, "(%s): addr:"ETH_ADDR_FMT", config: %#x, state:%#x\n",
590             name, ETH_ADDR_ARGS(port->hw_addr), ntohl(port->config),
591             ntohl(port->state));
592     if (port->curr) {
593         ds_put_format(string, "     current:    ");
594         ofp_print_port_features(string, ntohl(port->curr));
595     }
596     if (port->advertised) {
597         ds_put_format(string, "     advertised: ");
598         ofp_print_port_features(string, ntohl(port->advertised));
599     }
600     if (port->supported) {
601         ds_put_format(string, "     supported:  ");
602         ofp_print_port_features(string, ntohl(port->supported));
603     }
604     if (port->peer) {
605         ds_put_format(string, "     peer:       ");
606         ofp_print_port_features(string, ntohl(port->peer));
607     }
608 }
609
610 static void
611 ofp_print_switch_features(struct ds *string,
612                           const struct ofp_switch_features *osf)
613 {
614     size_t len = ntohs(osf->header.length);
615     struct ofp_phy_port *port_list;
616     int n_ports;
617     int i;
618
619     ds_put_format(string, " ver:0x%x, dpid:%016"PRIx64"\n",
620             osf->header.version, ntohll(osf->datapath_id));
621     ds_put_format(string, "n_tables:%d, n_buffers:%d\n", osf->n_tables,
622             ntohl(osf->n_buffers));
623     ds_put_format(string, "features: capabilities:%#x, actions:%#x\n",
624            ntohl(osf->capabilities), ntohl(osf->actions));
625
626     n_ports = (len - sizeof *osf) / sizeof *osf->ports;
627
628     port_list = xmemdup(osf->ports, len - sizeof *osf);
629     qsort(port_list, n_ports, sizeof *port_list, compare_ports);
630     for (i = 0; i < n_ports; i++) {
631         ofp_print_phy_port(string, &port_list[i]);
632     }
633     free(port_list);
634 }
635
636 static void
637 ofp_print_switch_config(struct ds *string, const struct ofp_switch_config *osc)
638 {
639     uint16_t flags;
640
641     flags = ntohs(osc->flags);
642     if (flags) {
643         ds_put_format(string, " ***unknown flags 0x%04"PRIx16"***", flags);
644     }
645
646     ds_put_format(string, " miss_send_len=%"PRIu16"\n", ntohs(osc->miss_send_len));
647 }
648
649 static void print_wild(struct ds *string, const char *leader, int is_wild,
650             int verbosity, const char *format, ...)
651             __attribute__((format(printf, 5, 6)));
652
653 static void print_wild(struct ds *string, const char *leader, int is_wild,
654                        int verbosity, const char *format, ...)
655 {
656     if (is_wild && verbosity < 2) {
657         return;
658     }
659     ds_put_cstr(string, leader);
660     if (!is_wild) {
661         va_list args;
662
663         va_start(args, format);
664         ds_put_format_valist(string, format, args);
665         va_end(args);
666     } else {
667         ds_put_char(string, '*');
668     }
669     ds_put_char(string, ',');
670 }
671
672 static void
673 print_ip_netmask(struct ds *string, const char *leader, uint32_t ip,
674                  uint32_t wild_bits, int verbosity)
675 {
676     if (wild_bits >= 32 && verbosity < 2) {
677         return;
678     }
679     ds_put_cstr(string, leader);
680     if (wild_bits < 32) {
681         ds_put_format(string, IP_FMT, IP_ARGS(&ip));
682         if (wild_bits) {
683             ds_put_format(string, "/%d", 32 - wild_bits);
684         }
685     } else {
686         ds_put_char(string, '*');
687     }
688     ds_put_char(string, ',');
689 }
690
691 void
692 ofp_print_match(struct ds *f, const struct ofp_match *om, int verbosity)
693 {
694     char *s = ofp_match_to_string(om, verbosity);
695     ds_put_cstr(f, s);
696     free(s);
697 }
698
699 char *
700 ofp_match_to_string(const struct ofp_match *om, int verbosity)
701 {
702     struct ds f = DS_EMPTY_INITIALIZER;
703     uint32_t w = ntohl(om->wildcards);
704     bool skip_type = false;
705     bool skip_proto = false;
706
707     if (!(w & OFPFW_DL_TYPE)) {
708         skip_type = true;
709         if (om->dl_type == htons(ETH_TYPE_IP)) {
710             if (!(w & OFPFW_NW_PROTO)) {
711                 skip_proto = true;
712                 if (om->nw_proto == IP_TYPE_ICMP) {
713                     ds_put_cstr(&f, "icmp,");
714                 } else if (om->nw_proto == IP_TYPE_TCP) {
715                     ds_put_cstr(&f, "tcp,");
716                 } else if (om->nw_proto == IP_TYPE_UDP) {
717                     ds_put_cstr(&f, "udp,");
718                 } else {
719                     ds_put_cstr(&f, "ip,");
720                     skip_proto = false;
721                 }
722             } else {
723                 ds_put_cstr(&f, "ip,");
724             }
725         } else if (om->dl_type == htons(ETH_TYPE_ARP)) {
726             ds_put_cstr(&f, "arp,");
727         } else {
728             skip_type = false;
729         }
730     }
731     if (w & NXFW_TUN_ID) {
732         ds_put_cstr(&f, "tun_id_wild,");
733     }
734     print_wild(&f, "in_port=", w & OFPFW_IN_PORT, verbosity,
735                "%d", ntohs(om->in_port));
736     print_wild(&f, "dl_vlan=", w & OFPFW_DL_VLAN, verbosity,
737                "%d", ntohs(om->dl_vlan));
738     print_wild(&f, "dl_vlan_pcp=", w & OFPFW_DL_VLAN_PCP, verbosity,
739                "%d", om->dl_vlan_pcp);
740     print_wild(&f, "dl_src=", w & OFPFW_DL_SRC, verbosity,
741                ETH_ADDR_FMT, ETH_ADDR_ARGS(om->dl_src));
742     print_wild(&f, "dl_dst=", w & OFPFW_DL_DST, verbosity,
743                ETH_ADDR_FMT, ETH_ADDR_ARGS(om->dl_dst));
744     if (!skip_type) {
745         print_wild(&f, "dl_type=", w & OFPFW_DL_TYPE, verbosity,
746                    "0x%04x", ntohs(om->dl_type));
747     }
748     print_ip_netmask(&f, "nw_src=", om->nw_src,
749                      (w & OFPFW_NW_SRC_MASK) >> OFPFW_NW_SRC_SHIFT, verbosity);
750     print_ip_netmask(&f, "nw_dst=", om->nw_dst,
751                      (w & OFPFW_NW_DST_MASK) >> OFPFW_NW_DST_SHIFT, verbosity);
752     if (!skip_proto) {
753         if (om->dl_type == htons(ETH_TYPE_ARP)) {
754             print_wild(&f, "opcode=", w & OFPFW_NW_PROTO, verbosity,
755                        "%u", om->nw_proto);
756         } else {
757             print_wild(&f, "nw_proto=", w & OFPFW_NW_PROTO, verbosity,
758                        "%u", om->nw_proto);
759         }
760     }
761     print_wild(&f, "nw_tos=", w & OFPFW_NW_TOS, verbosity,
762                "%u", om->nw_tos);
763     if (om->nw_proto == IP_TYPE_ICMP) {
764         print_wild(&f, "icmp_type=", w & OFPFW_ICMP_TYPE, verbosity,
765                    "%d", ntohs(om->icmp_type));
766         print_wild(&f, "icmp_code=", w & OFPFW_ICMP_CODE, verbosity,
767                    "%d", ntohs(om->icmp_code));
768     } else {
769         print_wild(&f, "tp_src=", w & OFPFW_TP_SRC, verbosity,
770                    "%d", ntohs(om->tp_src));
771         print_wild(&f, "tp_dst=", w & OFPFW_TP_DST, verbosity,
772                    "%d", ntohs(om->tp_dst));
773     }
774     if (ds_last(&f) == ',') {
775         f.length--;
776     }
777     return ds_cstr(&f);
778 }
779
780 static void
781 ofp_print_flow_mod(struct ds *s, const struct ofp_header *oh,
782                    enum ofputil_msg_code code, int verbosity)
783 {
784     struct flow_mod fm;
785     int error;
786
787     error = ofputil_decode_flow_mod(&fm, oh, NXFF_OPENFLOW10);
788     if (error) {
789         ofp_print_error(s, error);
790         return;
791     }
792
793     ds_put_char(s, ' ');
794     switch (fm.command) {
795     case OFPFC_ADD:
796         ds_put_cstr(s, "ADD");
797         break;
798     case OFPFC_MODIFY:
799         ds_put_cstr(s, "MOD");
800         break;
801     case OFPFC_MODIFY_STRICT:
802         ds_put_cstr(s, "MOD_STRICT");
803         break;
804     case OFPFC_DELETE:
805         ds_put_cstr(s, "DEL");
806         break;
807     case OFPFC_DELETE_STRICT:
808         ds_put_cstr(s, "DEL_STRICT");
809         break;
810     default:
811         ds_put_format(s, "cmd:%d", fm.command);
812     }
813
814     ds_put_char(s, ' ');
815     if (verbosity >= 3 && code == OFPUTIL_OFPT_FLOW_MOD) {
816         const struct ofp_flow_mod *ofm = (const struct ofp_flow_mod *) oh;
817
818         ofp_print_match(s, &ofm->match, verbosity);
819     } else if (verbosity >= 3 && code == OFPUTIL_NXT_FLOW_MOD) {
820         const struct nx_flow_mod *nfm = (const struct nx_flow_mod *) oh;
821         const void *nxm = nfm + 1;
822         char *nxm_s = nx_match_to_string(nxm, ntohs(nfm->match_len));
823         ds_put_cstr(s, nxm_s);
824         free(nxm_s);
825     } else {
826         cls_rule_format(&fm.cr, s);
827     }
828
829     if (ds_last(s) != ' ') {
830         ds_put_char(s, ' ');
831     }
832     if (fm.cookie != htonll(0)) {
833         ds_put_format(s, "cookie:0x%"PRIx64" ", ntohll(fm.cookie));
834     }
835     if (fm.idle_timeout != OFP_FLOW_PERMANENT) {
836         ds_put_format(s, "idle:%"PRIu16" ", fm.idle_timeout);
837     }
838     if (fm.hard_timeout != OFP_FLOW_PERMANENT) {
839         ds_put_format(s, "hard:%"PRIu16" ", fm.hard_timeout);
840     }
841     if (fm.cr.priority != OFP_DEFAULT_PRIORITY && verbosity >= 3) {
842         ds_put_format(s, "pri:%"PRIu16" ", fm.cr.priority);
843     }
844     if (fm.buffer_id != UINT32_MAX) {
845         ds_put_format(s, "buf:0x%"PRIx32" ", fm.buffer_id);
846     }
847     if (fm.flags != 0) {
848         ds_put_format(s, "flags:0x%"PRIx16" ", fm.flags);
849     }
850
851     ofp_print_actions(s, (const struct ofp_action_header *) fm.actions,
852                       fm.n_actions * sizeof *fm.actions);
853 }
854
855 static void
856 ofp_print_duration(struct ds *string, unsigned int sec, unsigned int nsec)
857 {
858     ds_put_format(string, "%u", sec);
859     if (nsec > 0) {
860         ds_put_format(string, ".%09u", nsec);
861         while (string->string[string->length - 1] == '0') {
862             string->length--;
863         }
864     }
865     ds_put_char(string, 's');
866 }
867
868 static void
869 ofp_print_flow_removed(struct ds *string, const struct ofp_flow_removed *ofr,
870                        int verbosity)
871 {
872     ofp_print_match(string, &ofr->match, verbosity);
873     ds_put_cstr(string, " reason=");
874     switch (ofr->reason) {
875     case OFPRR_IDLE_TIMEOUT:
876         ds_put_cstr(string, "idle");
877         break;
878     case OFPRR_HARD_TIMEOUT:
879         ds_put_cstr(string, "hard");
880         break;
881     case OFPRR_DELETE:
882         ds_put_cstr(string, "delete");
883         break;
884     default:
885         ds_put_format(string, "**%"PRIu8"**", ofr->reason);
886         break;
887     }
888
889     if (ofr->cookie != htonll(0)) {
890         ds_put_format(string, " cookie:0x%"PRIx64, ntohll(ofr->cookie));
891     }
892     if (ofr->priority != htons(32768)) {
893         ds_put_format(string, " pri:%"PRIu16, ntohs(ofr->priority));
894     }
895     ds_put_cstr(string, " duration");
896     ofp_print_duration(string,
897                        ntohl(ofr->duration_sec), ntohl(ofr->duration_nsec));
898     ds_put_format(string, " idle%"PRIu16" pkts%"PRIu64" bytes%"PRIu64"\n",
899          ntohs(ofr->idle_timeout), ntohll(ofr->packet_count),
900          ntohll(ofr->byte_count));
901 }
902
903 static void
904 ofp_print_port_mod(struct ds *string, const struct ofp_port_mod *opm)
905 {
906     ds_put_format(string, "port: %d: addr:"ETH_ADDR_FMT", config: %#x, mask:%#x\n",
907             ntohs(opm->port_no), ETH_ADDR_ARGS(opm->hw_addr),
908             ntohl(opm->config), ntohl(opm->mask));
909     ds_put_format(string, "     advertise: ");
910     if (opm->advertise) {
911         ofp_print_port_features(string, ntohl(opm->advertise));
912     } else {
913         ds_put_format(string, "UNCHANGED\n");
914     }
915 }
916
917 struct error_type {
918     int type;
919     int code;
920     const char *name;
921 };
922
923 static const struct error_type error_types[] = {
924 #define ERROR_TYPE(TYPE) {TYPE, -1, #TYPE}
925 #define ERROR_CODE(TYPE, CODE) {TYPE, CODE, #CODE}
926     ERROR_TYPE(OFPET_HELLO_FAILED),
927     ERROR_CODE(OFPET_HELLO_FAILED, OFPHFC_INCOMPATIBLE),
928     ERROR_CODE(OFPET_HELLO_FAILED, OFPHFC_EPERM),
929
930     ERROR_TYPE(OFPET_BAD_REQUEST),
931     ERROR_CODE(OFPET_BAD_REQUEST, OFPBRC_BAD_VERSION),
932     ERROR_CODE(OFPET_BAD_REQUEST, OFPBRC_BAD_TYPE),
933     ERROR_CODE(OFPET_BAD_REQUEST, OFPBRC_BAD_STAT),
934     ERROR_CODE(OFPET_BAD_REQUEST, OFPBRC_BAD_VENDOR),
935     ERROR_CODE(OFPET_BAD_REQUEST, OFPBRC_BAD_SUBTYPE),
936     ERROR_CODE(OFPET_BAD_REQUEST, OFPBRC_EPERM),
937     ERROR_CODE(OFPET_BAD_REQUEST, OFPBRC_BAD_LEN),
938     ERROR_CODE(OFPET_BAD_REQUEST, OFPBRC_BUFFER_EMPTY),
939     ERROR_CODE(OFPET_BAD_REQUEST, OFPBRC_BUFFER_UNKNOWN),
940     /* Nicira error extensions. */
941     ERROR_CODE(OFPET_BAD_REQUEST, NXBRC_NXM_INVALID),
942     ERROR_CODE(OFPET_BAD_REQUEST, NXBRC_NXM_BAD_TYPE),
943     ERROR_CODE(OFPET_BAD_REQUEST, NXBRC_NXM_BAD_VALUE),
944     ERROR_CODE(OFPET_BAD_REQUEST, NXBRC_NXM_BAD_MASK),
945     ERROR_CODE(OFPET_BAD_REQUEST, NXBRC_NXM_BAD_PREREQ),
946     ERROR_CODE(OFPET_BAD_REQUEST, NXBRC_NXM_DUP_TYPE),
947
948     ERROR_TYPE(OFPET_BAD_ACTION),
949     ERROR_CODE(OFPET_BAD_ACTION, OFPBAC_BAD_TYPE),
950     ERROR_CODE(OFPET_BAD_ACTION, OFPBAC_BAD_LEN),
951     ERROR_CODE(OFPET_BAD_ACTION, OFPBAC_BAD_VENDOR),
952     ERROR_CODE(OFPET_BAD_ACTION, OFPBAC_BAD_VENDOR_TYPE),
953     ERROR_CODE(OFPET_BAD_ACTION, OFPBAC_BAD_OUT_PORT),
954     ERROR_CODE(OFPET_BAD_ACTION, OFPBAC_BAD_ARGUMENT),
955     ERROR_CODE(OFPET_BAD_ACTION, OFPBAC_EPERM),
956     ERROR_CODE(OFPET_BAD_ACTION, OFPBAC_TOO_MANY),
957
958     ERROR_TYPE(OFPET_FLOW_MOD_FAILED),
959     ERROR_CODE(OFPET_FLOW_MOD_FAILED, OFPFMFC_ALL_TABLES_FULL),
960     ERROR_CODE(OFPET_FLOW_MOD_FAILED, OFPFMFC_OVERLAP),
961     ERROR_CODE(OFPET_FLOW_MOD_FAILED, OFPFMFC_EPERM),
962     ERROR_CODE(OFPET_FLOW_MOD_FAILED, OFPFMFC_BAD_EMERG_TIMEOUT),
963     ERROR_CODE(OFPET_FLOW_MOD_FAILED, OFPFMFC_BAD_COMMAND),
964     /* Nicira error extenstions. */
965     ERROR_CODE(OFPET_FLOW_MOD_FAILED, NXFMFC_HARDWARE),
966     ERROR_CODE(OFPET_FLOW_MOD_FAILED, NXFMFC_BAD_TABLE_ID),
967
968     ERROR_TYPE(OFPET_PORT_MOD_FAILED),
969     ERROR_CODE(OFPET_PORT_MOD_FAILED, OFPPMFC_BAD_PORT),
970     ERROR_CODE(OFPET_PORT_MOD_FAILED, OFPPMFC_BAD_HW_ADDR)
971 };
972 #define N_ERROR_TYPES ARRAY_SIZE(error_types)
973
974 static const char *
975 lookup_error_type(int type)
976 {
977     const struct error_type *t;
978
979     for (t = error_types; t < &error_types[N_ERROR_TYPES]; t++) {
980         if (t->type == type && t->code == -1) {
981             return t->name;
982         }
983     }
984     return "?";
985 }
986
987 static const char *
988 lookup_error_code(int type, int code)
989 {
990     const struct error_type *t;
991
992     for (t = error_types; t < &error_types[N_ERROR_TYPES]; t++) {
993         if (t->type == type && t->code == code) {
994             return t->name;
995         }
996     }
997     return "?";
998 }
999
1000 static void
1001 ofp_print_error(struct ds *string, int error)
1002 {
1003     int type = get_ofp_err_type(error);
1004     int code = get_ofp_err_code(error);
1005     if (string->length) {
1006         ds_put_char(string, ' ');
1007     }
1008     ds_put_format(string, " ***decode error type:%d(%s) code:%d(%s)***",
1009                   type, lookup_error_type(type),
1010                   code, lookup_error_code(type, code));
1011 }
1012
1013 static void
1014 ofp_print_nx_error_msg(struct ds *string, const struct ofp_error_msg *oem)
1015 {
1016     size_t len = ntohs(oem->header.length);
1017     const struct nx_vendor_error *nve = (struct nx_vendor_error *)oem->data;
1018     int vendor = ntohl(nve->vendor);
1019     int type = ntohs(nve->type);
1020     int code = ntohs(nve->code);
1021
1022     ds_put_format(string, " vendor:%x type:%d(%s) code:%d(%s) payload:\n",
1023                   vendor,
1024                   type, lookup_error_type(type),
1025                   code, lookup_error_code(type, code));
1026
1027     ds_put_hex_dump(string, nve + 1, len - sizeof *oem - sizeof *nve,
1028                     0, true);
1029 }
1030
1031 static void
1032 ofp_print_error_msg(struct ds *string, const struct ofp_error_msg *oem)
1033 {
1034     size_t len = ntohs(oem->header.length);
1035     int type = ntohs(oem->type);
1036     int code = ntohs(oem->code);
1037     char *s;
1038
1039
1040     if (type == NXET_VENDOR && code == NXVC_VENDOR_ERROR) {
1041         if (len < sizeof *oem + sizeof(struct nx_vendor_error)) {
1042             ds_put_format(string,
1043                           "(***truncated extended error message is %zu bytes "
1044                           "when it should be at least %zu***)\n",
1045                           len, sizeof(struct nx_vendor_error));
1046             return;
1047         }
1048
1049         return ofp_print_nx_error_msg(string, oem);
1050     }
1051
1052     ds_put_format(string, " type:%d(%s) code:%d(%s) payload:\n",
1053                   type, lookup_error_type(type),
1054                   code, lookup_error_code(type, code));
1055
1056     switch (type) {
1057     case OFPET_HELLO_FAILED:
1058         ds_put_printable(string, (char *) oem->data, len - sizeof *oem);
1059         break;
1060
1061     case OFPET_BAD_REQUEST:
1062         s = ofp_to_string(oem->data, len - sizeof *oem, 1);
1063         ds_put_cstr(string, s);
1064         free(s);
1065         break;
1066
1067     default:
1068         ds_put_hex_dump(string, oem->data, len - sizeof *oem, 0, true);
1069         break;
1070     }
1071 }
1072
1073 static void
1074 ofp_print_port_status(struct ds *string, const struct ofp_port_status *ops)
1075 {
1076     if (ops->reason == OFPPR_ADD) {
1077         ds_put_format(string, " ADD:");
1078     } else if (ops->reason == OFPPR_DELETE) {
1079         ds_put_format(string, " DEL:");
1080     } else if (ops->reason == OFPPR_MODIFY) {
1081         ds_put_format(string, " MOD:");
1082     }
1083
1084     ofp_print_phy_port(string, &ops->desc);
1085 }
1086
1087 static void
1088 ofp_print_ofpst_desc_reply(struct ds *string, const struct ofp_header *oh)
1089 {
1090     const struct ofp_desc_stats *ods = ofputil_stats_body(oh);
1091
1092     ds_put_format(string, "Manufacturer: %.*s\n",
1093             (int) sizeof ods->mfr_desc, ods->mfr_desc);
1094     ds_put_format(string, "Hardware: %.*s\n",
1095             (int) sizeof ods->hw_desc, ods->hw_desc);
1096     ds_put_format(string, "Software: %.*s\n",
1097             (int) sizeof ods->sw_desc, ods->sw_desc);
1098     ds_put_format(string, "Serial Num: %.*s\n",
1099             (int) sizeof ods->serial_num, ods->serial_num);
1100     ds_put_format(string, "DP Description: %.*s\n",
1101             (int) sizeof ods->dp_desc, ods->dp_desc);
1102 }
1103
1104 static void
1105 ofp_print_ofpst_flow_request(struct ds *string, const struct ofp_header *oh,
1106                              int verbosity)
1107 {
1108     const struct ofp_flow_stats_request *fsr = ofputil_stats_body(oh);
1109
1110     if (fsr->table_id == 0xff) {
1111         ds_put_format(string, " table_id=any, ");
1112     } else {
1113         ds_put_format(string, " table_id=%"PRIu8", ", fsr->table_id);
1114     }
1115
1116     ofp_print_match(string, &fsr->match, verbosity);
1117 }
1118
1119 static void
1120 ofp_print_ofpst_flow_reply(struct ds *string, const struct ofp_header *oh,
1121                            int verbosity)
1122 {
1123     size_t len = ofputil_stats_body_len(oh);
1124     const char *body = ofputil_stats_body(oh);
1125     const char *pos = body;
1126     for (;;) {
1127         const struct ofp_flow_stats *fs;
1128         ptrdiff_t bytes_left = body + len - pos;
1129         size_t length;
1130
1131         ds_put_char(string, '\n');
1132
1133         if (bytes_left < sizeof *fs) {
1134             if (bytes_left != 0) {
1135                 ds_put_format(string, " ***%td leftover bytes at end***",
1136                               bytes_left);
1137             }
1138             break;
1139         }
1140
1141         fs = (const void *) pos;
1142         length = ntohs(fs->length);
1143         if (length < sizeof *fs) {
1144             ds_put_format(string, " ***length=%zu shorter than minimum %zu***",
1145                           length, sizeof *fs);
1146             break;
1147         } else if (length > bytes_left) {
1148             ds_put_format(string,
1149                           " ***length=%zu but only %td bytes left***",
1150                           length, bytes_left);
1151             break;
1152         } else if ((length - sizeof *fs) % sizeof fs->actions[0]) {
1153             ds_put_format(string,
1154                           " ***length=%zu has %zu bytes leftover in "
1155                           "final action***",
1156                           length,
1157                           (length - sizeof *fs) % sizeof fs->actions[0]);
1158             break;
1159         }
1160
1161         ds_put_format(string, " cookie=0x%"PRIx64", duration=",
1162                       ntohll(fs->cookie));
1163         ofp_print_duration(string, ntohl(fs->duration_sec),
1164                            ntohl(fs->duration_nsec));
1165         ds_put_format(string, ", table_id=%"PRIu8", ", fs->table_id);
1166         ds_put_format(string, "priority=%"PRIu16", ", ntohs(fs->priority));
1167         ds_put_format(string, "n_packets=%"PRIu64", ",
1168                     ntohll(fs->packet_count));
1169         ds_put_format(string, "n_bytes=%"PRIu64", ", ntohll(fs->byte_count));
1170         if (fs->idle_timeout != htons(OFP_FLOW_PERMANENT)) {
1171             ds_put_format(string, "idle_timeout=%"PRIu16",",
1172                           ntohs(fs->idle_timeout));
1173         }
1174         if (fs->hard_timeout != htons(OFP_FLOW_PERMANENT)) {
1175             ds_put_format(string, "hard_timeout=%"PRIu16",",
1176                           ntohs(fs->hard_timeout));
1177         }
1178         ofp_print_match(string, &fs->match, verbosity);
1179         ds_put_char(string, ' ');
1180         ofp_print_actions(string, fs->actions, length - sizeof *fs);
1181
1182         pos += length;
1183      }
1184 }
1185
1186 static void
1187 ofp_print_nxst_flow_reply(struct ds *string, const struct ofp_header *oh)
1188 {
1189     struct ofpbuf b;
1190
1191     ofpbuf_use_const(&b, ofputil_nxstats_body(oh),
1192                      ofputil_nxstats_body_len(oh));
1193     while (b.size > 0) {
1194         const struct nx_flow_stats *fs;
1195         union ofp_action *actions;
1196         struct cls_rule rule;
1197         size_t actions_len, n_actions;
1198         size_t length;
1199         int match_len;
1200         int error;
1201
1202         fs = ofpbuf_try_pull(&b, sizeof *fs);
1203         if (!fs) {
1204             ds_put_format(string, " ***%td leftover bytes at end***", b.size);
1205             break;
1206         }
1207
1208         length = ntohs(fs->length);
1209         if (length < sizeof *fs) {
1210             ds_put_format(string, " ***nx_flow_stats claims length %zu***",
1211                           length);
1212             break;
1213         }
1214
1215         match_len = ntohs(fs->match_len);
1216         if (match_len > length - sizeof *fs) {
1217             ds_put_format(string, " ***length=%zu match_len=%d***",
1218                           length, match_len);
1219             break;
1220         }
1221
1222         ds_put_format(string, " cookie=0x%"PRIx64", duration=",
1223                       ntohll(fs->cookie));
1224         ofp_print_duration(string, ntohl(fs->duration_sec),
1225                            ntohl(fs->duration_nsec));
1226         ds_put_format(string, ", table_id=%"PRIu8", ", fs->table_id);
1227         ds_put_format(string, "priority=%"PRIu16", ", ntohs(fs->priority));
1228         ds_put_format(string, "n_packets=%"PRIu64", ",
1229                     ntohll(fs->packet_count));
1230         ds_put_format(string, "n_bytes=%"PRIu64", ", ntohll(fs->byte_count));
1231         if (fs->idle_timeout != htons(OFP_FLOW_PERMANENT)) {
1232             ds_put_format(string, "idle_timeout=%"PRIu16",",
1233                           ntohs(fs->idle_timeout));
1234         }
1235         if (fs->hard_timeout != htons(OFP_FLOW_PERMANENT)) {
1236             ds_put_format(string, "hard_timeout=%"PRIu16",",
1237                           ntohs(fs->hard_timeout));
1238         }
1239
1240         error = nx_pull_match(&b, match_len, ntohs(fs->priority), &rule);
1241         if (error) {
1242             ofp_print_error(string, error);
1243             break;
1244         }
1245
1246         actions_len = length - sizeof *fs - ROUND_UP(match_len, 8);
1247         error = ofputil_pull_actions(&b, actions_len, &actions, &n_actions);
1248         if (error) {
1249             ofp_print_error(string, error);
1250             break;
1251         }
1252
1253         cls_rule_format(&rule, string);
1254         ds_put_char(string, ' ');
1255         ofp_print_actions(string, (const struct ofp_action_header *) actions,
1256                           n_actions * sizeof *actions);
1257         ds_put_char(string, '\n');
1258      }
1259 }
1260
1261 static void
1262 ofp_print_ofpst_aggregate_request(struct ds *string,
1263                                   const struct ofp_header *oh, int verbosity)
1264 {
1265     const struct ofp_aggregate_stats_request *asr = ofputil_stats_body(oh);
1266
1267     if (asr->table_id == 0xff) {
1268         ds_put_format(string, " table_id=any, ");
1269     } else {
1270         ds_put_format(string, " table_id=%"PRIu8", ", asr->table_id);
1271     }
1272
1273     ofp_print_match(string, &asr->match, verbosity);
1274 }
1275
1276 static void
1277 ofp_print_ofpst_aggregate_reply(struct ds *string, const struct ofp_header *oh)
1278 {
1279     const struct ofp_aggregate_stats_reply *asr = ofputil_stats_body(oh);
1280
1281     ds_put_format(string, " packet_count=%"PRIu64, ntohll(asr->packet_count));
1282     ds_put_format(string, " byte_count=%"PRIu64, ntohll(asr->byte_count));
1283     ds_put_format(string, " flow_count=%"PRIu32, ntohl(asr->flow_count));
1284 }
1285
1286 static void print_port_stat(struct ds *string, const char *leader,
1287                             uint64_t stat, int more)
1288 {
1289     ds_put_cstr(string, leader);
1290     if (stat != -1) {
1291         ds_put_format(string, "%"PRIu64, stat);
1292     } else {
1293         ds_put_char(string, '?');
1294     }
1295     if (more) {
1296         ds_put_cstr(string, ", ");
1297     } else {
1298         ds_put_cstr(string, "\n");
1299     }
1300 }
1301
1302 static void
1303 ofp_print_ofpst_port_request(struct ds *string, const struct ofp_header *oh)
1304 {
1305     const struct ofp_port_stats_request *psr = ofputil_stats_body(oh);
1306     ds_put_format(string, "port_no=%"PRIu16, ntohs(psr->port_no));
1307 }
1308
1309 static void
1310 ofp_print_ofpst_port_reply(struct ds *string, const struct ofp_header *oh,
1311                            int verbosity)
1312 {
1313     const struct ofp_port_stats *ps = ofputil_stats_body(oh);
1314     size_t n = ofputil_stats_body_len(oh) / sizeof *ps;
1315     ds_put_format(string, " %zu ports\n", n);
1316     if (verbosity < 1) {
1317         return;
1318     }
1319
1320     for (; n--; ps++) {
1321         ds_put_format(string, "  port %2"PRIu16": ", ntohs(ps->port_no));
1322
1323         ds_put_cstr(string, "rx ");
1324         print_port_stat(string, "pkts=", ntohll(ps->rx_packets), 1);
1325         print_port_stat(string, "bytes=", ntohll(ps->rx_bytes), 1);
1326         print_port_stat(string, "drop=", ntohll(ps->rx_dropped), 1);
1327         print_port_stat(string, "errs=", ntohll(ps->rx_errors), 1);
1328         print_port_stat(string, "frame=", ntohll(ps->rx_frame_err), 1);
1329         print_port_stat(string, "over=", ntohll(ps->rx_over_err), 1);
1330         print_port_stat(string, "crc=", ntohll(ps->rx_crc_err), 0);
1331
1332         ds_put_cstr(string, "           tx ");
1333         print_port_stat(string, "pkts=", ntohll(ps->tx_packets), 1);
1334         print_port_stat(string, "bytes=", ntohll(ps->tx_bytes), 1);
1335         print_port_stat(string, "drop=", ntohll(ps->tx_dropped), 1);
1336         print_port_stat(string, "errs=", ntohll(ps->tx_errors), 1);
1337         print_port_stat(string, "coll=", ntohll(ps->collisions), 0);
1338     }
1339 }
1340
1341 static void
1342 ofp_print_ofpst_table_reply(struct ds *string, const struct ofp_header *oh,
1343                             int verbosity)
1344 {
1345     const struct ofp_table_stats *ts = ofputil_stats_body(oh);
1346     size_t n = ofputil_stats_body_len(oh) / sizeof *ts;
1347     ds_put_format(string, " %zu tables\n", n);
1348     if (verbosity < 1) {
1349         return;
1350     }
1351
1352     for (; n--; ts++) {
1353         char name[OFP_MAX_TABLE_NAME_LEN + 1];
1354         strncpy(name, ts->name, sizeof name);
1355         name[OFP_MAX_TABLE_NAME_LEN] = '\0';
1356
1357         ds_put_format(string, "  %d: %-8s: ", ts->table_id, name);
1358         ds_put_format(string, "wild=0x%05"PRIx32", ", ntohl(ts->wildcards));
1359         ds_put_format(string, "max=%6"PRIu32", ", ntohl(ts->max_entries));
1360         ds_put_format(string, "active=%"PRIu32"\n", ntohl(ts->active_count));
1361         ds_put_cstr(string, "               ");
1362         ds_put_format(string, "lookup=%"PRIu64", ",
1363                     ntohll(ts->lookup_count));
1364         ds_put_format(string, "matched=%"PRIu64"\n",
1365                     ntohll(ts->matched_count));
1366      }
1367 }
1368
1369 static void
1370 ofp_print_queue_name(struct ds *string, uint32_t queue_id)
1371 {
1372     if (queue_id == OFPQ_ALL) {
1373         ds_put_cstr(string, "ALL");
1374     } else {
1375         ds_put_format(string, "%"PRIu32, queue_id);
1376     }
1377 }
1378
1379 static void
1380 ofp_print_ofpst_queue_request(struct ds *string, const struct ofp_header *oh)
1381 {
1382     const struct ofp_queue_stats_request *qsr = ofputil_stats_body(oh);
1383
1384     ds_put_cstr(string, "port=");
1385     ofp_print_port_name(string, ntohs(qsr->port_no));
1386
1387     ds_put_cstr(string, " queue=");
1388     ofp_print_queue_name(string, ntohl(qsr->queue_id));
1389 }
1390
1391 static void
1392 ofp_print_ofpst_queue_reply(struct ds *string, const struct ofp_header *oh,
1393                             int verbosity)
1394 {
1395     const struct ofp_queue_stats *qs = ofputil_stats_body(oh);
1396     size_t n = ofputil_stats_body_len(oh) / sizeof *qs;
1397     ds_put_format(string, " %zu queues\n", n);
1398     if (verbosity < 1) {
1399         return;
1400     }
1401
1402     for (; n--; qs++) {
1403         ds_put_cstr(string, "  port ");
1404         ofp_print_port_name(string, ntohs(qs->port_no));
1405         ds_put_cstr(string, " queue ");
1406         ofp_print_queue_name(string, ntohl(qs->queue_id));
1407         ds_put_cstr(string, ": ");
1408
1409         print_port_stat(string, "bytes=", ntohll(qs->tx_bytes), 1);
1410         print_port_stat(string, "pkts=", ntohll(qs->tx_packets), 1);
1411         print_port_stat(string, "errors=", ntohll(qs->tx_errors), 0);
1412     }
1413 }
1414
1415 static void
1416 ofp_print_stats_request(struct ds *string, const struct ofp_header *oh)
1417 {
1418     const struct ofp_stats_request *srq
1419         = (const struct ofp_stats_request *) oh;
1420
1421     if (srq->flags) {
1422         ds_put_format(string, " ***unknown flags 0x%04"PRIx16"***",
1423                       ntohs(srq->flags));
1424     }
1425 }
1426
1427 static void
1428 ofp_print_stats_reply(struct ds *string, const struct ofp_header *oh)
1429 {
1430     const struct ofp_stats_reply *srp = (const struct ofp_stats_reply *) oh;
1431
1432     if (srp->flags) {
1433         uint16_t flags = ntohs(srp->flags);
1434
1435         ds_put_cstr(string, " flags=");
1436         if (flags & OFPSF_REPLY_MORE) {
1437             ds_put_cstr(string, "[more]");
1438             flags &= ~OFPSF_REPLY_MORE;
1439         }
1440         if (flags) {
1441             ds_put_format(string, "[***unknown flags 0x%04"PRIx16"***]",
1442                           flags);
1443         }
1444     }
1445 }
1446
1447 static void
1448 ofp_print_echo(struct ds *string, const struct ofp_header *oh, int verbosity)
1449 {
1450     size_t len = ntohs(oh->length);
1451
1452     ds_put_format(string, " %zu bytes of payload\n", len - sizeof *oh);
1453     if (verbosity > 1) {
1454         ds_put_hex_dump(string, oh + 1, len - sizeof *oh, 0, true);
1455     }
1456 }
1457
1458 static void
1459 ofp_print_nxt_tun_id_from_cookie(struct ds *string,
1460                                  const struct nxt_tun_id_cookie *ntic)
1461 {
1462     ds_put_format(string, " set=%"PRIu8, ntic->set);
1463 }
1464
1465 static void
1466 ofp_print_nxt_set_flow_format(struct ds *string,
1467                               const struct nxt_set_flow_format *nsff)
1468 {
1469     uint32_t format = ntohl(nsff->format);
1470
1471     ds_put_cstr(string, " format=");
1472     if (ofputil_flow_format_is_valid(format)) {
1473         ds_put_cstr(string, ofputil_flow_format_to_string(format));
1474     } else {
1475         ds_put_format(string, "%"PRIu32, format);
1476     }
1477 }
1478
1479 static void
1480 ofp_to_string__(const struct ofp_header *oh,
1481                 const struct ofputil_msg_type *type, struct ds *string,
1482                 int verbosity)
1483 {
1484     enum ofputil_msg_code code;
1485     const void *msg = oh;
1486
1487     ds_put_format(string, "%s (xid=0x%"PRIx32"):",
1488                   ofputil_msg_type_name(type), ntohl(oh->xid));
1489
1490     code = ofputil_msg_type_code(type);
1491     switch (code) {
1492     case OFPUTIL_INVALID:
1493         break;
1494
1495     case OFPUTIL_OFPT_HELLO:
1496         break;
1497
1498     case OFPUTIL_OFPT_ERROR:
1499         ofp_print_error_msg(string, msg);
1500         break;
1501
1502     case OFPUTIL_OFPT_ECHO_REQUEST:
1503     case OFPUTIL_OFPT_ECHO_REPLY:
1504         ofp_print_echo(string, oh, verbosity);
1505         break;
1506
1507     case OFPUTIL_OFPT_FEATURES_REQUEST:
1508         break;
1509
1510     case OFPUTIL_OFPT_FEATURES_REPLY:
1511         ofp_print_switch_features(string, msg);
1512         break;
1513
1514     case OFPUTIL_OFPT_GET_CONFIG_REQUEST:
1515         break;
1516
1517     case OFPUTIL_OFPT_GET_CONFIG_REPLY:
1518     case OFPUTIL_OFPT_SET_CONFIG:
1519         ofp_print_switch_config(string, msg);
1520         break;
1521
1522     case OFPUTIL_OFPT_PACKET_IN:
1523         ofp_print_packet_in(string, msg, verbosity);
1524         break;
1525
1526     case OFPUTIL_OFPT_FLOW_REMOVED:
1527         ofp_print_flow_removed(string, msg, verbosity);
1528         break;
1529
1530     case OFPUTIL_OFPT_PORT_STATUS:
1531         ofp_print_port_status(string, msg);
1532         break;
1533
1534     case OFPUTIL_OFPT_PACKET_OUT:
1535         ofp_print_packet_out(string, msg, verbosity);
1536         break;
1537
1538     case OFPUTIL_OFPT_FLOW_MOD:
1539         ofp_print_flow_mod(string, msg, code, verbosity);
1540         break;
1541
1542     case OFPUTIL_OFPT_PORT_MOD:
1543         ofp_print_port_mod(string, msg);
1544         break;
1545
1546     case OFPUTIL_OFPT_BARRIER_REQUEST:
1547     case OFPUTIL_OFPT_BARRIER_REPLY:
1548         break;
1549
1550     case OFPUTIL_OFPT_QUEUE_GET_CONFIG_REQUEST:
1551     case OFPUTIL_OFPT_QUEUE_GET_CONFIG_REPLY:
1552         /* XXX */
1553         break;
1554
1555     case OFPUTIL_OFPST_DESC_REQUEST:
1556         ofp_print_stats_request(string, oh);
1557         break;
1558
1559     case OFPUTIL_OFPST_FLOW_REQUEST:
1560         ofp_print_stats_request(string, oh);
1561         ofp_print_ofpst_flow_request(string, oh, verbosity);
1562         break;
1563
1564     case OFPUTIL_OFPST_AGGREGATE_REQUEST:
1565         ofp_print_stats_request(string, oh);
1566         ofp_print_ofpst_aggregate_request(string, oh, verbosity);
1567         break;
1568
1569     case OFPUTIL_OFPST_TABLE_REQUEST:
1570         ofp_print_stats_request(string, oh);
1571         break;
1572
1573     case OFPUTIL_OFPST_PORT_REQUEST:
1574         ofp_print_stats_request(string, oh);
1575         ofp_print_ofpst_port_request(string, oh);
1576         break;
1577
1578     case OFPUTIL_OFPST_QUEUE_REQUEST:
1579         ofp_print_stats_request(string, oh);
1580         ofp_print_ofpst_queue_request(string, oh);
1581         break;
1582
1583     case OFPUTIL_OFPST_DESC_REPLY:
1584         ofp_print_stats_reply(string, oh);
1585         ofp_print_ofpst_desc_reply(string, oh);
1586         break;
1587
1588     case OFPUTIL_OFPST_FLOW_REPLY:
1589         ofp_print_stats_reply(string, oh);
1590         ofp_print_ofpst_flow_reply(string, oh, verbosity);
1591         break;
1592
1593     case OFPUTIL_OFPST_QUEUE_REPLY:
1594         ofp_print_stats_reply(string, oh);
1595         ofp_print_ofpst_queue_reply(string, oh, verbosity);
1596         break;
1597
1598     case OFPUTIL_OFPST_PORT_REPLY:
1599         ofp_print_stats_reply(string, oh);
1600         ofp_print_ofpst_port_reply(string, oh, verbosity);
1601         break;
1602
1603     case OFPUTIL_OFPST_TABLE_REPLY:
1604         ofp_print_stats_reply(string, oh);
1605         ofp_print_ofpst_table_reply(string, oh, verbosity);
1606         break;
1607
1608     case OFPUTIL_OFPST_AGGREGATE_REPLY:
1609         ofp_print_stats_reply(string, oh);
1610         ofp_print_ofpst_aggregate_reply(string, oh);
1611         break;
1612
1613     case OFPUTIL_NXT_STATUS_REQUEST:
1614     case OFPUTIL_NXT_STATUS_REPLY:
1615         /* XXX */
1616         break;
1617
1618     case OFPUTIL_NXT_TUN_ID_FROM_COOKIE:
1619         ofp_print_nxt_tun_id_from_cookie(string, msg);
1620         break;
1621
1622     case OFPUTIL_NXT_ROLE_REQUEST:
1623     case OFPUTIL_NXT_ROLE_REPLY:
1624         /* XXX */
1625         break;
1626
1627     case OFPUTIL_NXT_SET_FLOW_FORMAT:
1628         ofp_print_nxt_set_flow_format(string, msg);
1629         break;
1630
1631     case OFPUTIL_NXT_FLOW_MOD:
1632         ofp_print_flow_mod(string, msg, code, verbosity);
1633         break;
1634
1635     case OFPUTIL_NXT_FLOW_REMOVED:
1636     case OFPUTIL_NXST_FLOW_REQUEST:
1637     case OFPUTIL_NXST_AGGREGATE_REQUEST:
1638         /* XXX */
1639         break;
1640
1641     case OFPUTIL_NXST_FLOW_REPLY:
1642         ofp_print_nxst_flow_reply(string, oh);
1643         break;
1644
1645     case OFPUTIL_NXST_AGGREGATE_REPLY:
1646         /* XXX */
1647         break;
1648     }
1649 }
1650
1651 /* Composes and returns a string representing the OpenFlow packet of 'len'
1652  * bytes at 'oh' at the given 'verbosity' level.  0 is a minimal amount of
1653  * verbosity and higher numbers increase verbosity.  The caller is responsible
1654  * for freeing the string. */
1655 char *
1656 ofp_to_string(const void *oh_, size_t len, int verbosity)
1657 {
1658     struct ds string = DS_EMPTY_INITIALIZER;
1659     const struct ofp_header *oh = oh_;
1660
1661     if (len < sizeof(struct ofp_header)) {
1662         ds_put_cstr(&string, "OpenFlow packet too short:\n");
1663     } else if (oh->version != OFP_VERSION) {
1664         ds_put_format(&string, "Bad OpenFlow version %"PRIu8":\n",
1665                       oh->version);
1666     } else if (ntohs(oh->length) > len) {
1667         ds_put_format(&string,
1668                       "(***truncated to %zu bytes from %"PRIu16"***)",
1669                       len, ntohs(oh->length));
1670     } else if (ntohs(oh->length) < len) {
1671         ds_put_format(&string,
1672                       "(***only uses %"PRIu16" bytes out of %zu***)\n",
1673                       ntohs(oh->length), len);
1674     } else {
1675         const struct ofputil_msg_type *type;
1676         int error;
1677
1678         error = ofputil_decode_msg_type(oh, &type);
1679         if (!error) {
1680             ofp_to_string__(oh, type, &string, verbosity);
1681             if (verbosity >= 5) {
1682                 if (ds_last(&string) != '\n') {
1683                     ds_put_char(&string, '\n');
1684                 }
1685                 ds_put_hex_dump(&string, oh, len, 0, true);
1686             }
1687             if (ds_last(&string) != '\n') {
1688                 ds_put_char(&string, '\n');
1689             }
1690             return ds_steal_cstr(&string);
1691         }
1692
1693         ofp_print_error(&string, error);
1694     }
1695     ds_put_hex_dump(&string, oh, len, 0, true);
1696     return ds_steal_cstr(&string);
1697 }
1698
1699 /* Returns the name for the specified OpenFlow message type as a string,
1700  * e.g. "OFPT_FEATURES_REPLY".  If no name is known, the string returned is a
1701  * hex number, e.g. "0x55".
1702  *
1703  * The caller must free the returned string when it is no longer needed. */
1704 char *
1705 ofp_message_type_to_string(uint8_t type)
1706 {
1707     const char *name;
1708
1709     switch (type) {
1710     case OFPT_HELLO:
1711         name = "HELLO";
1712         break;
1713     case OFPT_ERROR:
1714         name = "ERROR";
1715         break;
1716     case OFPT_ECHO_REQUEST:
1717         name = "ECHO_REQUEST";
1718         break;
1719     case OFPT_ECHO_REPLY:
1720         name = "ECHO_REPLY";
1721         break;
1722     case OFPT_VENDOR:
1723         name = "VENDOR";
1724         break;
1725     case OFPT_FEATURES_REQUEST:
1726         name = "FEATURES_REQUEST";
1727         break;
1728     case OFPT_FEATURES_REPLY:
1729         name = "FEATURES_REPLY";
1730         break;
1731     case OFPT_GET_CONFIG_REQUEST:
1732         name = "GET_CONFIG_REQUEST";
1733         break;
1734     case OFPT_GET_CONFIG_REPLY:
1735         name = "GET_CONFIG_REPLY";
1736         break;
1737     case OFPT_SET_CONFIG:
1738         name = "SET_CONFIG";
1739         break;
1740     case OFPT_PACKET_IN:
1741         name = "PACKET_IN";
1742         break;
1743     case OFPT_FLOW_REMOVED:
1744         name = "FLOW_REMOVED";
1745         break;
1746     case OFPT_PORT_STATUS:
1747         name = "PORT_STATUS";
1748         break;
1749     case OFPT_PACKET_OUT:
1750         name = "PACKET_OUT";
1751         break;
1752     case OFPT_FLOW_MOD:
1753         name = "FLOW_MOD";
1754         break;
1755     case OFPT_PORT_MOD:
1756         name = "PORT_MOD";
1757         break;
1758     case OFPT_STATS_REQUEST:
1759         name = "STATS_REQUEST";
1760         break;
1761     case OFPT_STATS_REPLY:
1762         name = "STATS_REPLY";
1763         break;
1764     case OFPT_BARRIER_REQUEST:
1765         name = "BARRIER_REQUEST";
1766         break;
1767     case OFPT_BARRIER_REPLY:
1768         name = "BARRIER_REPLY";
1769         break;
1770     case OFPT_QUEUE_GET_CONFIG_REQUEST:
1771         name = "QUEUE_GET_CONFIG_REQUEST";
1772         break;
1773     case OFPT_QUEUE_GET_CONFIG_REPLY:
1774         name = "QUEUE_GET_CONFIG_REPLY";
1775         break;
1776     default:
1777         name = NULL;
1778         break;
1779     }
1780
1781     return name ? xasprintf("OFPT_%s", name) : xasprintf("0x%02"PRIx8, type);
1782 }
1783 \f
1784 static void
1785 print_and_free(FILE *stream, char *string)
1786 {
1787     fputs(string, stream);
1788     free(string);
1789 }
1790
1791 /* Pretty-print the OpenFlow packet of 'len' bytes at 'oh' to 'stream' at the
1792  * given 'verbosity' level.  0 is a minimal amount of verbosity and higher
1793  * numbers increase verbosity. */
1794 void
1795 ofp_print(FILE *stream, const void *oh, size_t len, int verbosity)
1796 {
1797     print_and_free(stream, ofp_to_string(oh, len, verbosity));
1798 }
1799
1800 /* Dumps the contents of the Ethernet frame in the 'len' bytes starting at
1801  * 'data' to 'stream' using tcpdump.  'total_len' specifies the full length of
1802  * the Ethernet frame (of which 'len' bytes were captured).
1803  *
1804  * This starts and kills a tcpdump subprocess so it's quite expensive. */
1805 void
1806 ofp_print_packet(FILE *stream, const void *data, size_t len, size_t total_len)
1807 {
1808     print_and_free(stream, ofp_packet_to_string(data, len, total_len));
1809 }