ofproto: Update facet stats when used time increases.
[sliver-openvswitch.git] / ofproto / discovery.c
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 #include <config.h>
18 #include "discovery.h"
19 #include <errno.h>
20 #include <inttypes.h>
21 #include <sys/socket.h>
22 #include <net/if.h>
23 #include <regex.h>
24 #include <stdlib.h>
25 #include <string.h>
26 #include "dhcp-client.h"
27 #include "dhcp.h"
28 #include "dpif.h"
29 #include "netdev.h"
30 #include "openflow/openflow.h"
31 #include "packets.h"
32 #include "status.h"
33 #include "stream-ssl.h"
34 #include "vlog.h"
35
36 VLOG_DEFINE_THIS_MODULE(discovery);
37
38 struct discovery {
39     char *dpif_name;
40     char *re;
41     bool update_resolv_conf;
42     regex_t *regex;
43     struct dhclient *dhcp;
44     int n_changes;
45     struct status_category *ss_cat;
46 };
47
48 static void modify_dhcp_request(struct dhcp_msg *, void *aux);
49 static bool validate_dhcp_offer(const struct dhcp_msg *, void *aux);
50
51 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(60, 60);
52
53 static void
54 discovery_status_cb(struct status_reply *sr, void *d_)
55 {
56     struct discovery *d = d_;
57
58     status_reply_put(sr, "accept-remote=%s", d->re);
59     status_reply_put(sr, "n-changes=%d", d->n_changes);
60     if (d->dhcp) {
61         status_reply_put(sr, "state=%s", dhclient_get_state(d->dhcp));
62         status_reply_put(sr, "state-elapsed=%u",
63                          dhclient_get_state_elapsed(d->dhcp));
64         if (dhclient_is_bound(d->dhcp)) {
65             uint32_t ip = dhclient_get_ip(d->dhcp);
66             uint32_t netmask = dhclient_get_netmask(d->dhcp);
67             uint32_t router = dhclient_get_router(d->dhcp);
68
69             const struct dhcp_msg *cfg = dhclient_get_config(d->dhcp);
70             uint32_t dns_server;
71             char *domain_name;
72             int i;
73
74             status_reply_put(sr, "ip="IP_FMT, IP_ARGS(&ip));
75             status_reply_put(sr, "netmask="IP_FMT, IP_ARGS(&netmask));
76             if (router) {
77                 status_reply_put(sr, "router="IP_FMT, IP_ARGS(&router));
78             }
79
80             for (i = 0; dhcp_msg_get_ip(cfg, DHCP_CODE_DNS_SERVER, i,
81                                         &dns_server);
82                  i++) {
83                 status_reply_put(sr, "dns%d="IP_FMT, i, IP_ARGS(&dns_server));
84             }
85
86             domain_name = dhcp_msg_get_string(cfg, DHCP_CODE_DOMAIN_NAME);
87             if (domain_name) {
88                 status_reply_put(sr, "domain=%s", domain_name);
89                 free(domain_name);
90             }
91
92             status_reply_put(sr, "lease-remaining=%u",
93                              dhclient_get_lease_remaining(d->dhcp));
94         }
95     }
96 }
97
98 int
99 discovery_create(const char *re, bool update_resolv_conf,
100                  struct dpif *dpif, struct switch_status *ss,
101                  struct discovery **discoveryp)
102 {
103     struct discovery *d;
104     char local_name[IF_NAMESIZE];
105     int error;
106
107     d = xzalloc(sizeof *d);
108
109     d->dpif_name = xstrdup(dpif_base_name(dpif));
110
111     /* Controller regular expression. */
112     error = discovery_set_accept_controller_re(d, re);
113     if (error) {
114         goto error_free;
115     }
116     d->update_resolv_conf = update_resolv_conf;
117
118     /* Initialize DHCP client. */
119     error = dpif_port_get_name(dpif, ODPP_LOCAL,
120                                local_name, sizeof local_name);
121     if (error) {
122         VLOG_ERR("%s: failed to query datapath local port: %s",
123                  d->dpif_name, strerror(error));
124         goto error_regfree;
125     }
126     error = dhclient_create(local_name, modify_dhcp_request,
127                             validate_dhcp_offer, d, &d->dhcp);
128     if (error) {
129         VLOG_ERR("%s: failed to initialize DHCP client: %s",
130                  d->dpif_name, strerror(error));
131         goto error_regfree;
132     }
133     dhclient_set_max_timeout(d->dhcp, 3);
134     dhclient_init(d->dhcp, 0);
135
136     d->ss_cat = switch_status_register(ss, "discovery",
137                                        discovery_status_cb, d);
138
139     *discoveryp = d;
140     return 0;
141
142 error_regfree:
143     regfree(d->regex);
144     free(d->regex);
145 error_free:
146     free(d->dpif_name);
147     free(d);
148     *discoveryp = 0;
149     return error;
150 }
151
152 void
153 discovery_destroy(struct discovery *d)
154 {
155     if (d) {
156         free(d->re);
157         regfree(d->regex);
158         free(d->regex);
159         dhclient_destroy(d->dhcp);
160         switch_status_unregister(d->ss_cat);
161         free(d->dpif_name);
162         free(d);
163     }
164 }
165
166 bool
167 discovery_get_update_resolv_conf(const struct discovery *d)
168 {
169     return d->update_resolv_conf;
170 }
171
172 void
173 discovery_set_update_resolv_conf(struct discovery *d,
174                                  bool update_resolv_conf)
175 {
176     d->update_resolv_conf = update_resolv_conf;
177 }
178
179 const char *
180 discovery_get_accept_controller_re(const struct discovery *d)
181 {
182     return d->re;
183 }
184
185 int
186 discovery_set_accept_controller_re(struct discovery *d, const char *re_)
187 {
188     regex_t *regex;
189     int error;
190     char *re;
191
192     re = (!re_ ? xstrdup(stream_ssl_is_configured() ? "^ssl:.*" : "^tcp:.*")
193           : re_[0] == '^' ? xstrdup(re_) : xasprintf("^%s", re_));
194     regex = xmalloc(sizeof *regex);
195     error = regcomp(regex, re, REG_NOSUB | REG_EXTENDED);
196     if (error) {
197         size_t length = regerror(error, regex, NULL, 0);
198         char *buffer = xmalloc(length);
199         regerror(error, regex, buffer, length);
200         VLOG_WARN("%s: %s: %s", d->dpif_name, re, buffer);
201         free(buffer);
202         free(regex);
203         free(re);
204         return EINVAL;
205     } else {
206         if (d->regex) {
207             regfree(d->regex);
208             free(d->regex);
209         }
210         free(d->re);
211
212         d->regex = regex;
213         d->re = re;
214         return 0;
215     }
216 }
217
218 void
219 discovery_question_connectivity(struct discovery *d)
220 {
221     if (d->dhcp) {
222         dhclient_force_renew(d->dhcp, 15);
223     }
224 }
225
226 bool
227 discovery_run(struct discovery *d, char **controller_name)
228 {
229     if (!d->dhcp) {
230         *controller_name = NULL;
231         return true;
232     }
233
234     dhclient_run(d->dhcp);
235     if (!dhclient_changed(d->dhcp)) {
236         return false;
237     }
238
239     dhclient_configure_netdev(d->dhcp);
240     if (d->update_resolv_conf) {
241         dhclient_update_resolv_conf(d->dhcp);
242     }
243
244     if (dhclient_is_bound(d->dhcp)) {
245         *controller_name = dhcp_msg_get_string(dhclient_get_config(d->dhcp),
246                                                DHCP_CODE_OFP_CONTROLLER_VCONN);
247         VLOG_INFO("%s: discovered controller %s",
248                   d->dpif_name, *controller_name);
249         d->n_changes++;
250     } else {
251         *controller_name = NULL;
252         if (d->n_changes) {
253             VLOG_INFO("%s: discovered controller no longer available",
254                       d->dpif_name);
255             d->n_changes++;
256         }
257     }
258     return true;
259 }
260
261 void
262 discovery_wait(struct discovery *d)
263 {
264     if (d->dhcp) {
265         dhclient_wait(d->dhcp);
266     }
267 }
268
269 static void
270 modify_dhcp_request(struct dhcp_msg *msg, void *aux OVS_UNUSED)
271 {
272     dhcp_msg_put_string(msg, DHCP_CODE_VENDOR_CLASS, "OpenFlow");
273 }
274
275 static bool
276 validate_dhcp_offer(const struct dhcp_msg *msg, void *d_)
277 {
278     const struct discovery *d = d_;
279     char *vconn_name;
280     bool accept;
281
282     vconn_name = dhcp_msg_get_string(msg, DHCP_CODE_OFP_CONTROLLER_VCONN);
283     if (!vconn_name) {
284         VLOG_WARN_RL(&rl, "%s: rejecting DHCP offer missing controller vconn",
285                      d->dpif_name);
286         return false;
287     }
288     accept = !regexec(d->regex, vconn_name, 0, NULL, 0);
289     if (!accept) {
290         VLOG_WARN_RL(&rl, "%s: rejecting controller vconn that fails to "
291                      "match %s", d->dpif_name, d->re);
292     }
293     free(vconn_name);
294     return accept;
295 }