Add support for set_mpls_ttl action
[sliver-openvswitch.git] / lib / ofp-parse.c
1 /*
2  * Copyright (c) 2010, 2011, 2012 Nicira, Inc.
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 "bundle.h"
26 #include "byte-order.h"
27 #include "dynamic-string.h"
28 #include "learn.h"
29 #include "meta-flow.h"
30 #include "multipath.h"
31 #include "netdev.h"
32 #include "nx-match.h"
33 #include "ofp-actions.h"
34 #include "ofp-util.h"
35 #include "ofpbuf.h"
36 #include "openflow/openflow.h"
37 #include "packets.h"
38 #include "socket-util.h"
39 #include "vconn.h"
40 #include "vlog.h"
41
42 VLOG_DEFINE_THIS_MODULE(ofp_parse);
43
44 static void ofp_fatal(const char *flow, bool verbose, const char *format, ...)
45     NO_RETURN;
46
47 static uint8_t
48 str_to_table_id(const char *str)
49 {
50     int table_id;
51
52     if (!str_to_int(str, 10, &table_id) || table_id < 0 || table_id > 255) {
53         ovs_fatal(0, "invalid table \"%s\"", str);
54     }
55     return table_id;
56 }
57
58 static uint16_t
59 str_to_u16(const char *str, const char *name)
60 {
61     int value;
62
63     if (!str_to_int(str, 0, &value) || value < 0 || value > 65535) {
64         ovs_fatal(0, "invalid %s \"%s\"", name, str);
65     }
66     return value;
67 }
68
69 static uint32_t
70 str_to_u32(const char *str)
71 {
72     char *tail;
73     uint32_t value;
74
75     if (!str[0]) {
76         ovs_fatal(0, "missing required numeric argument");
77     }
78
79     errno = 0;
80     value = strtoul(str, &tail, 0);
81     if (errno == EINVAL || errno == ERANGE || *tail) {
82         ovs_fatal(0, "invalid numeric format %s", str);
83     }
84     return value;
85 }
86
87 static uint64_t
88 str_to_u64(const char *str)
89 {
90     char *tail;
91     uint64_t value;
92
93     if (!str[0]) {
94         ovs_fatal(0, "missing required numeric argument");
95     }
96
97     errno = 0;
98     value = strtoull(str, &tail, 0);
99     if (errno == EINVAL || errno == ERANGE || *tail) {
100         ovs_fatal(0, "invalid numeric format %s", str);
101     }
102     return value;
103 }
104
105 static void
106 str_to_mac(const char *str, uint8_t mac[6])
107 {
108     if (sscanf(str, ETH_ADDR_SCAN_FMT, ETH_ADDR_SCAN_ARGS(mac))
109         != ETH_ADDR_SCAN_COUNT) {
110         ovs_fatal(0, "invalid mac address %s", str);
111     }
112 }
113
114 static void
115 str_to_ip(const char *str, ovs_be32 *ip)
116 {
117     struct in_addr in_addr;
118
119     if (lookup_ip(str, &in_addr)) {
120         ovs_fatal(0, "%s: could not convert to IP address", str);
121     }
122     *ip = in_addr.s_addr;
123 }
124
125 static void
126 parse_enqueue(char *arg, struct ofpbuf *ofpacts)
127 {
128     char *sp = NULL;
129     char *port = strtok_r(arg, ":q", &sp);
130     char *queue = strtok_r(NULL, "", &sp);
131     struct ofpact_enqueue *enqueue;
132
133     if (port == NULL || queue == NULL) {
134         ovs_fatal(0, "\"enqueue\" syntax is \"enqueue:PORT:QUEUE\"");
135     }
136
137     enqueue = ofpact_put_ENQUEUE(ofpacts);
138     enqueue->port = str_to_u32(port);
139     enqueue->queue = str_to_u32(queue);
140 }
141
142 static void
143 parse_output(char *arg, struct ofpbuf *ofpacts)
144 {
145     if (strchr(arg, '[')) {
146         struct ofpact_output_reg *output_reg;
147
148         output_reg = ofpact_put_OUTPUT_REG(ofpacts);
149         mf_parse_subfield(&output_reg->src, arg);
150         output_reg->max_len = UINT16_MAX;
151     } else {
152         struct ofpact_output *output;
153
154         output = ofpact_put_OUTPUT(ofpacts);
155         output->port = str_to_u32(arg);
156         output->max_len = output->port == OFPP_CONTROLLER ? UINT16_MAX : 0;
157     }
158 }
159
160 static void
161 parse_resubmit(char *arg, struct ofpbuf *ofpacts)
162 {
163     struct ofpact_resubmit *resubmit;
164     char *in_port_s, *table_s;
165
166     resubmit = ofpact_put_RESUBMIT(ofpacts);
167
168     in_port_s = strsep(&arg, ",");
169     if (in_port_s && in_port_s[0]) {
170         if (!ofputil_port_from_string(in_port_s, &resubmit->in_port)) {
171             ovs_fatal(0, "%s: resubmit to unknown port", in_port_s);
172         }
173     } else {
174         resubmit->in_port = OFPP_IN_PORT;
175     }
176
177     table_s = strsep(&arg, ",");
178     resubmit->table_id = table_s && table_s[0] ? str_to_u32(table_s) : 255;
179
180     if (resubmit->in_port == OFPP_IN_PORT && resubmit->table_id == 255) {
181         ovs_fatal(0, "at least one \"in_port\" or \"table\" must be specified "
182                   " on resubmit");
183     }
184 }
185
186 static void
187 parse_note(const char *arg, struct ofpbuf *ofpacts)
188 {
189     struct ofpact_note *note;
190
191     note = ofpact_put_NOTE(ofpacts);
192     while (*arg != '\0') {
193         uint8_t byte;
194         bool ok;
195
196         if (*arg == '.') {
197             arg++;
198         }
199         if (*arg == '\0') {
200             break;
201         }
202
203         byte = hexits_value(arg, 2, &ok);
204         if (!ok) {
205             ovs_fatal(0, "bad hex digit in `note' argument");
206         }
207         ofpbuf_put(ofpacts, &byte, 1);
208
209         note = ofpacts->l2;
210         note->length++;
211
212         arg += 2;
213     }
214     ofpact_update_len(ofpacts, &note->ofpact);
215 }
216
217 static void
218 parse_fin_timeout(struct ofpbuf *b, char *arg)
219 {
220     struct ofpact_fin_timeout *oft = ofpact_put_FIN_TIMEOUT(b);
221     char *key, *value;
222
223     while (ofputil_parse_key_value(&arg, &key, &value)) {
224         if (!strcmp(key, "idle_timeout")) {
225             oft->fin_idle_timeout = str_to_u16(value, key);
226         } else if (!strcmp(key, "hard_timeout")) {
227             oft->fin_hard_timeout = str_to_u16(value, key);
228         } else {
229             ovs_fatal(0, "invalid key '%s' in 'fin_timeout' argument", key);
230         }
231     }
232 }
233
234 static void
235 parse_controller(struct ofpbuf *b, char *arg)
236 {
237     enum ofp_packet_in_reason reason = OFPR_ACTION;
238     uint16_t controller_id = 0;
239     uint16_t max_len = UINT16_MAX;
240
241     if (!arg[0]) {
242         /* Use defaults. */
243     } else if (strspn(arg, "0123456789") == strlen(arg)) {
244         max_len = str_to_u16(arg, "max_len");
245     } else {
246         char *name, *value;
247
248         while (ofputil_parse_key_value(&arg, &name, &value)) {
249             if (!strcmp(name, "reason")) {
250                 if (!ofputil_packet_in_reason_from_string(value, &reason)) {
251                     ovs_fatal(0, "unknown reason \"%s\"", value);
252                 }
253             } else if (!strcmp(name, "max_len")) {
254                 max_len = str_to_u16(value, "max_len");
255             } else if (!strcmp(name, "id")) {
256                 controller_id = str_to_u16(value, "id");
257             } else {
258                 ovs_fatal(0, "unknown key \"%s\" parsing controller action",
259                           name);
260             }
261         }
262     }
263
264     if (reason == OFPR_ACTION && controller_id == 0) {
265         struct ofpact_output *output;
266
267         output = ofpact_put_OUTPUT(b);
268         output->port = OFPP_CONTROLLER;
269         output->max_len = max_len;
270     } else {
271         struct ofpact_controller *controller;
272
273         controller = ofpact_put_CONTROLLER(b);
274         controller->max_len = max_len;
275         controller->reason = reason;
276         controller->controller_id = controller_id;
277     }
278 }
279
280 static void
281 parse_noargs_dec_ttl(struct ofpbuf *b)
282 {
283     struct ofpact_cnt_ids *ids;
284     uint16_t id = 0;
285
286     ids = ofpact_put_DEC_TTL(b);
287     ofpbuf_put(b, &id, sizeof id);
288     ids = b->l2;
289     ids->n_controllers++;
290     ofpact_update_len(b, &ids->ofpact);
291 }
292
293 static void
294 parse_dec_ttl(struct ofpbuf *b, char *arg)
295 {
296     if (*arg == '\0') {
297         parse_noargs_dec_ttl(b);
298     } else {
299         struct ofpact_cnt_ids *ids;
300         char *cntr;
301
302         ids = ofpact_put_DEC_TTL(b);
303         ids->ofpact.compat = OFPUTIL_NXAST_DEC_TTL_CNT_IDS;
304         for (cntr = strtok_r(arg, ", ", &arg); cntr != NULL;
305              cntr = strtok_r(NULL, ", ", &arg)) {
306             uint16_t id = atoi(cntr);
307
308             ofpbuf_put(b, &id, sizeof id);
309             ids = b->l2;
310             ids->n_controllers++;
311         }
312         if (!ids->n_controllers) {
313             ovs_fatal(0, "dec_ttl_cnt_ids: expected at least one controller "
314                       "id.");
315         }
316         ofpact_update_len(b, &ids->ofpact);
317     }
318 }
319
320 static void
321 parse_set_mpls_ttl(struct ofpbuf *b, const char *arg)
322 {
323     struct ofpact_mpls_ttl *mpls_ttl = ofpact_put_SET_MPLS_TTL(b);
324
325     if (*arg == '\0') {
326         ovs_fatal(0, "parse_set_mpls_ttl: expected ttl.");
327     }
328
329     mpls_ttl->ttl = atoi(arg);
330 }
331
332 static void
333 set_field_parse(const char *arg, struct ofpbuf *ofpacts)
334 {
335     char *orig = xstrdup(arg);
336     struct ofpact_reg_load *load = ofpact_put_REG_LOAD(ofpacts);
337     char *value;
338     char *delim;
339     char *key;
340     const struct mf_field *mf;
341     const char *error;
342     union mf_value mf_value;
343
344     value = orig;
345     delim = strstr(orig, "->");
346     if (!delim) {
347         ovs_fatal(0, "%s: missing `->'", orig);
348     }
349     if (strlen(delim) <= strlen("->")) {
350         ovs_fatal(0, "%s: missing field name following `->'", orig);
351     }
352
353     key = delim + strlen("->");
354     mf = mf_from_name(key);
355     if (!mf) {
356         ovs_fatal(0, "%s is not valid oxm field name", key);
357     }
358     if (!mf->writable) {
359         ovs_fatal(0, "%s is not allowed to set", key);
360     }
361
362     delim[0] = '\0';
363     error = mf_parse_value(mf, value, &mf_value);
364     if (error) {
365         ovs_fatal(0, "%s", error);
366     }
367     if (!mf_is_value_valid(mf, &mf_value)) {
368         ovs_fatal(0, "%s is not valid valid for field %s", value, key);
369     }
370     ofpact_set_field_init(load, mf, &mf_value);
371     free(orig);
372 }
373
374 static void
375 parse_metadata(struct ofpbuf *b, char *arg)
376 {
377     struct ofpact_metadata *om;
378     char *mask = strchr(arg, '/');
379
380     om = ofpact_put_WRITE_METADATA(b);
381
382     if (mask) {
383         *mask = '\0';
384         om->mask = htonll(str_to_u64(mask + 1));
385     } else {
386         om->mask = htonll(UINT64_MAX);
387     }
388
389     om->metadata = htonll(str_to_u64(arg));
390 }
391
392 static void
393 parse_named_action(enum ofputil_action_code code, const struct flow *flow,
394                    char *arg, struct ofpbuf *ofpacts)
395 {
396     struct ofpact_tunnel *tunnel;
397     uint16_t vid;
398     uint16_t ethertype;
399     ovs_be32 ip;
400     uint8_t pcp;
401     uint8_t tos;
402
403     switch (code) {
404     case OFPUTIL_ACTION_INVALID:
405         NOT_REACHED();
406
407     case OFPUTIL_OFPAT10_OUTPUT:
408     case OFPUTIL_OFPAT11_OUTPUT:
409         parse_output(arg, ofpacts);
410         break;
411
412     case OFPUTIL_OFPAT10_SET_VLAN_VID:
413     case OFPUTIL_OFPAT11_SET_VLAN_VID:
414         vid = str_to_u32(arg);
415         if (vid & ~VLAN_VID_MASK) {
416             ovs_fatal(0, "%s: not a valid VLAN VID", arg);
417         }
418         ofpact_put_SET_VLAN_VID(ofpacts)->vlan_vid = vid;
419         break;
420
421     case OFPUTIL_OFPAT10_SET_VLAN_PCP:
422     case OFPUTIL_OFPAT11_SET_VLAN_PCP:
423         pcp = str_to_u32(arg);
424         if (pcp & ~7) {
425             ovs_fatal(0, "%s: not a valid VLAN PCP", arg);
426         }
427         ofpact_put_SET_VLAN_PCP(ofpacts)->vlan_pcp = pcp;
428         break;
429
430     case OFPUTIL_OFPAT12_SET_FIELD:
431         set_field_parse(arg, ofpacts);
432         break;
433
434     case OFPUTIL_OFPAT10_STRIP_VLAN:
435     case OFPUTIL_OFPAT11_POP_VLAN:
436         ofpact_put_STRIP_VLAN(ofpacts);
437         break;
438
439     case OFPUTIL_OFPAT11_PUSH_VLAN:
440         ethertype = str_to_u16(arg, "ethertype");
441         if (ethertype != ETH_TYPE_VLAN_8021Q) {
442             /* XXX ETH_TYPE_VLAN_8021AD case isn't supported */
443             ovs_fatal(0, "%s: not a valid VLAN ethertype", arg);
444         }
445         ofpact_put_PUSH_VLAN(ofpacts);
446         break;
447
448     case OFPUTIL_OFPAT11_SET_QUEUE:
449         ofpact_put_SET_QUEUE(ofpacts)->queue_id = str_to_u32(arg);
450         break;
451
452
453     case OFPUTIL_OFPAT10_SET_DL_SRC:
454     case OFPUTIL_OFPAT11_SET_DL_SRC:
455         str_to_mac(arg, ofpact_put_SET_ETH_SRC(ofpacts)->mac);
456         break;
457
458     case OFPUTIL_OFPAT10_SET_DL_DST:
459     case OFPUTIL_OFPAT11_SET_DL_DST:
460         str_to_mac(arg, ofpact_put_SET_ETH_DST(ofpacts)->mac);
461         break;
462
463     case OFPUTIL_OFPAT10_SET_NW_SRC:
464     case OFPUTIL_OFPAT11_SET_NW_SRC:
465         str_to_ip(arg, &ip);
466         ofpact_put_SET_IPV4_SRC(ofpacts)->ipv4 = ip;
467         break;
468
469     case OFPUTIL_OFPAT10_SET_NW_DST:
470     case OFPUTIL_OFPAT11_SET_NW_DST:
471         str_to_ip(arg, &ip);
472         ofpact_put_SET_IPV4_DST(ofpacts)->ipv4 = ip;
473         break;
474
475     case OFPUTIL_OFPAT10_SET_NW_TOS:
476     case OFPUTIL_OFPAT11_SET_NW_TOS:
477         tos = str_to_u32(arg);
478         if (tos & ~IP_DSCP_MASK) {
479             ovs_fatal(0, "%s: not a valid TOS", arg);
480         }
481         ofpact_put_SET_IPV4_DSCP(ofpacts)->dscp = tos;
482         break;
483
484     case OFPUTIL_OFPAT11_DEC_NW_TTL:
485         NOT_REACHED();
486
487     case OFPUTIL_OFPAT10_SET_TP_SRC:
488     case OFPUTIL_OFPAT11_SET_TP_SRC:
489         ofpact_put_SET_L4_SRC_PORT(ofpacts)->port = str_to_u32(arg);
490         break;
491
492     case OFPUTIL_OFPAT10_SET_TP_DST:
493     case OFPUTIL_OFPAT11_SET_TP_DST:
494         ofpact_put_SET_L4_DST_PORT(ofpacts)->port = str_to_u32(arg);
495         break;
496
497     case OFPUTIL_OFPAT10_ENQUEUE:
498         parse_enqueue(arg, ofpacts);
499         break;
500
501     case OFPUTIL_NXAST_RESUBMIT:
502         parse_resubmit(arg, ofpacts);
503         break;
504
505     case OFPUTIL_NXAST_SET_TUNNEL:
506     case OFPUTIL_NXAST_SET_TUNNEL64:
507         tunnel = ofpact_put_SET_TUNNEL(ofpacts);
508         tunnel->ofpact.compat = code;
509         tunnel->tun_id = str_to_u64(arg);
510         break;
511
512     case OFPUTIL_NXAST_WRITE_METADATA:
513         parse_metadata(ofpacts, arg);
514         break;
515
516     case OFPUTIL_NXAST_SET_QUEUE:
517         ofpact_put_SET_QUEUE(ofpacts)->queue_id = str_to_u32(arg);
518         break;
519
520     case OFPUTIL_NXAST_POP_QUEUE:
521         ofpact_put_POP_QUEUE(ofpacts);
522         break;
523
524     case OFPUTIL_NXAST_REG_MOVE:
525         nxm_parse_reg_move(ofpact_put_REG_MOVE(ofpacts), arg);
526         break;
527
528     case OFPUTIL_NXAST_REG_LOAD:
529         nxm_parse_reg_load(ofpact_put_REG_LOAD(ofpacts), arg);
530         break;
531
532     case OFPUTIL_NXAST_NOTE:
533         parse_note(arg, ofpacts);
534         break;
535
536     case OFPUTIL_NXAST_MULTIPATH:
537         multipath_parse(ofpact_put_MULTIPATH(ofpacts), arg);
538         break;
539
540     case OFPUTIL_NXAST_BUNDLE:
541         bundle_parse(arg, ofpacts);
542         break;
543
544     case OFPUTIL_NXAST_BUNDLE_LOAD:
545         bundle_parse_load(arg, ofpacts);
546         break;
547
548     case OFPUTIL_NXAST_RESUBMIT_TABLE:
549     case OFPUTIL_NXAST_OUTPUT_REG:
550     case OFPUTIL_NXAST_DEC_TTL_CNT_IDS:
551         NOT_REACHED();
552
553     case OFPUTIL_NXAST_LEARN:
554         learn_parse(arg, flow, ofpacts);
555         break;
556
557     case OFPUTIL_NXAST_EXIT:
558         ofpact_put_EXIT(ofpacts);
559         break;
560
561     case OFPUTIL_NXAST_DEC_TTL:
562         parse_dec_ttl(ofpacts, arg);
563         break;
564
565     case OFPUTIL_NXAST_SET_MPLS_TTL:
566     case OFPUTIL_OFPAT11_SET_MPLS_TTL:
567         parse_set_mpls_ttl(ofpacts, arg);
568         break;
569
570     case OFPUTIL_OFPAT11_DEC_MPLS_TTL:
571     case OFPUTIL_NXAST_DEC_MPLS_TTL:
572         ofpact_put_DEC_MPLS_TTL(ofpacts);
573         break;
574
575     case OFPUTIL_NXAST_FIN_TIMEOUT:
576         parse_fin_timeout(ofpacts, arg);
577         break;
578
579     case OFPUTIL_NXAST_CONTROLLER:
580         parse_controller(ofpacts, arg);
581         break;
582
583     case OFPUTIL_OFPAT11_PUSH_MPLS:
584     case OFPUTIL_NXAST_PUSH_MPLS:
585         ofpact_put_PUSH_MPLS(ofpacts)->ethertype =
586             htons(str_to_u16(arg, "push_mpls"));
587         break;
588
589     case OFPUTIL_OFPAT11_POP_MPLS:
590     case OFPUTIL_NXAST_POP_MPLS:
591         ofpact_put_POP_MPLS(ofpacts)->ethertype =
592             htons(str_to_u16(arg, "pop_mpls"));
593         break;
594     }
595 }
596
597 static bool
598 str_to_ofpact__(const struct flow *flow, char *pos, char *act, char *arg,
599                 struct ofpbuf *ofpacts, int n_actions)
600 {
601     int code = ofputil_action_code_from_name(act);
602     if (code >= 0) {
603         parse_named_action(code, flow, arg, ofpacts);
604     } else if (!strcasecmp(act, "drop")) {
605         if (n_actions) {
606             ovs_fatal(0, "Drop actions must not be preceded by other "
607                       "actions");
608         } else if (ofputil_parse_key_value(&pos, &act, &arg)) {
609             ovs_fatal(0, "Drop actions must not be followed by other "
610                       "actions");
611         }
612         return false;
613     } else {
614         uint16_t port;
615         if (ofputil_port_from_string(act, &port)) {
616             ofpact_put_OUTPUT(ofpacts)->port = port;
617         } else {
618             ovs_fatal(0, "Unknown action: %s", act);
619         }
620     }
621
622     return true;
623 }
624
625 static void
626 str_to_ofpacts(const struct flow *flow, char *str, struct ofpbuf *ofpacts)
627 {
628     char *pos, *act, *arg;
629     enum ofperr error;
630     int n_actions;
631
632     pos = str;
633     n_actions = 0;
634     while (ofputil_parse_key_value(&pos, &act, &arg)) {
635         if (!str_to_ofpact__(flow, pos, act, arg, ofpacts, n_actions)) {
636             break;
637         }
638         n_actions++;
639     }
640
641     error = ofpacts_verify(ofpacts->data, ofpacts->size);
642     if (error) {
643         ovs_fatal(0, "Incorrect action ordering");
644     }
645
646     ofpact_pad(ofpacts);
647 }
648
649 static void
650 parse_named_instruction(enum ovs_instruction_type type,
651                         char *arg, struct ofpbuf *ofpacts)
652 {
653     enum ofperr error;
654
655     switch (type) {
656     case OVSINST_OFPIT11_APPLY_ACTIONS:
657         NOT_REACHED();  /* This case is handled by str_to_inst_ofpacts() */
658         break;
659
660     case OVSINST_OFPIT11_WRITE_ACTIONS:
661         /* XXX */
662         ovs_fatal(0, "instruction write-actions is not supported yet");
663         break;
664
665     case OVSINST_OFPIT11_CLEAR_ACTIONS:
666         ofpact_put_CLEAR_ACTIONS(ofpacts);
667         break;
668
669     case OVSINST_OFPIT11_WRITE_METADATA:
670         parse_metadata(ofpacts, arg);
671         break;
672
673     case OVSINST_OFPIT11_GOTO_TABLE: {
674         struct ofpact_goto_table *ogt = ofpact_put_GOTO_TABLE(ofpacts);
675         char *table_s = strsep(&arg, ",");
676         if (!table_s || !table_s[0]) {
677             ovs_fatal(0, "instruction goto-table needs table id");
678         }
679         ogt->table_id = str_to_table_id(table_s);
680         break;
681     }
682     }
683
684     /* If write_metadata is specified as an action AND an instruction, ofpacts
685        could be invalid. */
686     error = ofpacts_verify(ofpacts->data, ofpacts->size);
687     if (error) {
688         ovs_fatal(0, "Incorrect instruction ordering");
689     }
690 }
691
692 static void
693 str_to_inst_ofpacts(const struct flow *flow, char *str, struct ofpbuf *ofpacts)
694 {
695     char *pos, *inst, *arg;
696     int type;
697     const char *prev_inst = NULL;
698     int prev_type = -1;
699     int n_actions = 0;
700
701     pos = str;
702     while (ofputil_parse_key_value(&pos, &inst, &arg)) {
703         type = ofpact_instruction_type_from_name(inst);
704         if (type < 0) {
705             if (!str_to_ofpact__(flow, pos, inst, arg, ofpacts, n_actions)) {
706                 break;
707             }
708
709             type = OVSINST_OFPIT11_APPLY_ACTIONS;
710             if (prev_type == type) {
711                 n_actions++;
712                 continue;
713             }
714         } else if (type == OVSINST_OFPIT11_APPLY_ACTIONS) {
715             ovs_fatal(0, "%s isn't supported. Just write actions then "
716                       "it is interpreted as apply_actions", inst);
717         } else {
718             parse_named_instruction(type, arg, ofpacts);
719         }
720
721         if (type == prev_type) {
722             ovs_fatal(0, "instruction can be specified at most once: %s",
723                       inst);
724         }
725         if (type <= prev_type) {
726             ovs_fatal(0, "Instruction %s must be specified before %s",
727                       inst, prev_inst);
728         }
729
730         prev_inst = inst;
731         prev_type = type;
732         n_actions++;
733     }
734     ofpact_pad(ofpacts);
735 }
736
737 struct protocol {
738     const char *name;
739     uint16_t dl_type;
740     uint8_t nw_proto;
741 };
742
743 static bool
744 parse_protocol(const char *name, const struct protocol **p_out)
745 {
746     static const struct protocol protocols[] = {
747         { "ip", ETH_TYPE_IP, 0 },
748         { "arp", ETH_TYPE_ARP, 0 },
749         { "icmp", ETH_TYPE_IP, IPPROTO_ICMP },
750         { "tcp", ETH_TYPE_IP, IPPROTO_TCP },
751         { "udp", ETH_TYPE_IP, IPPROTO_UDP },
752         { "ipv6", ETH_TYPE_IPV6, 0 },
753         { "ip6", ETH_TYPE_IPV6, 0 },
754         { "icmp6", ETH_TYPE_IPV6, IPPROTO_ICMPV6 },
755         { "tcp6", ETH_TYPE_IPV6, IPPROTO_TCP },
756         { "udp6", ETH_TYPE_IPV6, IPPROTO_UDP },
757         { "rarp", ETH_TYPE_RARP, 0},
758         { "mpls", ETH_TYPE_MPLS, 0 },
759         { "mplsm", ETH_TYPE_MPLS_MCAST, 0 },
760     };
761     const struct protocol *p;
762
763     for (p = protocols; p < &protocols[ARRAY_SIZE(protocols)]; p++) {
764         if (!strcmp(p->name, name)) {
765             *p_out = p;
766             return true;
767         }
768     }
769     *p_out = NULL;
770     return false;
771 }
772
773 static void
774 ofp_fatal(const char *flow, bool verbose, const char *format, ...)
775 {
776     va_list args;
777
778     if (verbose) {
779         fprintf(stderr, "%s:\n", flow);
780     }
781
782     va_start(args, format);
783     ovs_fatal_valist(0, format, args);
784 }
785
786 static void
787 parse_field(const struct mf_field *mf, const char *s, struct match *match)
788 {
789     union mf_value value, mask;
790     char *error;
791
792     error = mf_parse(mf, s, &value, &mask);
793     if (error) {
794         ovs_fatal(0, "%s", error);
795     }
796
797     mf_set(mf, &value, &mask, match);
798 }
799
800 /* Convert 'str_' (as described in the Flow Syntax section of the ovs-ofctl man
801  * page) into 'fm' for sending the specified flow_mod 'command' to a switch.
802  * If 'actions' is specified, an action must be in 'string' and may be expanded
803  * or reallocated.
804  *
805  * To parse syntax for an OFPT_FLOW_MOD (or NXT_FLOW_MOD), use an OFPFC_*
806  * constant for 'command'.  To parse syntax for an OFPST_FLOW or
807  * OFPST_AGGREGATE (or NXST_FLOW or NXST_AGGREGATE), use -1 for 'command'. */
808 void
809 parse_ofp_str(struct ofputil_flow_mod *fm, int command, const char *str_,
810               bool verbose)
811 {
812     enum {
813         F_OUT_PORT = 1 << 0,
814         F_ACTIONS = 1 << 1,
815         F_TIMEOUT = 1 << 3,
816         F_PRIORITY = 1 << 4,
817         F_FLAGS = 1 << 5,
818     } fields;
819     char *string = xstrdup(str_);
820     char *save_ptr = NULL;
821     char *act_str = NULL;
822     char *name;
823
824     switch (command) {
825     case -1:
826         fields = F_OUT_PORT;
827         break;
828
829     case OFPFC_ADD:
830         fields = F_ACTIONS | F_TIMEOUT | F_PRIORITY | F_FLAGS;
831         break;
832
833     case OFPFC_DELETE:
834         fields = F_OUT_PORT;
835         break;
836
837     case OFPFC_DELETE_STRICT:
838         fields = F_OUT_PORT | F_PRIORITY;
839         break;
840
841     case OFPFC_MODIFY:
842         fields = F_ACTIONS | F_TIMEOUT | F_PRIORITY | F_FLAGS;
843         break;
844
845     case OFPFC_MODIFY_STRICT:
846         fields = F_ACTIONS | F_TIMEOUT | F_PRIORITY | F_FLAGS;
847         break;
848
849     default:
850         NOT_REACHED();
851     }
852
853     match_init_catchall(&fm->match);
854     fm->priority = OFP_DEFAULT_PRIORITY;
855     fm->cookie = htonll(0);
856     fm->cookie_mask = htonll(0);
857     if (command == OFPFC_MODIFY || command == OFPFC_MODIFY_STRICT) {
858         /* For modify, by default, don't update the cookie. */
859         fm->new_cookie = htonll(UINT64_MAX);
860     } else{
861         fm->new_cookie = htonll(0);
862     }
863     fm->table_id = 0xff;
864     fm->command = command;
865     fm->idle_timeout = OFP_FLOW_PERMANENT;
866     fm->hard_timeout = OFP_FLOW_PERMANENT;
867     fm->buffer_id = UINT32_MAX;
868     fm->out_port = OFPP_ANY;
869     fm->flags = 0;
870     if (fields & F_ACTIONS) {
871         act_str = strstr(string, "action");
872         if (!act_str) {
873             ofp_fatal(str_, verbose, "must specify an action");
874         }
875         *act_str = '\0';
876
877         act_str = strchr(act_str + 1, '=');
878         if (!act_str) {
879             ofp_fatal(str_, verbose, "must specify an action");
880         }
881
882         act_str++;
883     }
884     for (name = strtok_r(string, "=, \t\r\n", &save_ptr); name;
885          name = strtok_r(NULL, "=, \t\r\n", &save_ptr)) {
886         const struct protocol *p;
887
888         if (parse_protocol(name, &p)) {
889             match_set_dl_type(&fm->match, htons(p->dl_type));
890             if (p->nw_proto) {
891                 match_set_nw_proto(&fm->match, p->nw_proto);
892             }
893         } else if (fields & F_FLAGS && !strcmp(name, "send_flow_rem")) {
894             fm->flags |= OFPFF_SEND_FLOW_REM;
895         } else if (fields & F_FLAGS && !strcmp(name, "check_overlap")) {
896             fm->flags |= OFPFF_CHECK_OVERLAP;
897         } else if (fields & F_FLAGS && !strcmp(name, "reset_counts")) {
898             fm->flags |= OFPFF12_RESET_COUNTS;
899         } else if (fields & F_FLAGS && !strcmp(name, "no_packet_counts")) {
900             fm->flags |= OFPFF13_NO_PKT_COUNTS;
901         } else if (fields & F_FLAGS && !strcmp(name, "no_byte_counts")) {
902             fm->flags |= OFPFF13_NO_BYT_COUNTS;
903         } else {
904             char *value;
905
906             value = strtok_r(NULL, ", \t\r\n", &save_ptr);
907             if (!value) {
908                 ofp_fatal(str_, verbose, "field %s missing value", name);
909             }
910
911             if (!strcmp(name, "table")) {
912                 fm->table_id = str_to_table_id(value);
913             } else if (!strcmp(name, "out_port")) {
914                 if (!ofputil_port_from_string(name, &fm->out_port)) {
915                     ofp_fatal(str_, verbose, "%s is not a valid OpenFlow port",
916                               name);
917                 }
918             } else if (fields & F_PRIORITY && !strcmp(name, "priority")) {
919                 fm->priority = str_to_u16(value, name);
920             } else if (fields & F_TIMEOUT && !strcmp(name, "idle_timeout")) {
921                 fm->idle_timeout = str_to_u16(value, name);
922             } else if (fields & F_TIMEOUT && !strcmp(name, "hard_timeout")) {
923                 fm->hard_timeout = str_to_u16(value, name);
924             } else if (!strcmp(name, "cookie")) {
925                 char *mask = strchr(value, '/');
926
927                 if (mask) {
928                     /* A mask means we're searching for a cookie. */
929                     if (command == OFPFC_ADD) {
930                         ofp_fatal(str_, verbose, "flow additions cannot use "
931                                   "a cookie mask");
932                     }
933                     *mask = '\0';
934                     fm->cookie = htonll(str_to_u64(value));
935                     fm->cookie_mask = htonll(str_to_u64(mask+1));
936                 } else {
937                     /* No mask means that the cookie is being set. */
938                     if (command != OFPFC_ADD && command != OFPFC_MODIFY
939                             && command != OFPFC_MODIFY_STRICT) {
940                         ofp_fatal(str_, verbose, "cannot set cookie");
941                     }
942                     fm->new_cookie = htonll(str_to_u64(value));
943                 }
944             } else if (mf_from_name(name)) {
945                 parse_field(mf_from_name(name), value, &fm->match);
946             } else if (!strcmp(name, "duration")
947                        || !strcmp(name, "n_packets")
948                        || !strcmp(name, "n_bytes")
949                        || !strcmp(name, "idle_age")
950                        || !strcmp(name, "hard_age")) {
951                 /* Ignore these, so that users can feed the output of
952                  * "ovs-ofctl dump-flows" back into commands that parse
953                  * flows. */
954             } else {
955                 ofp_fatal(str_, verbose, "unknown keyword %s", name);
956             }
957         }
958     }
959     if (!fm->cookie_mask && fm->new_cookie == htonll(UINT64_MAX)
960             && (command == OFPFC_MODIFY || command == OFPFC_MODIFY_STRICT)) {
961         /* On modifies without a mask, we are supposed to add a flow if
962          * one does not exist.  If a cookie wasn't been specified, use a
963          * default of zero. */
964         fm->new_cookie = htonll(0);
965     }
966     if (fields & F_ACTIONS) {
967         struct ofpbuf ofpacts;
968
969         ofpbuf_init(&ofpacts, 32);
970         str_to_inst_ofpacts(&fm->match.flow, act_str, &ofpacts);
971         fm->ofpacts_len = ofpacts.size;
972         fm->ofpacts = ofpbuf_steal_data(&ofpacts);
973     } else {
974         fm->ofpacts_len = 0;
975         fm->ofpacts = NULL;
976     }
977
978     free(string);
979 }
980
981 /* Convert 'str_' (as described in the documentation for the "monitor" command
982  * in the ovs-ofctl man page) into 'fmr'. */
983 void
984 parse_flow_monitor_request(struct ofputil_flow_monitor_request *fmr,
985                            const char *str_)
986 {
987     static uint32_t id;
988
989     char *string = xstrdup(str_);
990     char *save_ptr = NULL;
991     char *name;
992
993     fmr->id = id++;
994     fmr->flags = (NXFMF_INITIAL | NXFMF_ADD | NXFMF_DELETE | NXFMF_MODIFY
995                   | NXFMF_OWN | NXFMF_ACTIONS);
996     fmr->out_port = OFPP_NONE;
997     fmr->table_id = 0xff;
998     match_init_catchall(&fmr->match);
999
1000     for (name = strtok_r(string, "=, \t\r\n", &save_ptr); name;
1001          name = strtok_r(NULL, "=, \t\r\n", &save_ptr)) {
1002         const struct protocol *p;
1003
1004         if (!strcmp(name, "!initial")) {
1005             fmr->flags &= ~NXFMF_INITIAL;
1006         } else if (!strcmp(name, "!add")) {
1007             fmr->flags &= ~NXFMF_ADD;
1008         } else if (!strcmp(name, "!delete")) {
1009             fmr->flags &= ~NXFMF_DELETE;
1010         } else if (!strcmp(name, "!modify")) {
1011             fmr->flags &= ~NXFMF_MODIFY;
1012         } else if (!strcmp(name, "!actions")) {
1013             fmr->flags &= ~NXFMF_ACTIONS;
1014         } else if (!strcmp(name, "!own")) {
1015             fmr->flags &= ~NXFMF_OWN;
1016         } else if (parse_protocol(name, &p)) {
1017             match_set_dl_type(&fmr->match, htons(p->dl_type));
1018             if (p->nw_proto) {
1019                 match_set_nw_proto(&fmr->match, p->nw_proto);
1020             }
1021         } else {
1022             char *value;
1023
1024             value = strtok_r(NULL, ", \t\r\n", &save_ptr);
1025             if (!value) {
1026                 ovs_fatal(0, "%s: field %s missing value", str_, name);
1027             }
1028
1029             if (!strcmp(name, "table")) {
1030                 fmr->table_id = str_to_table_id(value);
1031             } else if (!strcmp(name, "out_port")) {
1032                 fmr->out_port = atoi(value);
1033             } else if (mf_from_name(name)) {
1034                 parse_field(mf_from_name(name), value, &fmr->match);
1035             } else {
1036                 ovs_fatal(0, "%s: unknown keyword %s", str_, name);
1037             }
1038         }
1039     }
1040     free(string);
1041 }
1042
1043 /* Parses 's' as a set of OpenFlow actions and appends the actions to
1044  * 'actions'.
1045  *
1046  * Prints an error on stderr and aborts the program if 's' syntax is
1047  * invalid. */
1048 void
1049 parse_ofpacts(const char *s_, struct ofpbuf *ofpacts)
1050 {
1051     char *s = xstrdup(s_);
1052     str_to_ofpacts(NULL, s, ofpacts);
1053     free(s);
1054 }
1055
1056 /* Parses 'string' as an OFPT_FLOW_MOD or NXT_FLOW_MOD with command 'command'
1057  * (one of OFPFC_*) into 'fm'. */
1058 void
1059 parse_ofp_flow_mod_str(struct ofputil_flow_mod *fm, const char *string,
1060                        uint16_t command, bool verbose)
1061 {
1062     struct match match_copy;
1063
1064     parse_ofp_str(fm, command, string, verbose);
1065
1066     /* Normalize a copy of the match.  This ensures that non-normalized flows
1067      * get logged but doesn't affect what gets sent to the switch, so that the
1068      * switch can do whatever it likes with the flow. */
1069     match_copy = fm->match;
1070     ofputil_normalize_match(&match_copy);
1071 }
1072
1073 void
1074 parse_ofp_flow_mod_file(const char *file_name, uint16_t command,
1075                         struct ofputil_flow_mod **fms, size_t *n_fms)
1076 {
1077     size_t allocated_fms;
1078     FILE *stream;
1079     struct ds s;
1080
1081     stream = !strcmp(file_name, "-") ? stdin : fopen(file_name, "r");
1082     if (stream == NULL) {
1083         ovs_fatal(errno, "%s: open", file_name);
1084     }
1085
1086     allocated_fms = *n_fms;
1087     ds_init(&s);
1088     while (!ds_get_preprocessed_line(&s, stream)) {
1089         if (*n_fms >= allocated_fms) {
1090             *fms = x2nrealloc(*fms, &allocated_fms, sizeof **fms);
1091         }
1092         parse_ofp_flow_mod_str(&(*fms)[*n_fms], ds_cstr(&s), command, false);
1093         *n_fms += 1;
1094     }
1095     ds_destroy(&s);
1096
1097     if (stream != stdin) {
1098         fclose(stream);
1099     }
1100 }
1101
1102 void
1103 parse_ofp_flow_stats_request_str(struct ofputil_flow_stats_request *fsr,
1104                                  bool aggregate, const char *string)
1105 {
1106     struct ofputil_flow_mod fm;
1107
1108     parse_ofp_str(&fm, -1, string, false);
1109     fsr->aggregate = aggregate;
1110     fsr->cookie = fm.cookie;
1111     fsr->cookie_mask = fm.cookie_mask;
1112     fsr->match = fm.match;
1113     fsr->out_port = fm.out_port;
1114     fsr->table_id = fm.table_id;
1115 }
1116
1117 /* Parses a specification of a flow from 's' into 'flow'.  's' must take the
1118  * form FIELD=VALUE[,FIELD=VALUE]... where each FIELD is the name of a
1119  * mf_field.  Fields must be specified in a natural order for satisfying
1120  * prerequisites.
1121  *
1122  * Returns NULL on success, otherwise a malloc()'d string that explains the
1123  * problem. */
1124 char *
1125 parse_ofp_exact_flow(struct flow *flow, const char *s)
1126 {
1127     char *pos, *key, *value_s;
1128     char *error = NULL;
1129     char *copy;
1130
1131     memset(flow, 0, sizeof *flow);
1132
1133     pos = copy = xstrdup(s);
1134     while (ofputil_parse_key_value(&pos, &key, &value_s)) {
1135         const struct protocol *p;
1136         if (parse_protocol(key, &p)) {
1137             if (flow->dl_type) {
1138                 error = xasprintf("%s: Ethernet type set multiple times", s);
1139                 goto exit;
1140             }
1141             flow->dl_type = htons(p->dl_type);
1142
1143             if (p->nw_proto) {
1144                 if (flow->nw_proto) {
1145                     error = xasprintf("%s: network protocol set "
1146                                       "multiple times", s);
1147                     goto exit;
1148                 }
1149                 flow->nw_proto = p->nw_proto;
1150             }
1151         } else {
1152             const struct mf_field *mf;
1153             union mf_value value;
1154             char *field_error;
1155
1156             mf = mf_from_name(key);
1157             if (!mf) {
1158                 error = xasprintf("%s: unknown field %s", s, key);
1159                 goto exit;
1160             }
1161
1162             if (!mf_are_prereqs_ok(mf, flow)) {
1163                 error = xasprintf("%s: prerequisites not met for setting %s",
1164                                   s, key);
1165                 goto exit;
1166             }
1167
1168             if (!mf_is_zero(mf, flow)) {
1169                 error = xasprintf("%s: field %s set multiple times", s, key);
1170                 goto exit;
1171             }
1172
1173             field_error = mf_parse_value(mf, value_s, &value);
1174             if (field_error) {
1175                 error = xasprintf("%s: bad value for %s (%s)",
1176                                   s, key, field_error);
1177                 free(field_error);
1178                 goto exit;
1179             }
1180
1181             mf_set_flow_value(mf, &value, flow);
1182         }
1183     }
1184
1185     if (!flow->in_port) {
1186         flow->in_port = OFPP_NONE;
1187     }
1188
1189 exit:
1190     free(copy);
1191
1192     if (error) {
1193         memset(flow, 0, sizeof *flow);
1194     }
1195     return error;
1196 }