netdev: Fix carrier status for down interfaces.
[sliver-openvswitch.git] / lib / netdev.h
1 /*
2  * Copyright (c) 2008, 2009, 2010 Nicira Networks.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at:
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #ifndef NETDEV_H
18 #define NETDEV_H 1
19
20 #include <stdbool.h>
21 #include <stddef.h>
22 #include <stdint.h>
23
24 #ifdef  __cplusplus
25 extern "C" {
26 #endif
27
28 /* Generic interface to network devices.
29  *
30  * Currently, there is a single implementation of this interface that supports
31  * Linux.  The interface should be generic enough to be implementable on other
32  * operating systems as well. */
33
34 struct ofpbuf;
35 struct in_addr;
36 struct in6_addr;
37 struct shash;
38 struct svec;
39
40 enum netdev_flags {
41     NETDEV_UP = 0x0001,         /* Device enabled? */
42     NETDEV_PROMISC = 0x0002,    /* Promiscuous mode? */
43     NETDEV_LOOPBACK = 0x0004    /* This is a loopback device. */
44 };
45
46 enum netdev_pseudo_ethertype {
47     NETDEV_ETH_TYPE_NONE = -128, /* Receive no frames. */
48     NETDEV_ETH_TYPE_ANY,         /* Receive all frames. */
49     NETDEV_ETH_TYPE_802_2        /* Receive all IEEE 802.2 frames. */
50 };
51
52 /* Network device statistics.
53  *
54  * Values of unsupported statistics are set to all-1-bits (UINT64_MAX). */
55 struct netdev_stats {
56     uint64_t rx_packets;        /* Total packets received. */
57     uint64_t tx_packets;        /* Total packets transmitted. */
58     uint64_t rx_bytes;          /* Total bytes received. */
59     uint64_t tx_bytes;          /* Total bytes transmitted. */
60     uint64_t rx_errors;         /* Bad packets received. */
61     uint64_t tx_errors;         /* Packet transmit problems. */
62     uint64_t rx_dropped;        /* No buffer space. */
63     uint64_t tx_dropped;        /* No buffer space. */
64     uint64_t multicast;         /* Multicast packets received. */
65     uint64_t collisions;
66
67     /* Detailed receive errors. */
68     uint64_t rx_length_errors;
69     uint64_t rx_over_errors;    /* Receiver ring buff overflow. */
70     uint64_t rx_crc_errors;     /* Recved pkt with crc error. */
71     uint64_t rx_frame_errors;   /* Recv'd frame alignment error. */
72     uint64_t rx_fifo_errors;    /* Recv'r fifo overrun . */
73     uint64_t rx_missed_errors;  /* Receiver missed packet. */
74
75     /* Detailed transmit errors. */
76     uint64_t tx_aborted_errors;
77     uint64_t tx_carrier_errors;
78     uint64_t tx_fifo_errors;
79     uint64_t tx_heartbeat_errors;
80     uint64_t tx_window_errors;
81 };
82
83 struct netdev_options {
84     const char *name;
85     const char *type;
86     const struct shash *args;
87     int ethertype;
88 };
89
90 struct netdev;
91 struct netdev_class;
92
93 void netdev_run(void);
94 void netdev_wait(void);
95
96 int netdev_register_provider(const struct netdev_class *);
97 int netdev_unregister_provider(const char *type);
98 void netdev_enumerate_types(struct svec *types);
99
100 /* Open and close. */
101 int netdev_open(struct netdev_options *, struct netdev **);
102 int netdev_open_default(const char *name, struct netdev **);
103 int netdev_reconfigure(struct netdev *, const struct shash *args);
104 void netdev_close(struct netdev *);
105
106 bool netdev_exists(const char *name);
107 bool netdev_is_open(const char *name);
108
109 int netdev_enumerate(struct svec *);
110
111 /* Basic properties. */
112 const char *netdev_get_name(const struct netdev *);
113 const char *netdev_get_type(const struct netdev *);
114 int netdev_get_mtu(const struct netdev *, int *mtup);
115 int netdev_get_ifindex(const struct netdev *);
116
117 /* Packet send and receive. */
118 int netdev_recv(struct netdev *, struct ofpbuf *);
119 void netdev_recv_wait(struct netdev *);
120 int netdev_drain(struct netdev *);
121
122 int netdev_send(struct netdev *, const struct ofpbuf *);
123 void netdev_send_wait(struct netdev *);
124
125 /* Hardware address. */
126 int netdev_set_etheraddr(struct netdev *, const uint8_t mac[6]);
127 int netdev_get_etheraddr(const struct netdev *, uint8_t mac[6]);
128
129 /* PHY interface. */
130 bool netdev_get_carrier(const struct netdev *);
131 int netdev_get_features(struct netdev *,
132                         uint32_t *current, uint32_t *advertised,
133                         uint32_t *supported, uint32_t *peer);
134 uint64_t netdev_features_to_bps(uint32_t features);
135 bool netdev_features_is_full_duplex(uint32_t features);
136 int netdev_set_advertisements(struct netdev *, uint32_t advertise);
137
138 /* TCP/IP stack interface. */
139 int netdev_get_in4(const struct netdev *, struct in_addr *address,
140                    struct in_addr *netmask);
141 int netdev_set_in4(struct netdev *, struct in_addr addr, struct in_addr mask);
142 int netdev_get_in6(const struct netdev *, struct in6_addr *);
143 int netdev_add_router(struct netdev *, struct in_addr router);
144 int netdev_get_next_hop(const struct netdev *, const struct in_addr *host,
145                         struct in_addr *next_hop, char **);
146 int netdev_arp_lookup(const struct netdev *, uint32_t ip, uint8_t mac[6]);
147
148 int netdev_get_flags(const struct netdev *, enum netdev_flags *);
149 int netdev_set_flags(struct netdev *, enum netdev_flags, bool permanent);
150 int netdev_turn_flags_on(struct netdev *, enum netdev_flags, bool permanent);
151 int netdev_turn_flags_off(struct netdev *, enum netdev_flags, bool permanent);
152 struct netdev *netdev_find_dev_by_in4(const struct in_addr *);
153
154 /* Statistics. */
155 int netdev_get_stats(const struct netdev *, struct netdev_stats *);
156 int netdev_set_stats(struct netdev *, const struct netdev_stats *);
157
158 /* Quality of service. */
159 struct netdev_qos_capabilities {
160     unsigned int n_queues;
161 };
162
163 struct netdev_queue_stats {
164     /* Values of unsupported statistics are set to all-1-bits (UINT64_MAX). */
165     uint64_t tx_bytes;
166     uint64_t tx_packets;
167     uint64_t tx_errors;
168 };
169
170 int netdev_set_policing(struct netdev *, uint32_t kbits_rate,
171                         uint32_t kbits_burst);
172
173 int netdev_get_qos_types(const struct netdev *, struct svec *types);
174 int netdev_get_qos_capabilities(const struct netdev *,
175                                 const char *type,
176                                 struct netdev_qos_capabilities *);
177 int netdev_get_n_queues(const struct netdev *,
178                         const char *type, unsigned int *n_queuesp);
179
180 int netdev_get_qos(const struct netdev *,
181                    const char **typep, struct shash *details);
182 int netdev_set_qos(struct netdev *,
183                    const char *type, const struct shash *details);
184
185 int netdev_get_queue(const struct netdev *,
186                      unsigned int queue_id, struct shash *details);
187 int netdev_set_queue(struct netdev *,
188                      unsigned int queue_id, const struct shash *details);
189 int netdev_delete_queue(struct netdev *, unsigned int queue_id);
190 int netdev_get_queue_stats(const struct netdev *, unsigned int queue_id,
191                            struct netdev_queue_stats *);
192
193 typedef void netdev_dump_queues_cb(unsigned int queue_id,
194                                    const struct shash *details, void *aux);
195 int netdev_dump_queues(const struct netdev *,
196                        netdev_dump_queues_cb *, void *aux);
197
198 typedef void netdev_dump_queue_stats_cb(unsigned int queue_id,
199                                         struct netdev_queue_stats *,
200                                         void *aux);
201 int netdev_dump_queue_stats(const struct netdev *,
202                             netdev_dump_queue_stats_cb *, void *aux);
203
204 /* Linux stuff. */
205 int netdev_get_vlan_vid(const struct netdev *, int *vlan_vid);
206
207 /* Monitoring for changes in network device status. */
208 struct netdev_monitor *netdev_monitor_create(void);
209 void netdev_monitor_destroy(struct netdev_monitor *);
210 int netdev_monitor_add(struct netdev_monitor *, struct netdev *);
211 void netdev_monitor_remove(struct netdev_monitor *, struct netdev *);
212 int netdev_monitor_poll(struct netdev_monitor *, char **devnamep);
213 void netdev_monitor_poll_wait(const struct netdev_monitor *);
214
215 #ifdef  __cplusplus
216 }
217 #endif
218
219 #endif /* netdev.h */