ovs-brcompatd: Fix dangling reference in del_port().
[sliver-openvswitch.git] / vswitchd / ovs-brcompatd.c
1 /* Copyright (c) 2008, 2009, 2010 Nicira Networks
2  *
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at:
6  *
7  *     http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15
16 #include <config.h>
17
18 #include <asm/param.h>
19 #include <assert.h>
20 #include <errno.h>
21 #include <getopt.h>
22 #include <inttypes.h>
23 #include <limits.h>
24 #include <net/if.h>
25 #include <linux/genetlink.h>
26 #include <linux/rtnetlink.h>
27 #include <signal.h>
28 #include <stdlib.h>
29 #include <string.h>
30 #include <sys/types.h>
31 #include <sys/stat.h>
32 #include <time.h>
33 #include <fcntl.h>
34 #include <unistd.h>
35
36 #include "command-line.h"
37 #include "coverage.h"
38 #include "daemon.h"
39 #include "dirs.h"
40 #include "dynamic-string.h"
41 #include "fatal-signal.h"
42 #include "leak-checker.h"
43 #include "netdev.h"
44 #include "netlink.h"
45 #include "ofpbuf.h"
46 #include "openvswitch/brcompat-netlink.h"
47 #include "ovsdb-idl.h"
48 #include "packets.h"
49 #include "poll-loop.h"
50 #include "process.h"
51 #include "signals.h"
52 #include "svec.h"
53 #include "timeval.h"
54 #include "unixctl.h"
55 #include "util.h"
56 #include "vswitchd/vswitch-idl.h"
57
58 #include "vlog.h"
59 #define THIS_MODULE VLM_brcompatd
60
61
62 /* xxx Just hangs if datapath is rmmod/insmod.  Learn to reconnect? */
63
64 /* Actions to modify bridge compatibility configuration. */
65 enum bmc_action {
66     BMC_ADD_DP,
67     BMC_DEL_DP,
68     BMC_ADD_PORT,
69     BMC_DEL_PORT
70 };
71
72 static const char *parse_options(int argc, char *argv[]);
73 static void usage(void) NO_RETURN;
74
75 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(5, 60);
76
77 /* Maximum number of milliseconds to wait before pruning port entries that 
78  * no longer exist.  If set to zero, ports are never pruned. */
79 static int prune_timeout = 5000;
80
81 /* Shell command to execute (via popen()) to send a control command to the
82  * running ovs-vswitchd process.  The string must contain one instance of %s,
83  * which is replaced by the control command. */
84 static char *appctl_command;
85
86 /* Netlink socket to listen for interface changes. */
87 static struct nl_sock *rtnl_sock;
88
89 /* Netlink socket to bridge compatibility kernel module. */
90 static struct nl_sock *brc_sock;
91
92 /* The Generic Netlink family number used for bridge compatibility. */
93 static int brc_family;
94
95 static const struct nl_policy brc_multicast_policy[] = {
96     [BRC_GENL_A_MC_GROUP] = {.type = NL_A_U32 }
97 };
98
99 static const struct nl_policy rtnlgrp_link_policy[] = {
100     [IFLA_IFNAME] = { .type = NL_A_STRING, .optional = false },
101     [IFLA_MASTER] = { .type = NL_A_U32, .optional = true },
102 };
103
104 static int
105 lookup_brc_multicast_group(int *multicast_group)
106 {
107     struct nl_sock *sock;
108     struct ofpbuf request, *reply;
109     struct nlattr *attrs[ARRAY_SIZE(brc_multicast_policy)];
110     int retval;
111
112     retval = nl_sock_create(NETLINK_GENERIC, 0, 0, 0, &sock);
113     if (retval) {
114         return retval;
115     }
116     ofpbuf_init(&request, 0);
117     nl_msg_put_genlmsghdr(&request, sock, 0, brc_family,
118             NLM_F_REQUEST, BRC_GENL_C_QUERY_MC, 1);
119     retval = nl_sock_transact(sock, &request, &reply);
120     ofpbuf_uninit(&request);
121     if (retval) {
122         nl_sock_destroy(sock);
123         return retval;
124     }
125     if (!nl_policy_parse(reply, NLMSG_HDRLEN + GENL_HDRLEN,
126                          brc_multicast_policy, attrs,
127                          ARRAY_SIZE(brc_multicast_policy))) {
128         nl_sock_destroy(sock);
129         ofpbuf_delete(reply);
130         return EPROTO;
131     }
132     *multicast_group = nl_attr_get_u32(attrs[BRC_GENL_A_MC_GROUP]);
133     nl_sock_destroy(sock);
134     ofpbuf_delete(reply);
135
136     return 0;
137 }
138
139 /* Opens a socket for brcompat notifications.  Returns 0 if successful,
140  * otherwise a positive errno value. */
141 static int
142 brc_open(struct nl_sock **sock)
143 {
144     int multicast_group = 0;
145     int retval;
146
147     retval = nl_lookup_genl_family(BRC_GENL_FAMILY_NAME, &brc_family);
148     if (retval) {
149         return retval;
150     }
151
152     retval = lookup_brc_multicast_group(&multicast_group);
153     if (retval) {
154         return retval;
155     }
156
157     retval = nl_sock_create(NETLINK_GENERIC, multicast_group, 0, 0, sock);
158     if (retval) {
159         return retval;
160     }
161
162     return 0;
163 }
164
165 static const struct nl_policy brc_dp_policy[] = {
166     [BRC_GENL_A_DP_NAME] = { .type = NL_A_STRING },
167 };
168
169 static struct ovsrec_bridge *
170 find_bridge(const struct ovsrec_open_vswitch *ovs, const char *br_name)
171 {
172     size_t i;
173
174     for (i = 0; i < ovs->n_bridges; i++) {
175         if (!strcmp(br_name, ovs->bridges[i]->name)) {
176             return ovs->bridges[i];
177         }
178     }
179
180     return NULL;
181 }
182
183 static int
184 execute_appctl_command(const char *unixctl_command, char **output)
185 {
186     char *stdout_log, *stderr_log;
187     int error, status;
188     char *argv[5];
189
190     argv[0] = "/bin/sh";
191     argv[1] = "-c";
192     argv[2] = xasprintf(appctl_command, unixctl_command);
193     argv[3] = NULL;
194
195     /* Run process and log status. */
196     error = process_run_capture(argv, &stdout_log, &stderr_log, &status);
197     if (error) {
198         VLOG_ERR("failed to execute %s command via ovs-appctl: %s",
199                  unixctl_command, strerror(error));
200     } else if (status) {
201         char *msg = process_status_msg(status);
202         VLOG_ERR("ovs-appctl exited with error (%s)", msg);
203         free(msg);
204         error = ECHILD;
205     }
206
207     /* Deal with stdout_log. */
208     if (output) {
209         *output = stdout_log;
210     } else {
211         free(stdout_log);
212     }
213
214     /* Deal with stderr_log */
215     if (stderr_log && *stderr_log) {
216         VLOG_INFO("ovs-appctl wrote to stderr:\n%s", stderr_log);
217     }
218     free(stderr_log);
219
220     free(argv[2]);
221
222     return error;
223 }
224
225 static void
226 do_get_bridge_parts(const struct ovsrec_bridge *br, struct svec *parts, 
227                     int vlan, bool break_down_bonds)
228 {
229     struct svec ports;
230     size_t i, j;
231
232     svec_init(&ports);
233     for (i = 0; i < br->n_ports; i++) {
234         const struct ovsrec_port *port = br->ports[i];
235
236         svec_add(&ports, port->name);
237         if (vlan >= 0) {
238             int port_vlan = port->n_tag ? *port->tag : 0;
239             if (vlan != port_vlan) {
240                 continue;
241             }
242         }
243         if (break_down_bonds) {
244             for (j = 0; j < port->n_interfaces; j++) {
245                 const struct ovsrec_interface *iface = port->interfaces[j];
246                 svec_add(parts, iface->name);
247             }
248         } else {
249             svec_add(parts, port->name);
250         }
251     }
252     svec_destroy(&ports);
253 }
254
255 /* Add all the interfaces for 'bridge' to 'ifaces', breaking bonded interfaces
256  * down into their constituent parts.
257  *
258  * If 'vlan' < 0, all interfaces on 'bridge' are reported.  If 'vlan' == 0,
259  * then only interfaces for trunk ports or ports with implicit VLAN 0 are
260  * reported.  If 'vlan' > 0, only interfaces with implicit VLAN 'vlan' are
261  * reported.  */
262 static void
263 get_bridge_ifaces(const struct ovsrec_bridge *br, struct svec *ifaces, 
264                   int vlan)
265 {
266     do_get_bridge_parts(br, ifaces, vlan, true);
267 }
268
269 /* Add all the ports for 'bridge' to 'ports'.  Bonded ports are reported under
270  * the bond name, not broken down into their constituent interfaces.
271  *
272  * If 'vlan' < 0, all ports on 'bridge' are reported.  If 'vlan' == 0, then
273  * only trunk ports or ports with implicit VLAN 0 are reported.  If 'vlan' > 0,
274  * only port with implicit VLAN 'vlan' are reported.  */
275 static void
276 get_bridge_ports(const struct ovsrec_bridge *br, struct svec *ports, 
277                  int vlan)
278 {
279     do_get_bridge_parts(br, ports, vlan, false);
280 }
281
282 #if 0
283 /* Go through the configuration file and remove any ports that no longer
284  * exist associated with a bridge. */
285 static void
286 prune_ports(void)
287 {
288     int i, j;
289     struct svec bridges, delete;
290
291     if (cfg_lock(NULL, 0)) {
292         /* Couldn't lock config file. */
293         return;
294     }
295
296     svec_init(&bridges);
297     svec_init(&delete);
298     cfg_get_subsections(&bridges, "bridge");
299     for (i=0; i<bridges.n; i++) {
300         const char *br_name = bridges.names[i];
301         struct svec ifaces;
302
303         /* Check that each bridge interface exists. */
304         svec_init(&ifaces);
305         get_bridge_ifaces(br_name, &ifaces, -1);
306         for (j = 0; j < ifaces.n; j++) {
307             const char *iface_name = ifaces.names[j];
308
309             /* The local port and internal ports are created and destroyed by
310              * ovs-vswitchd itself, so don't bother checking for them at all.
311              * In practice, they might not exist if ovs-vswitchd hasn't
312              * finished reloading since the configuration file was updated. */
313             if (!strcmp(iface_name, br_name)
314                 || cfg_get_bool(0, "iface.%s.internal", iface_name)) {
315                 continue;
316             }
317
318             if (!netdev_exists(iface_name)) {
319                 VLOG_INFO_RL(&rl, "removing dead interface %s from %s",
320                              iface_name, br_name);
321                 svec_add(&delete, iface_name);
322             }
323         }
324         svec_destroy(&ifaces);
325     }
326     svec_destroy(&bridges);
327
328     if (delete.n) {
329         size_t i;
330
331         for (i = 0; i < delete.n; i++) {
332             cfg_del_match("bridge.*.port=%s", delete.names[i]);
333             cfg_del_match("bonding.*.slave=%s", delete.names[i]);
334         }
335         reload_config();
336         cfg_unlock();
337     } else {
338         cfg_unlock();
339     }
340     svec_destroy(&delete);
341 }
342 #endif
343
344 static struct ovsdb_idl_txn *
345 txn_from_openvswitch(const struct ovsrec_open_vswitch *ovs)
346 {
347     return ovsdb_idl_txn_get(&ovs->header_);
348 }
349
350 static bool
351 port_is_fake_bridge(const struct ovsrec_port *port)
352 {
353     return (port->fake_bridge
354             && port->tag
355             && *port->tag >= 1 && *port->tag <= 4095);
356 }
357
358 static void
359 ovs_insert_bridge(const struct ovsrec_open_vswitch *ovs,
360                   struct ovsrec_bridge *bridge)
361 {
362     struct ovsrec_bridge **bridges;
363     size_t i;     
364
365     bridges = xmalloc(sizeof *ovs->bridges * (ovs->n_bridges + 1));
366     for (i = 0; i < ovs->n_bridges; i++) {
367         bridges[i] = ovs->bridges[i];
368     }
369     bridges[ovs->n_bridges] = bridge;
370     ovsrec_open_vswitch_set_bridges(ovs, bridges, ovs->n_bridges + 1);
371     free(bridges);
372 }   
373
374 static int
375 add_bridge(const struct ovsrec_open_vswitch *ovs, const char *br_name)
376 {
377     struct ovsrec_bridge *br;
378     struct ovsrec_port *port;
379     struct ovsrec_interface *iface;
380
381     if (find_bridge(ovs, br_name)) {
382         VLOG_WARN("addbr %s: bridge %s exists", br_name, br_name);
383         return EEXIST;
384     } else if (netdev_exists(br_name)) {
385         size_t i;
386
387         for (i = 0; i < ovs->n_bridges; i++) {
388             size_t j;
389             struct ovsrec_bridge *br_cfg = ovs->bridges[i];
390
391             for (j = 0; j < br_cfg->n_ports; j++) {
392                 if (port_is_fake_bridge(br_cfg->ports[j])) {
393                     VLOG_WARN("addbr %s: %s exists as a fake bridge",
394                               br_name, br_name);
395                     return 0;
396                 }
397             }
398         }
399
400         VLOG_WARN("addbr %s: cannot create bridge %s because a network "
401                   "device named %s already exists",
402                   br_name, br_name, br_name);
403         return EEXIST;
404     }
405
406     iface = ovsrec_interface_insert(txn_from_openvswitch(ovs));
407     ovsrec_interface_set_name(iface, br_name);
408
409     port = ovsrec_port_insert(txn_from_openvswitch(ovs));
410     ovsrec_port_set_name(port, br_name);
411     ovsrec_port_set_interfaces(port, &iface, 1);
412     
413     br = ovsrec_bridge_insert(txn_from_openvswitch(ovs));
414     ovsrec_bridge_set_name(br, br_name);
415     ovsrec_bridge_set_ports(br, &port, 1);
416     
417     ovs_insert_bridge(ovs, br);
418
419     VLOG_INFO("addbr %s: success", br_name);
420
421     return 0;
422 }
423
424 static void
425 add_port(const struct ovsrec_open_vswitch *ovs, 
426          const struct ovsrec_bridge *br, const char *port_name)
427 {
428     struct ovsrec_interface *iface;
429     struct ovsrec_port *port;
430     struct ovsrec_port **ports;
431     size_t i;
432
433     /* xxx Check conflicts? */
434     iface = ovsrec_interface_insert(txn_from_openvswitch(ovs));
435     ovsrec_interface_set_name(iface, port_name);
436
437     port = ovsrec_port_insert(txn_from_openvswitch(ovs));
438     ovsrec_port_set_name(port, port_name);
439     ovsrec_port_set_interfaces(port, &iface, 1);
440
441     ports = xmalloc(sizeof *br->ports * (br->n_ports + 1));
442     for (i = 0; i < br->n_ports; i++) {
443         ports[i] = br->ports[i];
444     }
445     ports[br->n_ports] = port;
446     ovsrec_bridge_set_ports(br, ports, br->n_ports + 1);
447     free(ports);
448 }
449
450 static void
451 del_port(const struct ovsrec_bridge *br, const char *port_name)
452 {
453     size_t i, j;
454     struct ovsrec_port *port_rec = NULL;
455
456     for (i = 0; i < br->n_ports; i++) {
457         struct ovsrec_port *port = br->ports[i];
458         if (!strcmp(port_name, port->name)) {
459             port_rec = port;
460         }
461         for (j = 0; j < port->n_interfaces; j++) {
462             struct ovsrec_interface *iface = port->interfaces[j];
463             if (!strcmp(port_name, iface->name)) {
464                 ovsrec_interface_delete(iface);
465             }
466         }
467     }
468
469     /* xxx Probably can move this into the "for" loop. */
470     if (port_rec) {
471         struct ovsrec_port **ports;
472         size_t n;
473
474         ports = xmalloc(sizeof *br->ports * br->n_ports);
475         for (i = n = 0; i < br->n_ports; i++) {
476             if (br->ports[i] != port_rec) {
477                 ports[n++] = br->ports[i];
478             }
479         }
480         ovsrec_bridge_set_ports(br, ports, n);
481         free(ports);
482
483         ovsrec_port_delete(port_rec);
484     }
485 }
486
487 static int 
488 del_bridge(const struct ovsrec_open_vswitch *ovs, const char *br_name)
489 {
490     struct ovsrec_bridge *br = find_bridge(ovs, br_name);
491     struct ovsrec_bridge **bridges;
492     size_t i, n;
493
494     if (!br) {
495         VLOG_WARN("delbr %s: no bridge named %s", br_name, br_name);
496         return ENXIO;
497     }
498
499     del_port(br, br_name);
500
501     ovsrec_bridge_delete(br);
502
503     bridges = xmalloc(sizeof *ovs->bridges * ovs->n_bridges);
504     for (i = n = 0; i < ovs->n_bridges; i++) {
505         if (ovs->bridges[i] != br) {
506             bridges[n++] = ovs->bridges[i];
507         }
508     }
509     ovsrec_open_vswitch_set_bridges(ovs, bridges, n);
510     free(bridges);
511
512     VLOG_INFO("delbr %s: success", br_name);
513
514     return 0;
515 }
516
517 static int
518 parse_command(struct ofpbuf *buffer, uint32_t *seq, const char **br_name,
519               const char **port_name, uint64_t *count, uint64_t *skip)
520 {
521     static const struct nl_policy policy[] = {
522         [BRC_GENL_A_DP_NAME] = { .type = NL_A_STRING, .optional = true },
523         [BRC_GENL_A_PORT_NAME] = { .type = NL_A_STRING, .optional = true },
524         [BRC_GENL_A_FDB_COUNT] = { .type = NL_A_U64, .optional = true },
525         [BRC_GENL_A_FDB_SKIP] = { .type = NL_A_U64, .optional = true },
526     };
527     struct nlattr *attrs[ARRAY_SIZE(policy)];
528
529     if (!nl_policy_parse(buffer, NLMSG_HDRLEN + GENL_HDRLEN, policy,
530                          attrs, ARRAY_SIZE(policy))
531         || (br_name && !attrs[BRC_GENL_A_DP_NAME])
532         || (port_name && !attrs[BRC_GENL_A_PORT_NAME])
533         || (count && !attrs[BRC_GENL_A_FDB_COUNT])
534         || (skip && !attrs[BRC_GENL_A_FDB_SKIP])) {
535         return EINVAL;
536     }
537
538     *seq = ((struct nlmsghdr *) buffer->data)->nlmsg_seq;
539     if (br_name) {
540         *br_name = nl_attr_get_string(attrs[BRC_GENL_A_DP_NAME]);
541     }
542     if (port_name) {
543         *port_name = nl_attr_get_string(attrs[BRC_GENL_A_PORT_NAME]);
544     }
545     if (count) {
546         *count = nl_attr_get_u64(attrs[BRC_GENL_A_FDB_COUNT]);
547     }
548     if (skip) {
549         *skip = nl_attr_get_u64(attrs[BRC_GENL_A_FDB_SKIP]);
550     }
551     return 0;
552 }
553
554 /* Composes and returns a reply to a request made by the datapath with Netlink
555  * sequence number 'seq' and error code 'error'.  The caller may add additional
556  * attributes to the message, then it may send it with send_reply(). */
557 static struct ofpbuf *
558 compose_reply(uint32_t seq, int error)
559 {
560     struct ofpbuf *reply = ofpbuf_new(4096);
561     nl_msg_put_genlmsghdr(reply, brc_sock, 32, brc_family, NLM_F_REQUEST,
562                           BRC_GENL_C_DP_RESULT, 1);
563     ((struct nlmsghdr *) reply->data)->nlmsg_seq = seq;
564     nl_msg_put_u32(reply, BRC_GENL_A_ERR_CODE, error);
565     return reply;
566 }
567
568 /* Sends 'reply' to the datapath and frees it. */
569 static void
570 send_reply(struct ofpbuf *reply)
571 {
572     int retval = nl_sock_send(brc_sock, reply, false);
573     if (retval) {
574         VLOG_WARN_RL(&rl, "replying to brcompat request: %s",
575                      strerror(retval));
576     }
577     ofpbuf_delete(reply);
578 }
579
580 /* Composes and sends a reply to a request made by the datapath with Netlink
581  * sequence number 'seq' and error code 'error'. */
582 static void
583 send_simple_reply(uint32_t seq, int error)
584 {
585     send_reply(compose_reply(seq, error));
586 }
587
588 static int
589 handle_bridge_cmd(const struct ovsrec_open_vswitch *ovs, 
590                   struct ofpbuf *buffer, bool add)
591 {
592     const char *br_name;
593     uint32_t seq;
594     int error;
595
596     error = parse_command(buffer, &seq, &br_name, NULL, NULL, NULL);
597     if (!error) {
598         error = add ? add_bridge(ovs, br_name) : del_bridge(ovs, br_name);
599         send_simple_reply(seq, error);
600     }
601     return error;
602 }
603
604 static const struct nl_policy brc_port_policy[] = {
605     [BRC_GENL_A_DP_NAME] = { .type = NL_A_STRING },
606     [BRC_GENL_A_PORT_NAME] = { .type = NL_A_STRING },
607 };
608
609 static int
610 handle_port_cmd(const struct ovsrec_open_vswitch *ovs,
611                 struct ofpbuf *buffer, bool add)
612 {
613     const char *cmd_name = add ? "add-if" : "del-if";
614     const char *br_name, *port_name;
615     uint32_t seq;
616     int error;
617
618     error = parse_command(buffer, &seq, &br_name, &port_name, NULL, NULL);
619     if (!error) {
620         struct ovsrec_bridge *br = find_bridge(ovs, br_name);
621
622         if (!br) {
623             VLOG_WARN("%s %s %s: no bridge named %s",
624                       cmd_name, br_name, port_name, br_name);
625             error = EINVAL;
626         } else if (!netdev_exists(port_name)) {
627             VLOG_WARN("%s %s %s: no network device named %s",
628                       cmd_name, br_name, port_name, port_name);
629             error = EINVAL;
630         } else {
631             if (add) {
632                 add_port(ovs, br, port_name);
633             } else {
634                 del_port(br, port_name);
635             }
636             VLOG_INFO("%s %s %s: success", cmd_name, br_name, port_name);
637         }
638         send_simple_reply(seq, error);
639     }
640
641     return error;
642 }
643
644 /* The caller is responsible for freeing '*ovs_name' if the call is
645  * successful. */
646 static int
647 linux_bridge_to_ovs_bridge(const struct ovsrec_open_vswitch *ovs,
648                            const char *linux_name,
649                            const struct ovsrec_bridge **ovs_bridge,
650                            int *br_vlan)
651 {
652     *ovs_bridge = find_bridge(ovs, linux_name);
653     if (*ovs_bridge) {
654         /* Bridge name is the same.  We are interested in VLAN 0. */
655         *br_vlan = 0;
656         return 0;
657     } else {
658         /* No such Open vSwitch bridge 'linux_name', but there might be an
659          * internal port named 'linux_name' on some other bridge
660          * 'ovs_bridge'.  If so then we are interested in the VLAN assigned to
661          * port 'linux_name' on the bridge named 'ovs_bridge'. */
662         size_t i, j;
663
664         for (i = 0; i < ovs->n_bridges; i++) {
665             const struct ovsrec_bridge *br = ovs->bridges[i];
666
667             for (j = 0; j < br->n_ports; j++) {
668                 const struct ovsrec_port *port = br->ports[j];
669
670                 if (!strcmp(port->name, linux_name)) {
671                     *ovs_bridge = br;
672                     *br_vlan = port->n_tag ? *port->tag : -1;
673                     return 0;
674                 }
675             }
676
677         }
678         return ENODEV;
679     }
680 }
681
682 static int
683 handle_fdb_query_cmd(const struct ovsrec_open_vswitch *ovs,
684                      struct ofpbuf *buffer)
685 {
686     /* This structure is copied directly from the Linux 2.6.30 header files.
687      * It would be more straightforward to #include <linux/if_bridge.h>, but
688      * the 'port_hi' member was only introduced in Linux 2.6.26 and so systems
689      * with old header files won't have it. */
690     struct __fdb_entry {
691         __u8 mac_addr[6];
692         __u8 port_no;
693         __u8 is_local;
694         __u32 ageing_timer_value;
695         __u8 port_hi;
696         __u8 pad0;
697         __u16 unused;
698     };
699
700     struct mac {
701         uint8_t addr[6];
702     };
703     struct mac *local_macs;
704     int n_local_macs;
705     int i;
706
707     /* Impedance matching between the vswitchd and Linux kernel notions of what
708      * a bridge is.  The kernel only handles a single VLAN per bridge, but
709      * vswitchd can deal with all the VLANs on a single bridge.  We have to
710      * pretend that the former is the case even though the latter is the
711      * implementation. */
712     const char *linux_name;   /* Name used by brctl. */
713     const struct ovsrec_bridge *ovs_bridge;  /* Bridge used by ovs-vswitchd. */
714     int br_vlan;                /* VLAN tag. */
715     struct svec ifaces;
716
717     struct ofpbuf query_data;
718     struct ofpbuf *reply;
719     char *unixctl_command;
720     uint64_t count, skip;
721     char *output;
722     char *save_ptr;
723     uint32_t seq;
724     int error;
725
726     /* Parse the command received from brcompat_mod. */
727     error = parse_command(buffer, &seq, &linux_name, NULL, &count, &skip);
728     if (error) {
729         return error;
730     }
731
732     /* Figure out vswitchd bridge and VLAN. */
733     error = linux_bridge_to_ovs_bridge(ovs, linux_name, 
734                                        &ovs_bridge, &br_vlan);
735     if (error) {
736         send_simple_reply(seq, error);
737         return error;
738     }
739
740     /* Fetch the forwarding database using ovs-appctl. */
741     unixctl_command = xasprintf("fdb/show %s", ovs_bridge->name);
742     error = execute_appctl_command(unixctl_command, &output);
743     free(unixctl_command);
744     if (error) {
745         send_simple_reply(seq, error);
746         return error;
747     }
748
749     /* Fetch the MAC address for each interface on the bridge, so that we can
750      * fill in the is_local field in the response. */
751     svec_init(&ifaces);
752     get_bridge_ifaces(ovs_bridge, &ifaces, br_vlan);
753     local_macs = xmalloc(ifaces.n * sizeof *local_macs);
754     n_local_macs = 0;
755     for (i = 0; i < ifaces.n; i++) {
756         const char *iface_name = ifaces.names[i];
757         struct mac *mac = &local_macs[n_local_macs];
758         struct netdev *netdev;
759
760         error = netdev_open_default(iface_name, &netdev);
761         if (!error) {
762             if (!netdev_get_etheraddr(netdev, mac->addr)) {
763                 n_local_macs++;
764             }
765             netdev_close(netdev);
766         }
767     }
768     svec_destroy(&ifaces);
769
770     /* Parse the response from ovs-appctl and convert it to binary format to
771      * pass back to the kernel. */
772     ofpbuf_init(&query_data, sizeof(struct __fdb_entry) * 8);
773     save_ptr = NULL;
774     strtok_r(output, "\n", &save_ptr); /* Skip header line. */
775     while (count > 0) {
776         struct __fdb_entry *entry;
777         int port, vlan, age;
778         uint8_t mac[ETH_ADDR_LEN];
779         char *line;
780         bool is_local;
781
782         line = strtok_r(NULL, "\n", &save_ptr);
783         if (!line) {
784             break;
785         }
786
787         if (sscanf(line, "%d %d "ETH_ADDR_SCAN_FMT" %d",
788                    &port, &vlan, ETH_ADDR_SCAN_ARGS(mac), &age)
789             != 2 + ETH_ADDR_SCAN_COUNT + 1) {
790             struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 1);
791             VLOG_INFO_RL(&rl, "fdb/show output has invalid format: %s", line);
792             continue;
793         }
794
795         if (vlan != br_vlan) {
796             continue;
797         }
798
799         if (skip > 0) {
800             skip--;
801             continue;
802         }
803
804         /* Is this the MAC address of an interface on the bridge? */
805         is_local = false;
806         for (i = 0; i < n_local_macs; i++) {
807             if (eth_addr_equals(local_macs[i].addr, mac)) {
808                 is_local = true;
809                 break;
810             }
811         }
812
813         entry = ofpbuf_put_uninit(&query_data, sizeof *entry);
814         memcpy(entry->mac_addr, mac, ETH_ADDR_LEN);
815         entry->port_no = port & 0xff;
816         entry->is_local = is_local;
817         entry->ageing_timer_value = age * HZ;
818         entry->port_hi = (port & 0xff00) >> 8;
819         entry->pad0 = 0;
820         entry->unused = 0;
821         count--;
822     }
823     free(output);
824
825     /* Compose and send reply to datapath. */
826     reply = compose_reply(seq, 0);
827     nl_msg_put_unspec(reply, BRC_GENL_A_FDB_DATA,
828                       query_data.data, query_data.size);
829     send_reply(reply);
830
831     /* Free memory. */
832     ofpbuf_uninit(&query_data);
833
834     return 0;
835 }
836
837 static void
838 send_ifindex_reply(uint32_t seq, struct svec *ifaces)
839 {
840     struct ofpbuf *reply;
841     const char *iface;
842     size_t n_indices;
843     int *indices;
844     size_t i;
845
846     /* Make sure that any given interface only occurs once.  This shouldn't
847      * happen, but who knows what people put into their configuration files. */
848     svec_sort_unique(ifaces);
849
850     /* Convert 'ifaces' into ifindexes. */
851     n_indices = 0;
852     indices = xmalloc(ifaces->n * sizeof *indices);
853     SVEC_FOR_EACH (i, iface, ifaces) {
854         int ifindex = if_nametoindex(iface);
855         if (ifindex) {
856             indices[n_indices++] = ifindex;
857         }
858     }
859
860     /* Compose and send reply. */
861     reply = compose_reply(seq, 0);
862     nl_msg_put_unspec(reply, BRC_GENL_A_IFINDEXES,
863                       indices, n_indices * sizeof *indices);
864     send_reply(reply);
865
866     /* Free memory. */
867     free(indices);
868 }
869
870 static int
871 handle_get_bridges_cmd(const struct ovsrec_open_vswitch *ovs,
872                        struct ofpbuf *buffer)
873 {
874     struct svec bridges;
875     size_t i, j;
876
877     uint32_t seq;
878
879     int error;
880
881     /* Parse Netlink command.
882      *
883      * The command doesn't actually have any arguments, but we need the
884      * sequence number to send the reply. */
885     error = parse_command(buffer, &seq, NULL, NULL, NULL, NULL);
886     if (error) {
887         return error;
888     }
889
890     /* Get all the real bridges and all the fake ones. */
891     svec_init(&bridges);
892     for (i = 0; i < ovs->n_bridges; i++) {
893         const struct ovsrec_bridge *br = ovs->bridges[i];
894
895         svec_add(&bridges, br->name);
896         for (j = 0; j < br->n_ports; j++) {
897             const struct ovsrec_port *port = br->ports[j];
898
899             if (port->fake_bridge) {
900                 svec_add(&bridges, port->name);
901             }
902         }
903     }
904
905     send_ifindex_reply(seq, &bridges);
906     svec_destroy(&bridges);
907
908     return 0;
909 }
910
911 static int
912 handle_get_ports_cmd(const struct ovsrec_open_vswitch *ovs,
913                      struct ofpbuf *buffer)
914 {
915     uint32_t seq;
916
917     const char *linux_name;
918     const struct ovsrec_bridge *ovs_bridge;
919     int br_vlan;
920
921     struct svec ports;
922
923     int error;
924
925     /* Parse Netlink command. */
926     error = parse_command(buffer, &seq, &linux_name, NULL, NULL, NULL);
927     if (error) {
928         return error;
929     }
930
931     error = linux_bridge_to_ovs_bridge(ovs, linux_name, 
932                                        &ovs_bridge, &br_vlan);
933     if (error) {
934         send_simple_reply(seq, error);
935         return error;
936     }
937
938     svec_init(&ports);
939     get_bridge_ports(ovs_bridge, &ports, br_vlan);
940     svec_sort(&ports);
941     svec_del(&ports, linux_name);
942     send_ifindex_reply(seq, &ports); /* XXX bonds won't show up */
943     svec_destroy(&ports);
944
945     return 0;
946 }
947
948 static void
949 brc_recv_update(const struct ovsrec_open_vswitch *ovs)
950 {
951     int retval;
952     struct ofpbuf *buffer;
953     struct genlmsghdr *genlmsghdr;
954
955
956     buffer = NULL;
957     do {
958         ofpbuf_delete(buffer);
959         retval = nl_sock_recv(brc_sock, &buffer, false);
960     } while (retval == ENOBUFS
961             || (!retval
962                 && (nl_msg_nlmsgerr(buffer, NULL)
963                     || nl_msg_nlmsghdr(buffer)->nlmsg_type == NLMSG_DONE)));
964     if (retval) {
965         if (retval != EAGAIN) {
966             VLOG_WARN_RL(&rl, "brc_recv_update: %s", strerror(retval));
967         }
968         return;
969     }
970
971     genlmsghdr = nl_msg_genlmsghdr(buffer);
972     if (!genlmsghdr) {
973         VLOG_WARN_RL(&rl, "received packet too short for generic NetLink");
974         goto error;
975     }
976
977     if (nl_msg_nlmsghdr(buffer)->nlmsg_type != brc_family) {
978         VLOG_DBG_RL(&rl, "received type (%"PRIu16") != brcompat family (%d)",
979                 nl_msg_nlmsghdr(buffer)->nlmsg_type, brc_family);
980         goto error;
981     }
982
983     /* Just drop the request on the floor if a valid configuration
984      * doesn't exist.  We don't immediately do this check, because we
985      * want to drain pending netlink messages. */
986     if (!ovs) {
987         VLOG_WARN_RL(&rl, "could not find valid configuration to update");
988         goto error;
989     }
990
991     switch (genlmsghdr->cmd) {
992     case BRC_GENL_C_DP_ADD:
993         handle_bridge_cmd(ovs, buffer, true);
994         break;
995
996     case BRC_GENL_C_DP_DEL:
997         handle_bridge_cmd(ovs, buffer, false);
998         break;
999
1000     case BRC_GENL_C_PORT_ADD:
1001         handle_port_cmd(ovs, buffer, true);
1002         break;
1003
1004     case BRC_GENL_C_PORT_DEL:
1005         handle_port_cmd(ovs, buffer, false);
1006         break;
1007
1008     case BRC_GENL_C_FDB_QUERY:
1009         handle_fdb_query_cmd(ovs, buffer);
1010         break;
1011
1012     case BRC_GENL_C_GET_BRIDGES:
1013         handle_get_bridges_cmd(ovs, buffer);
1014         break;
1015
1016     case BRC_GENL_C_GET_PORTS:
1017         handle_get_ports_cmd(ovs, buffer);
1018         break;
1019
1020     default:
1021         VLOG_WARN_RL(&rl, "received unknown brc netlink command: %d\n",
1022                 genlmsghdr->cmd);
1023         break;
1024     }
1025
1026 error:
1027     ofpbuf_delete(buffer);
1028     return;
1029 }
1030
1031 /* Check for interface configuration changes announced through RTNL. */
1032 static void
1033 rtnl_recv_update(const struct ovsrec_open_vswitch *ovs)
1034 {
1035     struct ofpbuf *buf;
1036
1037     int error = nl_sock_recv(rtnl_sock, &buf, false);
1038     if (error == EAGAIN) {
1039         /* Nothing to do. */
1040     } else if (error == ENOBUFS) {
1041         VLOG_WARN_RL(&rl, "network monitor socket overflowed");
1042     } else if (error) {
1043         VLOG_WARN_RL(&rl, "error on network monitor socket: %s", 
1044                 strerror(error));
1045     } else {
1046         struct nlattr *attrs[ARRAY_SIZE(rtnlgrp_link_policy)];
1047         struct nlmsghdr *nlh;
1048         struct ifinfomsg *iim;
1049
1050         nlh = ofpbuf_at(buf, 0, NLMSG_HDRLEN);
1051         iim = ofpbuf_at(buf, NLMSG_HDRLEN, sizeof *iim);
1052         if (!iim) {
1053             VLOG_WARN_RL(&rl, "received bad rtnl message (no ifinfomsg)");
1054             ofpbuf_delete(buf);
1055             return;
1056         } 
1057     
1058         if (!nl_policy_parse(buf, NLMSG_HDRLEN + sizeof(struct ifinfomsg),
1059                              rtnlgrp_link_policy,
1060                              attrs, ARRAY_SIZE(rtnlgrp_link_policy))) {
1061             VLOG_WARN_RL(&rl,"received bad rtnl message (policy)");
1062             ofpbuf_delete(buf);
1063             return;
1064         }
1065         if (nlh->nlmsg_type == RTM_DELLINK && attrs[IFLA_MASTER]) {
1066             const char *port_name = nl_attr_get_string(attrs[IFLA_IFNAME]);
1067             char br_name[IFNAMSIZ];
1068             uint32_t br_idx = nl_attr_get_u32(attrs[IFLA_MASTER]);
1069
1070             if (!if_indextoname(br_idx, br_name)) {
1071                 ofpbuf_delete(buf);
1072                 return;
1073             }
1074
1075             if (!netdev_exists(port_name)) {
1076                 /* Network device is really gone. */
1077                 struct ovsrec_bridge *br = find_bridge(ovs, br_name);
1078
1079                 VLOG_INFO("network device %s destroyed, "
1080                           "removing from bridge %s", port_name, br_name);
1081
1082                 if (!br) {
1083                     VLOG_WARN("no bridge named %s from which to remove %s", 
1084                             br_name, port_name);
1085                     ofpbuf_delete(buf);
1086                     return;
1087                 }
1088
1089                 del_port(br, port_name);
1090             } else {
1091                 /* A network device by that name exists even though the kernel
1092                  * told us it had disappeared.  Probably, what happened was
1093                  * this:
1094                  *
1095                  *      1. Device destroyed.
1096                  *      2. Notification sent to us.
1097                  *      3. New device created with same name as old one.
1098                  *      4. ovs-brcompatd notified, removes device from bridge.
1099                  *
1100                  * There's no a priori reason that in this situation that the
1101                  * new device with the same name should remain in the bridge;
1102                  * on the contrary, that would be unexpected.  *But* there is
1103                  * one important situation where, if we do this, bad things
1104                  * happen.  This is the case of XenServer Tools version 5.0.0,
1105                  * which on boot of a Windows VM cause something like this to
1106                  * happen on the Xen host:
1107                  *
1108                  *      i. Create tap1.0 and vif1.0.
1109                  *      ii. Delete tap1.0.
1110                  *      iii. Delete vif1.0.
1111                  *      iv. Re-create vif1.0.
1112                  *
1113                  * (XenServer Tools 5.5.0 does not exhibit this behavior, and
1114                  * neither does a VM without Tools installed at all.@.)
1115                  *
1116                  * Steps iii and iv happen within a few seconds of each other.
1117                  * Step iv causes /etc/xensource/scripts/vif to run, which in
1118                  * turn calls ovs-cfg-mod to add the new device to the bridge.
1119                  * If step iv happens after step 4 (in our first list of
1120                  * steps), then all is well, but if it happens between 3 and 4
1121                  * (which can easily happen if ovs-brcompatd has to wait to
1122                  * lock the configuration file), then we will remove the new
1123                  * incarnation from the bridge instead of the old one!
1124                  *
1125                  * So, to avoid this problem, we do nothing here.  This is
1126                  * strictly incorrect except for this one particular case, and
1127                  * perhaps that will bite us someday.  If that happens, then we
1128                  * will have to somehow track network devices by ifindex, since
1129                  * a new device will have a new ifindex even if it has the same
1130                  * name as an old device.
1131                  */
1132                 VLOG_INFO("kernel reported network device %s removed but "
1133                           "a device by that name exists (XS Tools 5.0.0?)",
1134                           port_name);
1135             }
1136         }
1137         ofpbuf_delete(buf);
1138     }
1139 }
1140
1141 int
1142 main(int argc, char *argv[])
1143 {
1144     struct unixctl_server *unixctl;
1145     const char *remote;
1146     struct ovsdb_idl *idl;
1147     int retval;
1148
1149     proctitle_init(argc, argv);
1150     set_program_name(argv[0]);
1151     time_init();
1152     vlog_init();
1153     vlog_set_levels(VLM_ANY_MODULE, VLF_CONSOLE, VLL_WARN);
1154     vlog_set_levels(VLM_reconnect, VLF_ANY_FACILITY, VLL_WARN);
1155
1156     remote = parse_options(argc, argv);
1157     signal(SIGPIPE, SIG_IGN);
1158     process_init();
1159     ovsrec_init();
1160
1161     die_if_already_running();
1162     daemonize_start();
1163
1164     retval = unixctl_server_create(NULL, &unixctl);
1165     if (retval) {
1166         exit(EXIT_FAILURE);
1167     }
1168
1169     if (brc_open(&brc_sock)) {
1170         ovs_fatal(0, "could not open brcompat socket.  Check "
1171                 "\"brcompat\" kernel module.");
1172     }
1173
1174     if (prune_timeout) {
1175         if (nl_sock_create(NETLINK_ROUTE, RTNLGRP_LINK, 0, 0, &rtnl_sock)) {
1176             ovs_fatal(0, "could not create rtnetlink socket");
1177         }
1178     }
1179
1180     daemonize_complete();
1181
1182     idl = ovsdb_idl_create(remote, &ovsrec_idl_class);
1183
1184     for (;;) {
1185         const struct ovsrec_open_vswitch *ovs;
1186         struct ovsdb_idl_txn *txn;
1187         enum ovsdb_idl_txn_status status;
1188
1189         ovsdb_idl_run(idl);
1190
1191         txn = ovsdb_idl_txn_create(idl);
1192
1193         unixctl_server_run(unixctl);
1194         ovs = ovsrec_open_vswitch_first(idl);
1195         brc_recv_update(ovs);
1196
1197         if (!ovs && ovsdb_idl_has_ever_connected(idl)) {
1198             static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 1);
1199             VLOG_WARN_RL(&rl, "%s: database does not contain any Open vSwitch "
1200                          "configuration", remote);
1201         }
1202         netdev_run();
1203
1204         /* If 'prune_timeout' is non-zero, we actively prune from the
1205          * configuration of port entries that are no longer valid.  We 
1206          * use two methods: 
1207          *
1208          *   1) The kernel explicitly notifies us of removed ports
1209          *      through the RTNL messages.
1210          *
1211          *   2) We periodically check all ports associated with bridges
1212          *      to see if they no longer exist.
1213          */
1214         if (ovs && prune_timeout) {
1215             rtnl_recv_update(ovs);
1216 #if 0
1217             prune_ports();
1218 #endif
1219
1220             nl_sock_wait(rtnl_sock, POLLIN);
1221             poll_timer_wait(prune_timeout);
1222         }
1223
1224         while ((status = ovsdb_idl_txn_commit(txn)) == TXN_INCOMPLETE) {
1225             ovsdb_idl_run(idl);
1226             ovsdb_idl_wait(idl);
1227             ovsdb_idl_txn_wait(txn);
1228             poll_block();
1229         }
1230             
1231         switch (status) {
1232         case TXN_INCOMPLETE:
1233             NOT_REACHED();
1234         
1235         case TXN_ABORTED:
1236             /* Should not happen--we never call ovsdb_idl_txn_abort(). */
1237             ovs_fatal(0, "transaction aborted");
1238         
1239         case TXN_SUCCESS:
1240         case TXN_UNCHANGED:
1241             break;
1242         
1243         case TXN_TRY_AGAIN:
1244             /* xxx Handle this better! */
1245             VLOG_ERR("OVSDB transaction needs retry");
1246             break;
1247
1248         case TXN_ERROR:
1249             /* xxx Handle this better! */
1250             VLOG_ERR("OVSDB transaction failed: %s",
1251                      ovsdb_idl_txn_get_error(txn));
1252             break;
1253
1254         default:
1255             NOT_REACHED();
1256         }
1257         ovsdb_idl_txn_destroy(txn);
1258
1259         nl_sock_wait(brc_sock, POLLIN);
1260         ovsdb_idl_wait(idl);
1261         unixctl_server_wait(unixctl);
1262         netdev_wait();
1263         poll_block();
1264     }
1265
1266     ovsdb_idl_destroy(idl);
1267
1268     return 0;
1269 }
1270
1271 static void
1272 validate_appctl_command(void)
1273 {
1274     const char *p;
1275     int n;
1276
1277     n = 0;
1278     for (p = strchr(appctl_command, '%'); p; p = strchr(p + 2, '%')) {
1279         if (p[1] == '%') {
1280             /* Nothing to do. */
1281         } else if (p[1] == 's') {
1282             n++;
1283         } else {
1284             ovs_fatal(0, "only '%%s' and '%%%%' allowed in --appctl-command");
1285         }
1286     }
1287     if (n != 1) {
1288         ovs_fatal(0, "'%%s' must appear exactly once in --appctl-command");
1289     }
1290 }
1291
1292 static const char *
1293 parse_options(int argc, char *argv[])
1294 {
1295     enum {
1296         OPT_PRUNE_TIMEOUT,
1297         OPT_APPCTL_COMMAND,
1298         VLOG_OPTION_ENUMS,
1299         LEAK_CHECKER_OPTION_ENUMS
1300     };
1301     static struct option long_options[] = {
1302         {"help",             no_argument, 0, 'h'},
1303         {"version",          no_argument, 0, 'V'},
1304         {"prune-timeout",    required_argument, 0, OPT_PRUNE_TIMEOUT},
1305         {"appctl-command",   required_argument, 0, OPT_APPCTL_COMMAND},
1306         DAEMON_LONG_OPTIONS,
1307         VLOG_LONG_OPTIONS,
1308         LEAK_CHECKER_LONG_OPTIONS,
1309         {0, 0, 0, 0},
1310     };
1311     char *short_options = long_options_to_short_options(long_options);
1312
1313     appctl_command = xasprintf("%s/ovs-appctl %%s", ovs_bindir);
1314     for (;;) {
1315         int c;
1316
1317         c = getopt_long(argc, argv, short_options, long_options, NULL);
1318         if (c == -1) {
1319             break;
1320         }
1321
1322         switch (c) {
1323         case 'H':
1324         case 'h':
1325             usage();
1326
1327         case 'V':
1328             OVS_PRINT_VERSION(0, 0);
1329             exit(EXIT_SUCCESS);
1330
1331         case OPT_PRUNE_TIMEOUT:
1332             prune_timeout = atoi(optarg) * 1000;
1333             break;
1334
1335         case OPT_APPCTL_COMMAND:
1336             appctl_command = optarg;
1337             break;
1338
1339         VLOG_OPTION_HANDLERS
1340         DAEMON_OPTION_HANDLERS
1341         LEAK_CHECKER_OPTION_HANDLERS
1342
1343         case '?':
1344             exit(EXIT_FAILURE);
1345
1346         default:
1347             abort();
1348         }
1349     }
1350     free(short_options);
1351
1352     validate_appctl_command();
1353
1354     argc -= optind;
1355     argv += optind;
1356
1357     if (argc != 1) {
1358         ovs_fatal(0, "database socket is non-option argument; "
1359                 "use --help for usage");
1360     }
1361
1362     return argv[0];
1363 }
1364
1365 static void
1366 usage(void)
1367 {
1368     printf("%s: bridge compatibility front-end for ovs-vswitchd\n"
1369            "usage: %s [OPTIONS] CONFIG\n"
1370            "CONFIG is the configuration file used by ovs-vswitchd.\n",
1371            program_name, program_name);
1372     printf("\nConfiguration options:\n"
1373            "  --appctl-command=COMMAND  shell command to run ovs-appctl\n"
1374            "  --prune-timeout=SECS    wait at most SECS before pruning ports\n"
1375           );
1376     daemon_usage();
1377     vlog_usage();
1378     printf("\nOther options:\n"
1379            "  -h, --help              display this help message\n"
1380            "  -V, --version           display version information\n");
1381     leak_checker_usage();
1382     printf("\nThe default appctl command is:\n%s\n", appctl_command);
1383     exit(EXIT_SUCCESS);
1384 }