ofproto: Use hash table instead of sparse array for ofports.
[sliver-openvswitch.git] / lib / netdev-linux.c
1 /*
2  * Copyright (c) 2009, 2010 Nicira Networks.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at:
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #include <config.h>
18 #include <assert.h>
19 #include <errno.h>
20 #include <fcntl.h>
21 #include <arpa/inet.h>
22 #include <inttypes.h>
23 #include <linux/gen_stats.h>
24 #include <linux/if_tun.h>
25 #include <linux/ip.h>
26 #include <linux/types.h>
27 #include <linux/ethtool.h>
28 #include <linux/pkt_sched.h>
29 #include <linux/rtnetlink.h>
30 #include <linux/sockios.h>
31 #include <linux/version.h>
32 #include <sys/types.h>
33 #include <sys/ioctl.h>
34 #include <sys/socket.h>
35 #include <netpacket/packet.h>
36 #include <net/ethernet.h>
37 #include <net/if.h>
38 #include <linux/if_tunnel.h>
39 #include <net/if_arp.h>
40 #include <net/if_packet.h>
41 #include <net/route.h>
42 #include <netinet/in.h>
43 #include <poll.h>
44 #include <stdlib.h>
45 #include <string.h>
46 #include <unistd.h>
47
48 #include "coverage.h"
49 #include "dynamic-string.h"
50 #include "fatal-signal.h"
51 #include "hash.h"
52 #include "hmap.h"
53 #include "netdev-provider.h"
54 #include "netdev-vport.h"
55 #include "netlink.h"
56 #include "ofpbuf.h"
57 #include "openflow/openflow.h"
58 #include "packets.h"
59 #include "poll-loop.h"
60 #include "rtnetlink.h"
61 #include "socket-util.h"
62 #include "shash.h"
63 #include "svec.h"
64 #include "vlog.h"
65
66 VLOG_DEFINE_THIS_MODULE(netdev_linux)
67 \f
68 /* These were introduced in Linux 2.6.14, so they might be missing if we have
69  * old headers. */
70 #ifndef ADVERTISED_Pause
71 #define ADVERTISED_Pause                (1 << 13)
72 #endif
73 #ifndef ADVERTISED_Asym_Pause
74 #define ADVERTISED_Asym_Pause           (1 << 14)
75 #endif
76
77 /* This was introduced in Linux 2.6.25, so it might be missing if we have old
78  * headers. */
79 #ifndef TC_RTAB_SIZE
80 #define TC_RTAB_SIZE 1024
81 #endif
82
83 static struct rtnetlink_notifier netdev_linux_cache_notifier;
84 static int cache_notifier_refcount;
85
86 enum {
87     VALID_IFINDEX           = 1 << 0,
88     VALID_ETHERADDR         = 1 << 1,
89     VALID_IN4               = 1 << 2,
90     VALID_IN6               = 1 << 3,
91     VALID_MTU               = 1 << 4,
92     VALID_CARRIER           = 1 << 5,
93     VALID_IS_PSEUDO         = 1 << 6, /* Represents is_internal and is_tap. */
94     VALID_POLICING          = 1 << 7,
95     VALID_HAVE_VPORT_STATS  = 1 << 8
96 };
97
98 struct tap_state {
99     int fd;
100     bool opened;
101 };
102 \f
103 /* Traffic control. */
104
105 /* An instance of a traffic control class.  Always associated with a particular
106  * network device.
107  *
108  * Each TC implementation subclasses this with whatever additional data it
109  * needs. */
110 struct tc {
111     const struct tc_ops *ops;
112     struct hmap queues;         /* Contains "struct tc_queue"s.
113                                  * Read by generic TC layer.
114                                  * Written only by TC implementation. */
115 };
116
117 /* One traffic control queue.
118  *
119  * Each TC implementation subclasses this with whatever additional data it
120  * needs. */
121 struct tc_queue {
122     struct hmap_node hmap_node; /* In struct tc's "queues" hmap. */
123     unsigned int queue_id;      /* OpenFlow queue ID. */
124 };
125
126 /* A particular kind of traffic control.  Each implementation generally maps to
127  * one particular Linux qdisc class.
128  *
129  * The functions below return 0 if successful or a positive errno value on
130  * failure, except where otherwise noted.  All of them must be provided, except
131  * where otherwise noted. */
132 struct tc_ops {
133     /* Name used by kernel in the TCA_KIND attribute of tcmsg, e.g. "htb".
134      * This is null for tc_ops_default and tc_ops_other, for which there are no
135      * appropriate values. */
136     const char *linux_name;
137
138     /* Name used in OVS database, e.g. "linux-htb".  Must be nonnull. */
139     const char *ovs_name;
140
141     /* Number of supported OpenFlow queues, 0 for qdiscs that have no
142      * queues.  The queues are numbered 0 through n_queues - 1. */
143     unsigned int n_queues;
144
145     /* Called to install this TC class on 'netdev'.  The implementation should
146      * make the Netlink calls required to set up 'netdev' with the right qdisc
147      * and configure it according to 'details'.  The implementation may assume
148      * that the current qdisc is the default; that is, there is no need for it
149      * to delete the current qdisc before installing itself.
150      *
151      * The contents of 'details' should be documented as valid for 'ovs_name'
152      * in the "other_config" column in the "QoS" table in vswitchd/vswitch.xml
153      * (which is built as ovs-vswitchd.conf.db(8)).
154      *
155      * This function must return 0 if and only if it sets 'netdev->tc' to an
156      * initialized 'struct tc'.
157      *
158      * (This function is null for tc_ops_other, which cannot be installed.  For
159      * other TC classes it should always be nonnull.) */
160     int (*tc_install)(struct netdev *netdev, const struct shash *details);
161
162     /* Called when the netdev code determines (through a Netlink query) that
163      * this TC class's qdisc is installed on 'netdev', but we didn't install
164      * it ourselves and so don't know any of the details.
165      *
166      * 'nlmsg' is the kernel reply to a RTM_GETQDISC Netlink message for
167      * 'netdev'.  The TCA_KIND attribute of 'nlmsg' is 'linux_name'.  The
168      * implementation should parse the other attributes of 'nlmsg' as
169      * necessary to determine its configuration.  If necessary it should also
170      * use Netlink queries to determine the configuration of queues on
171      * 'netdev'.
172      *
173      * This function must return 0 if and only if it sets 'netdev->tc' to an
174      * initialized 'struct tc'. */
175     int (*tc_load)(struct netdev *netdev, struct ofpbuf *nlmsg);
176
177     /* Destroys the data structures allocated by the implementation as part of
178      * 'tc'.  (This includes destroying 'tc->queues' by calling
179      * tc_destroy(tc).
180      *
181      * The implementation should not need to perform any Netlink calls.  If
182      * desirable, the caller is responsible for deconfiguring the kernel qdisc.
183      * (But it may not be desirable.)
184      *
185      * This function may be null if 'tc' is trivial. */
186     void (*tc_destroy)(struct tc *tc);
187
188     /* Retrieves details of 'netdev->tc' configuration into 'details'.
189      *
190      * The implementation should not need to perform any Netlink calls, because
191      * the 'tc_install' or 'tc_load' that instantiated 'netdev->tc' should have
192      * cached the configuration.
193      *
194      * The contents of 'details' should be documented as valid for 'ovs_name'
195      * in the "other_config" column in the "QoS" table in vswitchd/vswitch.xml
196      * (which is built as ovs-vswitchd.conf.db(8)).
197      *
198      * This function may be null if 'tc' is not configurable.
199      */
200     int (*qdisc_get)(const struct netdev *netdev, struct shash *details);
201
202     /* Reconfigures 'netdev->tc' according to 'details', performing any
203      * required Netlink calls to complete the reconfiguration.
204      *
205      * The contents of 'details' should be documented as valid for 'ovs_name'
206      * in the "other_config" column in the "QoS" table in vswitchd/vswitch.xml
207      * (which is built as ovs-vswitchd.conf.db(8)).
208      *
209      * This function may be null if 'tc' is not configurable.
210      */
211     int (*qdisc_set)(struct netdev *, const struct shash *details);
212
213     /* Retrieves details of 'queue' on 'netdev->tc' into 'details'.  'queue' is
214      * one of the 'struct tc_queue's within 'netdev->tc->queues'.
215      *
216      * The contents of 'details' should be documented as valid for 'ovs_name'
217      * in the "other_config" column in the "Queue" table in
218      * vswitchd/vswitch.xml (which is built as ovs-vswitchd.conf.db(8)).
219      *
220      * The implementation should not need to perform any Netlink calls, because
221      * the 'tc_install' or 'tc_load' that instantiated 'netdev->tc' should have
222      * cached the queue configuration.
223      *
224      * This function may be null if 'tc' does not have queues ('n_queues' is
225      * 0). */
226     int (*class_get)(const struct netdev *netdev, const struct tc_queue *queue,
227                      struct shash *details);
228
229     /* Configures or reconfigures 'queue_id' on 'netdev->tc' according to
230      * 'details', perfoming any required Netlink calls to complete the
231      * reconfiguration.  The caller ensures that 'queue_id' is less than
232      * 'n_queues'.
233      *
234      * The contents of 'details' should be documented as valid for 'ovs_name'
235      * in the "other_config" column in the "Queue" table in
236      * vswitchd/vswitch.xml (which is built as ovs-vswitchd.conf.db(8)).
237      *
238      * This function may be null if 'tc' does not have queues or its queues are
239      * not configurable. */
240     int (*class_set)(struct netdev *, unsigned int queue_id,
241                      const struct shash *details);
242
243     /* Deletes 'queue' from 'netdev->tc'.  'queue' is one of the 'struct
244      * tc_queue's within 'netdev->tc->queues'.
245      *
246      * This function may be null if 'tc' does not have queues or its queues
247      * cannot be deleted. */
248     int (*class_delete)(struct netdev *, struct tc_queue *queue);
249
250     /* Obtains stats for 'queue' from 'netdev->tc'.  'queue' is one of the
251      * 'struct tc_queue's within 'netdev->tc->queues'.
252      *
253      * On success, initializes '*stats'.
254      *
255      * This function may be null if 'tc' does not have queues or if it cannot
256      * report queue statistics. */
257     int (*class_get_stats)(const struct netdev *netdev,
258                            const struct tc_queue *queue,
259                            struct netdev_queue_stats *stats);
260
261     /* Extracts queue stats from 'nlmsg', which is a response to a
262      * RTM_GETTCLASS message, and passes them to 'cb' along with 'aux'.
263      *
264      * This function may be null if 'tc' does not have queues or if it cannot
265      * report queue statistics. */
266     int (*class_dump_stats)(const struct netdev *netdev,
267                             const struct ofpbuf *nlmsg,
268                             netdev_dump_queue_stats_cb *cb, void *aux);
269 };
270
271 static void
272 tc_init(struct tc *tc, const struct tc_ops *ops)
273 {
274     tc->ops = ops;
275     hmap_init(&tc->queues);
276 }
277
278 static void
279 tc_destroy(struct tc *tc)
280 {
281     hmap_destroy(&tc->queues);
282 }
283
284 static const struct tc_ops tc_ops_htb;
285 static const struct tc_ops tc_ops_default;
286 static const struct tc_ops tc_ops_other;
287
288 static const struct tc_ops *tcs[] = {
289     &tc_ops_htb,                /* Hierarchy token bucket (see tc-htb(8)). */
290     &tc_ops_default,            /* Default qdisc (see tc-pfifo_fast(8)). */
291     &tc_ops_other,              /* Some other qdisc. */
292     NULL
293 };
294
295 static unsigned int tc_make_handle(unsigned int major, unsigned int minor);
296 static unsigned int tc_get_major(unsigned int handle);
297 static unsigned int tc_get_minor(unsigned int handle);
298
299 static unsigned int tc_ticks_to_bytes(unsigned int rate, unsigned int ticks);
300 static unsigned int tc_bytes_to_ticks(unsigned int rate, unsigned int size);
301 static unsigned int tc_buffer_per_jiffy(unsigned int rate);
302
303 static struct tcmsg *tc_make_request(const struct netdev *, int type,
304                                      unsigned int flags, struct ofpbuf *);
305 static int tc_transact(struct ofpbuf *request, struct ofpbuf **replyp);
306
307 static int tc_parse_qdisc(const struct ofpbuf *, const char **kind,
308                           struct nlattr **options);
309 static int tc_parse_class(const struct ofpbuf *, unsigned int *queue_id,
310                           struct nlattr **options,
311                           struct netdev_queue_stats *);
312 static int tc_query_class(const struct netdev *,
313                           unsigned int handle, unsigned int parent,
314                           struct ofpbuf **replyp);
315 static int tc_delete_class(const struct netdev *, unsigned int handle);
316
317 static int tc_del_qdisc(struct netdev *netdev);
318 static int tc_query_qdisc(const struct netdev *netdev);
319
320 static int tc_calc_cell_log(unsigned int mtu);
321 static void tc_fill_rate(struct tc_ratespec *rate, uint64_t bps, int mtu);
322 static void tc_put_rtab(struct ofpbuf *, uint16_t type,
323                         const struct tc_ratespec *rate);
324 static int tc_calc_buffer(unsigned int Bps, int mtu, uint64_t burst_bytes);
325 \f
326 struct netdev_dev_linux {
327     struct netdev_dev netdev_dev;
328
329     struct shash_node *shash_node;
330     unsigned int cache_valid;
331
332     /* The following are figured out "on demand" only.  They are only valid
333      * when the corresponding VALID_* bit in 'cache_valid' is set. */
334     int ifindex;
335     uint8_t etheraddr[ETH_ADDR_LEN];
336     struct in_addr address, netmask;
337     struct in6_addr in6;
338     int mtu;
339     int carrier;
340     bool is_internal;           /* Is this an openvswitch internal device? */
341     bool is_tap;                /* Is this a tuntap device? */
342     uint32_t kbits_rate;        /* Policing data. */
343     uint32_t kbits_burst;
344     bool have_vport_stats;
345     struct tc *tc;
346
347     union {
348         struct tap_state tap;
349     } state;
350 };
351
352 struct netdev_linux {
353     struct netdev netdev;
354     int fd;
355 };
356
357 /* An AF_INET socket (used for ioctl operations). */
358 static int af_inet_sock = -1;
359
360 /* A Netlink routing socket that is not subscribed to any multicast groups. */
361 static struct nl_sock *rtnl_sock;
362
363 struct netdev_linux_notifier {
364     struct netdev_notifier notifier;
365     struct list node;
366 };
367
368 static struct shash netdev_linux_notifiers =
369     SHASH_INITIALIZER(&netdev_linux_notifiers);
370 static struct rtnetlink_notifier netdev_linux_poll_notifier;
371
372 /* This is set pretty low because we probably won't learn anything from the
373  * additional log messages. */
374 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(5, 20);
375
376 static int netdev_linux_init(void);
377
378 static int netdev_linux_do_ethtool(const char *name, struct ethtool_cmd *,
379                                    int cmd, const char *cmd_name);
380 static int netdev_linux_do_ioctl(const char *name, struct ifreq *, int cmd,
381                                  const char *cmd_name);
382 static int netdev_linux_get_ipv4(const struct netdev *, struct in_addr *,
383                                  int cmd, const char *cmd_name);
384 static int get_flags(const struct netdev *, int *flagsp);
385 static int set_flags(struct netdev *, int flags);
386 static int do_get_ifindex(const char *netdev_name);
387 static int get_ifindex(const struct netdev *, int *ifindexp);
388 static int do_set_addr(struct netdev *netdev,
389                        int ioctl_nr, const char *ioctl_name,
390                        struct in_addr addr);
391 static int get_etheraddr(const char *netdev_name, uint8_t ea[ETH_ADDR_LEN]);
392 static int set_etheraddr(const char *netdev_name, int hwaddr_family,
393                          const uint8_t[ETH_ADDR_LEN]);
394 static int get_stats_via_netlink(int ifindex, struct netdev_stats *stats);
395 static int get_stats_via_proc(const char *netdev_name, struct netdev_stats *stats);
396
397 static bool
398 is_netdev_linux_class(const struct netdev_class *netdev_class)
399 {
400     return netdev_class->init == netdev_linux_init;
401 }
402
403 static struct netdev_dev_linux *
404 netdev_dev_linux_cast(const struct netdev_dev *netdev_dev)
405 {
406     const struct netdev_class *netdev_class = netdev_dev_get_class(netdev_dev);
407     assert(is_netdev_linux_class(netdev_class));
408
409     return CONTAINER_OF(netdev_dev, struct netdev_dev_linux, netdev_dev);
410 }
411
412 static struct netdev_linux *
413 netdev_linux_cast(const struct netdev *netdev)
414 {
415     struct netdev_dev *netdev_dev = netdev_get_dev(netdev);
416     const struct netdev_class *netdev_class = netdev_dev_get_class(netdev_dev);
417     assert(is_netdev_linux_class(netdev_class));
418
419     return CONTAINER_OF(netdev, struct netdev_linux, netdev);
420 }
421 \f
422 static int
423 netdev_linux_init(void)
424 {
425     static int status = -1;
426     if (status < 0) {
427         /* Create AF_INET socket. */
428         af_inet_sock = socket(AF_INET, SOCK_DGRAM, 0);
429         status = af_inet_sock >= 0 ? 0 : errno;
430         if (status) {
431             VLOG_ERR("failed to create inet socket: %s", strerror(status));
432         }
433
434         /* Create rtnetlink socket. */
435         if (!status) {
436             status = nl_sock_create(NETLINK_ROUTE, 0, 0, 0, &rtnl_sock);
437             if (status) {
438                 VLOG_ERR_RL(&rl, "failed to create rtnetlink socket: %s",
439                             strerror(status));
440             }
441         }
442     }
443     return status;
444 }
445
446 static void
447 netdev_linux_run(void)
448 {
449     rtnetlink_notifier_run();
450 }
451
452 static void
453 netdev_linux_wait(void)
454 {
455     rtnetlink_notifier_wait();
456 }
457
458 static void
459 netdev_linux_cache_cb(const struct rtnetlink_change *change,
460                       void *aux OVS_UNUSED)
461 {
462     struct netdev_dev_linux *dev;
463     if (change) {
464         struct netdev_dev *base_dev = netdev_dev_from_name(change->ifname);
465         if (base_dev) {
466             const struct netdev_class *netdev_class =
467                                                 netdev_dev_get_class(base_dev);
468
469             if (is_netdev_linux_class(netdev_class)) {
470                 dev = netdev_dev_linux_cast(base_dev);
471                 dev->cache_valid = 0;
472             }
473         }
474     } else {
475         struct shash device_shash;
476         struct shash_node *node;
477
478         shash_init(&device_shash);
479         netdev_dev_get_devices(&netdev_linux_class, &device_shash);
480         SHASH_FOR_EACH (node, &device_shash) {
481             dev = node->data;
482             dev->cache_valid = 0;
483         }
484         shash_destroy(&device_shash);
485     }
486 }
487
488 /* Creates the netdev device of 'type' with 'name'. */
489 static int
490 netdev_linux_create_system(const char *name, const char *type OVS_UNUSED,
491                     const struct shash *args, struct netdev_dev **netdev_devp)
492 {
493     struct netdev_dev_linux *netdev_dev;
494     int error;
495
496     if (!shash_is_empty(args)) {
497         VLOG_WARN("%s: arguments for system devices should be empty", name);
498     }
499
500     if (!cache_notifier_refcount) {
501         error = rtnetlink_notifier_register(&netdev_linux_cache_notifier,
502                                             netdev_linux_cache_cb, NULL);
503         if (error) {
504             return error;
505         }
506     }
507     cache_notifier_refcount++;
508
509     netdev_dev = xzalloc(sizeof *netdev_dev);
510     netdev_dev_init(&netdev_dev->netdev_dev, name, &netdev_linux_class);
511
512     *netdev_devp = &netdev_dev->netdev_dev;
513     return 0;
514 }
515
516 /* For most types of netdevs we open the device for each call of
517  * netdev_open().  However, this is not the case with tap devices,
518  * since it is only possible to open the device once.  In this
519  * situation we share a single file descriptor, and consequently
520  * buffers, across all readers.  Therefore once data is read it will
521  * be unavailable to other reads for tap devices. */
522 static int
523 netdev_linux_create_tap(const char *name, const char *type OVS_UNUSED,
524                     const struct shash *args, struct netdev_dev **netdev_devp)
525 {
526     struct netdev_dev_linux *netdev_dev;
527     struct tap_state *state;
528     static const char tap_dev[] = "/dev/net/tun";
529     struct ifreq ifr;
530     int error;
531
532     if (!shash_is_empty(args)) {
533         VLOG_WARN("%s: arguments for TAP devices should be empty", name);
534     }
535
536     netdev_dev = xzalloc(sizeof *netdev_dev);
537     state = &netdev_dev->state.tap;
538
539     /* Open tap device. */
540     state->fd = open(tap_dev, O_RDWR);
541     if (state->fd < 0) {
542         error = errno;
543         VLOG_WARN("opening \"%s\" failed: %s", tap_dev, strerror(error));
544         goto error;
545     }
546
547     /* Create tap device. */
548     ifr.ifr_flags = IFF_TAP | IFF_NO_PI;
549     strncpy(ifr.ifr_name, name, sizeof ifr.ifr_name);
550     if (ioctl(state->fd, TUNSETIFF, &ifr) == -1) {
551         VLOG_WARN("%s: creating tap device failed: %s", name,
552                   strerror(errno));
553         error = errno;
554         goto error;
555     }
556
557     /* Make non-blocking. */
558     error = set_nonblocking(state->fd);
559     if (error) {
560         goto error;
561     }
562
563     netdev_dev_init(&netdev_dev->netdev_dev, name, &netdev_tap_class);
564     *netdev_devp = &netdev_dev->netdev_dev;
565     return 0;
566
567 error:
568     free(netdev_dev);
569     return error;
570 }
571
572 static void
573 destroy_tap(struct netdev_dev_linux *netdev_dev)
574 {
575     struct tap_state *state = &netdev_dev->state.tap;
576
577     if (state->fd >= 0) {
578         close(state->fd);
579     }
580 }
581
582 /* Destroys the netdev device 'netdev_dev_'. */
583 static void
584 netdev_linux_destroy(struct netdev_dev *netdev_dev_)
585 {
586     struct netdev_dev_linux *netdev_dev = netdev_dev_linux_cast(netdev_dev_);
587     const char *type = netdev_dev_get_type(netdev_dev_);
588
589     if (netdev_dev->tc && netdev_dev->tc->ops->tc_destroy) {
590         netdev_dev->tc->ops->tc_destroy(netdev_dev->tc);
591     }
592
593     if (!strcmp(type, "system")) {
594         cache_notifier_refcount--;
595
596         if (!cache_notifier_refcount) {
597             rtnetlink_notifier_unregister(&netdev_linux_cache_notifier);
598         }
599     } else if (!strcmp(type, "tap")) {
600         destroy_tap(netdev_dev);
601     }
602
603     free(netdev_dev);
604 }
605
606 static int
607 netdev_linux_open(struct netdev_dev *netdev_dev_, int ethertype,
608                   struct netdev **netdevp)
609 {
610     struct netdev_dev_linux *netdev_dev = netdev_dev_linux_cast(netdev_dev_);
611     struct netdev_linux *netdev;
612     enum netdev_flags flags;
613     int error;
614
615     /* Allocate network device. */
616     netdev = xzalloc(sizeof *netdev);
617     netdev->fd = -1;
618     netdev_init(&netdev->netdev, netdev_dev_);
619
620     error = netdev_get_flags(&netdev->netdev, &flags);
621     if (error == ENODEV) {
622         goto error;
623     }
624
625     if (!strcmp(netdev_dev_get_type(netdev_dev_), "tap") &&
626         !netdev_dev->state.tap.opened) {
627
628         /* We assume that the first user of the tap device is the primary user
629          * and give them the tap FD.  Subsequent users probably just expect
630          * this to be a system device so open it normally to avoid send/receive
631          * directions appearing to be reversed. */
632         netdev->fd = netdev_dev->state.tap.fd;
633         netdev_dev->state.tap.opened = true;
634     } else if (ethertype != NETDEV_ETH_TYPE_NONE) {
635         struct sockaddr_ll sll;
636         int protocol;
637         int ifindex;
638
639         /* Create file descriptor. */
640         protocol = (ethertype == NETDEV_ETH_TYPE_ANY ? ETH_P_ALL
641                     : ethertype == NETDEV_ETH_TYPE_802_2 ? ETH_P_802_2
642                     : ethertype);
643         netdev->fd = socket(PF_PACKET, SOCK_RAW, htons(protocol));
644         if (netdev->fd < 0) {
645             error = errno;
646             goto error;
647         }
648
649         /* Set non-blocking mode. */
650         error = set_nonblocking(netdev->fd);
651         if (error) {
652             goto error;
653         }
654
655         /* Get ethernet device index. */
656         error = get_ifindex(&netdev->netdev, &ifindex);
657         if (error) {
658             goto error;
659         }
660
661         /* Bind to specific ethernet device. */
662         memset(&sll, 0, sizeof sll);
663         sll.sll_family = AF_PACKET;
664         sll.sll_ifindex = ifindex;
665         if (bind(netdev->fd,
666                  (struct sockaddr *) &sll, sizeof sll) < 0) {
667             error = errno;
668             VLOG_ERR("bind to %s failed: %s", netdev_dev_get_name(netdev_dev_),
669                      strerror(error));
670             goto error;
671         }
672
673         /* Between the socket() and bind() calls above, the socket receives all
674          * packets of the requested type on all system interfaces.  We do not
675          * want to receive that data, but there is no way to avoid it.  So we
676          * must now drain out the receive queue. */
677         error = drain_rcvbuf(netdev->fd);
678         if (error) {
679             goto error;
680         }
681     }
682
683     *netdevp = &netdev->netdev;
684     return 0;
685
686 error:
687     netdev_uninit(&netdev->netdev, true);
688     return error;
689 }
690
691 /* Closes and destroys 'netdev'. */
692 static void
693 netdev_linux_close(struct netdev *netdev_)
694 {
695     struct netdev_linux *netdev = netdev_linux_cast(netdev_);
696
697     if (netdev->fd > 0 && strcmp(netdev_get_type(netdev_), "tap")) {
698         close(netdev->fd);
699     }
700     free(netdev);
701 }
702
703 /* Initializes 'svec' with a list of the names of all known network devices. */
704 static int
705 netdev_linux_enumerate(struct svec *svec)
706 {
707     struct if_nameindex *names;
708
709     names = if_nameindex();
710     if (names) {
711         size_t i;
712
713         for (i = 0; names[i].if_name != NULL; i++) {
714             svec_add(svec, names[i].if_name);
715         }
716         if_freenameindex(names);
717         return 0;
718     } else {
719         VLOG_WARN("could not obtain list of network device names: %s",
720                   strerror(errno));
721         return errno;
722     }
723 }
724
725 static int
726 netdev_linux_recv(struct netdev *netdev_, void *data, size_t size)
727 {
728     struct netdev_linux *netdev = netdev_linux_cast(netdev_);
729
730     if (netdev->fd < 0) {
731         /* Device was opened with NETDEV_ETH_TYPE_NONE. */
732         return -EAGAIN;
733     }
734
735     for (;;) {
736         ssize_t retval = read(netdev->fd, data, size);
737         if (retval >= 0) {
738             return retval;
739         } else if (errno != EINTR) {
740             if (errno != EAGAIN) {
741                 VLOG_WARN_RL(&rl, "error receiving Ethernet packet on %s: %s",
742                              strerror(errno), netdev_get_name(netdev_));
743             }
744             return -errno;
745         }
746     }
747 }
748
749 /* Registers with the poll loop to wake up from the next call to poll_block()
750  * when a packet is ready to be received with netdev_recv() on 'netdev'. */
751 static void
752 netdev_linux_recv_wait(struct netdev *netdev_)
753 {
754     struct netdev_linux *netdev = netdev_linux_cast(netdev_);
755     if (netdev->fd >= 0) {
756         poll_fd_wait(netdev->fd, POLLIN);
757     }
758 }
759
760 /* Discards all packets waiting to be received from 'netdev'. */
761 static int
762 netdev_linux_drain(struct netdev *netdev_)
763 {
764     struct netdev_linux *netdev = netdev_linux_cast(netdev_);
765     if (netdev->fd < 0) {
766         return 0;
767     } else if (!strcmp(netdev_get_type(netdev_), "tap")) {
768         struct ifreq ifr;
769         int error = netdev_linux_do_ioctl(netdev_get_name(netdev_), &ifr,
770                                           SIOCGIFTXQLEN, "SIOCGIFTXQLEN");
771         if (error) {
772             return error;
773         }
774         drain_fd(netdev->fd, ifr.ifr_qlen);
775         return 0;
776     } else {
777         return drain_rcvbuf(netdev->fd);
778     }
779 }
780
781 /* Sends 'buffer' on 'netdev'.  Returns 0 if successful, otherwise a positive
782  * errno value.  Returns EAGAIN without blocking if the packet cannot be queued
783  * immediately.  Returns EMSGSIZE if a partial packet was transmitted or if
784  * the packet is too big or too small to transmit on the device.
785  *
786  * The caller retains ownership of 'buffer' in all cases.
787  *
788  * The kernel maintains a packet transmission queue, so the caller is not
789  * expected to do additional queuing of packets. */
790 static int
791 netdev_linux_send(struct netdev *netdev_, const void *data, size_t size)
792 {
793     struct netdev_linux *netdev = netdev_linux_cast(netdev_);
794
795     /* XXX should support sending even if 'ethertype' was NETDEV_ETH_TYPE_NONE.
796      */
797     if (netdev->fd < 0) {
798         return EPIPE;
799     }
800
801     for (;;) {
802         ssize_t retval = write(netdev->fd, data, size);
803         if (retval < 0) {
804             /* The Linux AF_PACKET implementation never blocks waiting for room
805              * for packets, instead returning ENOBUFS.  Translate this into
806              * EAGAIN for the caller. */
807             if (errno == ENOBUFS) {
808                 return EAGAIN;
809             } else if (errno == EINTR) {
810                 continue;
811             } else if (errno != EAGAIN) {
812                 VLOG_WARN_RL(&rl, "error sending Ethernet packet on %s: %s",
813                              netdev_get_name(netdev_), strerror(errno));
814             }
815             return errno;
816         } else if (retval != size) {
817             VLOG_WARN_RL(&rl, "sent partial Ethernet packet (%zd bytes of "
818                          "%zu) on %s", retval, size, netdev_get_name(netdev_));
819             return EMSGSIZE;
820         } else {
821             return 0;
822         }
823     }
824 }
825
826 /* Registers with the poll loop to wake up from the next call to poll_block()
827  * when the packet transmission queue has sufficient room to transmit a packet
828  * with netdev_send().
829  *
830  * The kernel maintains a packet transmission queue, so the client is not
831  * expected to do additional queuing of packets.  Thus, this function is
832  * unlikely to ever be used.  It is included for completeness. */
833 static void
834 netdev_linux_send_wait(struct netdev *netdev_)
835 {
836     struct netdev_linux *netdev = netdev_linux_cast(netdev_);
837     if (netdev->fd < 0) {
838         /* Nothing to do. */
839     } else if (strcmp(netdev_get_type(netdev_), "tap")) {
840         poll_fd_wait(netdev->fd, POLLOUT);
841     } else {
842         /* TAP device always accepts packets.*/
843         poll_immediate_wake();
844     }
845 }
846
847 /* Attempts to set 'netdev''s MAC address to 'mac'.  Returns 0 if successful,
848  * otherwise a positive errno value. */
849 static int
850 netdev_linux_set_etheraddr(struct netdev *netdev_,
851                            const uint8_t mac[ETH_ADDR_LEN])
852 {
853     struct netdev_dev_linux *netdev_dev =
854                                 netdev_dev_linux_cast(netdev_get_dev(netdev_));
855     int error;
856
857     if (!(netdev_dev->cache_valid & VALID_ETHERADDR)
858         || !eth_addr_equals(netdev_dev->etheraddr, mac)) {
859         error = set_etheraddr(netdev_get_name(netdev_), ARPHRD_ETHER, mac);
860         if (!error) {
861             netdev_dev->cache_valid |= VALID_ETHERADDR;
862             memcpy(netdev_dev->etheraddr, mac, ETH_ADDR_LEN);
863         }
864     } else {
865         error = 0;
866     }
867     return error;
868 }
869
870 /* Returns a pointer to 'netdev''s MAC address.  The caller must not modify or
871  * free the returned buffer. */
872 static int
873 netdev_linux_get_etheraddr(const struct netdev *netdev_,
874                            uint8_t mac[ETH_ADDR_LEN])
875 {
876     struct netdev_dev_linux *netdev_dev =
877                                 netdev_dev_linux_cast(netdev_get_dev(netdev_));
878     if (!(netdev_dev->cache_valid & VALID_ETHERADDR)) {
879         int error = get_etheraddr(netdev_get_name(netdev_),
880                                   netdev_dev->etheraddr);
881         if (error) {
882             return error;
883         }
884         netdev_dev->cache_valid |= VALID_ETHERADDR;
885     }
886     memcpy(mac, netdev_dev->etheraddr, ETH_ADDR_LEN);
887     return 0;
888 }
889
890 /* Returns the maximum size of transmitted (and received) packets on 'netdev',
891  * in bytes, not including the hardware header; thus, this is typically 1500
892  * bytes for Ethernet devices. */
893 static int
894 netdev_linux_get_mtu(const struct netdev *netdev_, int *mtup)
895 {
896     struct netdev_dev_linux *netdev_dev =
897                                 netdev_dev_linux_cast(netdev_get_dev(netdev_));
898     if (!(netdev_dev->cache_valid & VALID_MTU)) {
899         struct ifreq ifr;
900         int error;
901
902         error = netdev_linux_do_ioctl(netdev_get_name(netdev_), &ifr,
903                                       SIOCGIFMTU, "SIOCGIFMTU");
904         if (error) {
905             return error;
906         }
907         netdev_dev->mtu = ifr.ifr_mtu;
908         netdev_dev->cache_valid |= VALID_MTU;
909     }
910     *mtup = netdev_dev->mtu;
911     return 0;
912 }
913
914 /* Returns the ifindex of 'netdev', if successful, as a positive number.
915  * On failure, returns a negative errno value. */
916 static int
917 netdev_linux_get_ifindex(const struct netdev *netdev)
918 {
919     int ifindex, error;
920
921     error = get_ifindex(netdev, &ifindex);
922     return error ? -error : ifindex;
923 }
924
925 static int
926 netdev_linux_get_carrier(const struct netdev *netdev_, bool *carrier)
927 {
928     struct netdev_dev_linux *netdev_dev =
929                                 netdev_dev_linux_cast(netdev_get_dev(netdev_));
930     int error = 0;
931     char *fn = NULL;
932     int fd = -1;
933
934     if (!(netdev_dev->cache_valid & VALID_CARRIER)) {
935         char line[8];
936         int retval;
937
938         fn = xasprintf("/sys/class/net/%s/carrier",
939                        netdev_get_name(netdev_));
940         fd = open(fn, O_RDONLY);
941         if (fd < 0) {
942             error = errno;
943             VLOG_WARN_RL(&rl, "%s: open failed: %s", fn, strerror(error));
944             goto exit;
945         }
946
947         retval = read(fd, line, sizeof line);
948         if (retval < 0) {
949             error = errno;
950             if (error == EINVAL) {
951                 /* This is the normal return value when we try to check carrier
952                  * if the network device is not up. */
953             } else {
954                 VLOG_WARN_RL(&rl, "%s: read failed: %s", fn, strerror(error));
955             }
956             goto exit;
957         } else if (retval == 0) {
958             error = EPROTO;
959             VLOG_WARN_RL(&rl, "%s: unexpected end of file", fn);
960             goto exit;
961         }
962
963         if (line[0] != '0' && line[0] != '1') {
964             error = EPROTO;
965             VLOG_WARN_RL(&rl, "%s: value is %c (expected 0 or 1)",
966                          fn, line[0]);
967             goto exit;
968         }
969         netdev_dev->carrier = line[0] != '0';
970         netdev_dev->cache_valid |= VALID_CARRIER;
971     }
972     *carrier = netdev_dev->carrier;
973     error = 0;
974
975 exit:
976     if (fd >= 0) {
977         close(fd);
978     }
979     free(fn);
980     return error;
981 }
982
983 /* Check whether we can we use RTM_GETLINK to get network device statistics.
984  * In pre-2.6.19 kernels, this was only available if wireless extensions were
985  * enabled. */
986 static bool
987 check_for_working_netlink_stats(void)
988 {
989     /* Decide on the netdev_get_stats() implementation to use.  Netlink is
990      * preferable, so if that works, we'll use it. */
991     int ifindex = do_get_ifindex("lo");
992     if (ifindex < 0) {
993         VLOG_WARN("failed to get ifindex for lo, "
994                   "obtaining netdev stats from proc");
995         return false;
996     } else {
997         struct netdev_stats stats;
998         int error = get_stats_via_netlink(ifindex, &stats);
999         if (!error) {
1000             VLOG_DBG("obtaining netdev stats via rtnetlink");
1001             return true;
1002         } else {
1003             VLOG_INFO("RTM_GETLINK failed (%s), obtaining netdev stats "
1004                       "via proc (you are probably running a pre-2.6.19 "
1005                       "kernel)", strerror(error));
1006             return false;
1007         }
1008     }
1009 }
1010
1011 /* Brings the 'is_internal' and 'is_tap' members of 'netdev_dev' up-to-date. */
1012 static void
1013 netdev_linux_update_is_pseudo(struct netdev_dev_linux *netdev_dev)
1014 {
1015     if (!(netdev_dev->cache_valid & VALID_IS_PSEUDO)) {
1016         const char *name = netdev_dev_get_name(&netdev_dev->netdev_dev);
1017         const char *type = netdev_dev_get_type(&netdev_dev->netdev_dev);
1018
1019         netdev_dev->is_tap = !strcmp(type, "tap");
1020         netdev_dev->is_internal = false;
1021         if (!netdev_dev->is_tap) {
1022             struct ethtool_drvinfo drvinfo;
1023             int error;
1024
1025             memset(&drvinfo, 0, sizeof drvinfo);
1026             error = netdev_linux_do_ethtool(name,
1027                                             (struct ethtool_cmd *)&drvinfo,
1028                                             ETHTOOL_GDRVINFO,
1029                                             "ETHTOOL_GDRVINFO");
1030
1031             if (!error && !strcmp(drvinfo.driver, "openvswitch")) {
1032                 netdev_dev->is_internal = true;
1033             }
1034         }
1035
1036         netdev_dev->cache_valid |= VALID_IS_PSEUDO;
1037     }
1038 }
1039
1040 static void
1041 swap_uint64(uint64_t *a, uint64_t *b)
1042 {
1043     *a ^= *b;
1044     *b ^= *a;
1045     *a ^= *b;
1046 }
1047
1048 /* Retrieves current device stats for 'netdev'. */
1049 static int
1050 netdev_linux_get_stats(const struct netdev *netdev_,
1051                        struct netdev_stats *stats)
1052 {
1053     struct netdev_dev_linux *netdev_dev =
1054                                 netdev_dev_linux_cast(netdev_get_dev(netdev_));
1055     static int use_netlink_stats = -1;
1056     int error;
1057
1058     COVERAGE_INC(netdev_get_stats);
1059
1060     if (netdev_dev->have_vport_stats ||
1061         !(netdev_dev->cache_valid & VALID_HAVE_VPORT_STATS)) {
1062
1063         error = netdev_vport_get_stats(netdev_, stats);
1064         netdev_dev->have_vport_stats = !error;
1065         netdev_dev->cache_valid |= VALID_HAVE_VPORT_STATS;
1066     }
1067
1068     if (!netdev_dev->have_vport_stats) {
1069         if (use_netlink_stats < 0) {
1070             use_netlink_stats = check_for_working_netlink_stats();
1071         }
1072         if (use_netlink_stats) {
1073             int ifindex;
1074
1075             error = get_ifindex(netdev_, &ifindex);
1076             if (!error) {
1077                 error = get_stats_via_netlink(ifindex, stats);
1078             }
1079         } else {
1080             error = get_stats_via_proc(netdev_get_name(netdev_), stats);
1081         }
1082     }
1083
1084     /* If this port is an internal port then the transmit and receive stats
1085      * will appear to be swapped relative to the other ports since we are the
1086      * one sending the data, not a remote computer.  For consistency, we swap
1087      * them back here. This does not apply if we are getting stats from the
1088      * vport layer because it always tracks stats from the perspective of the
1089      * switch. */
1090     netdev_linux_update_is_pseudo(netdev_dev);
1091     if (!error && !netdev_dev->have_vport_stats &&
1092         (netdev_dev->is_internal || netdev_dev->is_tap)) {
1093         swap_uint64(&stats->rx_packets, &stats->tx_packets);
1094         swap_uint64(&stats->rx_bytes, &stats->tx_bytes);
1095         swap_uint64(&stats->rx_errors, &stats->tx_errors);
1096         swap_uint64(&stats->rx_dropped, &stats->tx_dropped);
1097         stats->rx_length_errors = 0;
1098         stats->rx_over_errors = 0;
1099         stats->rx_crc_errors = 0;
1100         stats->rx_frame_errors = 0;
1101         stats->rx_fifo_errors = 0;
1102         stats->rx_missed_errors = 0;
1103         stats->tx_aborted_errors = 0;
1104         stats->tx_carrier_errors = 0;
1105         stats->tx_fifo_errors = 0;
1106         stats->tx_heartbeat_errors = 0;
1107         stats->tx_window_errors = 0;
1108     }
1109
1110     return error;
1111 }
1112
1113 /* Stores the features supported by 'netdev' into each of '*current',
1114  * '*advertised', '*supported', and '*peer' that are non-null.  Each value is a
1115  * bitmap of "enum ofp_port_features" bits, in host byte order.  Returns 0 if
1116  * successful, otherwise a positive errno value. */
1117 static int
1118 netdev_linux_get_features(struct netdev *netdev,
1119                           uint32_t *current, uint32_t *advertised,
1120                           uint32_t *supported, uint32_t *peer)
1121 {
1122     struct ethtool_cmd ecmd;
1123     int error;
1124
1125     memset(&ecmd, 0, sizeof ecmd);
1126     error = netdev_linux_do_ethtool(netdev_get_name(netdev), &ecmd,
1127                                     ETHTOOL_GSET, "ETHTOOL_GSET");
1128     if (error) {
1129         return error;
1130     }
1131
1132     /* Supported features. */
1133     *supported = 0;
1134     if (ecmd.supported & SUPPORTED_10baseT_Half) {
1135         *supported |= OFPPF_10MB_HD;
1136     }
1137     if (ecmd.supported & SUPPORTED_10baseT_Full) {
1138         *supported |= OFPPF_10MB_FD;
1139     }
1140     if (ecmd.supported & SUPPORTED_100baseT_Half)  {
1141         *supported |= OFPPF_100MB_HD;
1142     }
1143     if (ecmd.supported & SUPPORTED_100baseT_Full) {
1144         *supported |= OFPPF_100MB_FD;
1145     }
1146     if (ecmd.supported & SUPPORTED_1000baseT_Half) {
1147         *supported |= OFPPF_1GB_HD;
1148     }
1149     if (ecmd.supported & SUPPORTED_1000baseT_Full) {
1150         *supported |= OFPPF_1GB_FD;
1151     }
1152     if (ecmd.supported & SUPPORTED_10000baseT_Full) {
1153         *supported |= OFPPF_10GB_FD;
1154     }
1155     if (ecmd.supported & SUPPORTED_TP) {
1156         *supported |= OFPPF_COPPER;
1157     }
1158     if (ecmd.supported & SUPPORTED_FIBRE) {
1159         *supported |= OFPPF_FIBER;
1160     }
1161     if (ecmd.supported & SUPPORTED_Autoneg) {
1162         *supported |= OFPPF_AUTONEG;
1163     }
1164     if (ecmd.supported & SUPPORTED_Pause) {
1165         *supported |= OFPPF_PAUSE;
1166     }
1167     if (ecmd.supported & SUPPORTED_Asym_Pause) {
1168         *supported |= OFPPF_PAUSE_ASYM;
1169     }
1170
1171     /* Advertised features. */
1172     *advertised = 0;
1173     if (ecmd.advertising & ADVERTISED_10baseT_Half) {
1174         *advertised |= OFPPF_10MB_HD;
1175     }
1176     if (ecmd.advertising & ADVERTISED_10baseT_Full) {
1177         *advertised |= OFPPF_10MB_FD;
1178     }
1179     if (ecmd.advertising & ADVERTISED_100baseT_Half) {
1180         *advertised |= OFPPF_100MB_HD;
1181     }
1182     if (ecmd.advertising & ADVERTISED_100baseT_Full) {
1183         *advertised |= OFPPF_100MB_FD;
1184     }
1185     if (ecmd.advertising & ADVERTISED_1000baseT_Half) {
1186         *advertised |= OFPPF_1GB_HD;
1187     }
1188     if (ecmd.advertising & ADVERTISED_1000baseT_Full) {
1189         *advertised |= OFPPF_1GB_FD;
1190     }
1191     if (ecmd.advertising & ADVERTISED_10000baseT_Full) {
1192         *advertised |= OFPPF_10GB_FD;
1193     }
1194     if (ecmd.advertising & ADVERTISED_TP) {
1195         *advertised |= OFPPF_COPPER;
1196     }
1197     if (ecmd.advertising & ADVERTISED_FIBRE) {
1198         *advertised |= OFPPF_FIBER;
1199     }
1200     if (ecmd.advertising & ADVERTISED_Autoneg) {
1201         *advertised |= OFPPF_AUTONEG;
1202     }
1203     if (ecmd.advertising & ADVERTISED_Pause) {
1204         *advertised |= OFPPF_PAUSE;
1205     }
1206     if (ecmd.advertising & ADVERTISED_Asym_Pause) {
1207         *advertised |= OFPPF_PAUSE_ASYM;
1208     }
1209
1210     /* Current settings. */
1211     if (ecmd.speed == SPEED_10) {
1212         *current = ecmd.duplex ? OFPPF_10MB_FD : OFPPF_10MB_HD;
1213     } else if (ecmd.speed == SPEED_100) {
1214         *current = ecmd.duplex ? OFPPF_100MB_FD : OFPPF_100MB_HD;
1215     } else if (ecmd.speed == SPEED_1000) {
1216         *current = ecmd.duplex ? OFPPF_1GB_FD : OFPPF_1GB_HD;
1217     } else if (ecmd.speed == SPEED_10000) {
1218         *current = OFPPF_10GB_FD;
1219     } else {
1220         *current = 0;
1221     }
1222
1223     if (ecmd.port == PORT_TP) {
1224         *current |= OFPPF_COPPER;
1225     } else if (ecmd.port == PORT_FIBRE) {
1226         *current |= OFPPF_FIBER;
1227     }
1228
1229     if (ecmd.autoneg) {
1230         *current |= OFPPF_AUTONEG;
1231     }
1232
1233     /* Peer advertisements. */
1234     *peer = 0;                  /* XXX */
1235
1236     return 0;
1237 }
1238
1239 /* Set the features advertised by 'netdev' to 'advertise'. */
1240 static int
1241 netdev_linux_set_advertisements(struct netdev *netdev, uint32_t advertise)
1242 {
1243     struct ethtool_cmd ecmd;
1244     int error;
1245
1246     memset(&ecmd, 0, sizeof ecmd);
1247     error = netdev_linux_do_ethtool(netdev_get_name(netdev), &ecmd,
1248                                     ETHTOOL_GSET, "ETHTOOL_GSET");
1249     if (error) {
1250         return error;
1251     }
1252
1253     ecmd.advertising = 0;
1254     if (advertise & OFPPF_10MB_HD) {
1255         ecmd.advertising |= ADVERTISED_10baseT_Half;
1256     }
1257     if (advertise & OFPPF_10MB_FD) {
1258         ecmd.advertising |= ADVERTISED_10baseT_Full;
1259     }
1260     if (advertise & OFPPF_100MB_HD) {
1261         ecmd.advertising |= ADVERTISED_100baseT_Half;
1262     }
1263     if (advertise & OFPPF_100MB_FD) {
1264         ecmd.advertising |= ADVERTISED_100baseT_Full;
1265     }
1266     if (advertise & OFPPF_1GB_HD) {
1267         ecmd.advertising |= ADVERTISED_1000baseT_Half;
1268     }
1269     if (advertise & OFPPF_1GB_FD) {
1270         ecmd.advertising |= ADVERTISED_1000baseT_Full;
1271     }
1272     if (advertise & OFPPF_10GB_FD) {
1273         ecmd.advertising |= ADVERTISED_10000baseT_Full;
1274     }
1275     if (advertise & OFPPF_COPPER) {
1276         ecmd.advertising |= ADVERTISED_TP;
1277     }
1278     if (advertise & OFPPF_FIBER) {
1279         ecmd.advertising |= ADVERTISED_FIBRE;
1280     }
1281     if (advertise & OFPPF_AUTONEG) {
1282         ecmd.advertising |= ADVERTISED_Autoneg;
1283     }
1284     if (advertise & OFPPF_PAUSE) {
1285         ecmd.advertising |= ADVERTISED_Pause;
1286     }
1287     if (advertise & OFPPF_PAUSE_ASYM) {
1288         ecmd.advertising |= ADVERTISED_Asym_Pause;
1289     }
1290     return netdev_linux_do_ethtool(netdev_get_name(netdev), &ecmd,
1291                                    ETHTOOL_SSET, "ETHTOOL_SSET");
1292 }
1293
1294 /* If 'netdev_name' is the name of a VLAN network device (e.g. one created with
1295  * vconfig(8)), sets '*vlan_vid' to the VLAN VID associated with that device
1296  * and returns 0.  Otherwise returns a errno value (specifically ENOENT if
1297  * 'netdev_name' is the name of a network device that is not a VLAN device) and
1298  * sets '*vlan_vid' to -1. */
1299 static int
1300 netdev_linux_get_vlan_vid(const struct netdev *netdev, int *vlan_vid)
1301 {
1302     const char *netdev_name = netdev_get_name(netdev);
1303     struct ds line = DS_EMPTY_INITIALIZER;
1304     FILE *stream = NULL;
1305     int error;
1306     char *fn;
1307
1308     COVERAGE_INC(netdev_get_vlan_vid);
1309     fn = xasprintf("/proc/net/vlan/%s", netdev_name);
1310     stream = fopen(fn, "r");
1311     if (!stream) {
1312         error = errno;
1313         goto done;
1314     }
1315
1316     if (ds_get_line(&line, stream)) {
1317         if (ferror(stream)) {
1318             error = errno;
1319             VLOG_ERR_RL(&rl, "error reading \"%s\": %s", fn, strerror(errno));
1320         } else {
1321             error = EPROTO;
1322             VLOG_ERR_RL(&rl, "unexpected end of file reading \"%s\"", fn);
1323         }
1324         goto done;
1325     }
1326
1327     if (!sscanf(ds_cstr(&line), "%*s VID: %d", vlan_vid)) {
1328         error = EPROTO;
1329         VLOG_ERR_RL(&rl, "parse error reading \"%s\" line 1: \"%s\"",
1330                     fn, ds_cstr(&line));
1331         goto done;
1332     }
1333
1334     error = 0;
1335
1336 done:
1337     free(fn);
1338     if (stream) {
1339         fclose(stream);
1340     }
1341     ds_destroy(&line);
1342     if (error) {
1343         *vlan_vid = -1;
1344     }
1345     return error;
1346 }
1347
1348 #define POLICE_ADD_CMD "/sbin/tc qdisc add dev %s handle ffff: ingress"
1349 #define POLICE_CONFIG_CMD "/sbin/tc filter add dev %s parent ffff: protocol ip prio 50 u32 match ip src 0.0.0.0/0 police rate %dkbit burst %dk mtu 65535 drop flowid :1"
1350
1351 /* Remove ingress policing from 'netdev'.  Returns 0 if successful, otherwise a
1352  * positive errno value.
1353  *
1354  * This function is equivalent to running
1355  *     /sbin/tc qdisc del dev %s handle ffff: ingress
1356  * but it is much, much faster.
1357  */
1358 static int
1359 netdev_linux_remove_policing(struct netdev *netdev)
1360 {
1361     struct netdev_dev_linux *netdev_dev =
1362         netdev_dev_linux_cast(netdev_get_dev(netdev));
1363     const char *netdev_name = netdev_get_name(netdev);
1364
1365     struct ofpbuf request;
1366     struct tcmsg *tcmsg;
1367     int error;
1368
1369     tcmsg = tc_make_request(netdev, RTM_DELQDISC, 0, &request);
1370     tcmsg->tcm_handle = tc_make_handle(0xffff, 0);
1371     tcmsg->tcm_parent = TC_H_INGRESS;
1372     nl_msg_put_string(&request, TCA_KIND, "ingress");
1373     nl_msg_put_unspec(&request, TCA_OPTIONS, NULL, 0);
1374
1375     error = tc_transact(&request, NULL);
1376     if (error && error != ENOENT && error != EINVAL) {
1377         VLOG_WARN_RL(&rl, "%s: removing policing failed: %s",
1378                      netdev_name, strerror(error));
1379         return error;
1380     }
1381
1382     netdev_dev->kbits_rate = 0;
1383     netdev_dev->kbits_burst = 0;
1384     netdev_dev->cache_valid |= VALID_POLICING;
1385     return 0;
1386 }
1387
1388 /* Attempts to set input rate limiting (policing) policy. */
1389 static int
1390 netdev_linux_set_policing(struct netdev *netdev,
1391                           uint32_t kbits_rate, uint32_t kbits_burst)
1392 {
1393     struct netdev_dev_linux *netdev_dev =
1394         netdev_dev_linux_cast(netdev_get_dev(netdev));
1395     const char *netdev_name = netdev_get_name(netdev);
1396     char command[1024];
1397
1398     COVERAGE_INC(netdev_set_policing);
1399
1400     kbits_burst = (!kbits_rate ? 0       /* Force to 0 if no rate specified. */
1401                    : !kbits_burst ? 1000 /* Default to 1000 kbits if 0. */
1402                    : kbits_burst);       /* Stick with user-specified value. */
1403
1404     if (netdev_dev->cache_valid & VALID_POLICING
1405         && netdev_dev->kbits_rate == kbits_rate
1406         && netdev_dev->kbits_burst == kbits_burst) {
1407         /* Assume that settings haven't changed since we last set them. */
1408         return 0;
1409     }
1410
1411     netdev_linux_remove_policing(netdev);
1412     if (kbits_rate) {
1413         snprintf(command, sizeof(command), POLICE_ADD_CMD, netdev_name);
1414         if (system(command) != 0) {
1415             VLOG_WARN_RL(&rl, "%s: problem adding policing", netdev_name);
1416             return -1;
1417         }
1418
1419         snprintf(command, sizeof(command), POLICE_CONFIG_CMD, netdev_name,
1420                 kbits_rate, kbits_burst);
1421         if (system(command) != 0) {
1422             VLOG_WARN_RL(&rl, "%s: problem configuring policing",
1423                     netdev_name);
1424             return -1;
1425         }
1426
1427         netdev_dev->kbits_rate = kbits_rate;
1428         netdev_dev->kbits_burst = kbits_burst;
1429         netdev_dev->cache_valid |= VALID_POLICING;
1430     }
1431
1432     return 0;
1433 }
1434
1435 static int
1436 netdev_linux_get_qos_types(const struct netdev *netdev OVS_UNUSED,
1437                            struct svec *types)
1438 {
1439     const struct tc_ops **opsp;
1440
1441     for (opsp = tcs; *opsp != NULL; opsp++) {
1442         const struct tc_ops *ops = *opsp;
1443         if (ops->tc_install && ops->ovs_name[0] != '\0') {
1444             svec_add(types, ops->ovs_name);
1445         }
1446     }
1447     return 0;
1448 }
1449
1450 static const struct tc_ops *
1451 tc_lookup_ovs_name(const char *name)
1452 {
1453     const struct tc_ops **opsp;
1454
1455     for (opsp = tcs; *opsp != NULL; opsp++) {
1456         const struct tc_ops *ops = *opsp;
1457         if (!strcmp(name, ops->ovs_name)) {
1458             return ops;
1459         }
1460     }
1461     return NULL;
1462 }
1463
1464 static const struct tc_ops *
1465 tc_lookup_linux_name(const char *name)
1466 {
1467     const struct tc_ops **opsp;
1468
1469     for (opsp = tcs; *opsp != NULL; opsp++) {
1470         const struct tc_ops *ops = *opsp;
1471         if (ops->linux_name && !strcmp(name, ops->linux_name)) {
1472             return ops;
1473         }
1474     }
1475     return NULL;
1476 }
1477
1478 static struct tc_queue *
1479 tc_find_queue__(const struct netdev *netdev, unsigned int queue_id,
1480                 size_t hash)
1481 {
1482     struct netdev_dev_linux *netdev_dev =
1483                                 netdev_dev_linux_cast(netdev_get_dev(netdev));
1484     struct tc_queue *queue;
1485
1486     HMAP_FOR_EACH_IN_BUCKET (queue, struct tc_queue, hmap_node,
1487                              hash, &netdev_dev->tc->queues) {
1488         if (queue->queue_id == queue_id) {
1489             return queue;
1490         }
1491     }
1492     return NULL;
1493 }
1494
1495 static struct tc_queue *
1496 tc_find_queue(const struct netdev *netdev, unsigned int queue_id)
1497 {
1498     return tc_find_queue__(netdev, queue_id, hash_int(queue_id, 0));
1499 }
1500
1501 static int
1502 netdev_linux_get_qos_capabilities(const struct netdev *netdev OVS_UNUSED,
1503                                   const char *type,
1504                                   struct netdev_qos_capabilities *caps)
1505 {
1506     const struct tc_ops *ops = tc_lookup_ovs_name(type);
1507     if (!ops) {
1508         return EOPNOTSUPP;
1509     }
1510     caps->n_queues = ops->n_queues;
1511     return 0;
1512 }
1513
1514 static int
1515 netdev_linux_get_qos(const struct netdev *netdev,
1516                      const char **typep, struct shash *details)
1517 {
1518     struct netdev_dev_linux *netdev_dev =
1519                                 netdev_dev_linux_cast(netdev_get_dev(netdev));
1520     int error;
1521
1522     error = tc_query_qdisc(netdev);
1523     if (error) {
1524         return error;
1525     }
1526
1527     *typep = netdev_dev->tc->ops->ovs_name;
1528     return (netdev_dev->tc->ops->qdisc_get
1529             ? netdev_dev->tc->ops->qdisc_get(netdev, details)
1530             : 0);
1531 }
1532
1533 static int
1534 netdev_linux_set_qos(struct netdev *netdev,
1535                      const char *type, const struct shash *details)
1536 {
1537     struct netdev_dev_linux *netdev_dev =
1538                                 netdev_dev_linux_cast(netdev_get_dev(netdev));
1539     const struct tc_ops *new_ops;
1540     int error;
1541
1542     new_ops = tc_lookup_ovs_name(type);
1543     if (!new_ops || !new_ops->tc_install) {
1544         return EOPNOTSUPP;
1545     }
1546
1547     error = tc_query_qdisc(netdev);
1548     if (error) {
1549         return error;
1550     }
1551
1552     if (new_ops == netdev_dev->tc->ops) {
1553         return new_ops->qdisc_set ? new_ops->qdisc_set(netdev, details) : 0;
1554     } else {
1555         /* Delete existing qdisc. */
1556         error = tc_del_qdisc(netdev);
1557         if (error) {
1558             return error;
1559         }
1560         assert(netdev_dev->tc == NULL);
1561
1562         /* Install new qdisc. */
1563         error = new_ops->tc_install(netdev, details);
1564         assert((error == 0) == (netdev_dev->tc != NULL));
1565
1566         return error;
1567     }
1568 }
1569
1570 static int
1571 netdev_linux_get_queue(const struct netdev *netdev,
1572                        unsigned int queue_id, struct shash *details)
1573 {
1574     struct netdev_dev_linux *netdev_dev =
1575                                 netdev_dev_linux_cast(netdev_get_dev(netdev));
1576     int error;
1577
1578     error = tc_query_qdisc(netdev);
1579     if (error) {
1580         return error;
1581     } else {
1582         struct tc_queue *queue = tc_find_queue(netdev, queue_id);
1583         return (queue
1584                 ? netdev_dev->tc->ops->class_get(netdev, queue, details)
1585                 : ENOENT);
1586     }
1587 }
1588
1589 static int
1590 netdev_linux_set_queue(struct netdev *netdev,
1591                        unsigned int queue_id, const struct shash *details)
1592 {
1593     struct netdev_dev_linux *netdev_dev =
1594                                 netdev_dev_linux_cast(netdev_get_dev(netdev));
1595     int error;
1596
1597     error = tc_query_qdisc(netdev);
1598     if (error) {
1599         return error;
1600     } else if (queue_id >= netdev_dev->tc->ops->n_queues
1601                || !netdev_dev->tc->ops->class_set) {
1602         return EINVAL;
1603     }
1604
1605     return netdev_dev->tc->ops->class_set(netdev, queue_id, details);
1606 }
1607
1608 static int
1609 netdev_linux_delete_queue(struct netdev *netdev, unsigned int queue_id)
1610 {
1611     struct netdev_dev_linux *netdev_dev =
1612                                 netdev_dev_linux_cast(netdev_get_dev(netdev));
1613     int error;
1614
1615     error = tc_query_qdisc(netdev);
1616     if (error) {
1617         return error;
1618     } else if (!netdev_dev->tc->ops->class_delete) {
1619         return EINVAL;
1620     } else {
1621         struct tc_queue *queue = tc_find_queue(netdev, queue_id);
1622         return (queue
1623                 ? netdev_dev->tc->ops->class_delete(netdev, queue)
1624                 : ENOENT);
1625     }
1626 }
1627
1628 static int
1629 netdev_linux_get_queue_stats(const struct netdev *netdev,
1630                              unsigned int queue_id,
1631                              struct netdev_queue_stats *stats)
1632 {
1633     struct netdev_dev_linux *netdev_dev =
1634                                 netdev_dev_linux_cast(netdev_get_dev(netdev));
1635     int error;
1636
1637     error = tc_query_qdisc(netdev);
1638     if (error) {
1639         return error;
1640     } else if (!netdev_dev->tc->ops->class_get_stats) {
1641         return EOPNOTSUPP;
1642     } else {
1643         const struct tc_queue *queue = tc_find_queue(netdev, queue_id);
1644         return (queue
1645                 ? netdev_dev->tc->ops->class_get_stats(netdev, queue, stats)
1646                 : ENOENT);
1647     }
1648 }
1649
1650 static void
1651 start_queue_dump(const struct netdev *netdev, struct nl_dump *dump)
1652 {
1653     struct ofpbuf request;
1654     struct tcmsg *tcmsg;
1655
1656     tcmsg = tc_make_request(netdev, RTM_GETTCLASS, 0, &request);
1657     tcmsg->tcm_parent = 0;
1658     nl_dump_start(dump, rtnl_sock, &request);
1659     ofpbuf_uninit(&request);
1660 }
1661
1662 static int
1663 netdev_linux_dump_queues(const struct netdev *netdev,
1664                          netdev_dump_queues_cb *cb, void *aux)
1665 {
1666     struct netdev_dev_linux *netdev_dev =
1667                                 netdev_dev_linux_cast(netdev_get_dev(netdev));
1668     struct tc_queue *queue;
1669     struct shash details;
1670     int last_error;
1671     int error;
1672
1673     error = tc_query_qdisc(netdev);
1674     if (error) {
1675         return error;
1676     } else if (!netdev_dev->tc->ops->class_get) {
1677         return EOPNOTSUPP;
1678     }
1679
1680     last_error = 0;
1681     shash_init(&details);
1682     HMAP_FOR_EACH (queue, struct tc_queue, hmap_node,
1683                    &netdev_dev->tc->queues) {
1684         shash_clear(&details);
1685
1686         error = netdev_dev->tc->ops->class_get(netdev, queue, &details);
1687         if (!error) {
1688             (*cb)(queue->queue_id, &details, aux);
1689         } else {
1690             last_error = error;
1691         }
1692     }
1693     shash_destroy(&details);
1694
1695     return last_error;
1696 }
1697
1698 static int
1699 netdev_linux_dump_queue_stats(const struct netdev *netdev,
1700                               netdev_dump_queue_stats_cb *cb, void *aux)
1701 {
1702     struct netdev_dev_linux *netdev_dev =
1703                                 netdev_dev_linux_cast(netdev_get_dev(netdev));
1704     struct nl_dump dump;
1705     struct ofpbuf msg;
1706     int last_error;
1707     int error;
1708
1709     error = tc_query_qdisc(netdev);
1710     if (error) {
1711         return error;
1712     } else if (!netdev_dev->tc->ops->class_dump_stats) {
1713         return EOPNOTSUPP;
1714     }
1715
1716     last_error = 0;
1717     start_queue_dump(netdev, &dump);
1718     while (nl_dump_next(&dump, &msg)) {
1719         error = netdev_dev->tc->ops->class_dump_stats(netdev, &msg, cb, aux);
1720         if (error) {
1721             last_error = error;
1722         }
1723     }
1724
1725     error = nl_dump_done(&dump);
1726     return error ? error : last_error;
1727 }
1728
1729 static int
1730 netdev_linux_get_in4(const struct netdev *netdev_,
1731                      struct in_addr *address, struct in_addr *netmask)
1732 {
1733     struct netdev_dev_linux *netdev_dev =
1734                                 netdev_dev_linux_cast(netdev_get_dev(netdev_));
1735
1736     if (!(netdev_dev->cache_valid & VALID_IN4)) {
1737         int error;
1738
1739         error = netdev_linux_get_ipv4(netdev_, &netdev_dev->address,
1740                                       SIOCGIFADDR, "SIOCGIFADDR");
1741         if (error) {
1742             return error;
1743         }
1744
1745         error = netdev_linux_get_ipv4(netdev_, &netdev_dev->netmask,
1746                                       SIOCGIFNETMASK, "SIOCGIFNETMASK");
1747         if (error) {
1748             return error;
1749         }
1750
1751         netdev_dev->cache_valid |= VALID_IN4;
1752     }
1753     *address = netdev_dev->address;
1754     *netmask = netdev_dev->netmask;
1755     return address->s_addr == INADDR_ANY ? EADDRNOTAVAIL : 0;
1756 }
1757
1758 static int
1759 netdev_linux_set_in4(struct netdev *netdev_, struct in_addr address,
1760                      struct in_addr netmask)
1761 {
1762     struct netdev_dev_linux *netdev_dev =
1763                                 netdev_dev_linux_cast(netdev_get_dev(netdev_));
1764     int error;
1765
1766     error = do_set_addr(netdev_, SIOCSIFADDR, "SIOCSIFADDR", address);
1767     if (!error) {
1768         netdev_dev->cache_valid |= VALID_IN4;
1769         netdev_dev->address = address;
1770         netdev_dev->netmask = netmask;
1771         if (address.s_addr != INADDR_ANY) {
1772             error = do_set_addr(netdev_, SIOCSIFNETMASK,
1773                                 "SIOCSIFNETMASK", netmask);
1774         }
1775     }
1776     return error;
1777 }
1778
1779 static bool
1780 parse_if_inet6_line(const char *line,
1781                     struct in6_addr *in6, char ifname[16 + 1])
1782 {
1783     uint8_t *s6 = in6->s6_addr;
1784 #define X8 "%2"SCNx8
1785     return sscanf(line,
1786                   " "X8 X8 X8 X8 X8 X8 X8 X8 X8 X8 X8 X8 X8 X8 X8 X8
1787                   "%*x %*x %*x %*x %16s\n",
1788                   &s6[0], &s6[1], &s6[2], &s6[3],
1789                   &s6[4], &s6[5], &s6[6], &s6[7],
1790                   &s6[8], &s6[9], &s6[10], &s6[11],
1791                   &s6[12], &s6[13], &s6[14], &s6[15],
1792                   ifname) == 17;
1793 }
1794
1795 /* If 'netdev' has an assigned IPv6 address, sets '*in6' to that address (if
1796  * 'in6' is non-null) and returns true.  Otherwise, returns false. */
1797 static int
1798 netdev_linux_get_in6(const struct netdev *netdev_, struct in6_addr *in6)
1799 {
1800     struct netdev_dev_linux *netdev_dev =
1801                                 netdev_dev_linux_cast(netdev_get_dev(netdev_));
1802     if (!(netdev_dev->cache_valid & VALID_IN6)) {
1803         FILE *file;
1804         char line[128];
1805
1806         netdev_dev->in6 = in6addr_any;
1807
1808         file = fopen("/proc/net/if_inet6", "r");
1809         if (file != NULL) {
1810             const char *name = netdev_get_name(netdev_);
1811             while (fgets(line, sizeof line, file)) {
1812                 struct in6_addr in6_tmp;
1813                 char ifname[16 + 1];
1814                 if (parse_if_inet6_line(line, &in6_tmp, ifname)
1815                     && !strcmp(name, ifname))
1816                 {
1817                     netdev_dev->in6 = in6_tmp;
1818                     break;
1819                 }
1820             }
1821             fclose(file);
1822         }
1823         netdev_dev->cache_valid |= VALID_IN6;
1824     }
1825     *in6 = netdev_dev->in6;
1826     return 0;
1827 }
1828
1829 static void
1830 make_in4_sockaddr(struct sockaddr *sa, struct in_addr addr)
1831 {
1832     struct sockaddr_in sin;
1833     memset(&sin, 0, sizeof sin);
1834     sin.sin_family = AF_INET;
1835     sin.sin_addr = addr;
1836     sin.sin_port = 0;
1837
1838     memset(sa, 0, sizeof *sa);
1839     memcpy(sa, &sin, sizeof sin);
1840 }
1841
1842 static int
1843 do_set_addr(struct netdev *netdev,
1844             int ioctl_nr, const char *ioctl_name, struct in_addr addr)
1845 {
1846     struct ifreq ifr;
1847     strncpy(ifr.ifr_name, netdev_get_name(netdev), sizeof ifr.ifr_name);
1848     make_in4_sockaddr(&ifr.ifr_addr, addr);
1849
1850     return netdev_linux_do_ioctl(netdev_get_name(netdev), &ifr, ioctl_nr,
1851                                  ioctl_name);
1852 }
1853
1854 /* Adds 'router' as a default IP gateway. */
1855 static int
1856 netdev_linux_add_router(struct netdev *netdev OVS_UNUSED, struct in_addr router)
1857 {
1858     struct in_addr any = { INADDR_ANY };
1859     struct rtentry rt;
1860     int error;
1861
1862     memset(&rt, 0, sizeof rt);
1863     make_in4_sockaddr(&rt.rt_dst, any);
1864     make_in4_sockaddr(&rt.rt_gateway, router);
1865     make_in4_sockaddr(&rt.rt_genmask, any);
1866     rt.rt_flags = RTF_UP | RTF_GATEWAY;
1867     COVERAGE_INC(netdev_add_router);
1868     error = ioctl(af_inet_sock, SIOCADDRT, &rt) < 0 ? errno : 0;
1869     if (error) {
1870         VLOG_WARN("ioctl(SIOCADDRT): %s", strerror(error));
1871     }
1872     return error;
1873 }
1874
1875 static int
1876 netdev_linux_get_next_hop(const struct in_addr *host, struct in_addr *next_hop,
1877                           char **netdev_name)
1878 {
1879     static const char fn[] = "/proc/net/route";
1880     FILE *stream;
1881     char line[256];
1882     int ln;
1883
1884     *netdev_name = NULL;
1885     stream = fopen(fn, "r");
1886     if (stream == NULL) {
1887         VLOG_WARN_RL(&rl, "%s: open failed: %s", fn, strerror(errno));
1888         return errno;
1889     }
1890
1891     ln = 0;
1892     while (fgets(line, sizeof line, stream)) {
1893         if (++ln >= 2) {
1894             char iface[17];
1895             uint32_t dest, gateway, mask;
1896             int refcnt, metric, mtu;
1897             unsigned int flags, use, window, irtt;
1898
1899             if (sscanf(line,
1900                        "%16s %"SCNx32" %"SCNx32" %04X %d %u %d %"SCNx32
1901                        " %d %u %u\n",
1902                        iface, &dest, &gateway, &flags, &refcnt,
1903                        &use, &metric, &mask, &mtu, &window, &irtt) != 11) {
1904
1905                 VLOG_WARN_RL(&rl, "%s: could not parse line %d: %s",
1906                         fn, ln, line);
1907                 continue;
1908             }
1909             if (!(flags & RTF_UP)) {
1910                 /* Skip routes that aren't up. */
1911                 continue;
1912             }
1913
1914             /* The output of 'dest', 'mask', and 'gateway' were given in
1915              * network byte order, so we don't need need any endian
1916              * conversions here. */
1917             if ((dest & mask) == (host->s_addr & mask)) {
1918                 if (!gateway) {
1919                     /* The host is directly reachable. */
1920                     next_hop->s_addr = 0;
1921                 } else {
1922                     /* To reach the host, we must go through a gateway. */
1923                     next_hop->s_addr = gateway;
1924                 }
1925                 *netdev_name = xstrdup(iface);
1926                 fclose(stream);
1927                 return 0;
1928             }
1929         }
1930     }
1931
1932     fclose(stream);
1933     return ENXIO;
1934 }
1935
1936 /* Looks up the ARP table entry for 'ip' on 'netdev'.  If one exists and can be
1937  * successfully retrieved, it stores the corresponding MAC address in 'mac' and
1938  * returns 0.  Otherwise, it returns a positive errno value; in particular,
1939  * ENXIO indicates that there is not ARP table entry for 'ip' on 'netdev'. */
1940 static int
1941 netdev_linux_arp_lookup(const struct netdev *netdev,
1942                         uint32_t ip, uint8_t mac[ETH_ADDR_LEN])
1943 {
1944     struct arpreq r;
1945     struct sockaddr_in sin;
1946     int retval;
1947
1948     memset(&r, 0, sizeof r);
1949     sin.sin_family = AF_INET;
1950     sin.sin_addr.s_addr = ip;
1951     sin.sin_port = 0;
1952     memcpy(&r.arp_pa, &sin, sizeof sin);
1953     r.arp_ha.sa_family = ARPHRD_ETHER;
1954     r.arp_flags = 0;
1955     strncpy(r.arp_dev, netdev_get_name(netdev), sizeof r.arp_dev);
1956     COVERAGE_INC(netdev_arp_lookup);
1957     retval = ioctl(af_inet_sock, SIOCGARP, &r) < 0 ? errno : 0;
1958     if (!retval) {
1959         memcpy(mac, r.arp_ha.sa_data, ETH_ADDR_LEN);
1960     } else if (retval != ENXIO) {
1961         VLOG_WARN_RL(&rl, "%s: could not look up ARP entry for "IP_FMT": %s",
1962                      netdev_get_name(netdev), IP_ARGS(&ip), strerror(retval));
1963     }
1964     return retval;
1965 }
1966
1967 static int
1968 nd_to_iff_flags(enum netdev_flags nd)
1969 {
1970     int iff = 0;
1971     if (nd & NETDEV_UP) {
1972         iff |= IFF_UP;
1973     }
1974     if (nd & NETDEV_PROMISC) {
1975         iff |= IFF_PROMISC;
1976     }
1977     return iff;
1978 }
1979
1980 static int
1981 iff_to_nd_flags(int iff)
1982 {
1983     enum netdev_flags nd = 0;
1984     if (iff & IFF_UP) {
1985         nd |= NETDEV_UP;
1986     }
1987     if (iff & IFF_PROMISC) {
1988         nd |= NETDEV_PROMISC;
1989     }
1990     return nd;
1991 }
1992
1993 static int
1994 netdev_linux_update_flags(struct netdev *netdev, enum netdev_flags off,
1995                           enum netdev_flags on, enum netdev_flags *old_flagsp)
1996 {
1997     int old_flags, new_flags;
1998     int error;
1999
2000     error = get_flags(netdev, &old_flags);
2001     if (!error) {
2002         *old_flagsp = iff_to_nd_flags(old_flags);
2003         new_flags = (old_flags & ~nd_to_iff_flags(off)) | nd_to_iff_flags(on);
2004         if (new_flags != old_flags) {
2005             error = set_flags(netdev, new_flags);
2006         }
2007     }
2008     return error;
2009 }
2010
2011 static void
2012 poll_notify(struct list *list)
2013 {
2014     struct netdev_linux_notifier *notifier;
2015     LIST_FOR_EACH (notifier, struct netdev_linux_notifier, node, list) {
2016         struct netdev_notifier *n = &notifier->notifier;
2017         n->cb(n);
2018     }
2019 }
2020
2021 static void
2022 netdev_linux_poll_cb(const struct rtnetlink_change *change,
2023                      void *aux OVS_UNUSED)
2024 {
2025     if (change) {
2026         struct list *list = shash_find_data(&netdev_linux_notifiers,
2027                                             change->ifname);
2028         if (list) {
2029             poll_notify(list);
2030         }
2031     } else {
2032         struct shash_node *node;
2033         SHASH_FOR_EACH (node, &netdev_linux_notifiers) {
2034             poll_notify(node->data);
2035         }
2036     }
2037 }
2038
2039 static int
2040 netdev_linux_poll_add(struct netdev *netdev,
2041                       void (*cb)(struct netdev_notifier *), void *aux,
2042                       struct netdev_notifier **notifierp)
2043 {
2044     const char *netdev_name = netdev_get_name(netdev);
2045     struct netdev_linux_notifier *notifier;
2046     struct list *list;
2047
2048     if (shash_is_empty(&netdev_linux_notifiers)) {
2049         int error = rtnetlink_notifier_register(&netdev_linux_poll_notifier,
2050                                                    netdev_linux_poll_cb, NULL);
2051         if (error) {
2052             return error;
2053         }
2054     }
2055
2056     list = shash_find_data(&netdev_linux_notifiers, netdev_name);
2057     if (!list) {
2058         list = xmalloc(sizeof *list);
2059         list_init(list);
2060         shash_add(&netdev_linux_notifiers, netdev_name, list);
2061     }
2062
2063     notifier = xmalloc(sizeof *notifier);
2064     netdev_notifier_init(&notifier->notifier, netdev, cb, aux);
2065     list_push_back(list, &notifier->node);
2066     *notifierp = &notifier->notifier;
2067     return 0;
2068 }
2069
2070 static void
2071 netdev_linux_poll_remove(struct netdev_notifier *notifier_)
2072 {
2073     struct netdev_linux_notifier *notifier =
2074         CONTAINER_OF(notifier_, struct netdev_linux_notifier, notifier);
2075     struct list *list;
2076
2077     /* Remove 'notifier' from its list. */
2078     list = list_remove(&notifier->node);
2079     if (list_is_empty(list)) {
2080         /* The list is now empty.  Remove it from the hash and free it. */
2081         const char *netdev_name = netdev_get_name(notifier->notifier.netdev);
2082         shash_delete(&netdev_linux_notifiers,
2083                      shash_find(&netdev_linux_notifiers, netdev_name));
2084         free(list);
2085     }
2086     free(notifier);
2087
2088     /* If that was the last notifier, unregister. */
2089     if (shash_is_empty(&netdev_linux_notifiers)) {
2090         rtnetlink_notifier_unregister(&netdev_linux_poll_notifier);
2091     }
2092 }
2093
2094 const struct netdev_class netdev_linux_class = {
2095     "system",
2096
2097     netdev_linux_init,
2098     netdev_linux_run,
2099     netdev_linux_wait,
2100
2101     netdev_linux_create_system,
2102     netdev_linux_destroy,
2103     NULL,                       /* reconfigure */
2104
2105     netdev_linux_open,
2106     netdev_linux_close,
2107
2108     netdev_linux_enumerate,
2109
2110     netdev_linux_recv,
2111     netdev_linux_recv_wait,
2112     netdev_linux_drain,
2113
2114     netdev_linux_send,
2115     netdev_linux_send_wait,
2116
2117     netdev_linux_set_etheraddr,
2118     netdev_linux_get_etheraddr,
2119     netdev_linux_get_mtu,
2120     netdev_linux_get_ifindex,
2121     netdev_linux_get_carrier,
2122     netdev_linux_get_stats,
2123     netdev_vport_set_stats,
2124
2125     netdev_linux_get_features,
2126     netdev_linux_set_advertisements,
2127     netdev_linux_get_vlan_vid,
2128
2129     netdev_linux_set_policing,
2130     netdev_linux_get_qos_types,
2131     netdev_linux_get_qos_capabilities,
2132     netdev_linux_get_qos,
2133     netdev_linux_set_qos,
2134     netdev_linux_get_queue,
2135     netdev_linux_set_queue,
2136     netdev_linux_delete_queue,
2137     netdev_linux_get_queue_stats,
2138     netdev_linux_dump_queues,
2139     netdev_linux_dump_queue_stats,
2140
2141     netdev_linux_get_in4,
2142     netdev_linux_set_in4,
2143     netdev_linux_get_in6,
2144     netdev_linux_add_router,
2145     netdev_linux_get_next_hop,
2146     netdev_linux_arp_lookup,
2147
2148     netdev_linux_update_flags,
2149
2150     netdev_linux_poll_add,
2151     netdev_linux_poll_remove,
2152 };
2153
2154 const struct netdev_class netdev_tap_class = {
2155     "tap",
2156
2157     netdev_linux_init,
2158     netdev_linux_run,
2159     netdev_linux_wait,
2160
2161     netdev_linux_create_tap,
2162     netdev_linux_destroy,
2163     NULL,                       /* reconfigure */
2164
2165     netdev_linux_open,
2166     netdev_linux_close,
2167
2168     NULL,                       /* enumerate */
2169
2170     netdev_linux_recv,
2171     netdev_linux_recv_wait,
2172     netdev_linux_drain,
2173
2174     netdev_linux_send,
2175     netdev_linux_send_wait,
2176
2177     netdev_linux_set_etheraddr,
2178     netdev_linux_get_etheraddr,
2179     netdev_linux_get_mtu,
2180     netdev_linux_get_ifindex,
2181     netdev_linux_get_carrier,
2182     netdev_linux_get_stats,
2183     NULL,                       /* set_stats */
2184
2185     netdev_linux_get_features,
2186     netdev_linux_set_advertisements,
2187     netdev_linux_get_vlan_vid,
2188
2189     netdev_linux_set_policing,
2190     netdev_linux_get_qos_types,
2191     netdev_linux_get_qos_capabilities,
2192     netdev_linux_get_qos,
2193     netdev_linux_set_qos,
2194     netdev_linux_get_queue,
2195     netdev_linux_set_queue,
2196     netdev_linux_delete_queue,
2197     netdev_linux_get_queue_stats,
2198     netdev_linux_dump_queues,
2199     netdev_linux_dump_queue_stats,
2200
2201     netdev_linux_get_in4,
2202     netdev_linux_set_in4,
2203     netdev_linux_get_in6,
2204     netdev_linux_add_router,
2205     netdev_linux_get_next_hop,
2206     netdev_linux_arp_lookup,
2207
2208     netdev_linux_update_flags,
2209
2210     netdev_linux_poll_add,
2211     netdev_linux_poll_remove,
2212 };
2213 \f
2214 /* HTB traffic control class. */
2215
2216 #define HTB_N_QUEUES 0xf000
2217
2218 struct htb {
2219     struct tc tc;
2220     unsigned int max_rate;      /* In bytes/s. */
2221 };
2222
2223 struct htb_class {
2224     struct tc_queue tc_queue;
2225     unsigned int min_rate;      /* In bytes/s. */
2226     unsigned int max_rate;      /* In bytes/s. */
2227     unsigned int burst;         /* In bytes. */
2228     unsigned int priority;      /* Lower values are higher priorities. */
2229 };
2230
2231 static struct htb *
2232 htb_get__(const struct netdev *netdev)
2233 {
2234     struct netdev_dev_linux *netdev_dev =
2235                                 netdev_dev_linux_cast(netdev_get_dev(netdev));
2236     return CONTAINER_OF(netdev_dev->tc, struct htb, tc);
2237 }
2238
2239 static struct htb *
2240 htb_install__(struct netdev *netdev, uint64_t max_rate)
2241 {
2242     struct netdev_dev_linux *netdev_dev =
2243                                 netdev_dev_linux_cast(netdev_get_dev(netdev));
2244     struct htb *htb;
2245
2246     htb = xmalloc(sizeof *htb);
2247     tc_init(&htb->tc, &tc_ops_htb);
2248     htb->max_rate = max_rate;
2249
2250     netdev_dev->tc = &htb->tc;
2251
2252     return htb;
2253 }
2254
2255 /* Create an HTB qdisc.
2256  *
2257  * Equivalent to "tc qdisc add dev <dev> root handle 1: htb default
2258  * 0". */
2259 static int
2260 htb_setup_qdisc__(struct netdev *netdev)
2261 {
2262     size_t opt_offset;
2263     struct tc_htb_glob opt;
2264     struct ofpbuf request;
2265     struct tcmsg *tcmsg;
2266
2267     tc_del_qdisc(netdev);
2268
2269     tcmsg = tc_make_request(netdev, RTM_NEWQDISC,
2270                             NLM_F_EXCL | NLM_F_CREATE, &request);
2271     tcmsg->tcm_handle = tc_make_handle(1, 0);
2272     tcmsg->tcm_parent = TC_H_ROOT;
2273
2274     nl_msg_put_string(&request, TCA_KIND, "htb");
2275
2276     memset(&opt, 0, sizeof opt);
2277     opt.rate2quantum = 10;
2278     opt.version = 3;
2279     opt.defcls = 0;
2280
2281     opt_offset = nl_msg_start_nested(&request, TCA_OPTIONS);
2282     nl_msg_put_unspec(&request, TCA_HTB_INIT, &opt, sizeof opt);
2283     nl_msg_end_nested(&request, opt_offset);
2284
2285     return tc_transact(&request, NULL);
2286 }
2287
2288 /* Equivalent to "tc class replace <dev> classid <handle> parent <parent> htb
2289  * rate <min_rate>bps ceil <max_rate>bps burst <burst>b prio <priority>". */
2290 static int
2291 htb_setup_class__(struct netdev *netdev, unsigned int handle,
2292                   unsigned int parent, struct htb_class *class)
2293 {
2294     size_t opt_offset;
2295     struct tc_htb_opt opt;
2296     struct ofpbuf request;
2297     struct tcmsg *tcmsg;
2298     int error;
2299     int mtu;
2300
2301     netdev_get_mtu(netdev, &mtu);
2302
2303     memset(&opt, 0, sizeof opt);
2304     tc_fill_rate(&opt.rate, class->min_rate, mtu);
2305     tc_fill_rate(&opt.ceil, class->max_rate, mtu);
2306     opt.buffer = tc_calc_buffer(opt.rate.rate, mtu, class->burst);
2307     opt.cbuffer = tc_calc_buffer(opt.ceil.rate, mtu, class->burst);
2308     opt.prio = class->priority;
2309
2310     tcmsg = tc_make_request(netdev, RTM_NEWTCLASS, NLM_F_CREATE, &request);
2311     tcmsg->tcm_handle = handle;
2312     tcmsg->tcm_parent = parent;
2313
2314     nl_msg_put_string(&request, TCA_KIND, "htb");
2315     opt_offset = nl_msg_start_nested(&request, TCA_OPTIONS);
2316     nl_msg_put_unspec(&request, TCA_HTB_PARMS, &opt, sizeof opt);
2317     tc_put_rtab(&request, TCA_HTB_RTAB, &opt.rate);
2318     tc_put_rtab(&request, TCA_HTB_CTAB, &opt.ceil);
2319     nl_msg_end_nested(&request, opt_offset);
2320
2321     error = tc_transact(&request, NULL);
2322     if (error) {
2323         VLOG_WARN_RL(&rl, "failed to replace %s class %u:%u, parent %u:%u, "
2324                      "min_rate=%u max_rate=%u burst=%u prio=%u (%s)",
2325                      netdev_get_name(netdev),
2326                      tc_get_major(handle), tc_get_minor(handle),
2327                      tc_get_major(parent), tc_get_minor(parent),
2328                      class->min_rate, class->max_rate,
2329                      class->burst, class->priority, strerror(error));
2330     }
2331     return error;
2332 }
2333
2334 /* Parses Netlink attributes in 'options' for HTB parameters and stores a
2335  * description of them into 'details'.  The description complies with the
2336  * specification given in the vswitch database documentation for linux-htb
2337  * queue details. */
2338 static int
2339 htb_parse_tca_options__(struct nlattr *nl_options, struct htb_class *class)
2340 {
2341     static const struct nl_policy tca_htb_policy[] = {
2342         [TCA_HTB_PARMS] = { .type = NL_A_UNSPEC, .optional = false,
2343                             .min_len = sizeof(struct tc_htb_opt) },
2344     };
2345
2346     struct nlattr *attrs[ARRAY_SIZE(tca_htb_policy)];
2347     const struct tc_htb_opt *htb;
2348
2349     if (!nl_parse_nested(nl_options, tca_htb_policy,
2350                          attrs, ARRAY_SIZE(tca_htb_policy))) {
2351         VLOG_WARN_RL(&rl, "failed to parse HTB class options");
2352         return EPROTO;
2353     }
2354
2355     htb = nl_attr_get(attrs[TCA_HTB_PARMS]);
2356     class->min_rate = htb->rate.rate;
2357     class->max_rate = htb->ceil.rate;
2358     class->burst = tc_ticks_to_bytes(htb->rate.rate, htb->buffer);
2359     class->priority = htb->prio;
2360     return 0;
2361 }
2362
2363 static int
2364 htb_parse_tcmsg__(struct ofpbuf *tcmsg, unsigned int *queue_id,
2365                   struct htb_class *options,
2366                   struct netdev_queue_stats *stats)
2367 {
2368     struct nlattr *nl_options;
2369     unsigned int handle;
2370     int error;
2371
2372     error = tc_parse_class(tcmsg, &handle, &nl_options, stats);
2373     if (!error && queue_id) {
2374         unsigned int major = tc_get_major(handle);
2375         unsigned int minor = tc_get_minor(handle);
2376         if (major == 1 && minor > 0 && minor <= HTB_N_QUEUES) {
2377             *queue_id = minor - 1;
2378         } else {
2379             error = EPROTO;
2380         }
2381     }
2382     if (!error && options) {
2383         error = htb_parse_tca_options__(nl_options, options);
2384     }
2385     return error;
2386 }
2387
2388 static void
2389 htb_parse_qdisc_details__(struct netdev *netdev,
2390                           const struct shash *details, struct htb_class *hc)
2391 {
2392     const char *max_rate_s;
2393
2394     max_rate_s = shash_find_data(details, "max-rate");
2395     hc->max_rate = max_rate_s ? strtoull(max_rate_s, NULL, 10) / 8 : 0;
2396     if (!hc->max_rate) {
2397         uint32_t current;
2398
2399         netdev_get_features(netdev, &current, NULL, NULL, NULL);
2400         hc->max_rate = netdev_features_to_bps(current) / 8;
2401     }
2402     hc->min_rate = hc->max_rate;
2403     hc->burst = 0;
2404     hc->priority = 0;
2405 }
2406
2407 static int
2408 htb_parse_class_details__(struct netdev *netdev,
2409                           const struct shash *details, struct htb_class *hc)
2410 {
2411     const struct htb *htb = htb_get__(netdev);
2412     const char *min_rate_s = shash_find_data(details, "min-rate");
2413     const char *max_rate_s = shash_find_data(details, "max-rate");
2414     const char *burst_s = shash_find_data(details, "burst");
2415     const char *priority_s = shash_find_data(details, "priority");
2416     int mtu;
2417
2418     /* min-rate */
2419     if (!min_rate_s) {
2420         /* min-rate is required. */
2421         return EINVAL;
2422     }
2423     hc->min_rate = strtoull(min_rate_s, NULL, 10) / 8;
2424     hc->min_rate = MAX(hc->min_rate, 0);
2425     hc->min_rate = MIN(hc->min_rate, htb->max_rate);
2426
2427     /* max-rate */
2428     hc->max_rate = (max_rate_s
2429                     ? strtoull(max_rate_s, NULL, 10) / 8
2430                     : htb->max_rate);
2431     hc->max_rate = MAX(hc->max_rate, hc->min_rate);
2432     hc->max_rate = MIN(hc->max_rate, htb->max_rate);
2433
2434     /* burst
2435      *
2436      * According to hints in the documentation that I've read, it is important
2437      * that 'burst' be at least as big as the largest frame that might be
2438      * transmitted.  Also, making 'burst' a bit bigger than necessary is OK,
2439      * but having it a bit too small is a problem.  Since netdev_get_mtu()
2440      * doesn't include the Ethernet header, we need to add at least 14 (18?) to
2441      * the MTU.  We actually add 64, instead of 14, as a guard against
2442      * additional headers get tacked on somewhere that we're not aware of. */
2443     netdev_get_mtu(netdev, &mtu);
2444     hc->burst = burst_s ? strtoull(burst_s, NULL, 10) / 8 : 0;
2445     hc->burst = MAX(hc->burst, mtu + 64);
2446
2447     /* priority */
2448     hc->priority = priority_s ? strtoul(priority_s, NULL, 10) : 0;
2449
2450     return 0;
2451 }
2452
2453 static int
2454 htb_query_class__(const struct netdev *netdev, unsigned int handle,
2455                   unsigned int parent, struct htb_class *options,
2456                   struct netdev_queue_stats *stats)
2457 {
2458     struct ofpbuf *reply;
2459     int error;
2460
2461     error = tc_query_class(netdev, handle, parent, &reply);
2462     if (!error) {
2463         error = htb_parse_tcmsg__(reply, NULL, options, stats);
2464         ofpbuf_delete(reply);
2465     }
2466     return error;
2467 }
2468
2469 static int
2470 htb_tc_install(struct netdev *netdev, const struct shash *details)
2471 {
2472     int error;
2473
2474     error = htb_setup_qdisc__(netdev);
2475     if (!error) {
2476         struct htb_class hc;
2477
2478         htb_parse_qdisc_details__(netdev, details, &hc);
2479         error = htb_setup_class__(netdev, tc_make_handle(1, 0xfffe),
2480                                   tc_make_handle(1, 0), &hc);
2481         if (!error) {
2482             htb_install__(netdev, hc.max_rate);
2483         }
2484     }
2485     return error;
2486 }
2487
2488 static struct htb_class *
2489 htb_class_cast__(const struct tc_queue *queue)
2490 {
2491     return CONTAINER_OF(queue, struct htb_class, tc_queue);
2492 }
2493
2494 static void
2495 htb_update_queue__(struct netdev *netdev, unsigned int queue_id,
2496                    const struct htb_class *hc)
2497 {
2498     struct htb *htb = htb_get__(netdev);
2499     size_t hash = hash_int(queue_id, 0);
2500     struct tc_queue *queue;
2501     struct htb_class *hcp;
2502
2503     queue = tc_find_queue__(netdev, queue_id, hash);
2504     if (queue) {
2505         hcp = htb_class_cast__(queue);
2506     } else {
2507         hcp = xmalloc(sizeof *hcp);
2508         queue = &hcp->tc_queue;
2509         queue->queue_id = queue_id;
2510         hmap_insert(&htb->tc.queues, &queue->hmap_node, hash);
2511     }
2512
2513     hcp->min_rate = hc->min_rate;
2514     hcp->max_rate = hc->max_rate;
2515     hcp->burst = hc->burst;
2516     hcp->priority = hc->priority;
2517 }
2518
2519 static int
2520 htb_tc_load(struct netdev *netdev, struct ofpbuf *nlmsg OVS_UNUSED)
2521 {
2522     struct shash details = SHASH_INITIALIZER(&details);
2523     struct ofpbuf msg;
2524     struct nl_dump dump;
2525     struct htb_class hc;
2526     struct htb *htb;
2527
2528     /* Get qdisc options. */
2529     hc.max_rate = 0;
2530     htb_query_class__(netdev, tc_make_handle(1, 0xfffe), 0, &hc, NULL);
2531     htb = htb_install__(netdev, hc.max_rate);
2532
2533     /* Get queues. */
2534     start_queue_dump(netdev, &dump);
2535     shash_init(&details);
2536     while (nl_dump_next(&dump, &msg)) {
2537         unsigned int queue_id;
2538
2539         if (!htb_parse_tcmsg__(&msg, &queue_id, &hc, NULL)) {
2540             htb_update_queue__(netdev, queue_id, &hc);
2541         }
2542     }
2543     nl_dump_done(&dump);
2544
2545     return 0;
2546 }
2547
2548 static void
2549 htb_tc_destroy(struct tc *tc)
2550 {
2551     struct htb *htb = CONTAINER_OF(tc, struct htb, tc);
2552     struct htb_class *hc, *next;
2553
2554     HMAP_FOR_EACH_SAFE (hc, next, struct htb_class, tc_queue.hmap_node,
2555                         &htb->tc.queues) {
2556         hmap_remove(&htb->tc.queues, &hc->tc_queue.hmap_node);
2557         free(hc);
2558     }
2559     tc_destroy(tc);
2560     free(htb);
2561 }
2562
2563 static int
2564 htb_qdisc_get(const struct netdev *netdev, struct shash *details)
2565 {
2566     const struct htb *htb = htb_get__(netdev);
2567     shash_add(details, "max-rate", xasprintf("%llu", 8ULL * htb->max_rate));
2568     return 0;
2569 }
2570
2571 static int
2572 htb_qdisc_set(struct netdev *netdev, const struct shash *details)
2573 {
2574     struct htb_class hc;
2575     int error;
2576
2577     htb_parse_qdisc_details__(netdev, details, &hc);
2578     error = htb_setup_class__(netdev, tc_make_handle(1, 0xfffe),
2579                               tc_make_handle(1, 0), &hc);
2580     if (!error) {
2581         htb_get__(netdev)->max_rate = hc.max_rate;
2582     }
2583     return error;
2584 }
2585
2586 static int
2587 htb_class_get(const struct netdev *netdev OVS_UNUSED,
2588               const struct tc_queue *queue, struct shash *details)
2589 {
2590     const struct htb_class *hc = htb_class_cast__(queue);
2591
2592     shash_add(details, "min-rate", xasprintf("%llu", 8ULL * hc->min_rate));
2593     if (hc->min_rate != hc->max_rate) {
2594         shash_add(details, "max-rate", xasprintf("%llu", 8ULL * hc->max_rate));
2595     }
2596     shash_add(details, "burst", xasprintf("%llu", 8ULL * hc->burst));
2597     if (hc->priority) {
2598         shash_add(details, "priority", xasprintf("%u", hc->priority));
2599     }
2600     return 0;
2601 }
2602
2603 static int
2604 htb_class_set(struct netdev *netdev, unsigned int queue_id,
2605               const struct shash *details)
2606 {
2607     struct htb_class hc;
2608     int error;
2609
2610     error = htb_parse_class_details__(netdev, details, &hc);
2611     if (error) {
2612         return error;
2613     }
2614
2615     error = htb_setup_class__(netdev, tc_make_handle(1, queue_id + 1),
2616                               tc_make_handle(1, 0xfffe), &hc);
2617     if (error) {
2618         return error;
2619     }
2620
2621     htb_update_queue__(netdev, queue_id, &hc);
2622     return 0;
2623 }
2624
2625 static int
2626 htb_class_delete(struct netdev *netdev, struct tc_queue *queue)
2627 {
2628     struct htb_class *hc = htb_class_cast__(queue);
2629     struct htb *htb = htb_get__(netdev);
2630     int error;
2631
2632     error = tc_delete_class(netdev, tc_make_handle(1, queue->queue_id + 1));
2633     if (!error) {
2634         hmap_remove(&htb->tc.queues, &hc->tc_queue.hmap_node);
2635         free(hc);
2636     }
2637     return error;
2638 }
2639
2640 static int
2641 htb_class_get_stats(const struct netdev *netdev, const struct tc_queue *queue,
2642                     struct netdev_queue_stats *stats)
2643 {
2644     return htb_query_class__(netdev, tc_make_handle(1, queue->queue_id + 1),
2645                              tc_make_handle(1, 0xfffe), NULL, stats);
2646 }
2647
2648 static int
2649 htb_class_dump_stats(const struct netdev *netdev OVS_UNUSED,
2650                      const struct ofpbuf *nlmsg,
2651                      netdev_dump_queue_stats_cb *cb, void *aux)
2652 {
2653     struct netdev_queue_stats stats;
2654     unsigned int handle, major, minor;
2655     int error;
2656
2657     error = tc_parse_class(nlmsg, &handle, NULL, &stats);
2658     if (error) {
2659         return error;
2660     }
2661
2662     major = tc_get_major(handle);
2663     minor = tc_get_minor(handle);
2664     if (major == 1 && minor > 0 && minor <= HTB_N_QUEUES) {
2665         (*cb)(tc_get_minor(handle), &stats, aux);
2666     }
2667     return 0;
2668 }
2669
2670 static const struct tc_ops tc_ops_htb = {
2671     "htb",                      /* linux_name */
2672     "linux-htb",                /* ovs_name */
2673     HTB_N_QUEUES,               /* n_queues */
2674     htb_tc_install,
2675     htb_tc_load,
2676     htb_tc_destroy,
2677     htb_qdisc_get,
2678     htb_qdisc_set,
2679     htb_class_get,
2680     htb_class_set,
2681     htb_class_delete,
2682     htb_class_get_stats,
2683     htb_class_dump_stats
2684 };
2685 \f
2686 /* "linux-default" traffic control class.
2687  *
2688  * This class represents the default, unnamed Linux qdisc.  It corresponds to
2689  * the "" (empty string) QoS type in the OVS database. */
2690
2691 static void
2692 default_install__(struct netdev *netdev)
2693 {
2694     struct netdev_dev_linux *netdev_dev =
2695                                 netdev_dev_linux_cast(netdev_get_dev(netdev));
2696     static struct tc *tc;
2697
2698     if (!tc) {
2699         tc = xmalloc(sizeof *tc);
2700         tc_init(tc, &tc_ops_default);
2701     }
2702     netdev_dev->tc = tc;
2703 }
2704
2705 static int
2706 default_tc_install(struct netdev *netdev,
2707                    const struct shash *details OVS_UNUSED)
2708 {
2709     default_install__(netdev);
2710     return 0;
2711 }
2712
2713 static int
2714 default_tc_load(struct netdev *netdev, struct ofpbuf *nlmsg OVS_UNUSED)
2715 {
2716     default_install__(netdev);
2717     return 0;
2718 }
2719
2720 static const struct tc_ops tc_ops_default = {
2721     NULL,                       /* linux_name */
2722     "",                         /* ovs_name */
2723     0,                          /* n_queues */
2724     default_tc_install,
2725     default_tc_load,
2726     NULL,                       /* tc_destroy */
2727     NULL,                       /* qdisc_get */
2728     NULL,                       /* qdisc_set */
2729     NULL,                       /* class_get */
2730     NULL,                       /* class_set */
2731     NULL,                       /* class_delete */
2732     NULL,                       /* class_get_stats */
2733     NULL                        /* class_dump_stats */
2734 };
2735 \f
2736 /* "linux-other" traffic control class.
2737  *
2738  * */
2739
2740 static int
2741 other_tc_load(struct netdev *netdev, struct ofpbuf *nlmsg OVS_UNUSED)
2742 {
2743     struct netdev_dev_linux *netdev_dev =
2744                                 netdev_dev_linux_cast(netdev_get_dev(netdev));
2745     static struct tc *tc;
2746
2747     if (!tc) {
2748         tc = xmalloc(sizeof *tc);
2749         tc_init(tc, &tc_ops_other);
2750     }
2751     netdev_dev->tc = tc;
2752     return 0;
2753 }
2754
2755 static const struct tc_ops tc_ops_other = {
2756     NULL,                       /* linux_name */
2757     "linux-other",              /* ovs_name */
2758     0,                          /* n_queues */
2759     NULL,                       /* tc_install */
2760     other_tc_load,
2761     NULL,                       /* tc_destroy */
2762     NULL,                       /* qdisc_get */
2763     NULL,                       /* qdisc_set */
2764     NULL,                       /* class_get */
2765     NULL,                       /* class_set */
2766     NULL,                       /* class_delete */
2767     NULL,                       /* class_get_stats */
2768     NULL                        /* class_dump_stats */
2769 };
2770 \f
2771 /* Traffic control. */
2772
2773 /* Number of kernel "tc" ticks per second. */
2774 static double ticks_per_s;
2775
2776 /* Number of kernel "jiffies" per second.  This is used for the purpose of
2777  * computing buffer sizes.  Generally kernel qdiscs need to be able to buffer
2778  * one jiffy's worth of data.
2779  *
2780  * There are two possibilities here:
2781  *
2782  *    - 'buffer_hz' is the kernel's real timer tick rate, a small number in the
2783  *      approximate range of 100 to 1024.  That means that we really need to
2784  *      make sure that the qdisc can buffer that much data.
2785  *
2786  *    - 'buffer_hz' is an absurdly large number.  That means that the kernel
2787  *      has finely granular timers and there's no need to fudge additional room
2788  *      for buffers.  (There's no extra effort needed to implement that: the
2789  *      large 'buffer_hz' is used as a divisor, so practically any number will
2790  *      come out as 0 in the division.  Small integer results in the case of
2791  *      really high dividends won't have any real effect anyhow.)
2792  */
2793 static unsigned int buffer_hz;
2794
2795 /* Returns tc handle 'major':'minor'. */
2796 static unsigned int
2797 tc_make_handle(unsigned int major, unsigned int minor)
2798 {
2799     return TC_H_MAKE(major << 16, minor);
2800 }
2801
2802 /* Returns the major number from 'handle'. */
2803 static unsigned int
2804 tc_get_major(unsigned int handle)
2805 {
2806     return TC_H_MAJ(handle) >> 16;
2807 }
2808
2809 /* Returns the minor number from 'handle'. */
2810 static unsigned int
2811 tc_get_minor(unsigned int handle)
2812 {
2813     return TC_H_MIN(handle);
2814 }
2815
2816 static struct tcmsg *
2817 tc_make_request(const struct netdev *netdev, int type, unsigned int flags,
2818                 struct ofpbuf *request)
2819 {
2820     struct tcmsg *tcmsg;
2821     int ifindex;
2822     int error;
2823
2824     error = get_ifindex(netdev, &ifindex);
2825     if (error) {
2826         return NULL;
2827     }
2828
2829     ofpbuf_init(request, 512);
2830     nl_msg_put_nlmsghdr(request, sizeof *tcmsg, type, NLM_F_REQUEST | flags);
2831     tcmsg = ofpbuf_put_zeros(request, sizeof *tcmsg);
2832     tcmsg->tcm_family = AF_UNSPEC;
2833     tcmsg->tcm_ifindex = ifindex;
2834     /* Caller should fill in tcmsg->tcm_handle. */
2835     /* Caller should fill in tcmsg->tcm_parent. */
2836
2837     return tcmsg;
2838 }
2839
2840 static int
2841 tc_transact(struct ofpbuf *request, struct ofpbuf **replyp)
2842 {
2843     int error = nl_sock_transact(rtnl_sock, request, replyp);
2844     ofpbuf_uninit(request);
2845     return error;
2846 }
2847
2848 static void
2849 read_psched(void)
2850 {
2851     /* The values in psched are not individually very meaningful, but they are
2852      * important.  The tables below show some values seen in the wild.
2853      *
2854      * Some notes:
2855      *
2856      *   - "c" has always been a constant 1000000 since at least Linux 2.4.14.
2857      *     (Before that, there are hints that it was 1000000000.)
2858      *
2859      *   - "d" can be unrealistically large, see the comment on 'buffer_hz'
2860      *     above.
2861      *
2862      *                        /proc/net/psched
2863      *     -----------------------------------
2864      * [1] 000c8000 000f4240 000f4240 00000064
2865      * [2] 000003e8 00000400 000f4240 3b9aca00
2866      * [3] 000003e8 00000400 000f4240 3b9aca00
2867      * [4] 000003e8 00000400 000f4240 00000064
2868      * [5] 000003e8 00000040 000f4240 3b9aca00
2869      * [6] 000003e8 00000040 000f4240 000000f9
2870      *
2871      *           a         b          c             d ticks_per_s     buffer_hz
2872      *     ------- --------- ---------- ------------- ----------- -------------
2873      * [1] 819,200 1,000,000  1,000,000           100     819,200           100
2874      * [2]   1,000     1,024  1,000,000 1,000,000,000     976,562 1,000,000,000
2875      * [3]   1,000     1,024  1,000,000 1,000,000,000     976,562 1,000,000,000
2876      * [4]   1,000     1,024  1,000,000           100     976,562           100
2877      * [5]   1,000        64  1,000,000 1,000,000,000  15,625,000 1,000,000,000
2878      * [6]   1,000        64  1,000,000           249  15,625,000           249
2879      *
2880      * [1] 2.6.18-128.1.6.el5.xs5.5.0.505.1024xen from XenServer 5.5.0-24648p
2881      * [2] 2.6.26-1-686-bigmem from Debian lenny
2882      * [3] 2.6.26-2-sparc64 from Debian lenny
2883      * [4] 2.6.27.42-0.1.1.xs5.6.810.44.111163xen from XenServer 5.6.810-31078p
2884      * [5] 2.6.32.21.22 (approx.) from Ubuntu 10.04 on VMware Fusion
2885      * [6] 2.6.34 from kernel.org on KVM
2886      */
2887     static const char fn[] = "/proc/net/psched";
2888     unsigned int a, b, c, d;
2889     FILE *stream;
2890
2891     ticks_per_s = 1.0;
2892     buffer_hz = 100;
2893
2894     stream = fopen(fn, "r");
2895     if (!stream) {
2896         VLOG_WARN("%s: open failed: %s", fn, strerror(errno));
2897         return;
2898     }
2899
2900     if (fscanf(stream, "%x %x %x %x", &a, &b, &c, &d) != 4) {
2901         VLOG_WARN("%s: read failed", fn);
2902         fclose(stream);
2903         return;
2904     }
2905     VLOG_DBG("%s: psched parameters are: %u %u %u %u", fn, a, b, c, d);
2906     fclose(stream);
2907
2908     if (!a || !c) {
2909         VLOG_WARN("%s: invalid scheduler parameters", fn);
2910         return;
2911     }
2912
2913     ticks_per_s = (double) a * c / b;
2914     if (c == 1000000) {
2915         buffer_hz = d;
2916     } else {
2917         VLOG_WARN("%s: unexpected psched parameters: %u %u %u %u",
2918                   fn, a, b, c, d);
2919     }
2920     VLOG_DBG("%s: ticks_per_s=%f buffer_hz=%u", fn, ticks_per_s, buffer_hz);
2921 }
2922
2923 /* Returns the number of bytes that can be transmitted in 'ticks' ticks at a
2924  * rate of 'rate' bytes per second. */
2925 static unsigned int
2926 tc_ticks_to_bytes(unsigned int rate, unsigned int ticks)
2927 {
2928     if (!buffer_hz) {
2929         read_psched();
2930     }
2931     return (rate * ticks) / ticks_per_s;
2932 }
2933
2934 /* Returns the number of ticks that it would take to transmit 'size' bytes at a
2935  * rate of 'rate' bytes per second. */
2936 static unsigned int
2937 tc_bytes_to_ticks(unsigned int rate, unsigned int size)
2938 {
2939     if (!buffer_hz) {
2940         read_psched();
2941     }
2942     return ((unsigned long long int) ticks_per_s * size) / rate;
2943 }
2944
2945 /* Returns the number of bytes that need to be reserved for qdisc buffering at
2946  * a transmission rate of 'rate' bytes per second. */
2947 static unsigned int
2948 tc_buffer_per_jiffy(unsigned int rate)
2949 {
2950     if (!buffer_hz) {
2951         read_psched();
2952     }
2953     return rate / buffer_hz;
2954 }
2955
2956 /* Given Netlink 'msg' that describes a qdisc, extracts the name of the qdisc,
2957  * e.g. "htb", into '*kind' (if it is nonnull).  If 'options' is nonnull,
2958  * extracts 'msg''s TCA_OPTIONS attributes into '*options' if it is present or
2959  * stores NULL into it if it is absent.
2960  *
2961  * '*kind' and '*options' point into 'msg', so they are owned by whoever owns
2962  * 'msg'.
2963  *
2964  * Returns 0 if successful, otherwise a positive errno value. */
2965 static int
2966 tc_parse_qdisc(const struct ofpbuf *msg, const char **kind,
2967                struct nlattr **options)
2968 {
2969     static const struct nl_policy tca_policy[] = {
2970         [TCA_KIND] = { .type = NL_A_STRING, .optional = false },
2971         [TCA_OPTIONS] = { .type = NL_A_NESTED, .optional = true },
2972     };
2973     struct nlattr *ta[ARRAY_SIZE(tca_policy)];
2974
2975     if (!nl_policy_parse(msg, NLMSG_HDRLEN + sizeof(struct tcmsg),
2976                          tca_policy, ta, ARRAY_SIZE(ta))) {
2977         VLOG_WARN_RL(&rl, "failed to parse qdisc message");
2978         goto error;
2979     }
2980
2981     if (kind) {
2982         *kind = nl_attr_get_string(ta[TCA_KIND]);
2983     }
2984
2985     if (options) {
2986         *options = ta[TCA_OPTIONS];
2987     }
2988
2989     return 0;
2990
2991 error:
2992     if (kind) {
2993         *kind = NULL;
2994     }
2995     if (options) {
2996         *options = NULL;
2997     }
2998     return EPROTO;
2999 }
3000
3001 /* Given Netlink 'msg' that describes a class, extracts the queue ID (e.g. the
3002  * minor number of its class ID) into '*queue_id', its TCA_OPTIONS attribute
3003  * into '*options', and its queue statistics into '*stats'.  Any of the output
3004  * arguments may be null.
3005  *
3006  * Returns 0 if successful, otherwise a positive errno value. */
3007 static int
3008 tc_parse_class(const struct ofpbuf *msg, unsigned int *handlep,
3009                struct nlattr **options, struct netdev_queue_stats *stats)
3010 {
3011     static const struct nl_policy tca_policy[] = {
3012         [TCA_OPTIONS] = { .type = NL_A_NESTED, .optional = false },
3013         [TCA_STATS2] = { .type = NL_A_NESTED, .optional = false },
3014     };
3015     struct nlattr *ta[ARRAY_SIZE(tca_policy)];
3016
3017     if (!nl_policy_parse(msg, NLMSG_HDRLEN + sizeof(struct tcmsg),
3018                          tca_policy, ta, ARRAY_SIZE(ta))) {
3019         VLOG_WARN_RL(&rl, "failed to parse class message");
3020         goto error;
3021     }
3022
3023     if (handlep) {
3024         struct tcmsg *tc = ofpbuf_at_assert(msg, NLMSG_HDRLEN, sizeof *tc);
3025         *handlep = tc->tcm_handle;
3026     }
3027
3028     if (options) {
3029         *options = ta[TCA_OPTIONS];
3030     }
3031
3032     if (stats) {
3033         const struct gnet_stats_queue *gsq;
3034         struct gnet_stats_basic gsb;
3035
3036         static const struct nl_policy stats_policy[] = {
3037             [TCA_STATS_BASIC] = { .type = NL_A_UNSPEC, .optional = false,
3038                                   .min_len = sizeof gsb },
3039             [TCA_STATS_QUEUE] = { .type = NL_A_UNSPEC, .optional = false,
3040                                   .min_len = sizeof *gsq },
3041         };
3042         struct nlattr *sa[ARRAY_SIZE(stats_policy)];
3043
3044         if (!nl_parse_nested(ta[TCA_STATS2], stats_policy,
3045                              sa, ARRAY_SIZE(sa))) {
3046             VLOG_WARN_RL(&rl, "failed to parse class stats");
3047             goto error;
3048         }
3049
3050         /* Alignment issues screw up the length of struct gnet_stats_basic on
3051          * some arch/bitsize combinations.  Newer versions of Linux have a
3052          * struct gnet_stats_basic_packed, but we can't depend on that.  The
3053          * easiest thing to do is just to make a copy. */
3054         memset(&gsb, 0, sizeof gsb);
3055         memcpy(&gsb, nl_attr_get(sa[TCA_STATS_BASIC]),
3056                MIN(nl_attr_get_size(sa[TCA_STATS_BASIC]), sizeof gsb));
3057         stats->tx_bytes = gsb.bytes;
3058         stats->tx_packets = gsb.packets;
3059
3060         gsq = nl_attr_get(sa[TCA_STATS_QUEUE]);
3061         stats->tx_errors = gsq->drops;
3062     }
3063
3064     return 0;
3065
3066 error:
3067     if (options) {
3068         *options = NULL;
3069     }
3070     if (stats) {
3071         memset(stats, 0, sizeof *stats);
3072     }
3073     return EPROTO;
3074 }
3075
3076 /* Queries the kernel for class with identifier 'handle' and parent 'parent'
3077  * on 'netdev'. */
3078 static int
3079 tc_query_class(const struct netdev *netdev,
3080                unsigned int handle, unsigned int parent,
3081                struct ofpbuf **replyp)
3082 {
3083     struct ofpbuf request;
3084     struct tcmsg *tcmsg;
3085     int error;
3086
3087     tcmsg = tc_make_request(netdev, RTM_GETTCLASS, NLM_F_ECHO, &request);
3088     tcmsg->tcm_handle = handle;
3089     tcmsg->tcm_parent = parent;
3090
3091     error = tc_transact(&request, replyp);
3092     if (error) {
3093         VLOG_WARN_RL(&rl, "query %s class %u:%u (parent %u:%u) failed (%s)",
3094                      netdev_get_name(netdev),
3095                      tc_get_major(handle), tc_get_minor(handle),
3096                      tc_get_major(parent), tc_get_minor(parent),
3097                      strerror(error));
3098     }
3099     return error;
3100 }
3101
3102 /* Equivalent to "tc class del dev <name> handle <handle>". */
3103 static int
3104 tc_delete_class(const struct netdev *netdev, unsigned int handle)
3105 {
3106     struct ofpbuf request;
3107     struct tcmsg *tcmsg;
3108     int error;
3109
3110     tcmsg = tc_make_request(netdev, RTM_DELTCLASS, 0, &request);
3111     tcmsg->tcm_handle = handle;
3112     tcmsg->tcm_parent = 0;
3113
3114     error = tc_transact(&request, NULL);
3115     if (error) {
3116         VLOG_WARN_RL(&rl, "delete %s class %u:%u failed (%s)",
3117                      netdev_get_name(netdev),
3118                      tc_get_major(handle), tc_get_minor(handle),
3119                      strerror(error));
3120     }
3121     return error;
3122 }
3123
3124 /* Equivalent to "tc qdisc del dev <name> root". */
3125 static int
3126 tc_del_qdisc(struct netdev *netdev)
3127 {
3128     struct netdev_dev_linux *netdev_dev =
3129                                 netdev_dev_linux_cast(netdev_get_dev(netdev));
3130     struct ofpbuf request;
3131     struct tcmsg *tcmsg;
3132     int error;
3133
3134     tcmsg = tc_make_request(netdev, RTM_DELQDISC, 0, &request);
3135     tcmsg->tcm_handle = tc_make_handle(1, 0);
3136     tcmsg->tcm_parent = TC_H_ROOT;
3137
3138     error = tc_transact(&request, NULL);
3139     if (error == EINVAL) {
3140         /* EINVAL probably means that the default qdisc was in use, in which
3141          * case we've accomplished our purpose. */
3142         error = 0;
3143     }
3144     if (!error && netdev_dev->tc) {
3145         if (netdev_dev->tc->ops->tc_destroy) {
3146             netdev_dev->tc->ops->tc_destroy(netdev_dev->tc);
3147         }
3148         netdev_dev->tc = NULL;
3149     }
3150     return error;
3151 }
3152
3153 /* If 'netdev''s qdisc type and parameters are not yet known, queries the
3154  * kernel to determine what they are.  Returns 0 if successful, otherwise a
3155  * positive errno value. */
3156 static int
3157 tc_query_qdisc(const struct netdev *netdev)
3158 {
3159     struct netdev_dev_linux *netdev_dev =
3160                                 netdev_dev_linux_cast(netdev_get_dev(netdev));
3161     struct ofpbuf request, *qdisc;
3162     const struct tc_ops *ops;
3163     struct tcmsg *tcmsg;
3164     int load_error;
3165     int error;
3166
3167     if (netdev_dev->tc) {
3168         return 0;
3169     }
3170
3171     /* This RTM_GETQDISC is crafted to avoid OOPSing kernels that do not have
3172      * commit 53b0f08 "net_sched: Fix qdisc_notify()", which is anything before
3173      * 2.6.35 without that fix backported to it.
3174      *
3175      * To avoid the OOPS, we must not make a request that would attempt to dump
3176      * a "built-in" qdisc, that is, the default pfifo_fast qdisc or one of a
3177      * few others.  There are a few ways that I can see to do this, but most of
3178      * them seem to be racy (and if you lose the race the kernel OOPSes).  The
3179      * technique chosen here is to assume that any non-default qdisc that we
3180      * create will have a class with handle 1:0.  The built-in qdiscs only have
3181      * a class with handle 0:0.
3182      *
3183      * We could check for Linux 2.6.35+ and use a more straightforward method
3184      * there. */
3185     tcmsg = tc_make_request(netdev, RTM_GETQDISC, NLM_F_ECHO, &request);
3186     tcmsg->tcm_handle = tc_make_handle(1, 0);
3187     tcmsg->tcm_parent = 0;
3188
3189     /* Figure out what tc class to instantiate. */
3190     error = tc_transact(&request, &qdisc);
3191     if (!error) {
3192         const char *kind;
3193
3194         error = tc_parse_qdisc(qdisc, &kind, NULL);
3195         if (error) {
3196             ops = &tc_ops_other;
3197         } else {
3198             ops = tc_lookup_linux_name(kind);
3199             if (!ops) {
3200                 static struct vlog_rate_limit rl2 = VLOG_RATE_LIMIT_INIT(1, 1);
3201                 VLOG_INFO_RL(&rl2, "unknown qdisc \"%s\"", kind);
3202
3203                 ops = &tc_ops_other;
3204             }
3205         }
3206     } else if (error == ENOENT) {
3207         /* Either it's a built-in qdisc, or it's a qdisc set up by some
3208          * other entity that doesn't have a handle 1:0.  We will assume
3209          * that it's the system default qdisc. */
3210         ops = &tc_ops_default;
3211         error = 0;
3212     } else {
3213         /* Who knows?  Maybe the device got deleted. */
3214         VLOG_WARN_RL(&rl, "query %s qdisc failed (%s)",
3215                      netdev_get_name(netdev), strerror(error));
3216         ops = &tc_ops_other;
3217     }
3218
3219     /* Instantiate it. */
3220     load_error = ops->tc_load((struct netdev *) netdev, qdisc);
3221     assert((load_error == 0) == (netdev_dev->tc != NULL));
3222     ofpbuf_delete(qdisc);
3223
3224     return error ? error : load_error;
3225 }
3226
3227 /* Linux traffic control uses tables with 256 entries ("rtab" tables) to
3228    approximate the time to transmit packets of various lengths.  For an MTU of
3229    256 or less, each entry is exact; for an MTU of 257 through 512, each entry
3230    represents two possible packet lengths; for a MTU of 513 through 1024, four
3231    possible lengths; and so on.
3232
3233    Returns, for the specified 'mtu', the number of bits that packet lengths
3234    need to be shifted right to fit within such a 256-entry table. */
3235 static int
3236 tc_calc_cell_log(unsigned int mtu)
3237 {
3238     int cell_log;
3239
3240     if (!mtu) {
3241         mtu = ETH_PAYLOAD_MAX;
3242     }
3243     mtu += ETH_HEADER_LEN + VLAN_HEADER_LEN;
3244
3245     for (cell_log = 0; mtu >= 256; cell_log++) {
3246         mtu >>= 1;
3247     }
3248
3249     return cell_log;
3250 }
3251
3252 /* Initializes 'rate' properly for a rate of 'Bps' bytes per second with an MTU
3253  * of 'mtu'. */
3254 static void
3255 tc_fill_rate(struct tc_ratespec *rate, uint64_t Bps, int mtu)
3256 {
3257     memset(rate, 0, sizeof *rate);
3258     rate->cell_log = tc_calc_cell_log(mtu);
3259     /* rate->overhead = 0; */           /* New in 2.6.24, not yet in some */
3260     /* rate->cell_align = 0; */         /* distro headers. */
3261     rate->mpu = ETH_TOTAL_MIN;
3262     rate->rate = Bps;
3263 }
3264
3265 /* Appends to 'msg' an "rtab" table for the specified 'rate' as a Netlink
3266  * attribute of the specified "type".
3267  *
3268  * See tc_calc_cell_log() above for a description of "rtab"s. */
3269 static void
3270 tc_put_rtab(struct ofpbuf *msg, uint16_t type, const struct tc_ratespec *rate)
3271 {
3272     uint32_t *rtab;
3273     unsigned int i;
3274
3275     rtab = nl_msg_put_unspec_uninit(msg, type, TC_RTAB_SIZE);
3276     for (i = 0; i < TC_RTAB_SIZE / sizeof *rtab; i++) {
3277         unsigned packet_size = (i + 1) << rate->cell_log;
3278         if (packet_size < rate->mpu) {
3279             packet_size = rate->mpu;
3280         }
3281         rtab[i] = tc_bytes_to_ticks(rate->rate, packet_size);
3282     }
3283 }
3284
3285 /* Calculates the proper value of 'buffer' or 'cbuffer' in HTB options given a
3286  * rate of 'Bps' bytes per second, the specified 'mtu', and a user-requested
3287  * burst size of 'burst_bytes'.  (If no value was requested, a 'burst_bytes' of
3288  * 0 is fine.)
3289  *
3290  * This */
3291 static int
3292 tc_calc_buffer(unsigned int Bps, int mtu, uint64_t burst_bytes)
3293 {
3294     unsigned int min_burst = tc_buffer_per_jiffy(Bps) + mtu;
3295     return tc_bytes_to_ticks(Bps, MAX(burst_bytes, min_burst));
3296 }
3297
3298 \f
3299 /* Utility functions. */
3300
3301 static int
3302 get_stats_via_netlink(int ifindex, struct netdev_stats *stats)
3303 {
3304     /* Policy for RTNLGRP_LINK messages.
3305      *
3306      * There are *many* more fields in these messages, but currently we only
3307      * care about these fields. */
3308     static const struct nl_policy rtnlgrp_link_policy[] = {
3309         [IFLA_IFNAME] = { .type = NL_A_STRING, .optional = false },
3310         [IFLA_STATS] = { .type = NL_A_UNSPEC, .optional = true,
3311                          .min_len = sizeof(struct rtnl_link_stats) },
3312     };
3313
3314     struct ofpbuf request;
3315     struct ofpbuf *reply;
3316     struct ifinfomsg *ifi;
3317     const struct rtnl_link_stats *rtnl_stats;
3318     struct nlattr *attrs[ARRAY_SIZE(rtnlgrp_link_policy)];
3319     int error;
3320
3321     ofpbuf_init(&request, 0);
3322     nl_msg_put_nlmsghdr(&request, sizeof *ifi, RTM_GETLINK, NLM_F_REQUEST);
3323     ifi = ofpbuf_put_zeros(&request, sizeof *ifi);
3324     ifi->ifi_family = PF_UNSPEC;
3325     ifi->ifi_index = ifindex;
3326     error = nl_sock_transact(rtnl_sock, &request, &reply);
3327     ofpbuf_uninit(&request);
3328     if (error) {
3329         return error;
3330     }
3331
3332     if (!nl_policy_parse(reply, NLMSG_HDRLEN + sizeof(struct ifinfomsg),
3333                          rtnlgrp_link_policy,
3334                          attrs, ARRAY_SIZE(rtnlgrp_link_policy))) {
3335         ofpbuf_delete(reply);
3336         return EPROTO;
3337     }
3338
3339     if (!attrs[IFLA_STATS]) {
3340         VLOG_WARN_RL(&rl, "RTM_GETLINK reply lacks stats");
3341         ofpbuf_delete(reply);
3342         return EPROTO;
3343     }
3344
3345     rtnl_stats = nl_attr_get(attrs[IFLA_STATS]);
3346     stats->rx_packets = rtnl_stats->rx_packets;
3347     stats->tx_packets = rtnl_stats->tx_packets;
3348     stats->rx_bytes = rtnl_stats->rx_bytes;
3349     stats->tx_bytes = rtnl_stats->tx_bytes;
3350     stats->rx_errors = rtnl_stats->rx_errors;
3351     stats->tx_errors = rtnl_stats->tx_errors;
3352     stats->rx_dropped = rtnl_stats->rx_dropped;
3353     stats->tx_dropped = rtnl_stats->tx_dropped;
3354     stats->multicast = rtnl_stats->multicast;
3355     stats->collisions = rtnl_stats->collisions;
3356     stats->rx_length_errors = rtnl_stats->rx_length_errors;
3357     stats->rx_over_errors = rtnl_stats->rx_over_errors;
3358     stats->rx_crc_errors = rtnl_stats->rx_crc_errors;
3359     stats->rx_frame_errors = rtnl_stats->rx_frame_errors;
3360     stats->rx_fifo_errors = rtnl_stats->rx_fifo_errors;
3361     stats->rx_missed_errors = rtnl_stats->rx_missed_errors;
3362     stats->tx_aborted_errors = rtnl_stats->tx_aborted_errors;
3363     stats->tx_carrier_errors = rtnl_stats->tx_carrier_errors;
3364     stats->tx_fifo_errors = rtnl_stats->tx_fifo_errors;
3365     stats->tx_heartbeat_errors = rtnl_stats->tx_heartbeat_errors;
3366     stats->tx_window_errors = rtnl_stats->tx_window_errors;
3367
3368     ofpbuf_delete(reply);
3369
3370     return 0;
3371 }
3372
3373 static int
3374 get_stats_via_proc(const char *netdev_name, struct netdev_stats *stats)
3375 {
3376     static const char fn[] = "/proc/net/dev";
3377     char line[1024];
3378     FILE *stream;
3379     int ln;
3380
3381     stream = fopen(fn, "r");
3382     if (!stream) {
3383         VLOG_WARN_RL(&rl, "%s: open failed: %s", fn, strerror(errno));
3384         return errno;
3385     }
3386
3387     ln = 0;
3388     while (fgets(line, sizeof line, stream)) {
3389         if (++ln >= 3) {
3390             char devname[16];
3391 #define X64 "%"SCNu64
3392             if (sscanf(line,
3393                        " %15[^:]:"
3394                        X64 X64 X64 X64 X64 X64 X64 "%*u"
3395                        X64 X64 X64 X64 X64 X64 X64 "%*u",
3396                        devname,
3397                        &stats->rx_bytes,
3398                        &stats->rx_packets,
3399                        &stats->rx_errors,
3400                        &stats->rx_dropped,
3401                        &stats->rx_fifo_errors,
3402                        &stats->rx_frame_errors,
3403                        &stats->multicast,
3404                        &stats->tx_bytes,
3405                        &stats->tx_packets,
3406                        &stats->tx_errors,
3407                        &stats->tx_dropped,
3408                        &stats->tx_fifo_errors,
3409                        &stats->collisions,
3410                        &stats->tx_carrier_errors) != 15) {
3411                 VLOG_WARN_RL(&rl, "%s:%d: parse error", fn, ln);
3412             } else if (!strcmp(devname, netdev_name)) {
3413                 stats->rx_length_errors = UINT64_MAX;
3414                 stats->rx_over_errors = UINT64_MAX;
3415                 stats->rx_crc_errors = UINT64_MAX;
3416                 stats->rx_missed_errors = UINT64_MAX;
3417                 stats->tx_aborted_errors = UINT64_MAX;
3418                 stats->tx_heartbeat_errors = UINT64_MAX;
3419                 stats->tx_window_errors = UINT64_MAX;
3420                 fclose(stream);
3421                 return 0;
3422             }
3423         }
3424     }
3425     VLOG_WARN_RL(&rl, "%s: no stats for %s", fn, netdev_name);
3426     fclose(stream);
3427     return ENODEV;
3428 }
3429
3430 static int
3431 get_flags(const struct netdev *netdev, int *flags)
3432 {
3433     struct ifreq ifr;
3434     int error;
3435
3436     error = netdev_linux_do_ioctl(netdev_get_name(netdev), &ifr, SIOCGIFFLAGS,
3437                                   "SIOCGIFFLAGS");
3438     *flags = ifr.ifr_flags;
3439     return error;
3440 }
3441
3442 static int
3443 set_flags(struct netdev *netdev, int flags)
3444 {
3445     struct ifreq ifr;
3446
3447     ifr.ifr_flags = flags;
3448     return netdev_linux_do_ioctl(netdev_get_name(netdev), &ifr, SIOCSIFFLAGS,
3449                                  "SIOCSIFFLAGS");
3450 }
3451
3452 static int
3453 do_get_ifindex(const char *netdev_name)
3454 {
3455     struct ifreq ifr;
3456
3457     strncpy(ifr.ifr_name, netdev_name, sizeof ifr.ifr_name);
3458     COVERAGE_INC(netdev_get_ifindex);
3459     if (ioctl(af_inet_sock, SIOCGIFINDEX, &ifr) < 0) {
3460         VLOG_WARN_RL(&rl, "ioctl(SIOCGIFINDEX) on %s device failed: %s",
3461                      netdev_name, strerror(errno));
3462         return -errno;
3463     }
3464     return ifr.ifr_ifindex;
3465 }
3466
3467 static int
3468 get_ifindex(const struct netdev *netdev_, int *ifindexp)
3469 {
3470     struct netdev_dev_linux *netdev_dev =
3471                                 netdev_dev_linux_cast(netdev_get_dev(netdev_));
3472     *ifindexp = 0;
3473     if (!(netdev_dev->cache_valid & VALID_IFINDEX)) {
3474         int ifindex = do_get_ifindex(netdev_get_name(netdev_));
3475         if (ifindex < 0) {
3476             return -ifindex;
3477         }
3478         netdev_dev->cache_valid |= VALID_IFINDEX;
3479         netdev_dev->ifindex = ifindex;
3480     }
3481     *ifindexp = netdev_dev->ifindex;
3482     return 0;
3483 }
3484
3485 static int
3486 get_etheraddr(const char *netdev_name, uint8_t ea[ETH_ADDR_LEN])
3487 {
3488     struct ifreq ifr;
3489     int hwaddr_family;
3490
3491     memset(&ifr, 0, sizeof ifr);
3492     strncpy(ifr.ifr_name, netdev_name, sizeof ifr.ifr_name);
3493     COVERAGE_INC(netdev_get_hwaddr);
3494     if (ioctl(af_inet_sock, SIOCGIFHWADDR, &ifr) < 0) {
3495         VLOG_ERR("ioctl(SIOCGIFHWADDR) on %s device failed: %s",
3496                  netdev_name, strerror(errno));
3497         return errno;
3498     }
3499     hwaddr_family = ifr.ifr_hwaddr.sa_family;
3500     if (hwaddr_family != AF_UNSPEC && hwaddr_family != ARPHRD_ETHER) {
3501         VLOG_WARN("%s device has unknown hardware address family %d",
3502                   netdev_name, hwaddr_family);
3503     }
3504     memcpy(ea, ifr.ifr_hwaddr.sa_data, ETH_ADDR_LEN);
3505     return 0;
3506 }
3507
3508 static int
3509 set_etheraddr(const char *netdev_name, int hwaddr_family,
3510               const uint8_t mac[ETH_ADDR_LEN])
3511 {
3512     struct ifreq ifr;
3513
3514     memset(&ifr, 0, sizeof ifr);
3515     strncpy(ifr.ifr_name, netdev_name, sizeof ifr.ifr_name);
3516     ifr.ifr_hwaddr.sa_family = hwaddr_family;
3517     memcpy(ifr.ifr_hwaddr.sa_data, mac, ETH_ADDR_LEN);
3518     COVERAGE_INC(netdev_set_hwaddr);
3519     if (ioctl(af_inet_sock, SIOCSIFHWADDR, &ifr) < 0) {
3520         VLOG_ERR("ioctl(SIOCSIFHWADDR) on %s device failed: %s",
3521                  netdev_name, strerror(errno));
3522         return errno;
3523     }
3524     return 0;
3525 }
3526
3527 static int
3528 netdev_linux_do_ethtool(const char *name, struct ethtool_cmd *ecmd,
3529                         int cmd, const char *cmd_name)
3530 {
3531     struct ifreq ifr;
3532
3533     memset(&ifr, 0, sizeof ifr);
3534     strncpy(ifr.ifr_name, name, sizeof ifr.ifr_name);
3535     ifr.ifr_data = (caddr_t) ecmd;
3536
3537     ecmd->cmd = cmd;
3538     COVERAGE_INC(netdev_ethtool);
3539     if (ioctl(af_inet_sock, SIOCETHTOOL, &ifr) == 0) {
3540         return 0;
3541     } else {
3542         if (errno != EOPNOTSUPP) {
3543             VLOG_WARN_RL(&rl, "ethtool command %s on network device %s "
3544                          "failed: %s", cmd_name, name, strerror(errno));
3545         } else {
3546             /* The device doesn't support this operation.  That's pretty
3547              * common, so there's no point in logging anything. */
3548         }
3549         return errno;
3550     }
3551 }
3552
3553 static int
3554 netdev_linux_do_ioctl(const char *name, struct ifreq *ifr, int cmd,
3555                       const char *cmd_name)
3556 {
3557     strncpy(ifr->ifr_name, name, sizeof ifr->ifr_name);
3558     if (ioctl(af_inet_sock, cmd, ifr) == -1) {
3559         VLOG_DBG_RL(&rl, "%s: ioctl(%s) failed: %s", name, cmd_name,
3560                      strerror(errno));
3561         return errno;
3562     }
3563     return 0;
3564 }
3565
3566 static int
3567 netdev_linux_get_ipv4(const struct netdev *netdev, struct in_addr *ip,
3568                       int cmd, const char *cmd_name)
3569 {
3570     struct ifreq ifr;
3571     int error;
3572
3573     ifr.ifr_addr.sa_family = AF_INET;
3574     error = netdev_linux_do_ioctl(netdev_get_name(netdev), &ifr, cmd, cmd_name);
3575     if (!error) {
3576         const struct sockaddr_in *sin = (struct sockaddr_in *) &ifr.ifr_addr;
3577         *ip = sin->sin_addr;
3578     }
3579     return error;
3580 }