nx-match: Update register check functions.
[sliver-openvswitch.git] / lib / ofp-parse.c
1 /*
2  * Copyright (c) 2010, 2011 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
19 #include "ofp-parse.h"
20
21 #include <ctype.h>
22 #include <errno.h>
23 #include <stdlib.h>
24
25 #include "autopath.h"
26 #include "bundle.h"
27 #include "byte-order.h"
28 #include "dynamic-string.h"
29 #include "netdev.h"
30 #include "multipath.h"
31 #include "nx-match.h"
32 #include "ofp-util.h"
33 #include "ofpbuf.h"
34 #include "openflow/openflow.h"
35 #include "packets.h"
36 #include "socket-util.h"
37 #include "vconn.h"
38 #include "vlog.h"
39
40 VLOG_DEFINE_THIS_MODULE(ofp_parse);
41
42 static uint32_t
43 str_to_u32(const char *str)
44 {
45     char *tail;
46     uint32_t value;
47
48     if (!str[0]) {
49         ovs_fatal(0, "missing required numeric argument");
50     }
51
52     errno = 0;
53     value = strtoul(str, &tail, 0);
54     if (errno == EINVAL || errno == ERANGE || *tail) {
55         ovs_fatal(0, "invalid numeric format %s", str);
56     }
57     return value;
58 }
59
60 static uint64_t
61 str_to_u64(const char *str)
62 {
63     char *tail;
64     uint64_t value;
65
66     if (!str[0]) {
67         ovs_fatal(0, "missing required numeric argument");
68     }
69
70     errno = 0;
71     value = strtoull(str, &tail, 0);
72     if (errno == EINVAL || errno == ERANGE || *tail) {
73         ovs_fatal(0, "invalid numeric format %s", str);
74     }
75     return value;
76 }
77
78 static void
79 str_to_mac(const char *str, uint8_t mac[6])
80 {
81     if (sscanf(str, ETH_ADDR_SCAN_FMT, ETH_ADDR_SCAN_ARGS(mac))
82         != ETH_ADDR_SCAN_COUNT) {
83         ovs_fatal(0, "invalid mac address %s", str);
84     }
85 }
86
87 static void
88 str_to_eth_dst(const char *str,
89                uint8_t mac[ETH_ADDR_LEN], uint8_t mask[ETH_ADDR_LEN])
90 {
91     if (sscanf(str, ETH_ADDR_SCAN_FMT"/"ETH_ADDR_SCAN_FMT,
92                ETH_ADDR_SCAN_ARGS(mac), ETH_ADDR_SCAN_ARGS(mask))
93         == ETH_ADDR_SCAN_COUNT * 2) {
94         if (!flow_wildcards_is_dl_dst_mask_valid(mask)) {
95             ovs_fatal(0, "%s: invalid Ethernet destination mask (only "
96                       "00:00:00:00:00:00, 01:00:00:00:00:00, "
97                       "fe:ff:ff:ff:ff:ff, and ff:ff:ff:ff:ff:ff are allowed)",
98                       str);
99         }
100     } else if (sscanf(str, ETH_ADDR_SCAN_FMT, ETH_ADDR_SCAN_ARGS(mac))
101                == ETH_ADDR_SCAN_COUNT) {
102         memset(mask, 0xff, ETH_ADDR_LEN);
103     } else {
104         ovs_fatal(0, "invalid mac address %s", str);
105     }
106 }
107
108 static void
109 str_to_ip(const char *str_, ovs_be32 *ip, ovs_be32 *maskp)
110 {
111     char *str = xstrdup(str_);
112     char *save_ptr = NULL;
113     const char *name, *netmask;
114     struct in_addr in_addr;
115     ovs_be32 mask;
116     int retval;
117
118     name = strtok_r(str, "/", &save_ptr);
119     retval = name ? lookup_ip(name, &in_addr) : EINVAL;
120     if (retval) {
121         ovs_fatal(0, "%s: could not convert to IP address", str);
122     }
123     *ip = in_addr.s_addr;
124
125     netmask = strtok_r(NULL, "/", &save_ptr);
126     if (netmask) {
127         uint8_t o[4];
128         if (sscanf(netmask, "%"SCNu8".%"SCNu8".%"SCNu8".%"SCNu8,
129                    &o[0], &o[1], &o[2], &o[3]) == 4) {
130             mask = htonl((o[0] << 24) | (o[1] << 16) | (o[2] << 8) | o[3]);
131         } else {
132             int prefix = atoi(netmask);
133             if (prefix <= 0 || prefix > 32) {
134                 ovs_fatal(0, "%s: network prefix bits not between 1 and 32",
135                           str);
136             } else if (prefix == 32) {
137                 mask = htonl(UINT32_MAX);
138             } else {
139                 mask = htonl(((1u << prefix) - 1) << (32 - prefix));
140             }
141         }
142     } else {
143         mask = htonl(UINT32_MAX);
144     }
145     *ip &= mask;
146
147     if (maskp) {
148         *maskp = mask;
149     } else {
150         if (mask != htonl(UINT32_MAX)) {
151             ovs_fatal(0, "%s: netmask not allowed here", str_);
152         }
153     }
154
155     free(str);
156 }
157
158 static void
159 str_to_tun_id(const char *str, ovs_be64 *tun_idp, ovs_be64 *maskp)
160 {
161     uint64_t tun_id, mask;
162     char *tail;
163
164     errno = 0;
165     tun_id = strtoull(str, &tail, 0);
166     if (errno || (*tail != '\0' && *tail != '/')) {
167         goto error;
168     }
169
170     if (*tail == '/') {
171         mask = strtoull(tail + 1, &tail, 0);
172         if (errno || *tail != '\0') {
173             goto error;
174         }
175     } else {
176         mask = UINT64_MAX;
177     }
178
179     *tun_idp = htonll(tun_id);
180     *maskp = htonll(mask);
181     return;
182
183 error:
184     ovs_fatal(0, "%s: bad syntax for tunnel id", str);
185 }
186
187 static void
188 str_to_vlan_tci(const char *str, ovs_be16 *vlan_tcip, ovs_be16 *maskp)
189 {
190     uint16_t vlan_tci, mask;
191     char *tail;
192
193     errno = 0;
194     vlan_tci = strtol(str, &tail, 0);
195     if (errno || (*tail != '\0' && *tail != '/')) {
196         goto error;
197     }
198
199     if (*tail == '/') {
200         mask = strtol(tail + 1, &tail, 0);
201         if (errno || *tail != '\0') {
202             goto error;
203         }
204     } else {
205         mask = UINT16_MAX;
206     }
207
208     *vlan_tcip = htons(vlan_tci);
209     *maskp = htons(mask);
210     return;
211
212 error:
213     ovs_fatal(0, "%s: bad syntax for vlan_tci", str);
214 }
215
216 static void
217 str_to_ipv6(const char *str_, struct in6_addr *addrp, struct in6_addr *maskp)
218 {
219     char *str = xstrdup(str_);
220     char *save_ptr = NULL;
221     const char *name, *netmask;
222     struct in6_addr addr, mask;
223     int retval;
224
225     name = strtok_r(str, "/", &save_ptr);
226     retval = name ? lookup_ipv6(name, &addr) : EINVAL;
227     if (retval) {
228         ovs_fatal(0, "%s: could not convert to IPv6 address", str);
229     }
230
231     netmask = strtok_r(NULL, "/", &save_ptr);
232     if (netmask) {
233         int prefix = atoi(netmask);
234         if (prefix <= 0 || prefix > 128) {
235             ovs_fatal(0, "%s: network prefix bits not between 1 and 128",
236                       str);
237         } else {
238             mask = ipv6_create_mask(prefix);
239         }
240     } else {
241         mask = in6addr_exact;
242     }
243     *addrp = ipv6_addr_bitand(&addr, &mask);
244
245     if (maskp) {
246         *maskp = mask;
247     } else {
248         if (!ipv6_mask_is_exact(&mask)) {
249             ovs_fatal(0, "%s: netmask not allowed here", str_);
250         }
251     }
252
253     free(str);
254 }
255
256 static void *
257 put_action(struct ofpbuf *b, size_t size, uint16_t type)
258 {
259     struct ofp_action_header *ah = ofpbuf_put_zeros(b, size);
260     ah->type = htons(type);
261     ah->len = htons(size);
262     return ah;
263 }
264
265 static struct ofp_action_output *
266 put_output_action(struct ofpbuf *b, uint16_t port)
267 {
268     struct ofp_action_output *oao = put_action(b, sizeof *oao, OFPAT_OUTPUT);
269     oao->port = htons(port);
270     return oao;
271 }
272
273 static void
274 put_enqueue_action(struct ofpbuf *b, uint16_t port, uint32_t queue)
275 {
276     struct ofp_action_enqueue *oae = put_action(b, sizeof *oae, OFPAT_ENQUEUE);
277     oae->port = htons(port);
278     oae->queue_id = htonl(queue);
279 }
280
281 static void
282 put_dl_addr_action(struct ofpbuf *b, uint16_t type, const char *addr)
283 {
284     struct ofp_action_dl_addr *oada = put_action(b, sizeof *oada, type);
285     str_to_mac(addr, oada->dl_addr);
286 }
287
288 static bool
289 parse_port_name(const char *name, uint16_t *port)
290 {
291     struct pair {
292         const char *name;
293         uint16_t value;
294     };
295     static const struct pair pairs[] = {
296 #define DEF_PAIR(NAME) {#NAME, OFPP_##NAME}
297         DEF_PAIR(IN_PORT),
298         DEF_PAIR(TABLE),
299         DEF_PAIR(NORMAL),
300         DEF_PAIR(FLOOD),
301         DEF_PAIR(ALL),
302         DEF_PAIR(CONTROLLER),
303         DEF_PAIR(LOCAL),
304         DEF_PAIR(NONE),
305 #undef DEF_PAIR
306     };
307     static const int n_pairs = ARRAY_SIZE(pairs);
308     size_t i;
309
310     for (i = 0; i < n_pairs; i++) {
311         if (!strcasecmp(name, pairs[i].name)) {
312             *port = pairs[i].value;
313             return true;
314         }
315     }
316     return false;
317 }
318
319 static void
320 parse_resubmit(struct nx_action_resubmit *nar, char *arg)
321 {
322     char *in_port_s, *table_s;
323     uint16_t in_port;
324     uint8_t table;
325
326     in_port_s = strsep(&arg, ",");
327     if (in_port_s && in_port_s[0]) {
328         if (!parse_port_name(in_port_s, &in_port)) {
329             in_port = str_to_u32(in_port_s);
330         }
331     } else {
332         in_port = OFPP_IN_PORT;
333     }
334
335     table_s = strsep(&arg, ",");
336     table = table_s && table_s[0] ? str_to_u32(table_s) : 255;
337
338     if (in_port == OFPP_IN_PORT && table == 255) {
339         ovs_fatal(0, "at least one \"in_port\" or \"table\" must be specified "
340                   " on resubmit");
341     }
342
343     nar->vendor = htonl(NX_VENDOR_ID);
344     nar->in_port = htons(in_port);
345     if (in_port != OFPP_IN_PORT && table == 255) {
346         nar->subtype = htons(NXAST_RESUBMIT);
347     } else {
348         nar->subtype = htons(NXAST_RESUBMIT_TABLE);
349         nar->table = table;
350     }
351 }
352
353 static void
354 str_to_action(char *str, struct ofpbuf *b)
355 {
356     bool drop = false;
357     int n_actions;
358     char *pos;
359
360     pos = str;
361     n_actions = 0;
362     for (;;) {
363         char empty_string[] = "";
364         char *act, *arg;
365         size_t actlen;
366         uint16_t port;
367
368         pos += strspn(pos, ", \t\r\n");
369         if (*pos == '\0') {
370             break;
371         }
372
373         if (drop) {
374             ovs_fatal(0, "Drop actions must not be followed by other actions");
375         }
376
377         act = pos;
378         actlen = strcspn(pos, ":(, \t\r\n");
379         if (act[actlen] == ':') {
380             /* The argument can be separated by a colon. */
381             size_t arglen;
382
383             arg = act + actlen + 1;
384             arglen = strcspn(arg, ", \t\r\n");
385             pos = arg + arglen + (arg[arglen] != '\0');
386             arg[arglen] = '\0';
387         } else if (act[actlen] == '(') {
388             /* The argument can be surrounded by balanced parentheses.  The
389              * outermost set of parentheses is removed. */
390             int level = 1;
391             size_t arglen;
392
393             arg = act + actlen + 1;
394             for (arglen = 0; level > 0; arglen++) {
395                 switch (arg[arglen]) {
396                 case '\0':
397                     ovs_fatal(0, "unbalanced parentheses in argument to %s "
398                               "action", act);
399
400                 case '(':
401                     level++;
402                     break;
403
404                 case ')':
405                     level--;
406                     break;
407                 }
408             }
409             arg[arglen - 1] = '\0';
410             pos = arg + arglen;
411         } else {
412             /* There might be no argument at all. */
413             arg = empty_string;
414             pos = act + actlen + (act[actlen] != '\0');
415         }
416         act[actlen] = '\0';
417
418         if (!strcasecmp(act, "mod_vlan_vid")) {
419             struct ofp_action_vlan_vid *va;
420             va = put_action(b, sizeof *va, OFPAT_SET_VLAN_VID);
421             va->vlan_vid = htons(str_to_u32(arg));
422         } else if (!strcasecmp(act, "mod_vlan_pcp")) {
423             struct ofp_action_vlan_pcp *va;
424             va = put_action(b, sizeof *va, OFPAT_SET_VLAN_PCP);
425             va->vlan_pcp = str_to_u32(arg);
426         } else if (!strcasecmp(act, "strip_vlan")) {
427             struct ofp_action_header *ah;
428             ah = put_action(b, sizeof *ah, OFPAT_STRIP_VLAN);
429             ah->type = htons(OFPAT_STRIP_VLAN);
430         } else if (!strcasecmp(act, "mod_dl_src")) {
431             put_dl_addr_action(b, OFPAT_SET_DL_SRC, arg);
432         } else if (!strcasecmp(act, "mod_dl_dst")) {
433             put_dl_addr_action(b, OFPAT_SET_DL_DST, arg);
434         } else if (!strcasecmp(act, "mod_nw_src")) {
435             struct ofp_action_nw_addr *na;
436             na = put_action(b, sizeof *na, OFPAT_SET_NW_SRC);
437             str_to_ip(arg, &na->nw_addr, NULL);
438         } else if (!strcasecmp(act, "mod_nw_dst")) {
439             struct ofp_action_nw_addr *na;
440             na = put_action(b, sizeof *na, OFPAT_SET_NW_DST);
441             str_to_ip(arg, &na->nw_addr, NULL);
442         } else if (!strcasecmp(act, "mod_tp_src")) {
443             struct ofp_action_tp_port *ta;
444             ta = put_action(b, sizeof *ta, OFPAT_SET_TP_SRC);
445             ta->tp_port = htons(str_to_u32(arg));
446         } else if (!strcasecmp(act, "mod_tp_dst")) {
447             struct ofp_action_tp_port *ta;
448             ta = put_action(b, sizeof *ta, OFPAT_SET_TP_DST);
449             ta->tp_port = htons(str_to_u32(arg));
450         } else if (!strcasecmp(act, "mod_nw_tos")) {
451             struct ofp_action_nw_tos *nt;
452             nt = put_action(b, sizeof *nt, OFPAT_SET_NW_TOS);
453             nt->nw_tos = str_to_u32(arg);
454         } else if (!strcasecmp(act, "resubmit")) {
455             struct nx_action_resubmit *nar;
456             nar = put_action(b, sizeof *nar, OFPAT_VENDOR);
457             parse_resubmit(nar, arg);
458         } else if (!strcasecmp(act, "set_tunnel")
459                    || !strcasecmp(act, "set_tunnel64")) {
460             uint64_t tun_id = str_to_u64(arg);
461             if (!strcasecmp(act, "set_tunnel64") || tun_id > UINT32_MAX) {
462                 struct nx_action_set_tunnel64 *nast64;
463                 nast64 = put_action(b, sizeof *nast64, OFPAT_VENDOR);
464                 nast64->vendor = htonl(NX_VENDOR_ID);
465                 nast64->subtype = htons(NXAST_SET_TUNNEL64);
466                 nast64->tun_id = htonll(tun_id);
467             } else {
468                 struct nx_action_set_tunnel *nast;
469                 nast = put_action(b, sizeof *nast, OFPAT_VENDOR);
470                 nast->vendor = htonl(NX_VENDOR_ID);
471                 nast->subtype = htons(NXAST_SET_TUNNEL);
472                 nast->tun_id = htonl(tun_id);
473             }
474         } else if (!strcasecmp(act, "set_queue")) {
475             struct nx_action_set_queue *nasq;
476             nasq = put_action(b, sizeof *nasq, OFPAT_VENDOR);
477             nasq->vendor = htonl(NX_VENDOR_ID);
478             nasq->subtype = htons(NXAST_SET_QUEUE);
479             nasq->queue_id = htonl(str_to_u32(arg));
480         } else if (!strcasecmp(act, "pop_queue")) {
481             struct nx_action_header *nah;
482             nah = put_action(b, sizeof *nah, OFPAT_VENDOR);
483             nah->vendor = htonl(NX_VENDOR_ID);
484             nah->subtype = htons(NXAST_POP_QUEUE);
485         } else if (!strcasecmp(act, "note")) {
486             size_t start_ofs = b->size;
487             struct nx_action_note *nan;
488             int remainder;
489             size_t len;
490
491             nan = put_action(b, sizeof *nan, OFPAT_VENDOR);
492             nan->vendor = htonl(NX_VENDOR_ID);
493             nan->subtype = htons(NXAST_NOTE);
494
495             b->size -= sizeof nan->note;
496             while (*arg != '\0') {
497                 uint8_t byte;
498                 bool ok;
499
500                 if (*arg == '.') {
501                     arg++;
502                 }
503                 if (*arg == '\0') {
504                     break;
505                 }
506
507                 byte = hexits_value(arg, 2, &ok);
508                 if (!ok) {
509                     ovs_fatal(0, "bad hex digit in `note' argument");
510                 }
511                 ofpbuf_put(b, &byte, 1);
512
513                 arg += 2;
514             }
515
516             len = b->size - start_ofs;
517             remainder = len % OFP_ACTION_ALIGN;
518             if (remainder) {
519                 ofpbuf_put_zeros(b, OFP_ACTION_ALIGN - remainder);
520             }
521             nan = (struct nx_action_note *)((char *)b->data + start_ofs);
522             nan->len = htons(b->size - start_ofs);
523         } else if (!strcasecmp(act, "move")) {
524             struct nx_action_reg_move *move;
525             move = ofpbuf_put_uninit(b, sizeof *move);
526             nxm_parse_reg_move(move, arg);
527         } else if (!strcasecmp(act, "load")) {
528             struct nx_action_reg_load *load;
529             load = ofpbuf_put_uninit(b, sizeof *load);
530             nxm_parse_reg_load(load, arg);
531         } else if (!strcasecmp(act, "multipath")) {
532             struct nx_action_multipath *nam;
533             nam = ofpbuf_put_uninit(b, sizeof *nam);
534             multipath_parse(nam, arg);
535         } else if (!strcasecmp(act, "autopath")) {
536             struct nx_action_autopath *naa;
537             naa = ofpbuf_put_uninit(b, sizeof *naa);
538             autopath_parse(naa, arg);
539         } else if (!strcasecmp(act, "bundle")) {
540             bundle_parse(b, arg);
541         } else if (!strcasecmp(act, "bundle_load")) {
542             bundle_parse_load(b, arg);
543         } else if (!strcasecmp(act, "output")) {
544             put_output_action(b, str_to_u32(arg));
545         } else if (!strcasecmp(act, "enqueue")) {
546             char *sp = NULL;
547             char *port_s = strtok_r(arg, ":q", &sp);
548             char *queue = strtok_r(NULL, "", &sp);
549             if (port_s == NULL || queue == NULL) {
550                 ovs_fatal(0, "\"enqueue\" syntax is \"enqueue:PORT:QUEUE\"");
551             }
552             put_enqueue_action(b, str_to_u32(port_s), str_to_u32(queue));
553         } else if (!strcasecmp(act, "drop")) {
554             /* A drop action in OpenFlow occurs by just not setting
555              * an action. */
556             drop = true;
557             if (n_actions) {
558                 ovs_fatal(0, "Drop actions must not be preceded by other "
559                           "actions");
560             }
561         } else if (!strcasecmp(act, "CONTROLLER")) {
562             struct ofp_action_output *oao;
563             oao = put_output_action(b, OFPP_CONTROLLER);
564
565             /* Unless a numeric argument is specified, we send the whole
566              * packet to the controller. */
567             if (arg[0] && (strspn(arg, "0123456789") == strlen(arg))) {
568                oao->max_len = htons(str_to_u32(arg));
569             } else {
570                 oao->max_len = htons(UINT16_MAX);
571             }
572         } else if (parse_port_name(act, &port)) {
573             put_output_action(b, port);
574         } else if (strspn(act, "0123456789") == strlen(act)) {
575             put_output_action(b, str_to_u32(act));
576         } else {
577             ovs_fatal(0, "Unknown action: %s", act);
578         }
579         n_actions++;
580     }
581 }
582
583 struct protocol {
584     const char *name;
585     uint16_t dl_type;
586     uint8_t nw_proto;
587 };
588
589 static bool
590 parse_protocol(const char *name, const struct protocol **p_out)
591 {
592     static const struct protocol protocols[] = {
593         { "ip", ETH_TYPE_IP, 0 },
594         { "arp", ETH_TYPE_ARP, 0 },
595         { "icmp", ETH_TYPE_IP, IPPROTO_ICMP },
596         { "tcp", ETH_TYPE_IP, IPPROTO_TCP },
597         { "udp", ETH_TYPE_IP, IPPROTO_UDP },
598         { "ipv6", ETH_TYPE_IPV6, 0 },
599         { "ip6", ETH_TYPE_IPV6, 0 },
600         { "icmp6", ETH_TYPE_IPV6, IPPROTO_ICMPV6 },
601         { "tcp6", ETH_TYPE_IPV6, IPPROTO_TCP },
602         { "udp6", ETH_TYPE_IPV6, IPPROTO_UDP },
603     };
604     const struct protocol *p;
605
606     for (p = protocols; p < &protocols[ARRAY_SIZE(protocols)]; p++) {
607         if (!strcmp(p->name, name)) {
608             *p_out = p;
609             return true;
610         }
611     }
612     *p_out = NULL;
613     return false;
614 }
615
616 BUILD_ASSERT_DECL(FLOW_WC_SEQ == 1);
617 #define FIELDS                                              \
618     FIELD(F_TUN_ID,      "tun_id",      0)                  \
619     FIELD(F_IN_PORT,     "in_port",     FWW_IN_PORT)        \
620     FIELD(F_DL_VLAN,     "dl_vlan",     0)                  \
621     FIELD(F_DL_VLAN_PCP, "dl_vlan_pcp", 0)                  \
622     FIELD(F_VLAN_TCI,    "vlan_tci",    0)                  \
623     FIELD(F_DL_SRC,      "dl_src",      FWW_DL_SRC)         \
624     FIELD(F_DL_DST,      "dl_dst",      FWW_DL_DST | FWW_ETH_MCAST) \
625     FIELD(F_DL_TYPE,     "dl_type",     FWW_DL_TYPE)        \
626     FIELD(F_NW_SRC,      "nw_src",      0)                  \
627     FIELD(F_NW_DST,      "nw_dst",      0)                  \
628     FIELD(F_NW_PROTO,    "nw_proto",    FWW_NW_PROTO)       \
629     FIELD(F_NW_TOS,      "nw_tos",      FWW_NW_TOS)         \
630     FIELD(F_TP_SRC,      "tp_src",      FWW_TP_SRC)         \
631     FIELD(F_TP_DST,      "tp_dst",      FWW_TP_DST)         \
632     FIELD(F_ICMP_TYPE,   "icmp_type",   FWW_TP_SRC)         \
633     FIELD(F_ICMP_CODE,   "icmp_code",   FWW_TP_DST)         \
634     FIELD(F_ARP_SHA,     "arp_sha",     FWW_ARP_SHA)        \
635     FIELD(F_ARP_THA,     "arp_tha",     FWW_ARP_THA)        \
636     FIELD(F_IPV6_SRC,    "ipv6_src",    0)                  \
637     FIELD(F_IPV6_DST,    "ipv6_dst",    0)                  \
638     FIELD(F_ND_TARGET,   "nd_target",   FWW_ND_TARGET)      \
639     FIELD(F_ND_SLL,      "nd_sll",      FWW_ARP_SHA)        \
640     FIELD(F_ND_TLL,      "nd_tll",      FWW_ARP_THA)
641
642 enum field_index {
643 #define FIELD(ENUM, NAME, WILDCARD) ENUM,
644     FIELDS
645 #undef FIELD
646     N_FIELDS
647 };
648
649 struct field {
650     enum field_index index;
651     const char *name;
652     flow_wildcards_t wildcard;  /* FWW_* bit. */
653 };
654
655 static void
656 ofp_fatal(const char *flow, bool verbose, const char *format, ...)
657 {
658     va_list args;
659
660     if (verbose) {
661         fprintf(stderr, "%s:\n", flow);
662     }
663
664     va_start(args, format);
665     ovs_fatal_valist(0, format, args);
666 }
667
668 static bool
669 parse_field_name(const char *name, const struct field **f_out)
670 {
671     static const struct field fields[N_FIELDS] = {
672 #define FIELD(ENUM, NAME, WILDCARD) { ENUM, NAME, WILDCARD },
673         FIELDS
674 #undef FIELD
675     };
676     const struct field *f;
677
678     for (f = fields; f < &fields[ARRAY_SIZE(fields)]; f++) {
679         if (!strcmp(f->name, name)) {
680             *f_out = f;
681             return true;
682         }
683     }
684     *f_out = NULL;
685     return false;
686 }
687
688 static void
689 parse_field_value(struct cls_rule *rule, enum field_index index,
690                   const char *value)
691 {
692     uint8_t mac[ETH_ADDR_LEN], mac_mask[ETH_ADDR_LEN];
693     ovs_be64 tun_id, tun_mask;
694     ovs_be32 ip, mask;
695     ovs_be16 tci, tci_mask;
696     struct in6_addr ipv6, ipv6_mask;
697     uint16_t port_no;
698
699     switch (index) {
700     case F_TUN_ID:
701         str_to_tun_id(value, &tun_id, &tun_mask);
702         cls_rule_set_tun_id_masked(rule, tun_id, tun_mask);
703         break;
704
705     case F_IN_PORT:
706         if (!parse_port_name(value, &port_no)) {
707             port_no = atoi(value);
708         }
709         cls_rule_set_in_port(rule, port_no);
710         break;
711
712     case F_DL_VLAN:
713         cls_rule_set_dl_vlan(rule, htons(str_to_u32(value)));
714         break;
715
716     case F_DL_VLAN_PCP:
717         cls_rule_set_dl_vlan_pcp(rule, str_to_u32(value));
718         break;
719
720     case F_VLAN_TCI:
721         str_to_vlan_tci(value, &tci, &tci_mask);
722         cls_rule_set_dl_tci_masked(rule, tci, tci_mask);
723         break;
724
725     case F_DL_SRC:
726         str_to_mac(value, mac);
727         cls_rule_set_dl_src(rule, mac);
728         break;
729
730     case F_DL_DST:
731         str_to_eth_dst(value, mac, mac_mask);
732         cls_rule_set_dl_dst_masked(rule, mac, mac_mask);
733         break;
734
735     case F_DL_TYPE:
736         cls_rule_set_dl_type(rule, htons(str_to_u32(value)));
737         break;
738
739     case F_NW_SRC:
740         str_to_ip(value, &ip, &mask);
741         cls_rule_set_nw_src_masked(rule, ip, mask);
742         break;
743
744     case F_NW_DST:
745         str_to_ip(value, &ip, &mask);
746         cls_rule_set_nw_dst_masked(rule, ip, mask);
747         break;
748
749     case F_NW_PROTO:
750         cls_rule_set_nw_proto(rule, str_to_u32(value));
751         break;
752
753     case F_NW_TOS:
754         cls_rule_set_nw_tos(rule, str_to_u32(value));
755         break;
756
757     case F_TP_SRC:
758         cls_rule_set_tp_src(rule, htons(str_to_u32(value)));
759         break;
760
761     case F_TP_DST:
762         cls_rule_set_tp_dst(rule, htons(str_to_u32(value)));
763         break;
764
765     case F_ICMP_TYPE:
766         cls_rule_set_icmp_type(rule, str_to_u32(value));
767         break;
768
769     case F_ICMP_CODE:
770         cls_rule_set_icmp_code(rule, str_to_u32(value));
771         break;
772
773     case F_ARP_SHA:
774         str_to_mac(value, mac);
775         cls_rule_set_arp_sha(rule, mac);
776         break;
777
778     case F_ARP_THA:
779         str_to_mac(value, mac);
780         cls_rule_set_arp_tha(rule, mac);
781         break;
782
783     case F_IPV6_SRC:
784         str_to_ipv6(value, &ipv6, &ipv6_mask);
785         cls_rule_set_ipv6_src_masked(rule, &ipv6, &ipv6_mask);
786         break;
787
788     case F_IPV6_DST:
789         str_to_ipv6(value, &ipv6, &ipv6_mask);
790         cls_rule_set_ipv6_dst_masked(rule, &ipv6, &ipv6_mask);
791         break;
792
793     case F_ND_TARGET:
794         str_to_ipv6(value, &ipv6, NULL);
795         cls_rule_set_nd_target(rule, ipv6);
796         break;
797
798     case F_ND_SLL:
799         str_to_mac(value, mac);
800         cls_rule_set_arp_sha(rule, mac);
801         break;
802
803     case F_ND_TLL:
804         str_to_mac(value, mac);
805         cls_rule_set_arp_tha(rule, mac);
806         break;
807
808     case N_FIELDS:
809         NOT_REACHED();
810     }
811 }
812
813 static void
814 parse_reg_value(struct cls_rule *rule, int reg_idx, const char *value)
815 {
816     uint32_t reg_value, reg_mask;
817
818     if (!strcmp(value, "ANY") || !strcmp(value, "*")) {
819         cls_rule_set_reg_masked(rule, reg_idx, 0, 0);
820     } else if (sscanf(value, "%"SCNi32"/%"SCNi32,
821                       &reg_value, &reg_mask) == 2) {
822         cls_rule_set_reg_masked(rule, reg_idx, reg_value, reg_mask);
823     } else if (sscanf(value, "%"SCNi32, &reg_value)) {
824         cls_rule_set_reg(rule, reg_idx, reg_value);
825     } else {
826         ovs_fatal(0, "register fields must take the form <value> "
827                   "or <value>/<mask>");
828     }
829 }
830
831 /* Convert 'str_' (as described in the Flow Syntax section of the ovs-ofctl man
832  * page) into 'fm' for sending the specified flow_mod 'command' to a switch.
833  * If 'actions' is specified, an action must be in 'string' and may be expanded
834  * or reallocated.
835  *
836  * To parse syntax for an OFPT_FLOW_MOD (or NXT_FLOW_MOD), use an OFPFC_*
837  * constant for 'command'.  To parse syntax for an OFPST_FLOW or
838  * OFPST_AGGREGATE (or NXST_FLOW or NXST_AGGREGATE), use -1 for 'command'. */
839 void
840 parse_ofp_str(struct ofputil_flow_mod *fm, int command, const char *str_,
841               bool verbose)
842 {
843     enum {
844         F_OUT_PORT = 1 << 0,
845         F_ACTIONS = 1 << 1,
846         F_COOKIE = 1 << 2,
847         F_TIMEOUT = 1 << 3,
848         F_PRIORITY = 1 << 4
849     } fields;
850     char *string = xstrdup(str_);
851     char *save_ptr = NULL;
852     char *name;
853
854     switch (command) {
855     case -1:
856         fields = F_OUT_PORT;
857         break;
858
859     case OFPFC_ADD:
860         fields = F_ACTIONS | F_COOKIE | F_TIMEOUT | F_PRIORITY;
861         break;
862
863     case OFPFC_DELETE:
864         fields = F_OUT_PORT;
865         break;
866
867     case OFPFC_DELETE_STRICT:
868         fields = F_OUT_PORT | F_PRIORITY;
869         break;
870
871     case OFPFC_MODIFY:
872         fields = F_ACTIONS | F_COOKIE;
873         break;
874
875     case OFPFC_MODIFY_STRICT:
876         fields = F_ACTIONS | F_COOKIE | F_PRIORITY;
877         break;
878
879     default:
880         NOT_REACHED();
881     }
882
883     cls_rule_init_catchall(&fm->cr, OFP_DEFAULT_PRIORITY);
884     fm->cookie = htonll(0);
885     fm->table_id = 0xff;
886     fm->command = command;
887     fm->idle_timeout = OFP_FLOW_PERMANENT;
888     fm->hard_timeout = OFP_FLOW_PERMANENT;
889     fm->buffer_id = UINT32_MAX;
890     fm->out_port = OFPP_NONE;
891     fm->flags = 0;
892     if (fields & F_ACTIONS) {
893         struct ofpbuf actions;
894         char *act_str;
895
896         act_str = strstr(string, "action");
897         if (!act_str) {
898             ofp_fatal(str_, verbose, "must specify an action");
899         }
900         *act_str = '\0';
901
902         act_str = strchr(act_str + 1, '=');
903         if (!act_str) {
904             ofp_fatal(str_, verbose, "must specify an action");
905         }
906
907         act_str++;
908
909         ofpbuf_init(&actions, sizeof(union ofp_action));
910         str_to_action(act_str, &actions);
911         fm->actions = ofpbuf_steal_data(&actions);
912         fm->n_actions = actions.size / sizeof(union ofp_action);
913     } else {
914         fm->actions = NULL;
915         fm->n_actions = 0;
916     }
917     for (name = strtok_r(string, "=, \t\r\n", &save_ptr); name;
918          name = strtok_r(NULL, "=, \t\r\n", &save_ptr)) {
919         const struct protocol *p;
920
921         if (parse_protocol(name, &p)) {
922             cls_rule_set_dl_type(&fm->cr, htons(p->dl_type));
923             if (p->nw_proto) {
924                 cls_rule_set_nw_proto(&fm->cr, p->nw_proto);
925             }
926         } else {
927             const struct field *f;
928             char *value;
929
930             value = strtok_r(NULL, ", \t\r\n", &save_ptr);
931             if (!value) {
932                 ofp_fatal(str_, verbose, "field %s missing value", name);
933             }
934
935             if (!strcmp(name, "table")) {
936                 fm->table_id = atoi(value);
937             } else if (!strcmp(name, "out_port")) {
938                 fm->out_port = atoi(value);
939             } else if (fields & F_PRIORITY && !strcmp(name, "priority")) {
940                 fm->cr.priority = atoi(value);
941             } else if (fields & F_TIMEOUT && !strcmp(name, "idle_timeout")) {
942                 fm->idle_timeout = atoi(value);
943             } else if (fields & F_TIMEOUT && !strcmp(name, "hard_timeout")) {
944                 fm->hard_timeout = atoi(value);
945             } else if (fields & F_COOKIE && !strcmp(name, "cookie")) {
946                 fm->cookie = htonll(str_to_u64(value));
947             } else if (parse_field_name(name, &f)) {
948                 if (!strcmp(value, "*") || !strcmp(value, "ANY")) {
949                     if (f->wildcard) {
950                         fm->cr.wc.wildcards |= f->wildcard;
951                         cls_rule_zero_wildcarded_fields(&fm->cr);
952                     } else if (f->index == F_NW_SRC) {
953                         cls_rule_set_nw_src_masked(&fm->cr, 0, 0);
954                     } else if (f->index == F_NW_DST) {
955                         cls_rule_set_nw_dst_masked(&fm->cr, 0, 0);
956                     } else if (f->index == F_IPV6_SRC) {
957                         cls_rule_set_ipv6_src_masked(&fm->cr,
958                                 &in6addr_any, &in6addr_any);
959                     } else if (f->index == F_IPV6_DST) {
960                         cls_rule_set_ipv6_dst_masked(&fm->cr,
961                                 &in6addr_any, &in6addr_any);
962                     } else if (f->index == F_DL_VLAN) {
963                         cls_rule_set_any_vid(&fm->cr);
964                     } else if (f->index == F_DL_VLAN_PCP) {
965                         cls_rule_set_any_pcp(&fm->cr);
966                     } else {
967                         NOT_REACHED();
968                     }
969                 } else {
970                     parse_field_value(&fm->cr, f->index, value);
971                 }
972             } else if (!strncmp(name, "reg", 3)
973                        && isdigit((unsigned char) name[3])) {
974                 unsigned int reg_idx = atoi(name + 3);
975                 if (reg_idx >= FLOW_N_REGS) {
976                     if (verbose) {
977                         fprintf(stderr, "%s:\n", str_);
978                     }
979                     ofp_fatal(str_, verbose, "only %d registers supported", FLOW_N_REGS);
980                 }
981                 parse_reg_value(&fm->cr, reg_idx, value);
982             } else if (!strcmp(name, "duration")
983                        || !strcmp(name, "n_packets")
984                        || !strcmp(name, "n_bytes")) {
985                 /* Ignore these, so that users can feed the output of
986                  * "ovs-ofctl dump-flows" back into commands that parse
987                  * flows. */
988             } else {
989                 ofp_fatal(str_, verbose, "unknown keyword %s", name);
990             }
991         }
992     }
993
994     free(string);
995 }
996
997 /* Parses 'string' as an OFPT_FLOW_MOD or NXT_FLOW_MOD with command 'command'
998  * (one of OFPFC_*) and appends the parsed OpenFlow message to 'packets'.
999  * '*cur_format' should initially contain the flow format currently configured
1000  * on the connection; this function will add a message to change the flow
1001  * format and update '*cur_format', if this is necessary to add the parsed
1002  * flow. */
1003 void
1004 parse_ofp_flow_mod_str(struct list *packets, enum nx_flow_format *cur_format,
1005                        bool *flow_mod_table_id, char *string, uint16_t command,
1006                        bool verbose)
1007 {
1008     enum nx_flow_format min_format, next_format;
1009     struct cls_rule rule_copy;
1010     struct ofpbuf actions;
1011     struct ofpbuf *ofm;
1012     struct ofputil_flow_mod fm;
1013
1014     ofpbuf_init(&actions, 64);
1015     parse_ofp_str(&fm, command, string, verbose);
1016
1017     min_format = ofputil_min_flow_format(&fm.cr);
1018     next_format = MAX(*cur_format, min_format);
1019     if (next_format != *cur_format) {
1020         struct ofpbuf *sff = ofputil_make_set_flow_format(next_format);
1021         list_push_back(packets, &sff->list_node);
1022         *cur_format = next_format;
1023     }
1024
1025     /* Normalize a copy of the rule.  This ensures that non-normalized flows
1026      * get logged but doesn't affect what gets sent to the switch, so that the
1027      * switch can do whatever it likes with the flow. */
1028     rule_copy = fm.cr;
1029     ofputil_normalize_rule(&rule_copy, next_format);
1030
1031     if (fm.table_id != 0xff && !*flow_mod_table_id) {
1032         struct ofpbuf *sff = ofputil_make_flow_mod_table_id(true);
1033         list_push_back(packets, &sff->list_node);
1034         *flow_mod_table_id = true;
1035     }
1036
1037     ofm = ofputil_encode_flow_mod(&fm, *cur_format, *flow_mod_table_id);
1038     list_push_back(packets, &ofm->list_node);
1039
1040     ofpbuf_uninit(&actions);
1041 }
1042
1043 /* Similar to parse_ofp_flow_mod_str(), except that the string is read from
1044  * 'stream' and the command is always OFPFC_ADD.  Returns false if end-of-file
1045  * is reached before reading a flow, otherwise true. */
1046 bool
1047 parse_ofp_flow_mod_file(struct list *packets,
1048                         enum nx_flow_format *cur, bool *flow_mod_table_id,
1049                         FILE *stream, uint16_t command)
1050 {
1051     struct ds s;
1052     bool ok;
1053
1054     ds_init(&s);
1055     ok = ds_get_preprocessed_line(&s, stream) == 0;
1056     if (ok) {
1057         parse_ofp_flow_mod_str(packets, cur, flow_mod_table_id,
1058                                ds_cstr(&s), command, true);
1059     }
1060     ds_destroy(&s);
1061
1062     return ok;
1063 }
1064
1065 void
1066 parse_ofp_flow_stats_request_str(struct ofputil_flow_stats_request *fsr,
1067                                  bool aggregate, char *string)
1068 {
1069     struct ofputil_flow_mod fm;
1070
1071     parse_ofp_str(&fm, -1, string, false);
1072     fsr->aggregate = aggregate;
1073     fsr->match = fm.cr;
1074     fsr->out_port = fm.out_port;
1075     fsr->table_id = fm.table_id;
1076 }