dpif: Eliminate "struct odp_flow_stats" from client-visible interface.
[sliver-openvswitch.git] / lib / dpif-linux.c
1 /*
2  * Copyright (c) 2008, 2009, 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 "dpif-linux.h"
20
21 #include <assert.h>
22 #include <ctype.h>
23 #include <errno.h>
24 #include <fcntl.h>
25 #include <inttypes.h>
26 #include <net/if.h>
27 #include <linux/types.h>
28 #include <linux/ethtool.h>
29 #include <linux/pkt_sched.h>
30 #include <linux/rtnetlink.h>
31 #include <linux/sockios.h>
32 #include <stdlib.h>
33 #include <sys/ioctl.h>
34 #include <sys/stat.h>
35 #include <unistd.h>
36
37 #include "dpif-provider.h"
38 #include "netdev.h"
39 #include "netdev-vport.h"
40 #include "netlink.h"
41 #include "odp-util.h"
42 #include "ofpbuf.h"
43 #include "openvswitch/tunnel.h"
44 #include "packets.h"
45 #include "poll-loop.h"
46 #include "rtnetlink.h"
47 #include "rtnetlink-link.h"
48 #include "shash.h"
49 #include "svec.h"
50 #include "util.h"
51 #include "vlog.h"
52
53 VLOG_DEFINE_THIS_MODULE(dpif_linux);
54
55 /* Datapath interface for the openvswitch Linux kernel module. */
56 struct dpif_linux {
57     struct dpif dpif;
58     int fd;
59
60     /* Used by dpif_linux_get_all_names(). */
61     char *local_ifname;
62     int minor;
63
64     /* Change notification. */
65     int local_ifindex;          /* Ifindex of local port. */
66     struct shash changed_ports;  /* Ports that have changed. */
67     struct rtnetlink_notifier port_notifier;
68     bool change_error;
69 };
70
71 static struct vlog_rate_limit error_rl = VLOG_RATE_LIMIT_INIT(9999, 5);
72
73 static int do_ioctl(const struct dpif *, int cmd, const void *arg);
74 static int open_dpif(const struct dpif_linux_vport *local_vport,
75                      struct dpif **);
76 static int get_openvswitch_major(void);
77 static int create_minor(const char *name, int minor);
78 static int open_minor(int minor, int *fdp);
79 static int make_openvswitch_device(int minor, char **fnp);
80 static void dpif_linux_port_changed(const struct rtnetlink_link_change *,
81                                     void *dpif);
82
83 static struct dpif_linux *
84 dpif_linux_cast(const struct dpif *dpif)
85 {
86     dpif_assert_class(dpif, &dpif_linux_class);
87     return CONTAINER_OF(dpif, struct dpif_linux, dpif);
88 }
89
90 static int
91 dpif_linux_enumerate(struct svec *all_dps)
92 {
93     int major;
94     int error;
95     int i;
96
97     /* Check that the Open vSwitch module is loaded. */
98     major = get_openvswitch_major();
99     if (major < 0) {
100         return -major;
101     }
102
103     error = 0;
104     for (i = 0; i < ODP_MAX; i++) {
105         struct dpif *dpif;
106         char devname[16];
107         int retval;
108
109         sprintf(devname, "dp%d", i);
110         retval = dpif_open(devname, "system", &dpif);
111         if (!retval) {
112             svec_add(all_dps, devname);
113             dpif_uninit(dpif, true);
114         } else if (retval != ENODEV && !error) {
115             error = retval;
116         }
117     }
118     return error;
119 }
120
121 static int
122 dpif_linux_open(const struct dpif_class *class OVS_UNUSED, const char *name,
123                 bool create, struct dpif **dpifp)
124 {
125     struct dpif_linux_vport request, reply;
126     struct ofpbuf *buf;
127     int minor;
128     int error;
129
130     minor = !strncmp(name, "dp", 2)
131             && isdigit((unsigned char)name[2]) ? atoi(name + 2) : -1;
132     if (create) {
133         if (minor >= 0) {
134             error = create_minor(name, minor);
135             if (error) {
136                 return error;
137             }
138         } else {
139             /* Scan for unused minor number. */
140             for (minor = 0; ; minor++) {
141                 if (minor >= ODP_MAX) {
142                     /* All datapath numbers in use. */
143                     return ENOBUFS;
144                 }
145
146                 error = create_minor(name, minor);
147                 if (!error) {
148                     break;
149                 } else if (error != EBUSY) {
150                     return error;
151                 }
152             }
153         }
154     }
155
156     dpif_linux_vport_init(&request);
157     request.cmd = ODP_VPORT_GET;
158     request.port_no = ODPP_LOCAL;
159     if (minor >= 0) {
160         request.dp_idx = minor;
161     } else {
162         request.name = name;
163     }
164
165     error = dpif_linux_vport_transact(&request, &reply, &buf);
166     if (error) {
167         return error;
168     } else if (reply.port_no != ODPP_LOCAL) {
169         /* This is an Open vSwitch device but not the local port.  We
170          * intentionally support only using the name of the local port as the
171          * name of a datapath; otherwise, it would be too difficult to
172          * enumerate all the names of a datapath. */
173         error = EOPNOTSUPP;
174     } else {
175         error = open_dpif(&reply, dpifp);
176     }
177
178     ofpbuf_delete(buf);
179     return error;
180 }
181
182 static int
183 open_dpif(const struct dpif_linux_vport *local_vport, struct dpif **dpifp)
184 {
185     int dp_idx = local_vport->dp_idx;
186     struct dpif_linux *dpif;
187     char *name;
188     int error;
189     int fd;
190
191     error = open_minor(dp_idx, &fd);
192     if (error) {
193         goto error;
194     }
195
196     dpif = xmalloc(sizeof *dpif);
197     error = rtnetlink_link_notifier_register(&dpif->port_notifier,
198                                              dpif_linux_port_changed, dpif);
199     if (error) {
200         goto error_free;
201     }
202
203     name = xasprintf("dp%d", dp_idx);
204     dpif_init(&dpif->dpif, &dpif_linux_class, name, dp_idx, dp_idx);
205     free(name);
206
207     dpif->fd = fd;
208     dpif->local_ifname = xstrdup(local_vport->name);
209     dpif->local_ifindex = local_vport->ifindex;
210     dpif->minor = dp_idx;
211     shash_init(&dpif->changed_ports);
212     dpif->change_error = false;
213     *dpifp = &dpif->dpif;
214
215     return 0;
216
217 error_free:
218     free(dpif);
219     close(fd);
220 error:
221     return error;
222 }
223
224 static void
225 dpif_linux_close(struct dpif *dpif_)
226 {
227     struct dpif_linux *dpif = dpif_linux_cast(dpif_);
228     rtnetlink_link_notifier_unregister(&dpif->port_notifier);
229     shash_destroy(&dpif->changed_ports);
230     free(dpif->local_ifname);
231     close(dpif->fd);
232     free(dpif);
233 }
234
235 static int
236 dpif_linux_get_all_names(const struct dpif *dpif_, struct svec *all_names)
237 {
238     struct dpif_linux *dpif = dpif_linux_cast(dpif_);
239
240     svec_add_nocopy(all_names, xasprintf("dp%d", dpif->minor));
241     svec_add(all_names, dpif->local_ifname);
242     return 0;
243 }
244
245 static int
246 dpif_linux_destroy(struct dpif *dpif_)
247 {
248     return do_ioctl(dpif_, ODP_DP_DESTROY, NULL);
249 }
250
251 static int
252 dpif_linux_get_stats(const struct dpif *dpif_, struct odp_stats *stats)
253 {
254     memset(stats, 0, sizeof *stats);
255     return do_ioctl(dpif_, ODP_DP_STATS, stats);
256 }
257
258 static int
259 dpif_linux_get_drop_frags(const struct dpif *dpif_, bool *drop_fragsp)
260 {
261     int drop_frags;
262     int error;
263
264     error = do_ioctl(dpif_, ODP_GET_DROP_FRAGS, &drop_frags);
265     if (!error) {
266         *drop_fragsp = drop_frags & 1;
267     }
268     return error;
269 }
270
271 static int
272 dpif_linux_set_drop_frags(struct dpif *dpif_, bool drop_frags)
273 {
274     int drop_frags_int = drop_frags;
275     return do_ioctl(dpif_, ODP_SET_DROP_FRAGS, &drop_frags_int);
276 }
277
278 static int
279 dpif_linux_port_add(struct dpif *dpif_, struct netdev *netdev,
280                     uint16_t *port_nop)
281 {
282     struct dpif_linux *dpif = dpif_linux_cast(dpif_);
283     const char *name = netdev_get_name(netdev);
284     const char *type = netdev_get_type(netdev);
285     struct dpif_linux_vport request, reply;
286     const struct ofpbuf *options;
287     struct ofpbuf *buf;
288     int error;
289
290     dpif_linux_vport_init(&request);
291     request.cmd = ODP_VPORT_NEW;
292     request.dp_idx = dpif->minor;
293     request.type = netdev_vport_get_vport_type(netdev);
294     if (request.type == ODP_VPORT_TYPE_UNSPEC) {
295         VLOG_WARN_RL(&error_rl, "%s: cannot create port `%s' because it has "
296                      "unsupported type `%s'",
297                      dpif_name(dpif_), name, type);
298         return EINVAL;
299     }
300     request.name = name;
301
302     options = netdev_vport_get_options(netdev);
303     if (options && options->size) {
304         request.options = options->data;
305         request.options_len = options->size;
306     }
307
308     error = dpif_linux_vport_transact(&request, &reply, &buf);
309     if (!error) {
310         *port_nop = reply.port_no;
311         ofpbuf_delete(buf);
312     }
313
314     return error;
315 }
316
317 static int
318 dpif_linux_port_del(struct dpif *dpif_, uint16_t port_no)
319 {
320     struct dpif_linux *dpif = dpif_linux_cast(dpif_);
321     struct dpif_linux_vport vport;
322
323     dpif_linux_vport_init(&vport);
324     vport.cmd = ODP_VPORT_DEL;
325     vport.dp_idx = dpif->minor;
326     vport.port_no = port_no;
327     return dpif_linux_vport_transact(&vport, NULL, NULL);
328 }
329
330 static int
331 dpif_linux_port_query__(const struct dpif *dpif, uint32_t port_no,
332                         const char *port_name, struct dpif_port *dpif_port)
333 {
334     struct dpif_linux_vport request;
335     struct dpif_linux_vport reply;
336     struct ofpbuf *buf;
337     int error;
338
339     dpif_linux_vport_init(&request);
340     request.cmd = ODP_VPORT_GET;
341     request.dp_idx = dpif_linux_cast(dpif)->minor;
342     request.port_no = port_no;
343     request.name = port_name;
344
345     error = dpif_linux_vport_transact(&request, &reply, &buf);
346     if (!error) {
347         dpif_port->name = xstrdup(reply.name);
348         dpif_port->type = xstrdup(netdev_vport_get_netdev_type(&reply));
349         dpif_port->port_no = reply.port_no;
350         ofpbuf_delete(buf);
351     }
352     return error;
353 }
354
355 static int
356 dpif_linux_port_query_by_number(const struct dpif *dpif, uint16_t port_no,
357                                 struct dpif_port *dpif_port)
358 {
359     return dpif_linux_port_query__(dpif, port_no, NULL, dpif_port);
360 }
361
362 static int
363 dpif_linux_port_query_by_name(const struct dpif *dpif, const char *devname,
364                               struct dpif_port *dpif_port)
365 {
366     return dpif_linux_port_query__(dpif, 0, devname, dpif_port);
367 }
368
369 static int
370 dpif_linux_get_max_ports(const struct dpif *dpif OVS_UNUSED)
371 {
372     /* If the datapath increases its range of supported ports, then it should
373      * start reporting that. */
374     return 1024;
375 }
376
377 static int
378 dpif_linux_flow_flush(struct dpif *dpif_)
379 {
380     return do_ioctl(dpif_, ODP_FLOW_FLUSH, NULL);
381 }
382
383 struct dpif_linux_port_state {
384     struct ofpbuf *buf;
385     uint32_t next;
386 };
387
388 static int
389 dpif_linux_port_dump_start(const struct dpif *dpif OVS_UNUSED, void **statep)
390 {
391     *statep = xzalloc(sizeof(struct dpif_linux_port_state));
392     return 0;
393 }
394
395 static int
396 dpif_linux_port_dump_next(const struct dpif *dpif, void *state_,
397                           struct dpif_port *dpif_port)
398 {
399     struct dpif_linux_port_state *state = state_;
400     struct dpif_linux_vport request, reply;
401     struct ofpbuf *buf;
402     int error;
403
404     ofpbuf_delete(state->buf);
405     state->buf = NULL;
406
407     dpif_linux_vport_init(&request);
408     request.cmd = ODP_VPORT_DUMP;
409     request.dp_idx = dpif_linux_cast(dpif)->minor;
410     request.port_no = state->next;
411     error = dpif_linux_vport_transact(&request, &reply, &buf);
412     if (error) {
413         return error == ENODEV ? EOF : error;
414     } else {
415         dpif_port->name = (char *) reply.name;
416         dpif_port->type = (char *) netdev_vport_get_netdev_type(&reply);
417         dpif_port->port_no = reply.port_no;
418         state->buf = buf;
419         state->next = reply.port_no + 1;
420         return 0;
421     }
422 }
423
424 static int
425 dpif_linux_port_dump_done(const struct dpif *dpif OVS_UNUSED, void *state_)
426 {
427     struct dpif_linux_port_state *state = state_;
428     ofpbuf_delete(state->buf);
429     free(state);
430     return 0;
431 }
432
433 static int
434 dpif_linux_port_poll(const struct dpif *dpif_, char **devnamep)
435 {
436     struct dpif_linux *dpif = dpif_linux_cast(dpif_);
437
438     if (dpif->change_error) {
439         dpif->change_error = false;
440         shash_clear(&dpif->changed_ports);
441         return ENOBUFS;
442     } else if (!shash_is_empty(&dpif->changed_ports)) {
443         struct shash_node *node = shash_first(&dpif->changed_ports);
444         *devnamep = shash_steal(&dpif->changed_ports, node);
445         return 0;
446     } else {
447         return EAGAIN;
448     }
449 }
450
451 static void
452 dpif_linux_port_poll_wait(const struct dpif *dpif_)
453 {
454     struct dpif_linux *dpif = dpif_linux_cast(dpif_);
455     if (!shash_is_empty(&dpif->changed_ports) || dpif->change_error) {
456         poll_immediate_wake();
457     } else {
458         rtnetlink_link_notifier_wait();
459     }
460 }
461
462 static void
463 odp_flow_stats_to_dpif_flow_stats(const struct odp_flow_stats *ofs,
464                                   struct dpif_flow_stats *dfs)
465 {
466     dfs->n_packets = ofs->n_packets;
467     dfs->n_bytes = ofs->n_bytes;
468     dfs->used = ofs->used_sec * 1000 + ofs->used_nsec / 1000000;
469     dfs->tcp_flags = ofs->tcp_flags;
470 }
471
472 static int
473 dpif_linux_flow_get(const struct dpif *dpif_, int flags,
474                     const struct nlattr *key, size_t key_len,
475                     struct ofpbuf **actionsp, struct dpif_flow_stats *stats)
476 {
477     struct ofpbuf *actions = NULL;
478     struct odp_flow odp_flow;
479     int error;
480
481     memset(&odp_flow, 0, sizeof odp_flow);
482     odp_flow.key = (struct nlattr *) key;
483     odp_flow.key_len = key_len;
484     if (actionsp) {
485         actions = *actionsp = ofpbuf_new(65536);
486         odp_flow.actions = actions->base;
487         odp_flow.actions_len = actions->allocated;
488     }
489     odp_flow.flags = flags;
490
491     error = do_ioctl(dpif_, ODP_FLOW_GET, &odp_flow);
492     if (!error) {
493         if (stats) {
494             odp_flow_stats_to_dpif_flow_stats(&odp_flow.stats, stats);
495         }
496         if (actions) {
497             actions->size = odp_flow.actions_len;
498             ofpbuf_trim(actions);
499         }
500     } else {
501         if (actions) {
502             ofpbuf_delete(actions);
503         }
504     }
505     return error;
506 }
507
508 static int
509 dpif_linux_flow_put(struct dpif *dpif_, int flags,
510                     const struct nlattr *key, size_t key_len,
511                     const struct nlattr *actions, size_t actions_len,
512                     struct dpif_flow_stats *stats)
513 {
514     struct odp_flow_put put;
515     int error;
516
517     memset(&put, 0, sizeof put);
518     put.flow.key = (struct nlattr *) key;
519     put.flow.key_len = key_len;
520     put.flow.actions = (struct nlattr *) actions;
521     put.flow.actions_len = actions_len;
522     put.flow.flags = 0;
523     put.flags = flags;
524     error = do_ioctl(dpif_, ODP_FLOW_PUT, &put);
525     if (!error && stats) {
526         odp_flow_stats_to_dpif_flow_stats(&put.flow.stats, stats);
527     }
528     return error;
529 }
530
531 static int
532 dpif_linux_flow_del(struct dpif *dpif_,
533                     const struct nlattr *key, size_t key_len,
534                     struct dpif_flow_stats *stats)
535 {
536     struct odp_flow odp_flow;
537     int error;
538
539     memset(&odp_flow, 0, sizeof odp_flow);
540     odp_flow.key = (struct nlattr *) key;
541     odp_flow.key_len = key_len;
542     error = do_ioctl(dpif_, ODP_FLOW_DEL, &odp_flow);
543     if (!error && stats) {
544         odp_flow_stats_to_dpif_flow_stats(&odp_flow.stats, stats);
545     }
546     return error;
547 }
548
549 struct dpif_linux_flow_state {
550     struct odp_flow_dump dump;
551     struct odp_flow flow;
552     uint32_t keybuf[ODPUTIL_FLOW_KEY_U32S];
553     uint32_t actionsbuf[65536 / sizeof(uint32_t)];
554     struct dpif_flow_stats stats;
555 };
556
557 static int
558 dpif_linux_flow_dump_start(const struct dpif *dpif OVS_UNUSED, void **statep)
559 {
560     struct dpif_linux_flow_state *state;
561
562     *statep = state = xmalloc(sizeof *state);
563     state->dump.state[0] = 0;
564     state->dump.state[1] = 0;
565     state->dump.flow = &state->flow;
566     return 0;
567 }
568
569 static int
570 dpif_linux_flow_dump_next(const struct dpif *dpif, void *state_,
571                           const struct nlattr **key, size_t *key_len,
572                           const struct nlattr **actions, size_t *actions_len,
573                           const struct dpif_flow_stats **stats)
574 {
575     struct dpif_linux_flow_state *state = state_;
576     int error;
577
578     memset(&state->flow, 0, sizeof state->flow);
579     state->flow.key = (struct nlattr *) state->keybuf;
580     state->flow.key_len = sizeof state->keybuf;
581     if (actions) {
582         state->flow.actions = (struct nlattr *) state->actionsbuf;
583         state->flow.actions_len = sizeof state->actionsbuf;
584     }
585
586     error = do_ioctl(dpif, ODP_FLOW_DUMP, &state->dump);
587     if (!error) {
588         if (state->flow.flags & ODPFF_EOF) {
589             return EOF;
590         }
591         if (key) {
592             *key = (const struct nlattr *) state->keybuf;
593             *key_len = state->flow.key_len;
594         }
595         if (actions) {
596             *actions = (const struct nlattr *) state->actionsbuf;
597             *actions_len = state->flow.actions_len;
598         }
599         if (stats) {
600             odp_flow_stats_to_dpif_flow_stats(&state->flow.stats,
601                                               &state->stats);
602             *stats = &state->stats;
603         }
604     }
605     return error;
606 }
607
608 static int
609 dpif_linux_flow_dump_done(const struct dpif *dpif OVS_UNUSED, void *state)
610 {
611     free(state);
612     return 0;
613 }
614
615 static int
616 dpif_linux_execute(struct dpif *dpif_,
617                    const struct nlattr *actions, size_t actions_len,
618                    const struct ofpbuf *buf)
619 {
620     struct odp_execute execute;
621     memset(&execute, 0, sizeof execute);
622     execute.actions = (struct nlattr *) actions;
623     execute.actions_len = actions_len;
624     execute.data = buf->data;
625     execute.length = buf->size;
626     return do_ioctl(dpif_, ODP_EXECUTE, &execute);
627 }
628
629 static int
630 dpif_linux_recv_get_mask(const struct dpif *dpif_, int *listen_mask)
631 {
632     return do_ioctl(dpif_, ODP_GET_LISTEN_MASK, listen_mask);
633 }
634
635 static int
636 dpif_linux_recv_set_mask(struct dpif *dpif_, int listen_mask)
637 {
638     return do_ioctl(dpif_, ODP_SET_LISTEN_MASK, &listen_mask);
639 }
640
641 static int
642 dpif_linux_get_sflow_probability(const struct dpif *dpif_,
643                                  uint32_t *probability)
644 {
645     return do_ioctl(dpif_, ODP_GET_SFLOW_PROBABILITY, probability);
646 }
647
648 static int
649 dpif_linux_set_sflow_probability(struct dpif *dpif_, uint32_t probability)
650 {
651     return do_ioctl(dpif_, ODP_SET_SFLOW_PROBABILITY, &probability);
652 }
653
654 static int
655 dpif_linux_queue_to_priority(const struct dpif *dpif OVS_UNUSED,
656                              uint32_t queue_id, uint32_t *priority)
657 {
658     if (queue_id < 0xf000) {
659         *priority = TC_H_MAKE(1 << 16, queue_id + 1);
660         return 0;
661     } else {
662         return EINVAL;
663     }
664 }
665
666 static int
667 parse_odp_packet(struct ofpbuf *buf, struct dpif_upcall *upcall)
668 {
669     static const struct nl_policy odp_packet_policy[] = {
670         /* Always present. */
671         [ODP_PACKET_ATTR_TYPE] = { .type = NL_A_U32 },
672         [ODP_PACKET_ATTR_PACKET] = { .type = NL_A_UNSPEC,
673                                      .min_len = ETH_HEADER_LEN },
674         [ODP_PACKET_ATTR_KEY] = { .type = NL_A_NESTED },
675
676         /* _ODPL_ACTION_NR only. */
677         [ODP_PACKET_ATTR_USERDATA] = { .type = NL_A_U64, .optional = true },
678
679         /* _ODPL_SFLOW_NR only. */
680         [ODP_PACKET_ATTR_SAMPLE_POOL] = { .type = NL_A_U32, .optional = true },
681         [ODP_PACKET_ATTR_ACTIONS] = { .type = NL_A_NESTED, .optional = true },
682     };
683
684     struct odp_packet *odp_packet = buf->data;
685     struct nlattr *a[ARRAY_SIZE(odp_packet_policy)];
686
687     if (!nl_policy_parse(buf, sizeof *odp_packet, odp_packet_policy,
688                          a, ARRAY_SIZE(odp_packet_policy))) {
689         return EINVAL;
690     }
691
692     memset(upcall, 0, sizeof *upcall);
693     upcall->type = nl_attr_get_u32(a[ODP_PACKET_ATTR_TYPE]);
694     upcall->packet = buf;
695     upcall->packet->data = (void *) nl_attr_get(a[ODP_PACKET_ATTR_PACKET]);
696     upcall->packet->size = nl_attr_get_size(a[ODP_PACKET_ATTR_PACKET]);
697     upcall->key = (void *) nl_attr_get(a[ODP_PACKET_ATTR_KEY]);
698     upcall->key_len = nl_attr_get_size(a[ODP_PACKET_ATTR_KEY]);
699     upcall->userdata = (a[ODP_PACKET_ATTR_USERDATA]
700                         ? nl_attr_get_u64(a[ODP_PACKET_ATTR_USERDATA])
701                         : 0);
702     upcall->sample_pool = (a[ODP_PACKET_ATTR_SAMPLE_POOL]
703                         ? nl_attr_get_u32(a[ODP_PACKET_ATTR_SAMPLE_POOL])
704                            : 0);
705     if (a[ODP_PACKET_ATTR_ACTIONS]) {
706         upcall->actions = (void *) nl_attr_get(a[ODP_PACKET_ATTR_ACTIONS]);
707         upcall->actions_len = nl_attr_get_size(a[ODP_PACKET_ATTR_ACTIONS]);
708     }
709
710     return 0;
711 }
712
713 static int
714 dpif_linux_recv(struct dpif *dpif_, struct dpif_upcall *upcall)
715 {
716     struct dpif_linux *dpif = dpif_linux_cast(dpif_);
717     struct ofpbuf *buf;
718     int retval;
719     int error;
720
721     buf = ofpbuf_new(65536);
722     retval = read(dpif->fd, ofpbuf_tail(buf), ofpbuf_tailroom(buf));
723     if (retval < 0) {
724         error = errno;
725         if (error != EAGAIN) {
726             VLOG_WARN_RL(&error_rl, "%s: read failed: %s",
727                          dpif_name(dpif_), strerror(error));
728         }
729     } else if (retval >= sizeof(struct odp_packet)) {
730         struct odp_packet *odp_packet = buf->data;
731         buf->size += retval;
732
733         if (odp_packet->len <= retval) {
734             error = parse_odp_packet(buf, upcall);
735         } else {
736             VLOG_WARN_RL(&error_rl, "%s: discarding message truncated "
737                          "from %"PRIu32" bytes to %d",
738                          dpif_name(dpif_), odp_packet->len, retval);
739             error = ERANGE;
740         }
741     } else if (!retval) {
742         VLOG_WARN_RL(&error_rl, "%s: unexpected end of file", dpif_name(dpif_));
743         error = EPROTO;
744     } else {
745         VLOG_WARN_RL(&error_rl, "%s: discarding too-short message (%d bytes)",
746                      dpif_name(dpif_), retval);
747         error = ERANGE;
748     }
749
750     if (error) {
751         ofpbuf_delete(buf);
752     }
753     return error;
754 }
755
756 static void
757 dpif_linux_recv_wait(struct dpif *dpif_)
758 {
759     struct dpif_linux *dpif = dpif_linux_cast(dpif_);
760     poll_fd_wait(dpif->fd, POLLIN);
761 }
762
763 static void
764 dpif_linux_recv_purge(struct dpif *dpif_)
765 {
766     struct dpif_linux *dpif = dpif_linux_cast(dpif_);
767     int i;
768
769     /* This is somewhat bogus because it assumes that the following macros have
770      * fixed values, but it's going to go away later.  */
771 #define DP_N_QUEUES 3
772 #define DP_MAX_QUEUE_LEN 100
773     for (i = 0; i < DP_N_QUEUES * DP_MAX_QUEUE_LEN; i++) {
774         /* Reading even 1 byte discards a whole datagram and saves time. */
775         char buffer;
776
777         if (read(dpif->fd, &buffer, 1) != 1) {
778             break;
779         }
780     }
781 }
782
783 const struct dpif_class dpif_linux_class = {
784     "system",
785     NULL,
786     NULL,
787     dpif_linux_enumerate,
788     dpif_linux_open,
789     dpif_linux_close,
790     dpif_linux_get_all_names,
791     dpif_linux_destroy,
792     dpif_linux_get_stats,
793     dpif_linux_get_drop_frags,
794     dpif_linux_set_drop_frags,
795     dpif_linux_port_add,
796     dpif_linux_port_del,
797     dpif_linux_port_query_by_number,
798     dpif_linux_port_query_by_name,
799     dpif_linux_get_max_ports,
800     dpif_linux_port_dump_start,
801     dpif_linux_port_dump_next,
802     dpif_linux_port_dump_done,
803     dpif_linux_port_poll,
804     dpif_linux_port_poll_wait,
805     dpif_linux_flow_get,
806     dpif_linux_flow_put,
807     dpif_linux_flow_del,
808     dpif_linux_flow_flush,
809     dpif_linux_flow_dump_start,
810     dpif_linux_flow_dump_next,
811     dpif_linux_flow_dump_done,
812     dpif_linux_execute,
813     dpif_linux_recv_get_mask,
814     dpif_linux_recv_set_mask,
815     dpif_linux_get_sflow_probability,
816     dpif_linux_set_sflow_probability,
817     dpif_linux_queue_to_priority,
818     dpif_linux_recv,
819     dpif_linux_recv_wait,
820     dpif_linux_recv_purge,
821 };
822 \f
823 static int get_openvswitch_major(void);
824 static int get_major(const char *target);
825
826 static int
827 do_ioctl(const struct dpif *dpif_, int cmd, const void *arg)
828 {
829     struct dpif_linux *dpif = dpif_linux_cast(dpif_);
830     return ioctl(dpif->fd, cmd, arg) ? errno : 0;
831 }
832
833 bool
834 dpif_linux_is_internal_device(const char *name)
835 {
836     struct dpif_linux_vport reply;
837     struct ofpbuf *buf;
838     int error;
839
840     error = dpif_linux_vport_get(name, &reply, &buf);
841     if (!error) {
842         ofpbuf_delete(buf);
843     } else if (error != ENODEV) {
844         VLOG_WARN_RL(&error_rl, "%s: vport query failed (%s)",
845                      name, strerror(error));
846     }
847
848     return reply.type == ODP_VPORT_TYPE_INTERNAL;
849 }
850
851 static int
852 make_openvswitch_device(int minor, char **fnp)
853 {
854     const char dirname[] = "/dev/net";
855     int major;
856     dev_t dev;
857     struct stat s;
858     char fn[128];
859
860     *fnp = NULL;
861
862     major = get_openvswitch_major();
863     if (major < 0) {
864         return -major;
865     }
866     dev = makedev(major, minor);
867
868     sprintf(fn, "%s/dp%d", dirname, minor);
869     if (!stat(fn, &s)) {
870         if (!S_ISCHR(s.st_mode)) {
871             VLOG_WARN_RL(&error_rl, "%s is not a character device, fixing",
872                          fn);
873         } else if (s.st_rdev != dev) {
874             VLOG_WARN_RL(&error_rl,
875                          "%s is device %u:%u but should be %u:%u, fixing",
876                          fn, major(s.st_rdev), minor(s.st_rdev),
877                          major(dev), minor(dev));
878         } else {
879             goto success;
880         }
881         if (unlink(fn)) {
882             VLOG_WARN_RL(&error_rl, "%s: unlink failed (%s)",
883                          fn, strerror(errno));
884             return errno;
885         }
886     } else if (errno == ENOENT) {
887         if (stat(dirname, &s)) {
888             if (errno == ENOENT) {
889                 if (mkdir(dirname, 0755)) {
890                     VLOG_WARN_RL(&error_rl, "%s: mkdir failed (%s)",
891                                  dirname, strerror(errno));
892                     return errno;
893                 }
894             } else {
895                 VLOG_WARN_RL(&error_rl, "%s: stat failed (%s)",
896                              dirname, strerror(errno));
897                 return errno;
898             }
899         }
900     } else {
901         VLOG_WARN_RL(&error_rl, "%s: stat failed (%s)", fn, strerror(errno));
902         return errno;
903     }
904
905     /* The device needs to be created. */
906     if (mknod(fn, S_IFCHR | 0700, dev)) {
907         VLOG_WARN_RL(&error_rl,
908                      "%s: creating character device %u:%u failed (%s)",
909                      fn, major(dev), minor(dev), strerror(errno));
910         return errno;
911     }
912
913 success:
914     *fnp = xstrdup(fn);
915     return 0;
916 }
917
918 /* Return the major device number of the Open vSwitch device.  If it
919  * cannot be determined, a negative errno is returned. */
920 static int
921 get_openvswitch_major(void)
922 {
923     static int openvswitch_major = -1;
924     if (openvswitch_major < 0) {
925         openvswitch_major = get_major("openvswitch");
926     }
927     return openvswitch_major;
928 }
929
930 static int
931 get_major(const char *target)
932 {
933     const char fn[] = "/proc/devices";
934     char line[128];
935     FILE *file;
936     int ln;
937
938     file = fopen(fn, "r");
939     if (!file) {
940         VLOG_ERR("opening %s failed (%s)", fn, strerror(errno));
941         return -errno;
942     }
943
944     for (ln = 1; fgets(line, sizeof line, file); ln++) {
945         char name[64];
946         int major;
947
948         if (!strncmp(line, "Character", 9) || line[0] == '\0') {
949             /* Nothing to do. */
950         } else if (!strncmp(line, "Block", 5)) {
951             /* We only want character devices, so skip the rest of the file. */
952             break;
953         } else if (sscanf(line, "%d %63s", &major, name)) {
954             if (!strcmp(name, target)) {
955                 fclose(file);
956                 return major;
957             }
958         } else {
959             VLOG_WARN_ONCE("%s:%d: syntax error", fn, ln);
960         }
961     }
962
963     fclose(file);
964
965     VLOG_ERR("%s: %s major not found (is the module loaded?)", fn, target);
966     return -ENODEV;
967 }
968
969 static int
970 create_minor(const char *name, int minor)
971 {
972     int error;
973     int fd;
974
975     error = open_minor(minor, &fd);
976     if (error) {
977         return error;
978     }
979
980     error = ioctl(fd, ODP_DP_CREATE, name) ? errno : 0;
981     close(fd);
982     return error;
983 }
984
985 static int
986 open_minor(int minor, int *fdp)
987 {
988     int error;
989     char *fn;
990
991     error = make_openvswitch_device(minor, &fn);
992     if (error) {
993         return error;
994     }
995
996     *fdp = open(fn, O_RDONLY | O_NONBLOCK);
997     if (*fdp < 0) {
998         error = errno;
999         VLOG_WARN("%s: open failed (%s)", fn, strerror(error));
1000         free(fn);
1001         return error;
1002     }
1003     free(fn);
1004     return 0;
1005 }
1006
1007 static void
1008 dpif_linux_port_changed(const struct rtnetlink_link_change *change,
1009                         void *dpif_)
1010 {
1011     struct dpif_linux *dpif = dpif_;
1012
1013     if (change) {
1014         if (change->master_ifindex == dpif->local_ifindex
1015             && (change->nlmsg_type == RTM_NEWLINK
1016                 || change->nlmsg_type == RTM_DELLINK))
1017         {
1018             /* Our datapath changed, either adding a new port or deleting an
1019              * existing one. */
1020             shash_add_once(&dpif->changed_ports, change->ifname, NULL);
1021         }
1022     } else {
1023         dpif->change_error = true;
1024     }
1025 }
1026 \f
1027 /* Parses the contents of 'buf', which contains a "struct odp_vport" followed
1028  * by Netlink attributes, into 'vport'.  Returns 0 if successful, otherwise a
1029  * positive errno value.
1030  *
1031  * 'vport' will contain pointers into 'buf', so the caller should not free
1032  * 'buf' while 'vport' is still in use. */
1033 static int
1034 dpif_linux_vport_from_ofpbuf(struct dpif_linux_vport *vport,
1035                              const struct ofpbuf *buf)
1036 {
1037     static const struct nl_policy odp_vport_policy[] = {
1038         [ODP_VPORT_ATTR_PORT_NO] = { .type = NL_A_U32 },
1039         [ODP_VPORT_ATTR_TYPE] = { .type = NL_A_U32 },
1040         [ODP_VPORT_ATTR_NAME] = { .type = NL_A_STRING, .max_len = IFNAMSIZ },
1041         [ODP_VPORT_ATTR_STATS] = { .type = NL_A_UNSPEC,
1042                                    .min_len = sizeof(struct rtnl_link_stats64),
1043                                    .max_len = sizeof(struct rtnl_link_stats64),
1044                                    .optional = true },
1045         [ODP_VPORT_ATTR_ADDRESS] = { .type = NL_A_UNSPEC,
1046                                      .min_len = ETH_ADDR_LEN,
1047                                      .max_len = ETH_ADDR_LEN,
1048                                      .optional = true },
1049         [ODP_VPORT_ATTR_MTU] = { .type = NL_A_U32, .optional = true },
1050         [ODP_VPORT_ATTR_OPTIONS] = { .type = NL_A_NESTED, .optional = true },
1051         [ODP_VPORT_ATTR_IFINDEX] = { .type = NL_A_U32, .optional = true },
1052         [ODP_VPORT_ATTR_IFLINK] = { .type = NL_A_U32, .optional = true },
1053     };
1054
1055     struct odp_vport *odp_vport;
1056     struct nlattr *a[ARRAY_SIZE(odp_vport_policy)];
1057
1058     dpif_linux_vport_init(vport);
1059
1060     if (!nl_policy_parse(buf, sizeof *odp_vport, odp_vport_policy,
1061                          a, ARRAY_SIZE(odp_vport_policy))) {
1062         return EINVAL;
1063     }
1064     odp_vport = buf->data;
1065
1066     vport->dp_idx = odp_vport->dp_idx;
1067     vport->port_no = nl_attr_get_u32(a[ODP_VPORT_ATTR_PORT_NO]);
1068     vport->type = nl_attr_get_u32(a[ODP_VPORT_ATTR_TYPE]);
1069     vport->name = nl_attr_get_string(a[ODP_VPORT_ATTR_NAME]);
1070     if (a[ODP_VPORT_ATTR_STATS]) {
1071         vport->stats = nl_attr_get(a[ODP_VPORT_ATTR_STATS]);
1072     }
1073     if (a[ODP_VPORT_ATTR_ADDRESS]) {
1074         vport->address = nl_attr_get(a[ODP_VPORT_ATTR_ADDRESS]);
1075     }
1076     if (a[ODP_VPORT_ATTR_MTU]) {
1077         vport->mtu = nl_attr_get_u32(a[ODP_VPORT_ATTR_MTU]);
1078     }
1079     if (a[ODP_VPORT_ATTR_OPTIONS]) {
1080         vport->options = nl_attr_get(a[ODP_VPORT_ATTR_OPTIONS]);
1081         vport->options_len = nl_attr_get_size(a[ODP_VPORT_ATTR_OPTIONS]);
1082     }
1083     if (a[ODP_VPORT_ATTR_IFINDEX]) {
1084         vport->ifindex = nl_attr_get_u32(a[ODP_VPORT_ATTR_IFINDEX]);
1085     }
1086     if (a[ODP_VPORT_ATTR_IFLINK]) {
1087         vport->iflink = nl_attr_get_u32(a[ODP_VPORT_ATTR_IFLINK]);
1088     }
1089     return 0;
1090 }
1091
1092 /* Appends to 'buf' (which must initially be empty) a "struct odp_vport"
1093  * followed by Netlink attributes corresponding to 'vport'. */
1094 static void
1095 dpif_linux_vport_to_ofpbuf(const struct dpif_linux_vport *vport,
1096                            struct ofpbuf *buf)
1097 {
1098     struct odp_vport *odp_vport;
1099
1100     ofpbuf_reserve(buf, sizeof odp_vport);
1101
1102     if (vport->port_no != UINT32_MAX) {
1103         nl_msg_put_u32(buf, ODP_VPORT_ATTR_PORT_NO, vport->port_no);
1104     }
1105
1106     if (vport->type != ODP_VPORT_TYPE_UNSPEC) {
1107         nl_msg_put_u32(buf, ODP_VPORT_ATTR_TYPE, vport->type);
1108     }
1109
1110     if (vport->name) {
1111         nl_msg_put_string(buf, ODP_VPORT_ATTR_NAME, vport->name);
1112     }
1113
1114     if (vport->stats) {
1115         nl_msg_put_unspec(buf, ODP_VPORT_ATTR_STATS,
1116                           vport->stats, sizeof *vport->stats);
1117     }
1118
1119     if (vport->address) {
1120         nl_msg_put_unspec(buf, ODP_VPORT_ATTR_ADDRESS,
1121                           vport->address, ETH_ADDR_LEN);
1122     }
1123
1124     if (vport->mtu) {
1125         nl_msg_put_u32(buf, ODP_VPORT_ATTR_MTU, vport->mtu);
1126     }
1127
1128     if (vport->options) {
1129         nl_msg_put_nested(buf, ODP_VPORT_ATTR_OPTIONS,
1130                           vport->options, vport->options_len);
1131     }
1132
1133     if (vport->ifindex) {
1134         nl_msg_put_u32(buf, ODP_VPORT_ATTR_IFINDEX, vport->ifindex);
1135     }
1136
1137     if (vport->iflink) {
1138         nl_msg_put_u32(buf, ODP_VPORT_ATTR_IFLINK, vport->iflink);
1139     }
1140
1141     odp_vport = ofpbuf_push_uninit(buf, sizeof *odp_vport);
1142     odp_vport->dp_idx = vport->dp_idx;
1143     odp_vport->len = buf->size;
1144     odp_vport->total_len = (char *) ofpbuf_end(buf) - (char *) buf->data;
1145 }
1146
1147 /* Clears 'vport' to "empty" values. */
1148 void
1149 dpif_linux_vport_init(struct dpif_linux_vport *vport)
1150 {
1151     memset(vport, 0, sizeof *vport);
1152     vport->dp_idx = UINT32_MAX;
1153     vport->port_no = UINT32_MAX;
1154 }
1155
1156 /* Executes 'request' in the kernel datapath.  If the command fails, returns a
1157  * positive errno value.  Otherwise, if 'reply' and 'bufp' are null, returns 0
1158  * without doing anything else.  If 'reply' and 'bufp' are nonnull, then the
1159  * result of the command is expected to be an odp_vport also, which is decoded
1160  * and stored in '*reply' and '*bufp'.  The caller must free '*bufp' when the
1161  * reply is no longer needed ('reply' will contain pointers into '*bufp'). */
1162 int
1163 dpif_linux_vport_transact(const struct dpif_linux_vport *request,
1164                           struct dpif_linux_vport *reply,
1165                           struct ofpbuf **bufp)
1166 {
1167     static int dp0_fd = -1;
1168     struct ofpbuf *buf = NULL;
1169     int error;
1170
1171     assert((reply != NULL) == (bufp != NULL));
1172     if (dp0_fd < 0) {
1173         int fd;
1174
1175         error = open_minor(0, &fd);
1176         if (error) {
1177             goto error;
1178         }
1179         dp0_fd = fd;
1180     }
1181
1182     buf = ofpbuf_new(1024);
1183     dpif_linux_vport_to_ofpbuf(request, buf);
1184
1185     error = ioctl(dp0_fd, request->cmd, buf->data) ? errno : 0;
1186     if (error) {
1187         goto error;
1188     }
1189
1190     if (bufp) {
1191         buf->size = ((struct odp_vport *) buf->data)->len;
1192         error = dpif_linux_vport_from_ofpbuf(reply, buf);
1193         if (error) {
1194             goto error;
1195         }
1196         *bufp = buf;
1197     } else {
1198         ofpbuf_delete(buf);
1199     }
1200     return 0;
1201
1202 error:
1203     ofpbuf_delete(buf);
1204     if (bufp) {
1205         memset(reply, 0, sizeof *reply);
1206         *bufp = NULL;
1207     }
1208     return error;
1209 }
1210
1211 /* Obtains information about the kernel vport named 'name' and stores it into
1212  * '*reply' and '*bufp'.  The caller must free '*bufp' when the reply is no
1213  * longer needed ('reply' will contain pointers into '*bufp').  */
1214 int
1215 dpif_linux_vport_get(const char *name, struct dpif_linux_vport *reply,
1216                      struct ofpbuf **bufp)
1217 {
1218     struct dpif_linux_vport request;
1219
1220     dpif_linux_vport_init(&request);
1221     request.cmd = ODP_VPORT_GET;
1222     request.name = name;
1223
1224     return dpif_linux_vport_transact(&request, reply, bufp);
1225 }
1226