ofp-print: Print NXST_FLOW replies.
[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_flow_removed(struct ds *string, const struct ofp_flow_removed *ofr,
857                        int verbosity)
858 {
859     ofp_print_match(string, &ofr->match, verbosity);
860     ds_put_cstr(string, " reason=");
861     switch (ofr->reason) {
862     case OFPRR_IDLE_TIMEOUT:
863         ds_put_cstr(string, "idle");
864         break;
865     case OFPRR_HARD_TIMEOUT:
866         ds_put_cstr(string, "hard");
867         break;
868     case OFPRR_DELETE:
869         ds_put_cstr(string, "delete");
870         break;
871     default:
872         ds_put_format(string, "**%"PRIu8"**", ofr->reason);
873         break;
874     }
875
876     if (ofr->cookie != htonll(0)) {
877         ds_put_format(string, " cookie:0x%"PRIx64, ntohll(ofr->cookie));
878     }
879     if (ofr->priority != htons(32768)) {
880         ds_put_format(string, " pri:%"PRIu16, ntohs(ofr->priority));
881     }
882     ds_put_format(string, " secs%"PRIu32" nsecs%"PRIu32
883          " idle%"PRIu16" pkts%"PRIu64" bytes%"PRIu64"\n",
884          ntohl(ofr->duration_sec), ntohl(ofr->duration_nsec),
885          ntohs(ofr->idle_timeout), ntohll(ofr->packet_count),
886          ntohll(ofr->byte_count));
887 }
888
889 static void
890 ofp_print_port_mod(struct ds *string, const struct ofp_port_mod *opm)
891 {
892     ds_put_format(string, "port: %d: addr:"ETH_ADDR_FMT", config: %#x, mask:%#x\n",
893             ntohs(opm->port_no), ETH_ADDR_ARGS(opm->hw_addr),
894             ntohl(opm->config), ntohl(opm->mask));
895     ds_put_format(string, "     advertise: ");
896     if (opm->advertise) {
897         ofp_print_port_features(string, ntohl(opm->advertise));
898     } else {
899         ds_put_format(string, "UNCHANGED\n");
900     }
901 }
902
903 struct error_type {
904     int type;
905     int code;
906     const char *name;
907 };
908
909 static const struct error_type error_types[] = {
910 #define ERROR_TYPE(TYPE) {TYPE, -1, #TYPE}
911 #define ERROR_CODE(TYPE, CODE) {TYPE, CODE, #CODE}
912     ERROR_TYPE(OFPET_HELLO_FAILED),
913     ERROR_CODE(OFPET_HELLO_FAILED, OFPHFC_INCOMPATIBLE),
914     ERROR_CODE(OFPET_HELLO_FAILED, OFPHFC_EPERM),
915
916     ERROR_TYPE(OFPET_BAD_REQUEST),
917     ERROR_CODE(OFPET_BAD_REQUEST, OFPBRC_BAD_VERSION),
918     ERROR_CODE(OFPET_BAD_REQUEST, OFPBRC_BAD_TYPE),
919     ERROR_CODE(OFPET_BAD_REQUEST, OFPBRC_BAD_STAT),
920     ERROR_CODE(OFPET_BAD_REQUEST, OFPBRC_BAD_VENDOR),
921     ERROR_CODE(OFPET_BAD_REQUEST, OFPBRC_BAD_SUBTYPE),
922     ERROR_CODE(OFPET_BAD_REQUEST, OFPBRC_EPERM),
923     ERROR_CODE(OFPET_BAD_REQUEST, OFPBRC_BAD_LEN),
924     ERROR_CODE(OFPET_BAD_REQUEST, OFPBRC_BUFFER_EMPTY),
925     ERROR_CODE(OFPET_BAD_REQUEST, OFPBRC_BUFFER_UNKNOWN),
926     /* Nicira error extensions. */
927     ERROR_CODE(OFPET_BAD_REQUEST, NXBRC_NXM_INVALID),
928     ERROR_CODE(OFPET_BAD_REQUEST, NXBRC_NXM_BAD_TYPE),
929     ERROR_CODE(OFPET_BAD_REQUEST, NXBRC_NXM_BAD_VALUE),
930     ERROR_CODE(OFPET_BAD_REQUEST, NXBRC_NXM_BAD_MASK),
931     ERROR_CODE(OFPET_BAD_REQUEST, NXBRC_NXM_BAD_PREREQ),
932     ERROR_CODE(OFPET_BAD_REQUEST, NXBRC_NXM_DUP_TYPE),
933
934     ERROR_TYPE(OFPET_BAD_ACTION),
935     ERROR_CODE(OFPET_BAD_ACTION, OFPBAC_BAD_TYPE),
936     ERROR_CODE(OFPET_BAD_ACTION, OFPBAC_BAD_LEN),
937     ERROR_CODE(OFPET_BAD_ACTION, OFPBAC_BAD_VENDOR),
938     ERROR_CODE(OFPET_BAD_ACTION, OFPBAC_BAD_VENDOR_TYPE),
939     ERROR_CODE(OFPET_BAD_ACTION, OFPBAC_BAD_OUT_PORT),
940     ERROR_CODE(OFPET_BAD_ACTION, OFPBAC_BAD_ARGUMENT),
941     ERROR_CODE(OFPET_BAD_ACTION, OFPBAC_EPERM),
942     ERROR_CODE(OFPET_BAD_ACTION, OFPBAC_TOO_MANY),
943
944     ERROR_TYPE(OFPET_FLOW_MOD_FAILED),
945     ERROR_CODE(OFPET_FLOW_MOD_FAILED, OFPFMFC_ALL_TABLES_FULL),
946     ERROR_CODE(OFPET_FLOW_MOD_FAILED, OFPFMFC_OVERLAP),
947     ERROR_CODE(OFPET_FLOW_MOD_FAILED, OFPFMFC_EPERM),
948     ERROR_CODE(OFPET_FLOW_MOD_FAILED, OFPFMFC_BAD_EMERG_TIMEOUT),
949     ERROR_CODE(OFPET_FLOW_MOD_FAILED, OFPFMFC_BAD_COMMAND),
950     /* Nicira error extenstions. */
951     ERROR_CODE(OFPET_FLOW_MOD_FAILED, NXFMFC_HARDWARE),
952     ERROR_CODE(OFPET_FLOW_MOD_FAILED, NXFMFC_BAD_TABLE_ID),
953
954     ERROR_TYPE(OFPET_PORT_MOD_FAILED),
955     ERROR_CODE(OFPET_PORT_MOD_FAILED, OFPPMFC_BAD_PORT),
956     ERROR_CODE(OFPET_PORT_MOD_FAILED, OFPPMFC_BAD_HW_ADDR)
957 };
958 #define N_ERROR_TYPES ARRAY_SIZE(error_types)
959
960 static const char *
961 lookup_error_type(int type)
962 {
963     const struct error_type *t;
964
965     for (t = error_types; t < &error_types[N_ERROR_TYPES]; t++) {
966         if (t->type == type && t->code == -1) {
967             return t->name;
968         }
969     }
970     return "?";
971 }
972
973 static const char *
974 lookup_error_code(int type, int code)
975 {
976     const struct error_type *t;
977
978     for (t = error_types; t < &error_types[N_ERROR_TYPES]; t++) {
979         if (t->type == type && t->code == code) {
980             return t->name;
981         }
982     }
983     return "?";
984 }
985
986 static void
987 ofp_print_error(struct ds *string, int error)
988 {
989     int type = get_ofp_err_type(error);
990     int code = get_ofp_err_code(error);
991     if (string->length) {
992         ds_put_char(string, ' ');
993     }
994     ds_put_format(string, " ***decode error type:%d(%s) code:%d(%s)***",
995                   type, lookup_error_type(type),
996                   code, lookup_error_code(type, code));
997 }
998
999 static void
1000 ofp_print_nx_error_msg(struct ds *string, const struct ofp_error_msg *oem)
1001 {
1002     size_t len = ntohs(oem->header.length);
1003     const struct nx_vendor_error *nve = (struct nx_vendor_error *)oem->data;
1004     int vendor = ntohl(nve->vendor);
1005     int type = ntohs(nve->type);
1006     int code = ntohs(nve->code);
1007
1008     ds_put_format(string, " vendor:%x type:%d(%s) code:%d(%s) payload:\n",
1009                   vendor,
1010                   type, lookup_error_type(type),
1011                   code, lookup_error_code(type, code));
1012
1013     ds_put_hex_dump(string, nve + 1, len - sizeof *oem - sizeof *nve,
1014                     0, true);
1015 }
1016
1017 static void
1018 ofp_print_error_msg(struct ds *string, const struct ofp_error_msg *oem)
1019 {
1020     size_t len = ntohs(oem->header.length);
1021     int type = ntohs(oem->type);
1022     int code = ntohs(oem->code);
1023     char *s;
1024
1025
1026     if (type == NXET_VENDOR && code == NXVC_VENDOR_ERROR) {
1027         if (len < sizeof *oem + sizeof(struct nx_vendor_error)) {
1028             ds_put_format(string,
1029                           "(***truncated extended error message is %zu bytes "
1030                           "when it should be at least %zu***)\n",
1031                           len, sizeof(struct nx_vendor_error));
1032             return;
1033         }
1034
1035         return ofp_print_nx_error_msg(string, oem);
1036     }
1037
1038     ds_put_format(string, " type:%d(%s) code:%d(%s) payload:\n",
1039                   type, lookup_error_type(type),
1040                   code, lookup_error_code(type, code));
1041
1042     switch (type) {
1043     case OFPET_HELLO_FAILED:
1044         ds_put_printable(string, (char *) oem->data, len - sizeof *oem);
1045         break;
1046
1047     case OFPET_BAD_REQUEST:
1048         s = ofp_to_string(oem->data, len - sizeof *oem, 1);
1049         ds_put_cstr(string, s);
1050         free(s);
1051         break;
1052
1053     default:
1054         ds_put_hex_dump(string, oem->data, len - sizeof *oem, 0, true);
1055         break;
1056     }
1057 }
1058
1059 static void
1060 ofp_print_port_status(struct ds *string, const struct ofp_port_status *ops)
1061 {
1062     if (ops->reason == OFPPR_ADD) {
1063         ds_put_format(string, " ADD:");
1064     } else if (ops->reason == OFPPR_DELETE) {
1065         ds_put_format(string, " DEL:");
1066     } else if (ops->reason == OFPPR_MODIFY) {
1067         ds_put_format(string, " MOD:");
1068     }
1069
1070     ofp_print_phy_port(string, &ops->desc);
1071 }
1072
1073 static void
1074 ofp_print_ofpst_desc_reply(struct ds *string, const struct ofp_header *oh)
1075 {
1076     const struct ofp_desc_stats *ods = ofputil_stats_body(oh);
1077
1078     ds_put_format(string, "Manufacturer: %.*s\n",
1079             (int) sizeof ods->mfr_desc, ods->mfr_desc);
1080     ds_put_format(string, "Hardware: %.*s\n",
1081             (int) sizeof ods->hw_desc, ods->hw_desc);
1082     ds_put_format(string, "Software: %.*s\n",
1083             (int) sizeof ods->sw_desc, ods->sw_desc);
1084     ds_put_format(string, "Serial Num: %.*s\n",
1085             (int) sizeof ods->serial_num, ods->serial_num);
1086     ds_put_format(string, "DP Description: %.*s\n",
1087             (int) sizeof ods->dp_desc, ods->dp_desc);
1088 }
1089
1090 static void
1091 ofp_print_ofpst_flow_request(struct ds *string, const struct ofp_header *oh,
1092                              int verbosity)
1093 {
1094     const struct ofp_flow_stats_request *fsr = ofputil_stats_body(oh);
1095
1096     if (fsr->table_id == 0xff) {
1097         ds_put_format(string, " table_id=any, ");
1098     } else {
1099         ds_put_format(string, " table_id=%"PRIu8", ", fsr->table_id);
1100     }
1101
1102     ofp_print_match(string, &fsr->match, verbosity);
1103 }
1104
1105 static void
1106 ofp_print_ofpst_flow_reply(struct ds *string, const struct ofp_header *oh,
1107                            int verbosity)
1108 {
1109     size_t len = ofputil_stats_body_len(oh);
1110     const char *body = ofputil_stats_body(oh);
1111     const char *pos = body;
1112     for (;;) {
1113         const struct ofp_flow_stats *fs;
1114         ptrdiff_t bytes_left = body + len - pos;
1115         size_t length;
1116
1117         ds_put_char(string, '\n');
1118
1119         if (bytes_left < sizeof *fs) {
1120             if (bytes_left != 0) {
1121                 ds_put_format(string, " ***%td leftover bytes at end***",
1122                               bytes_left);
1123             }
1124             break;
1125         }
1126
1127         fs = (const void *) pos;
1128         length = ntohs(fs->length);
1129         if (length < sizeof *fs) {
1130             ds_put_format(string, " ***length=%zu shorter than minimum %zu***",
1131                           length, sizeof *fs);
1132             break;
1133         } else if (length > bytes_left) {
1134             ds_put_format(string,
1135                           " ***length=%zu but only %td bytes left***",
1136                           length, bytes_left);
1137             break;
1138         } else if ((length - sizeof *fs) % sizeof fs->actions[0]) {
1139             ds_put_format(string,
1140                           " ***length=%zu has %zu bytes leftover in "
1141                           "final action***",
1142                           length,
1143                           (length - sizeof *fs) % sizeof fs->actions[0]);
1144             break;
1145         }
1146
1147         ds_put_format(string, " cookie=0x%"PRIx64", ", ntohll(fs->cookie));
1148         ds_put_format(string, "duration_sec=%"PRIu32"s, ",
1149                     ntohl(fs->duration_sec));
1150         ds_put_format(string, "duration_nsec=%"PRIu32"ns, ",
1151                     ntohl(fs->duration_nsec));
1152         ds_put_format(string, "table_id=%"PRIu8", ", fs->table_id);
1153         ds_put_format(string, "priority=%"PRIu16", ", ntohs(fs->priority));
1154         ds_put_format(string, "n_packets=%"PRIu64", ",
1155                     ntohll(fs->packet_count));
1156         ds_put_format(string, "n_bytes=%"PRIu64", ", ntohll(fs->byte_count));
1157         if (fs->idle_timeout != htons(OFP_FLOW_PERMANENT)) {
1158             ds_put_format(string, "idle_timeout=%"PRIu16",",
1159                           ntohs(fs->idle_timeout));
1160         }
1161         if (fs->hard_timeout != htons(OFP_FLOW_PERMANENT)) {
1162             ds_put_format(string, "hard_timeout=%"PRIu16",",
1163                           ntohs(fs->hard_timeout));
1164         }
1165         ofp_print_match(string, &fs->match, verbosity);
1166         ds_put_char(string, ' ');
1167         ofp_print_actions(string, fs->actions, length - sizeof *fs);
1168
1169         pos += length;
1170      }
1171 }
1172
1173 static void
1174 ofp_print_nxst_flow_reply(struct ds *string, const struct ofp_header *oh)
1175 {
1176     struct ofpbuf b;
1177
1178     ofpbuf_use_const(&b, ofputil_nxstats_body(oh),
1179                      ofputil_nxstats_body_len(oh));
1180     while (b.size > 0) {
1181         const struct nx_flow_stats *fs;
1182         union ofp_action *actions;
1183         struct cls_rule rule;
1184         size_t actions_len, n_actions;
1185         size_t length;
1186         int match_len;
1187         int error;
1188
1189         fs = ofpbuf_try_pull(&b, sizeof *fs);
1190         if (!fs) {
1191             ds_put_format(string, " ***%td leftover bytes at end***", b.size);
1192             break;
1193         }
1194
1195         length = ntohs(fs->length);
1196         if (length < sizeof *fs) {
1197             ds_put_format(string, " ***nx_flow_stats claims length %zu***",
1198                           length);
1199             break;
1200         }
1201
1202         match_len = ntohs(fs->match_len);
1203         if (match_len > length - sizeof *fs) {
1204             ds_put_format(string, " ***length=%zu match_len=%d***",
1205                           length, match_len);
1206             break;
1207         }
1208
1209         ds_put_format(string, " cookie=0x%"PRIx64", ", ntohll(fs->cookie));
1210         ds_put_format(string, "duration_sec=%"PRIu32"s, ",
1211                     ntohl(fs->duration_sec));
1212         ds_put_format(string, "duration_nsec=%"PRIu32"ns, ",
1213                     ntohl(fs->duration_nsec));
1214         ds_put_format(string, "table_id=%"PRIu8", ", fs->table_id);
1215         ds_put_format(string, "priority=%"PRIu16", ", ntohs(fs->priority));
1216         ds_put_format(string, "n_packets=%"PRIu64", ",
1217                     ntohll(fs->packet_count));
1218         ds_put_format(string, "n_bytes=%"PRIu64", ", ntohll(fs->byte_count));
1219         if (fs->idle_timeout != htons(OFP_FLOW_PERMANENT)) {
1220             ds_put_format(string, "idle_timeout=%"PRIu16",",
1221                           ntohs(fs->idle_timeout));
1222         }
1223         if (fs->hard_timeout != htons(OFP_FLOW_PERMANENT)) {
1224             ds_put_format(string, "hard_timeout=%"PRIu16",",
1225                           ntohs(fs->hard_timeout));
1226         }
1227
1228         error = nx_pull_match(&b, match_len, ntohs(fs->priority), &rule);
1229         if (error) {
1230             ofp_print_error(string, error);
1231             break;
1232         }
1233
1234         actions_len = length - sizeof *fs - ROUND_UP(match_len, 8);
1235         error = ofputil_pull_actions(&b, actions_len, &actions, &n_actions);
1236         if (error) {
1237             ofp_print_error(string, error);
1238             break;
1239         }
1240
1241         cls_rule_format(&rule, string);
1242         ds_put_char(string, ' ');
1243         ofp_print_actions(string, (const struct ofp_action_header *) actions,
1244                           n_actions * sizeof *actions);
1245         ds_put_char(string, '\n');
1246      }
1247 }
1248
1249 static void
1250 ofp_print_ofpst_aggregate_request(struct ds *string,
1251                                   const struct ofp_header *oh, int verbosity)
1252 {
1253     const struct ofp_aggregate_stats_request *asr = ofputil_stats_body(oh);
1254
1255     if (asr->table_id == 0xff) {
1256         ds_put_format(string, " table_id=any, ");
1257     } else {
1258         ds_put_format(string, " table_id=%"PRIu8", ", asr->table_id);
1259     }
1260
1261     ofp_print_match(string, &asr->match, verbosity);
1262 }
1263
1264 static void
1265 ofp_print_ofpst_aggregate_reply(struct ds *string, const struct ofp_header *oh)
1266 {
1267     const struct ofp_aggregate_stats_reply *asr = ofputil_stats_body(oh);
1268
1269     ds_put_format(string, " packet_count=%"PRIu64, ntohll(asr->packet_count));
1270     ds_put_format(string, " byte_count=%"PRIu64, ntohll(asr->byte_count));
1271     ds_put_format(string, " flow_count=%"PRIu32, ntohl(asr->flow_count));
1272 }
1273
1274 static void print_port_stat(struct ds *string, const char *leader,
1275                             uint64_t stat, int more)
1276 {
1277     ds_put_cstr(string, leader);
1278     if (stat != -1) {
1279         ds_put_format(string, "%"PRIu64, stat);
1280     } else {
1281         ds_put_char(string, '?');
1282     }
1283     if (more) {
1284         ds_put_cstr(string, ", ");
1285     } else {
1286         ds_put_cstr(string, "\n");
1287     }
1288 }
1289
1290 static void
1291 ofp_print_ofpst_port_request(struct ds *string, const struct ofp_header *oh)
1292 {
1293     const struct ofp_port_stats_request *psr = ofputil_stats_body(oh);
1294     ds_put_format(string, "port_no=%"PRIu16, ntohs(psr->port_no));
1295 }
1296
1297 static void
1298 ofp_print_ofpst_port_reply(struct ds *string, const struct ofp_header *oh,
1299                            int verbosity)
1300 {
1301     const struct ofp_port_stats *ps = ofputil_stats_body(oh);
1302     size_t n = ofputil_stats_body_len(oh) / sizeof *ps;
1303     ds_put_format(string, " %zu ports\n", n);
1304     if (verbosity < 1) {
1305         return;
1306     }
1307
1308     for (; n--; ps++) {
1309         ds_put_format(string, "  port %2"PRIu16": ", ntohs(ps->port_no));
1310
1311         ds_put_cstr(string, "rx ");
1312         print_port_stat(string, "pkts=", ntohll(ps->rx_packets), 1);
1313         print_port_stat(string, "bytes=", ntohll(ps->rx_bytes), 1);
1314         print_port_stat(string, "drop=", ntohll(ps->rx_dropped), 1);
1315         print_port_stat(string, "errs=", ntohll(ps->rx_errors), 1);
1316         print_port_stat(string, "frame=", ntohll(ps->rx_frame_err), 1);
1317         print_port_stat(string, "over=", ntohll(ps->rx_over_err), 1);
1318         print_port_stat(string, "crc=", ntohll(ps->rx_crc_err), 0);
1319
1320         ds_put_cstr(string, "           tx ");
1321         print_port_stat(string, "pkts=", ntohll(ps->tx_packets), 1);
1322         print_port_stat(string, "bytes=", ntohll(ps->tx_bytes), 1);
1323         print_port_stat(string, "drop=", ntohll(ps->tx_dropped), 1);
1324         print_port_stat(string, "errs=", ntohll(ps->tx_errors), 1);
1325         print_port_stat(string, "coll=", ntohll(ps->collisions), 0);
1326     }
1327 }
1328
1329 static void
1330 ofp_print_ofpst_table_reply(struct ds *string, const struct ofp_header *oh,
1331                             int verbosity)
1332 {
1333     const struct ofp_table_stats *ts = ofputil_stats_body(oh);
1334     size_t n = ofputil_stats_body_len(oh) / sizeof *ts;
1335     ds_put_format(string, " %zu tables\n", n);
1336     if (verbosity < 1) {
1337         return;
1338     }
1339
1340     for (; n--; ts++) {
1341         char name[OFP_MAX_TABLE_NAME_LEN + 1];
1342         strncpy(name, ts->name, sizeof name);
1343         name[OFP_MAX_TABLE_NAME_LEN] = '\0';
1344
1345         ds_put_format(string, "  %d: %-8s: ", ts->table_id, name);
1346         ds_put_format(string, "wild=0x%05"PRIx32", ", ntohl(ts->wildcards));
1347         ds_put_format(string, "max=%6"PRIu32", ", ntohl(ts->max_entries));
1348         ds_put_format(string, "active=%"PRIu32"\n", ntohl(ts->active_count));
1349         ds_put_cstr(string, "               ");
1350         ds_put_format(string, "lookup=%"PRIu64", ",
1351                     ntohll(ts->lookup_count));
1352         ds_put_format(string, "matched=%"PRIu64"\n",
1353                     ntohll(ts->matched_count));
1354      }
1355 }
1356
1357 static void
1358 ofp_print_queue_name(struct ds *string, uint32_t queue_id)
1359 {
1360     if (queue_id == OFPQ_ALL) {
1361         ds_put_cstr(string, "ALL");
1362     } else {
1363         ds_put_format(string, "%"PRIu32, queue_id);
1364     }
1365 }
1366
1367 static void
1368 ofp_print_ofpst_queue_request(struct ds *string, const struct ofp_header *oh)
1369 {
1370     const struct ofp_queue_stats_request *qsr = ofputil_stats_body(oh);
1371
1372     ds_put_cstr(string, "port=");
1373     ofp_print_port_name(string, ntohs(qsr->port_no));
1374
1375     ds_put_cstr(string, " queue=");
1376     ofp_print_queue_name(string, ntohl(qsr->queue_id));
1377 }
1378
1379 static void
1380 ofp_print_ofpst_queue_reply(struct ds *string, const struct ofp_header *oh,
1381                             int verbosity)
1382 {
1383     const struct ofp_queue_stats *qs = ofputil_stats_body(oh);
1384     size_t n = ofputil_stats_body_len(oh) / sizeof *qs;
1385     ds_put_format(string, " %zu queues\n", n);
1386     if (verbosity < 1) {
1387         return;
1388     }
1389
1390     for (; n--; qs++) {
1391         ds_put_cstr(string, "  port ");
1392         ofp_print_port_name(string, ntohs(qs->port_no));
1393         ds_put_cstr(string, " queue ");
1394         ofp_print_queue_name(string, ntohl(qs->queue_id));
1395         ds_put_cstr(string, ": ");
1396
1397         print_port_stat(string, "bytes=", ntohll(qs->tx_bytes), 1);
1398         print_port_stat(string, "pkts=", ntohll(qs->tx_packets), 1);
1399         print_port_stat(string, "errors=", ntohll(qs->tx_errors), 0);
1400     }
1401 }
1402
1403 static void
1404 ofp_print_stats_request(struct ds *string, const struct ofp_header *oh)
1405 {
1406     const struct ofp_stats_request *srq
1407         = (const struct ofp_stats_request *) oh;
1408
1409     if (srq->flags) {
1410         ds_put_format(string, " ***unknown flags 0x%04"PRIx16"***",
1411                       ntohs(srq->flags));
1412     }
1413 }
1414
1415 static void
1416 ofp_print_stats_reply(struct ds *string, const struct ofp_header *oh)
1417 {
1418     const struct ofp_stats_reply *srp = (const struct ofp_stats_reply *) oh;
1419
1420     if (srp->flags) {
1421         uint16_t flags = ntohs(srp->flags);
1422
1423         ds_put_cstr(string, " flags=");
1424         if (flags & OFPSF_REPLY_MORE) {
1425             ds_put_cstr(string, "[more]");
1426             flags &= ~OFPSF_REPLY_MORE;
1427         }
1428         if (flags) {
1429             ds_put_format(string, "[***unknown flags 0x%04"PRIx16"***]",
1430                           flags);
1431         }
1432     }
1433 }
1434
1435 static void
1436 ofp_print_echo(struct ds *string, const struct ofp_header *oh, int verbosity)
1437 {
1438     size_t len = ntohs(oh->length);
1439
1440     ds_put_format(string, " %zu bytes of payload\n", len - sizeof *oh);
1441     if (verbosity > 1) {
1442         ds_put_hex_dump(string, oh + 1, len - sizeof *oh, 0, true);
1443     }
1444 }
1445
1446 static void
1447 ofp_print_nxt_tun_id_from_cookie(struct ds *string,
1448                                  const struct nxt_tun_id_cookie *ntic)
1449 {
1450     ds_put_format(string, " set=%"PRIu8, ntic->set);
1451 }
1452
1453 static void
1454 ofp_print_nxt_set_flow_format(struct ds *string,
1455                               const struct nxt_set_flow_format *nsff)
1456 {
1457     uint32_t format = ntohl(nsff->format);
1458
1459     ds_put_cstr(string, " format=");
1460     if (ofputil_flow_format_is_valid(format)) {
1461         ds_put_cstr(string, ofputil_flow_format_to_string(format));
1462     } else {
1463         ds_put_format(string, "%"PRIu32, format);
1464     }
1465 }
1466
1467 static void
1468 ofp_to_string__(const struct ofp_header *oh,
1469                 const struct ofputil_msg_type *type, struct ds *string,
1470                 int verbosity)
1471 {
1472     enum ofputil_msg_code code;
1473     const void *msg = oh;
1474
1475     ds_put_format(string, "%s (xid=0x%"PRIx32"):",
1476                   ofputil_msg_type_name(type), ntohl(oh->xid));
1477
1478     code = ofputil_msg_type_code(type);
1479     switch (code) {
1480     case OFPUTIL_INVALID:
1481         break;
1482
1483     case OFPUTIL_OFPT_HELLO:
1484         break;
1485
1486     case OFPUTIL_OFPT_ERROR:
1487         ofp_print_error_msg(string, msg);
1488         break;
1489
1490     case OFPUTIL_OFPT_ECHO_REQUEST:
1491     case OFPUTIL_OFPT_ECHO_REPLY:
1492         ofp_print_echo(string, oh, verbosity);
1493         break;
1494
1495     case OFPUTIL_OFPT_FEATURES_REQUEST:
1496         break;
1497
1498     case OFPUTIL_OFPT_FEATURES_REPLY:
1499         ofp_print_switch_features(string, msg);
1500         break;
1501
1502     case OFPUTIL_OFPT_GET_CONFIG_REQUEST:
1503         break;
1504
1505     case OFPUTIL_OFPT_GET_CONFIG_REPLY:
1506     case OFPUTIL_OFPT_SET_CONFIG:
1507         ofp_print_switch_config(string, msg);
1508         break;
1509
1510     case OFPUTIL_OFPT_PACKET_IN:
1511         ofp_print_packet_in(string, msg, verbosity);
1512         break;
1513
1514     case OFPUTIL_OFPT_FLOW_REMOVED:
1515         ofp_print_flow_removed(string, msg, verbosity);
1516         break;
1517
1518     case OFPUTIL_OFPT_PORT_STATUS:
1519         ofp_print_port_status(string, msg);
1520         break;
1521
1522     case OFPUTIL_OFPT_PACKET_OUT:
1523         ofp_print_packet_out(string, msg, verbosity);
1524         break;
1525
1526     case OFPUTIL_OFPT_FLOW_MOD:
1527         ofp_print_flow_mod(string, msg, code, verbosity);
1528         break;
1529
1530     case OFPUTIL_OFPT_PORT_MOD:
1531         ofp_print_port_mod(string, msg);
1532         break;
1533
1534     case OFPUTIL_OFPT_BARRIER_REQUEST:
1535     case OFPUTIL_OFPT_BARRIER_REPLY:
1536         break;
1537
1538     case OFPUTIL_OFPT_QUEUE_GET_CONFIG_REQUEST:
1539     case OFPUTIL_OFPT_QUEUE_GET_CONFIG_REPLY:
1540         /* XXX */
1541         break;
1542
1543     case OFPUTIL_OFPST_DESC_REQUEST:
1544         ofp_print_stats_request(string, oh);
1545         break;
1546
1547     case OFPUTIL_OFPST_FLOW_REQUEST:
1548         ofp_print_stats_request(string, oh);
1549         ofp_print_ofpst_flow_request(string, oh, verbosity);
1550         break;
1551
1552     case OFPUTIL_OFPST_AGGREGATE_REQUEST:
1553         ofp_print_stats_request(string, oh);
1554         ofp_print_ofpst_aggregate_request(string, oh, verbosity);
1555         break;
1556
1557     case OFPUTIL_OFPST_TABLE_REQUEST:
1558         ofp_print_stats_request(string, oh);
1559         break;
1560
1561     case OFPUTIL_OFPST_PORT_REQUEST:
1562         ofp_print_stats_request(string, oh);
1563         ofp_print_ofpst_port_request(string, oh);
1564         break;
1565
1566     case OFPUTIL_OFPST_QUEUE_REQUEST:
1567         ofp_print_stats_request(string, oh);
1568         ofp_print_ofpst_queue_request(string, oh);
1569         break;
1570
1571     case OFPUTIL_OFPST_DESC_REPLY:
1572         ofp_print_stats_reply(string, oh);
1573         ofp_print_ofpst_desc_reply(string, oh);
1574         break;
1575
1576     case OFPUTIL_OFPST_FLOW_REPLY:
1577         ofp_print_stats_reply(string, oh);
1578         ofp_print_ofpst_flow_reply(string, oh, verbosity);
1579         break;
1580
1581     case OFPUTIL_OFPST_QUEUE_REPLY:
1582         ofp_print_stats_reply(string, oh);
1583         ofp_print_ofpst_queue_reply(string, oh, verbosity);
1584         break;
1585
1586     case OFPUTIL_OFPST_PORT_REPLY:
1587         ofp_print_stats_reply(string, oh);
1588         ofp_print_ofpst_port_reply(string, oh, verbosity);
1589         break;
1590
1591     case OFPUTIL_OFPST_TABLE_REPLY:
1592         ofp_print_stats_reply(string, oh);
1593         ofp_print_ofpst_table_reply(string, oh, verbosity);
1594         break;
1595
1596     case OFPUTIL_OFPST_AGGREGATE_REPLY:
1597         ofp_print_stats_reply(string, oh);
1598         ofp_print_ofpst_aggregate_reply(string, oh);
1599         break;
1600
1601     case OFPUTIL_NXT_STATUS_REQUEST:
1602     case OFPUTIL_NXT_STATUS_REPLY:
1603         /* XXX */
1604         break;
1605
1606     case OFPUTIL_NXT_TUN_ID_FROM_COOKIE:
1607         ofp_print_nxt_tun_id_from_cookie(string, msg);
1608         break;
1609
1610     case OFPUTIL_NXT_ROLE_REQUEST:
1611     case OFPUTIL_NXT_ROLE_REPLY:
1612         /* XXX */
1613         break;
1614
1615     case OFPUTIL_NXT_SET_FLOW_FORMAT:
1616         ofp_print_nxt_set_flow_format(string, msg);
1617         break;
1618
1619     case OFPUTIL_NXT_FLOW_MOD:
1620         ofp_print_flow_mod(string, msg, code, verbosity);
1621         break;
1622
1623     case OFPUTIL_NXT_FLOW_REMOVED:
1624     case OFPUTIL_NXST_FLOW_REQUEST:
1625     case OFPUTIL_NXST_AGGREGATE_REQUEST:
1626         /* XXX */
1627         break;
1628
1629     case OFPUTIL_NXST_FLOW_REPLY:
1630         ofp_print_nxst_flow_reply(string, oh);
1631         break;
1632
1633     case OFPUTIL_NXST_AGGREGATE_REPLY:
1634         /* XXX */
1635         break;
1636     }
1637 }
1638
1639 /* Composes and returns a string representing the OpenFlow packet of 'len'
1640  * bytes at 'oh' at the given 'verbosity' level.  0 is a minimal amount of
1641  * verbosity and higher numbers increase verbosity.  The caller is responsible
1642  * for freeing the string. */
1643 char *
1644 ofp_to_string(const void *oh_, size_t len, int verbosity)
1645 {
1646     struct ds string = DS_EMPTY_INITIALIZER;
1647     const struct ofp_header *oh = oh_;
1648
1649     if (len < sizeof(struct ofp_header)) {
1650         ds_put_cstr(&string, "OpenFlow packet too short:\n");
1651     } else if (oh->version != OFP_VERSION) {
1652         ds_put_format(&string, "Bad OpenFlow version %"PRIu8":\n",
1653                       oh->version);
1654     } else if (ntohs(oh->length) > len) {
1655         ds_put_format(&string,
1656                       "(***truncated to %zu bytes from %"PRIu16"***)",
1657                       len, ntohs(oh->length));
1658     } else if (ntohs(oh->length) < len) {
1659         ds_put_format(&string,
1660                       "(***only uses %"PRIu16" bytes out of %zu***)\n",
1661                       ntohs(oh->length), len);
1662     } else {
1663         const struct ofputil_msg_type *type;
1664         int error;
1665
1666         error = ofputil_decode_msg_type(oh, &type);
1667         if (!error) {
1668             ofp_to_string__(oh, type, &string, verbosity);
1669             if (verbosity >= 5) {
1670                 if (ds_last(&string) != '\n') {
1671                     ds_put_char(&string, '\n');
1672                 }
1673                 ds_put_hex_dump(&string, oh, len, 0, true);
1674             }
1675             if (ds_last(&string) != '\n') {
1676                 ds_put_char(&string, '\n');
1677             }
1678             return ds_steal_cstr(&string);
1679         }
1680
1681         ofp_print_error(&string, error);
1682     }
1683     ds_put_hex_dump(&string, oh, len, 0, true);
1684     return ds_steal_cstr(&string);
1685 }
1686
1687 /* Returns the name for the specified OpenFlow message type as a string,
1688  * e.g. "OFPT_FEATURES_REPLY".  If no name is known, the string returned is a
1689  * hex number, e.g. "0x55".
1690  *
1691  * The caller must free the returned string when it is no longer needed. */
1692 char *
1693 ofp_message_type_to_string(uint8_t type)
1694 {
1695     const char *name;
1696
1697     switch (type) {
1698     case OFPT_HELLO:
1699         name = "HELLO";
1700         break;
1701     case OFPT_ERROR:
1702         name = "ERROR";
1703         break;
1704     case OFPT_ECHO_REQUEST:
1705         name = "ECHO_REQUEST";
1706         break;
1707     case OFPT_ECHO_REPLY:
1708         name = "ECHO_REPLY";
1709         break;
1710     case OFPT_VENDOR:
1711         name = "VENDOR";
1712         break;
1713     case OFPT_FEATURES_REQUEST:
1714         name = "FEATURES_REQUEST";
1715         break;
1716     case OFPT_FEATURES_REPLY:
1717         name = "FEATURES_REPLY";
1718         break;
1719     case OFPT_GET_CONFIG_REQUEST:
1720         name = "GET_CONFIG_REQUEST";
1721         break;
1722     case OFPT_GET_CONFIG_REPLY:
1723         name = "GET_CONFIG_REPLY";
1724         break;
1725     case OFPT_SET_CONFIG:
1726         name = "SET_CONFIG";
1727         break;
1728     case OFPT_PACKET_IN:
1729         name = "PACKET_IN";
1730         break;
1731     case OFPT_FLOW_REMOVED:
1732         name = "FLOW_REMOVED";
1733         break;
1734     case OFPT_PORT_STATUS:
1735         name = "PORT_STATUS";
1736         break;
1737     case OFPT_PACKET_OUT:
1738         name = "PACKET_OUT";
1739         break;
1740     case OFPT_FLOW_MOD:
1741         name = "FLOW_MOD";
1742         break;
1743     case OFPT_PORT_MOD:
1744         name = "PORT_MOD";
1745         break;
1746     case OFPT_STATS_REQUEST:
1747         name = "STATS_REQUEST";
1748         break;
1749     case OFPT_STATS_REPLY:
1750         name = "STATS_REPLY";
1751         break;
1752     case OFPT_BARRIER_REQUEST:
1753         name = "BARRIER_REQUEST";
1754         break;
1755     case OFPT_BARRIER_REPLY:
1756         name = "BARRIER_REPLY";
1757         break;
1758     case OFPT_QUEUE_GET_CONFIG_REQUEST:
1759         name = "QUEUE_GET_CONFIG_REQUEST";
1760         break;
1761     case OFPT_QUEUE_GET_CONFIG_REPLY:
1762         name = "QUEUE_GET_CONFIG_REPLY";
1763         break;
1764     default:
1765         name = NULL;
1766         break;
1767     }
1768
1769     return name ? xasprintf("OFPT_%s", name) : xasprintf("0x%02"PRIx8, type);
1770 }
1771 \f
1772 static void
1773 print_and_free(FILE *stream, char *string)
1774 {
1775     fputs(string, stream);
1776     free(string);
1777 }
1778
1779 /* Pretty-print the OpenFlow packet of 'len' bytes at 'oh' to 'stream' at the
1780  * given 'verbosity' level.  0 is a minimal amount of verbosity and higher
1781  * numbers increase verbosity. */
1782 void
1783 ofp_print(FILE *stream, const void *oh, size_t len, int verbosity)
1784 {
1785     print_and_free(stream, ofp_to_string(oh, len, verbosity));
1786 }
1787
1788 /* Dumps the contents of the Ethernet frame in the 'len' bytes starting at
1789  * 'data' to 'stream' using tcpdump.  'total_len' specifies the full length of
1790  * the Ethernet frame (of which 'len' bytes were captured).
1791  *
1792  * This starts and kills a tcpdump subprocess so it's quite expensive. */
1793 void
1794 ofp_print_packet(FILE *stream, const void *data, size_t len, size_t total_len)
1795 {
1796     print_and_free(stream, ofp_packet_to_string(data, len, total_len));
1797 }