X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=lib%2Fbfd.c;h=d4ac4892d963b58ab166e8deb899cf8610adfa85;hb=de8d2ef9dd141f4a96d4b79afbfadb3c4eb042c7;hp=22c9caee3ca41fd4abe785925fc8ff8dfb58e1d7;hpb=5798ed6d3e637ae17abf701086dcc75b4e641df1;p=sliver-openvswitch.git diff --git a/lib/bfd.c b/lib/bfd.c index 22c9caee3..d4ac4892d 100644 --- a/lib/bfd.c +++ b/lib/bfd.c @@ -16,7 +16,9 @@ #include "bfd.h" #include +#include +#include "byte-order.h" #include "csum.h" #include "dpif.h" #include "dynamic-string.h" @@ -27,6 +29,7 @@ #include "netlink.h" #include "odp-util.h" #include "ofpbuf.h" +#include "ovs-thread.h" #include "openvswitch/types.h" #include "packets.h" #include "poll-loop.h" @@ -54,13 +57,7 @@ VLOG_DEFINE_THIS_MODULE(bfd); * * - Unit tests. * - * - BFD show into ovs-bugtool. - * - * - Set TOS/PCP on inner BFD frame, and outer tunnel header when encapped. - * - * - CFM "check_tnl_key" option equivalent. - * - * - CFM "fault override" equivalent. + * - Set TOS/PCP on the outer tunnel header when encapped. * * - Sending BFD messages should be in its own thread/process. * @@ -163,6 +160,9 @@ struct bfd { uint32_t rmt_disc; /* bfd.RemoteDiscr. */ + uint8_t eth_dst[ETH_ADDR_LEN];/* Ethernet destination address. */ + bool eth_dst_set; /* 'eth_dst' set through database. */ + uint16_t udp_src; /* UDP source port. */ /* All timers in milliseconds. */ @@ -179,44 +179,64 @@ struct bfd { long long int last_tx; /* Last TX time. */ long long int next_tx; /* Next TX time. */ long long int detect_time; /* RFC 5880 6.8.4 Detection time. */ + + int forwarding_override; /* Manual override of 'forwarding' status. */ + + atomic_bool check_tnl_key; /* Verify tunnel key of inbound packets? */ + atomic_int ref_cnt; }; -static bool bfd_in_poll(const struct bfd *); -static void bfd_poll(struct bfd *bfd); -static const char *bfd_diag_str(enum diag); -static const char *bfd_state_str(enum state); -static long long int bfd_min_tx(const struct bfd *); -static long long int bfd_tx_interval(const struct bfd *); -static long long int bfd_rx_interval(const struct bfd *); -static void bfd_set_next_tx(struct bfd *); -static void bfd_set_state(struct bfd *, enum state, enum diag); -static uint32_t generate_discriminator(void); -static void bfd_put_details(struct ds *, const struct bfd *); +static struct ovs_mutex mutex = OVS_MUTEX_INITIALIZER; +static struct hmap all_bfds__ = HMAP_INITIALIZER(&all_bfds__); +static struct hmap *const all_bfds OVS_GUARDED_BY(mutex) = &all_bfds__; + +static bool bfd_forwarding__(const struct bfd *) OVS_REQ_WRLOCK(mutex); +static bool bfd_in_poll(const struct bfd *) OVS_REQ_WRLOCK(&mutex); +static void bfd_poll(struct bfd *bfd) OVS_REQ_WRLOCK(&mutex); +static const char *bfd_diag_str(enum diag) OVS_REQ_WRLOCK(&mutex); +static const char *bfd_state_str(enum state) OVS_REQ_WRLOCK(&mutex); +static long long int bfd_min_tx(const struct bfd *) OVS_REQ_WRLOCK(&mutex); +static long long int bfd_tx_interval(const struct bfd *) + OVS_REQ_WRLOCK(&mutex); +static long long int bfd_rx_interval(const struct bfd *) + OVS_REQ_WRLOCK(&mutex); +static void bfd_set_next_tx(struct bfd *) OVS_REQ_WRLOCK(&mutex); +static void bfd_set_state(struct bfd *, enum state, enum diag) + OVS_REQ_WRLOCK(&mutex); +static uint32_t generate_discriminator(void) OVS_REQ_WRLOCK(&mutex); +static void bfd_put_details(struct ds *, const struct bfd *) + OVS_REQ_WRLOCK(&mutex); static void bfd_unixctl_show(struct unixctl_conn *, int argc, const char *argv[], void *aux OVS_UNUSED); +static void bfd_unixctl_set_forwarding_override(struct unixctl_conn *, + int argc, const char *argv[], + void *aux OVS_UNUSED); static void log_msg(enum vlog_level, const struct msg *, const char *message, - const struct bfd *); + const struct bfd *) OVS_REQ_WRLOCK(&mutex); static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(20, 20); -static struct hmap all_bfds = HMAP_INITIALIZER(&all_bfds); /* Returns true if the interface on which 'bfd' is running may be used to * forward traffic according to the BFD session state. */ bool -bfd_forwarding(const struct bfd *bfd) +bfd_forwarding(const struct bfd *bfd) OVS_EXCLUDED(mutex) { - return bfd->state == STATE_UP - && bfd->rmt_diag != DIAG_PATH_DOWN - && bfd->rmt_diag != DIAG_CPATH_DOWN - && bfd->rmt_diag != DIAG_RCPATH_DOWN; + bool ret; + + ovs_mutex_lock(&mutex); + ret = bfd_forwarding__(bfd); + ovs_mutex_unlock(&mutex); + return ret; } /* Returns a 'smap' of key value pairs representing the status of 'bfd' * intended for the OVS database. */ void bfd_get_status(const struct bfd *bfd, struct smap *smap) + OVS_EXCLUDED(mutex) { - smap_add(smap, "forwarding", bfd_forwarding(bfd) ? "true" : "false"); + ovs_mutex_lock(&mutex); + smap_add(smap, "forwarding", bfd_forwarding__(bfd)? "true" : "false"); smap_add(smap, "state", bfd_state_str(bfd->state)); smap_add(smap, "diagnostic", bfd_diag_str(bfd->diag)); @@ -224,6 +244,7 @@ bfd_get_status(const struct bfd *bfd, struct smap *smap) smap_add(smap, "remote_state", bfd_state_str(bfd->rmt_state)); smap_add(smap, "remote_diagnostic", bfd_diag_str(bfd->rmt_diag)); } + ovs_mutex_unlock(&mutex); } /* Initializes, destroys, or reconfigures the BFD session 'bfd' (named 'name'), @@ -232,50 +253,59 @@ bfd_get_status(const struct bfd *bfd, struct smap *smap) * handle for the session, or NULL if BFD is not enabled according to 'cfg'. * Also returns NULL if cfg is NULL. */ struct bfd * -bfd_configure(struct bfd *bfd, const char *name, - const struct smap *cfg) +bfd_configure(struct bfd *bfd, const char *name, const struct smap *cfg) + OVS_EXCLUDED(mutex) { - static uint16_t udp_src = 0; - static bool init = false; + static struct ovsthread_once once = OVSTHREAD_ONCE_INITIALIZER; + static atomic_uint16_t udp_src = ATOMIC_VAR_INIT(0); long long int min_tx, min_rx; bool cpath_down; + const char *hwaddr; + uint8_t ea[ETH_ADDR_LEN]; - if (!init) { + if (ovsthread_once_start(&once)) { unixctl_command_register("bfd/show", "[interface]", 0, 1, bfd_unixctl_show, NULL); - init = true; + unixctl_command_register("bfd/set-forwarding", + "[interface] normal|false|true", 1, 2, + bfd_unixctl_set_forwarding_override, NULL); + ovsthread_once_done(&once); } if (!cfg || !smap_get_bool(cfg, "enable", false)) { - if (bfd) { - hmap_remove(&all_bfds, &bfd->node); - free(bfd->name); - free(bfd); - } + bfd_unref(bfd); return NULL; } + ovs_mutex_lock(&mutex); if (!bfd) { bfd = xzalloc(sizeof *bfd); bfd->name = xstrdup(name); + bfd->forwarding_override = -1; bfd->disc = generate_discriminator(); - hmap_insert(&all_bfds, &bfd->node, bfd->disc); + hmap_insert(all_bfds, &bfd->node, bfd->disc); bfd->diag = DIAG_NONE; bfd->min_tx = 1000; bfd->mult = 3; + atomic_init(&bfd->ref_cnt, 1); /* RFC 5881 section 4 * The source port MUST be in the range 49152 through 65535. The same * UDP source port number MUST be used for all BFD Control packets * associated with a particular session. The source port number SHOULD * be unique among all BFD sessions on the system. */ - bfd->udp_src = (udp_src++ % 16384) + 49152; + atomic_add(&udp_src, 1, &bfd->udp_src); + bfd->udp_src = (bfd->udp_src % 16384) + 49152; bfd_set_state(bfd, STATE_DOWN, DIAG_NONE); + + memcpy(bfd->eth_dst, eth_addr_bfd, ETH_ADDR_LEN); } + atomic_store(&bfd->check_tnl_key, + smap_get_bool(cfg, "check_tnl_key", false)); min_tx = smap_get_int(cfg, "min_tx", 100); min_tx = MAX(min_tx, 100); if (bfd->cfg_min_tx != min_tx) { @@ -306,12 +336,54 @@ bfd_configure(struct bfd *bfd, const char *name, } bfd_poll(bfd); } + + hwaddr = smap_get(cfg, "bfd_dst_mac"); + if (hwaddr && eth_addr_from_string(hwaddr, ea) && !eth_addr_is_zero(ea)) { + memcpy(bfd->eth_dst, ea, ETH_ADDR_LEN); + bfd->eth_dst_set = true; + } else if (bfd->eth_dst_set) { + memcpy(bfd->eth_dst, eth_addr_bfd, ETH_ADDR_LEN); + bfd->eth_dst_set = false; + } + + ovs_mutex_unlock(&mutex); + return bfd; +} + +struct bfd * +bfd_ref(const struct bfd *bfd_) +{ + struct bfd *bfd = CONST_CAST(struct bfd *, bfd_); + if (bfd) { + int orig; + atomic_add(&bfd->ref_cnt, 1, &orig); + ovs_assert(orig > 0); + } return bfd; } void -bfd_wait(const struct bfd *bfd) +bfd_unref(struct bfd *bfd) OVS_EXCLUDED(mutex) { + if (bfd) { + int orig; + + atomic_sub(&bfd->ref_cnt, 1, &orig); + ovs_assert(orig > 0); + if (orig == 1) { + ovs_mutex_lock(&mutex); + hmap_remove(all_bfds, &bfd->node); + free(bfd->name); + free(bfd); + ovs_mutex_unlock(&mutex); + } + } +} + +void +bfd_wait(const struct bfd *bfd) OVS_EXCLUDED(mutex) +{ + ovs_mutex_lock(&mutex); if (bfd->flags & FLAG_FINAL) { poll_immediate_wake(); } @@ -320,11 +392,13 @@ bfd_wait(const struct bfd *bfd) if (bfd->state > STATE_DOWN) { poll_timer_wait_until(bfd->detect_time); } + ovs_mutex_unlock(&mutex); } void -bfd_run(struct bfd *bfd) +bfd_run(struct bfd *bfd) OVS_EXCLUDED(mutex) { + ovs_mutex_lock(&mutex); if (bfd->state > STATE_DOWN && time_msec() >= bfd->detect_time) { bfd_set_state(bfd, STATE_DOWN, DIAG_EXPIRED); } @@ -332,17 +406,22 @@ bfd_run(struct bfd *bfd) if (bfd->min_tx != bfd->cfg_min_tx || bfd->min_rx != bfd->cfg_min_rx) { bfd_poll(bfd); } + ovs_mutex_unlock(&mutex); } bool -bfd_should_send_packet(const struct bfd *bfd) +bfd_should_send_packet(const struct bfd *bfd) OVS_EXCLUDED(mutex) { - return bfd->flags & FLAG_FINAL || time_msec() >= bfd->next_tx; + bool ret; + ovs_mutex_lock(&mutex); + ret = bfd->flags & FLAG_FINAL || time_msec() >= bfd->next_tx; + ovs_mutex_unlock(&mutex); + return ret; } void bfd_put_packet(struct bfd *bfd, struct ofpbuf *p, - uint8_t eth_src[ETH_ADDR_LEN]) + uint8_t eth_src[ETH_ADDR_LEN]) OVS_EXCLUDED(mutex) { long long int min_tx, min_rx; struct udp_header *udp; @@ -350,11 +429,12 @@ bfd_put_packet(struct bfd *bfd, struct ofpbuf *p, struct ip_header *ip; struct msg *msg; + ovs_mutex_lock(&mutex); if (bfd->next_tx) { long long int delay = time_msec() - bfd->next_tx; long long int interval = bfd_tx_interval(bfd); if (delay > interval * 3 / 2) { - VLOG_WARN("%s: long delay of %lldms (expected %lldms) sending BFD" + VLOG_INFO("%s: long delay of %lldms (expected %lldms) sending BFD" " control message", bfd->name, delay, interval); } } @@ -366,14 +446,15 @@ bfd_put_packet(struct bfd *bfd, struct ofpbuf *p, ofpbuf_reserve(p, 2); /* Properly align after the ethernet header. */ eth = ofpbuf_put_uninit(p, sizeof *eth); - memcpy(eth->eth_dst, eth_addr_broadcast, ETH_ADDR_LEN); memcpy(eth->eth_src, eth_src, ETH_ADDR_LEN); + memcpy(eth->eth_dst, bfd->eth_dst, ETH_ADDR_LEN); eth->eth_type = htons(ETH_TYPE_IP); ip = ofpbuf_put_zeros(p, sizeof *ip); ip->ip_ihl_ver = IP_IHL_VER(5, 4); ip->ip_tot_len = htons(sizeof *ip + sizeof *udp + sizeof *msg); - ip->ip_ttl = 255; + ip->ip_ttl = MAXTTL; + ip->ip_tos = IPTOS_LOWDELAY | IPTOS_THROUGHPUT; ip->ip_proto = IPPROTO_UDP; ip->ip_src = htonl(0xA9FE0100); /* 169.254.1.0 Link Local. */ ip->ip_dst = htonl(0xA9FE0101); /* 169.254.1.1 Link Local. */ @@ -411,21 +492,35 @@ bfd_put_packet(struct bfd *bfd, struct ofpbuf *p, bfd->last_tx = time_msec(); bfd_set_next_tx(bfd); + ovs_mutex_unlock(&mutex); } bool -bfd_should_process_flow(const struct flow *flow, struct flow_wildcards *wc) +bfd_should_process_flow(const struct bfd *bfd, const struct flow *flow, + struct flow_wildcards *wc) { + bool check_tnl_key; + memset(&wc->masks.dl_dst, 0xff, sizeof wc->masks.dl_dst); + if (bfd->eth_dst_set && memcmp(bfd->eth_dst, flow->dl_dst, ETH_ADDR_LEN)) { + return false; + } + memset(&wc->masks.nw_proto, 0xff, sizeof wc->masks.nw_proto); memset(&wc->masks.tp_dst, 0xff, sizeof wc->masks.tp_dst); + + atomic_read(&bfd->check_tnl_key, &check_tnl_key); + if (check_tnl_key) { + memset(&wc->masks.tunnel.tun_id, 0xff, sizeof wc->masks.tunnel.tun_id); + } return (flow->dl_type == htons(ETH_TYPE_IP) && flow->nw_proto == IPPROTO_UDP - && flow->tp_dst == htons(3784)); + && flow->tp_dst == htons(BFD_DEST_PORT) + && (check_tnl_key || flow->tunnel.tun_id == htonll(0))); } void bfd_process_packet(struct bfd *bfd, const struct flow *flow, - const struct ofpbuf *p) + const struct ofpbuf *p) OVS_EXCLUDED(mutex) { uint32_t rmt_min_rx, pkt_your_disc; enum state rmt_state; @@ -435,16 +530,17 @@ bfd_process_packet(struct bfd *bfd, const struct flow *flow, /* This function is designed to follow section RFC 5880 6.8.6 closely. */ + ovs_mutex_lock(&mutex); if (flow->nw_ttl != 255) { /* XXX Should drop in the kernel to prevent DOS. */ - return; + goto out; } msg = ofpbuf_at(p, (uint8_t *)p->l7 - (uint8_t *)p->data, BFD_PACKET_LEN); if (!msg) { VLOG_INFO_RL(&rl, "%s: Received unparseable BFD control message.", bfd->name); - return; + goto out; } /* RFC 5880 Section 6.8.6 @@ -464,7 +560,7 @@ bfd_process_packet(struct bfd *bfd, const struct flow *flow, if (version != BFD_VERSION) { log_msg(VLL_WARN, msg, "Incorrect version", bfd); - return; + goto out; } /* Technically this should happen after the length check. We don't support @@ -472,29 +568,29 @@ bfd_process_packet(struct bfd *bfd, const struct flow *flow, if (flags & FLAG_AUTH) { log_msg(VLL_WARN, msg, "Authenticated control message with" " authentication disabled", bfd); - return; + goto out; } if (msg->length != BFD_PACKET_LEN) { log_msg(VLL_WARN, msg, "Unexpected length", bfd); if (msg->length < BFD_PACKET_LEN) { - return; + goto out; } } if (!msg->mult) { log_msg(VLL_WARN, msg, "Zero multiplier", bfd); - return; + goto out; } if (flags & FLAG_MULTIPOINT) { log_msg(VLL_WARN, msg, "Unsupported multipoint flag", bfd); - return; + goto out; } if (!msg->my_disc) { log_msg(VLL_WARN, msg, "NULL my_disc", bfd); - return; + goto out; } pkt_your_disc = ntohl(msg->your_disc); @@ -506,11 +602,11 @@ bfd_process_packet(struct bfd *bfd, const struct flow *flow, * well, so in this respect, we are not compliant. */ if (pkt_your_disc != bfd->disc) { log_msg(VLL_WARN, msg, "Incorrect your_disc", bfd); - return; + goto out; } } else if (rmt_state > STATE_DOWN) { log_msg(VLL_WARN, msg, "Null your_disc", bfd); - return; + goto out; } bfd->rmt_disc = ntohl(msg->my_disc); @@ -547,7 +643,7 @@ bfd_process_packet(struct bfd *bfd, const struct flow *flow, if (bfd->state == STATE_ADMIN_DOWN) { VLOG_DBG_RL(&rl, "Administratively down, dropping control message."); - return; + goto out; } if (rmt_state == STATE_ADMIN_DOWN) { @@ -580,17 +676,33 @@ bfd_process_packet(struct bfd *bfd, const struct flow *flow, } } /* XXX: RFC 5880 Section 6.8.6 Demand mode related calculations here. */ + +out: + ovs_mutex_unlock(&mutex); } +static bool +bfd_forwarding__(const struct bfd *bfd) OVS_REQ_WRLOCK(mutex) +{ + if (bfd->forwarding_override != -1) { + return bfd->forwarding_override == 1; + } + + return bfd->state == STATE_UP + && bfd->rmt_diag != DIAG_PATH_DOWN + && bfd->rmt_diag != DIAG_CPATH_DOWN + && bfd->rmt_diag != DIAG_RCPATH_DOWN; +} + /* Helpers. */ static bool -bfd_in_poll(const struct bfd *bfd) +bfd_in_poll(const struct bfd *bfd) OVS_REQ_WRLOCK(mutex) { return (bfd->flags & FLAG_POLL) != 0; } static void -bfd_poll(struct bfd *bfd) +bfd_poll(struct bfd *bfd) OVS_REQ_WRLOCK(mutex) { if (bfd->state > STATE_DOWN && !bfd_in_poll(bfd) && !(bfd->flags & FLAG_FINAL)) { @@ -603,7 +715,7 @@ bfd_poll(struct bfd *bfd) } static long long int -bfd_min_tx(const struct bfd *bfd) +bfd_min_tx(const struct bfd *bfd) OVS_REQ_WRLOCK(mutex) { /* RFC 5880 Section 6.8.3 * When bfd.SessionState is not Up, the system MUST set @@ -615,20 +727,20 @@ bfd_min_tx(const struct bfd *bfd) } static long long int -bfd_tx_interval(const struct bfd *bfd) +bfd_tx_interval(const struct bfd *bfd) OVS_REQ_WRLOCK(mutex) { long long int interval = bfd_min_tx(bfd); return MAX(interval, bfd->rmt_min_rx); } static long long int -bfd_rx_interval(const struct bfd *bfd) +bfd_rx_interval(const struct bfd *bfd) OVS_REQ_WRLOCK(mutex) { return MAX(bfd->min_rx, bfd->rmt_min_tx); } static void -bfd_set_next_tx(struct bfd *bfd) +bfd_set_next_tx(struct bfd *bfd) OVS_REQ_WRLOCK(mutex) { long long int interval = bfd_tx_interval(bfd); interval -= interval * random_range(26) / 100; @@ -704,7 +816,7 @@ bfd_diag_str(enum diag diag) { static void log_msg(enum vlog_level level, const struct msg *p, const char *message, - const struct bfd *bfd) + const struct bfd *bfd) OVS_REQ_WRLOCK(mutex) { struct ds ds = DS_EMPTY_INITIALIZER; @@ -736,6 +848,7 @@ log_msg(enum vlog_level level, const struct msg *p, const char *message, static void bfd_set_state(struct bfd *bfd, enum state state, enum diag diag) + OVS_REQ_WRLOCK(mutex) { if (diag == DIAG_NONE && bfd->cpath_down) { diag = DIAG_CPATH_DOWN; @@ -785,7 +898,7 @@ generate_discriminator(void) /* 'disc' is by definition random, so there's no reason to waste time * hashing it. */ disc = random_uint32(); - HMAP_FOR_EACH_IN_BUCKET (bfd, node, disc, &all_bfds) { + HMAP_FOR_EACH_IN_BUCKET (bfd, node, disc, all_bfds) { if (bfd->disc == disc) { disc = 0; break; @@ -797,11 +910,11 @@ generate_discriminator(void) } static struct bfd * -bfd_find_by_name(const char *name) +bfd_find_by_name(const char *name) OVS_REQ_WRLOCK(mutex) { struct bfd *bfd; - HMAP_FOR_EACH (bfd, node, &all_bfds) { + HMAP_FOR_EACH (bfd, node, all_bfds) { if (!strcmp(bfd->name, name)) { return bfd; } @@ -810,10 +923,10 @@ bfd_find_by_name(const char *name) } static void -bfd_put_details(struct ds *ds, const struct bfd *bfd) +bfd_put_details(struct ds *ds, const struct bfd *bfd) OVS_REQ_WRLOCK(mutex) { ds_put_format(ds, "\tForwarding: %s\n", - bfd_forwarding(bfd) ? "true" : "false"); + bfd_forwarding__(bfd) ? "true" : "false"); ds_put_format(ds, "\tDetect Multiplier: %d\n", bfd->mult); ds_put_format(ds, "\tConcatenated Path Down: %s\n", bfd->cpath_down ? "true" : "false"); @@ -853,24 +966,69 @@ bfd_put_details(struct ds *ds, const struct bfd *bfd) static void bfd_unixctl_show(struct unixctl_conn *conn, int argc, const char *argv[], - void *aux OVS_UNUSED) + void *aux OVS_UNUSED) OVS_EXCLUDED(mutex) { struct ds ds = DS_EMPTY_INITIALIZER; struct bfd *bfd; + ovs_mutex_lock(&mutex); if (argc > 1) { bfd = bfd_find_by_name(argv[1]); if (!bfd) { unixctl_command_reply_error(conn, "no such bfd object"); - return; + goto out; } bfd_put_details(&ds, bfd); } else { - HMAP_FOR_EACH (bfd, node, &all_bfds) { + HMAP_FOR_EACH (bfd, node, all_bfds) { ds_put_format(&ds, "---- %s ----\n", bfd->name); bfd_put_details(&ds, bfd); } } unixctl_command_reply(conn, ds_cstr(&ds)); ds_destroy(&ds); + +out: + ovs_mutex_unlock(&mutex); +} + + +static void +bfd_unixctl_set_forwarding_override(struct unixctl_conn *conn, int argc, + const char *argv[], void *aux OVS_UNUSED) + OVS_EXCLUDED(mutex) +{ + const char *forward_str = argv[argc - 1]; + int forwarding_override; + struct bfd *bfd; + + ovs_mutex_lock(&mutex); + if (!strcasecmp("true", forward_str)) { + forwarding_override = 1; + } else if (!strcasecmp("false", forward_str)) { + forwarding_override = 0; + } else if (!strcasecmp("normal", forward_str)) { + forwarding_override = -1; + } else { + unixctl_command_reply_error(conn, "unknown fault string"); + goto out; + } + + if (argc > 2) { + bfd = bfd_find_by_name(argv[1]); + if (!bfd) { + unixctl_command_reply_error(conn, "no such BFD object"); + goto out; + } + bfd->forwarding_override = forwarding_override; + } else { + HMAP_FOR_EACH (bfd, node, all_bfds) { + bfd->forwarding_override = forwarding_override; + } + } + + unixctl_command_reply(conn, "OK"); + +out: + ovs_mutex_unlock(&mutex); }