1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236
|
/* Copyright (c) 2015, 2016 Nicira, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at:
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <config.h>
#include <unistd.h>
#include "chassis.h"
#include "lib/smap.h"
#include "lib/sset.h"
#include "lib/vswitch-idl.h"
#include "openvswitch/dynamic-string.h"
#include "openvswitch/vlog.h"
#include "openvswitch/ofp-parse.h"
#include "lib/chassis-index.h"
#include "lib/ovn-sb-idl.h"
#include "ovn-controller.h"
#include "lib/util.h"
#include "ovn/features.h"
VLOG_DEFINE_THIS_MODULE(chassis);
#ifndef HOST_NAME_MAX
/* For windows. */
#define HOST_NAME_MAX 255
#endif /* HOST_NAME_MAX */
char *cli_system_id = NULL;
char *file_system_id = NULL;
/*
* Structure for storing the chassis config parsed from the ovs table.
*/
struct ovs_chassis_cfg {
/* Single string fields parsed from external-ids. */
const char *hostname;
const char *bridge_mappings;
const char *datapath_type;
const char *encap_csum;
const char *cms_options;
const char *monitor_all;
const char *chassis_macs;
const char *enable_lflow_cache;
const char *limit_lflow_cache;
const char *memlimit_lflow_cache;
const char *trim_limit_lflow_cache;
const char *trim_wmark_perc_lflow_cache;
const char *trim_timeout_ms;
const char *evpn_vxlan_port;
const char *evpn_local_ip;
/* Set of encap types parsed from the 'ovn-encap-type' external-id. */
struct sset encap_type_set;
/* Set of encap IPs parsed from the 'ovn-encap-ip' external-id. */
struct sset encap_ip_set;
/* Default encap IP when there are two or more encap IPs. Optional. */
const char *encap_ip_default;
/* Interface type list formatted in the OVN-SB Chassis required format. */
struct ds iface_types;
/* Is this chassis an interconnection gateway. */
bool is_interconn;
/* Does OVS support sampling with ids taken from registers? */
bool sample_with_regs;
/* Does OVS support flushing CT zones using label/mark? */
bool ct_label_flush;
};
enum chassis_update_status {
CHASSIS_UPDATED,
CHASSIS_NOT_UPDATED,
CHASSIS_NEED_DELETE
};
static void
ovs_chassis_cfg_init(struct ovs_chassis_cfg *cfg)
{
sset_init(&cfg->encap_type_set);
sset_init(&cfg->encap_ip_set);
ds_init(&cfg->iface_types);
}
static void
ovs_chassis_cfg_destroy(struct ovs_chassis_cfg *cfg)
{
sset_destroy(&cfg->encap_type_set);
sset_destroy(&cfg->encap_ip_set);
ds_destroy(&cfg->iface_types);
}
void
chassis_register_ovs_idl(struct ovsdb_idl *ovs_idl)
{
ovsdb_idl_add_table(ovs_idl, &ovsrec_table_open_vswitch);
ovsdb_idl_add_column(ovs_idl, &ovsrec_open_vswitch_col_external_ids);
ovsdb_idl_add_column(ovs_idl, &ovsrec_open_vswitch_col_iface_types);
ovsdb_idl_add_table(ovs_idl, &ovsrec_table_bridge);
ovsdb_idl_add_column(ovs_idl, &ovsrec_bridge_col_datapath_type);
}
static const char *
get_hostname(const struct smap *ext_ids, const char *chassis_id)
{
const char *hostname = get_chassis_external_id_value(ext_ids, chassis_id,
"hostname", NULL);
if (!hostname) {
static char hostname_[HOST_NAME_MAX + 1];
if (gethostname(hostname_, sizeof(hostname_))) {
hostname_[0] = 0;
}
return &hostname_[0];
}
return hostname;
}
static const char *
get_bridge_mappings(const struct smap *ext_ids, const char *chassis_id)
{
return get_chassis_external_id_value(ext_ids, chassis_id,
"ovn-bridge-mappings", "");
}
const char *
get_chassis_mac_mappings(const struct smap *ext_ids, const char *chassis_id)
{
return get_chassis_external_id_value(ext_ids, chassis_id,
"ovn-chassis-mac-mappings", "");
}
static const char *
get_cms_options(const struct smap *ext_ids, const char *chassis_id)
{
return get_chassis_external_id_value(ext_ids, chassis_id,
"ovn-cms-options", "");
}
static const char *
get_monitor_all(const struct smap *ext_ids, const char *chassis_id)
{
return get_chassis_external_id_value(ext_ids, chassis_id,
"ovn-monitor-all", "false");
}
static const char *
get_enable_lflow_cache(const struct smap *ext_ids, const char *chassis_id)
{
return get_chassis_external_id_value(ext_ids, chassis_id,
"ovn-enable-lflow-cache", "true");
}
static const char *
get_limit_lflow_cache(const struct smap *ext_ids, const char *chassis_id)
{
return get_chassis_external_id_value(ext_ids, chassis_id,
"ovn-limit-lflow-cache", "");
}
static const char *
get_memlimit_lflow_cache(const struct smap *ext_ids, const char *chassis_id)
{
return get_chassis_external_id_value(ext_ids, chassis_id,
"ovn-memlimit-lflow-cache-kb", "");
}
static const char *
get_trim_limit_lflow_cache(const struct smap *ext_ids, const char *chassis_id)
{
return get_chassis_external_id_value(ext_ids, chassis_id,
"ovn-trim-limit-lflow-cache", "");
}
static const char *
get_trim_wmark_perc_lflow_cache(const struct smap *ext_ids,
const char *chassis_id)
{
return get_chassis_external_id_value(
ext_ids, chassis_id, "ovn-trim-wmark-perc-lflow-cache", "");
}
static const char *
get_trim_timeout(const struct smap *ext_ids, const char *chassis_id)
{
return get_chassis_external_id_value(ext_ids, chassis_id,
"ovn-trim-timeout-ms", "");
}
static const char *
get_encap_csum(const struct smap *ext_ids, const char *chassis_id)
{
return get_chassis_external_id_value(ext_ids, chassis_id,
"ovn-encap-csum", "true");
}
static const char *
get_evpn_vxlan_port(const struct smap *ext_ids, const char *chassis_id)
{
return get_chassis_external_id_value(ext_ids, chassis_id,
"ovn-evpn-vxlan-ports", "");
}
static const char *
get_evpn_local_ip(const struct smap *ext_ids, const char *chassis_id)
{
return get_chassis_external_id_value(ext_ids, chassis_id,
"ovn-evpn-local-ip", "");
}
static const char *
get_datapath_type(const struct ovsrec_bridge *br_int)
{
if (br_int && br_int->datapath_type) {
return br_int->datapath_type;
}
return "";
}
static bool
get_is_interconn(const struct smap *ext_ids, const char *chassis_id)
{
return get_chassis_external_id_value_bool(ext_ids, chassis_id,
"ovn-is-interconn", false);
}
static void
update_chassis_transport_zones(const struct sset *transport_zones,
const struct sbrec_chassis *chassis_rec)
{
struct sset chassis_tzones_set = SSET_INITIALIZER(&chassis_tzones_set);
for (int i = 0; i < chassis_rec->n_transport_zones; i++) {
sset_add(&chassis_tzones_set, chassis_rec->transport_zones[i]);
}
/* Only update the transport zones if something changed */
if (!sset_equals(transport_zones, &chassis_tzones_set)) {
const char **ls_arr = sset_array(transport_zones);
sbrec_chassis_set_transport_zones(chassis_rec, ls_arr,
sset_count(transport_zones));
free(ls_arr);
}
sset_destroy(&chassis_tzones_set);
}
/*
* Parse an ovs 'encap_type' string and stores the resulting types in the
* 'encap_type_set' string set.
*/
static void
chassis_parse_ovs_encap_type(const char *encap_type,
struct sset *encap_type_set)
{
sset_from_delimited_string(encap_type_set, encap_type, ",");
static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
const char *type;
SSET_FOR_EACH (type, encap_type_set) {
uint32_t tun_type = get_tunnel_type(type);
if (!tun_type) {
VLOG_INFO_RL(&rl, "Unknown tunnel type: %s", type);
}
}
}
/*
* Parse an ovs 'encap_ip' string and stores the resulting IP representations
* in the 'encap_ip_set' string set.
*/
static void
chassis_parse_ovs_encap_ip(const char *encap_ip, struct sset *encap_ip_set)
{
sset_from_delimited_string(encap_ip_set, encap_ip, ",");
}
/*
* Parse the ovs 'iface_types' and store them in the format required by the
* Chassis record.
*/
static void
chassis_parse_ovs_iface_types(char **iface_types, size_t n_iface_types,
struct ds *iface_types_str)
{
for (size_t i = 0; i < n_iface_types; i++) {
ds_put_format(iface_types_str, "%s,", iface_types[i]);
}
ds_chomp(iface_types_str, ',');
}
/*
* Parse the 'ovs_table' entry and populate 'ovs_cfg'.
*/
static bool
chassis_parse_ovs_config(const struct ovsrec_open_vswitch_table *ovs_table,
const struct ovsrec_bridge *br_int,
struct ovs_chassis_cfg *ovs_cfg)
{
static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
const struct ovsrec_open_vswitch *cfg =
ovsrec_open_vswitch_table_first(ovs_table);
if (!cfg) {
VLOG_INFO("No Open_vSwitch row defined.");
return false;
}
const char *chassis_id = get_ovs_chassis_id(ovs_table);
const char *encap_type =
get_chassis_external_id_value(&cfg->external_ids, chassis_id,
"ovn-encap-type", NULL);
const char *encap_ips =
get_chassis_external_id_value(&cfg->external_ids, chassis_id,
"ovn-encap-ip", NULL);
if (!encap_type || !encap_ips) {
VLOG_INFO_RL(&rl, "Need to specify an encap type and ip");
return false;
}
ovs_cfg->hostname = get_hostname(&cfg->external_ids, chassis_id);
ovs_cfg->bridge_mappings =
get_bridge_mappings(&cfg->external_ids, chassis_id);
ovs_cfg->datapath_type = get_datapath_type(br_int);
ovs_cfg->encap_csum = get_encap_csum(&cfg->external_ids, chassis_id);
ovs_cfg->cms_options = get_cms_options(&cfg->external_ids, chassis_id);
ovs_cfg->monitor_all = get_monitor_all(&cfg->external_ids, chassis_id);
ovs_cfg->chassis_macs =
get_chassis_mac_mappings(&cfg->external_ids, chassis_id);
ovs_cfg->enable_lflow_cache =
get_enable_lflow_cache(&cfg->external_ids, chassis_id);
ovs_cfg->limit_lflow_cache =
get_limit_lflow_cache(&cfg->external_ids, chassis_id);
ovs_cfg->memlimit_lflow_cache =
get_memlimit_lflow_cache(&cfg->external_ids, chassis_id);
ovs_cfg->trim_limit_lflow_cache =
get_trim_limit_lflow_cache(&cfg->external_ids, chassis_id);
ovs_cfg->trim_wmark_perc_lflow_cache =
get_trim_wmark_perc_lflow_cache(&cfg->external_ids, chassis_id);
ovs_cfg->trim_timeout_ms =
get_trim_timeout(&cfg->external_ids, chassis_id);
ovs_cfg->evpn_vxlan_port =
get_evpn_vxlan_port(&cfg->external_ids, chassis_id);
ovs_cfg->evpn_local_ip =
get_evpn_local_ip(&cfg->external_ids, chassis_id);
chassis_parse_ovs_encap_type(encap_type, &ovs_cfg->encap_type_set);
/* 'ovn-encap-ip' can accept a comma-delimited list of IP addresses instead
* of a single IP address. Although this is undocumented, it can be used
* to enable certain hardware-offloaded use cases in which a host has
* multiple NICs and is assigning SR-IOV VFs to a guest (as logical ports).
*/
chassis_parse_ovs_encap_ip(encap_ips, &ovs_cfg->encap_ip_set);
const char *encap_ip_default =
get_chassis_external_id_value(&cfg->external_ids, chassis_id,
"ovn-encap-ip-default", NULL);
if (encap_ip_default &&
!sset_contains(&ovs_cfg->encap_ip_set, encap_ip_default)) {
VLOG_WARN_RL(&rl, "ovn-encap-ip-default (%s) must be one of the IPs "
"in ovn-encap-ip.", encap_ip_default);
encap_ip_default = NULL;
}
ovs_cfg->encap_ip_default = encap_ip_default;
chassis_parse_ovs_iface_types(cfg->iface_types, cfg->n_iface_types,
&ovs_cfg->iface_types);
ovs_cfg->is_interconn = get_is_interconn(&cfg->external_ids, chassis_id);
ovs_cfg->sample_with_regs =
ovs_feature_is_supported(OVS_SAMPLE_REG_SUPPORT);
ovs_cfg->ct_label_flush =
ovs_feature_is_supported(OVS_CT_LABEL_FLUSH_SUPPORT);
return true;
}
static void
chassis_build_other_config(const struct ovs_chassis_cfg *ovs_cfg,
struct smap *config)
{
smap_replace(config, "ovn-bridge-mappings", ovs_cfg->bridge_mappings);
smap_replace(config, "datapath-type", ovs_cfg->datapath_type);
smap_replace(config, "ovn-cms-options", ovs_cfg->cms_options);
smap_replace(config, "ovn-monitor-all", ovs_cfg->monitor_all);
smap_replace(config, "ovn-enable-lflow-cache",
ovs_cfg->enable_lflow_cache);
smap_replace(config, "ovn-limit-lflow-cache", ovs_cfg->limit_lflow_cache);
smap_replace(config, "ovn-memlimit-lflow-cache-kb",
ovs_cfg->memlimit_lflow_cache);
smap_replace(config, "ovn-trim-limit-lflow-cache",
ovs_cfg->trim_limit_lflow_cache);
smap_replace(config, "ovn-trim-wmark-perc-lflow-cache",
ovs_cfg->trim_wmark_perc_lflow_cache);
smap_replace(config, "ovn-trim-timeout-ms", ovs_cfg->trim_timeout_ms);
smap_replace(config, "iface-types", ds_cstr_ro(&ovs_cfg->iface_types));
smap_replace(config, "ovn-chassis-mac-mappings", ovs_cfg->chassis_macs);
smap_replace(config, "ovn-evpn-vxlan-ports", ovs_cfg->evpn_vxlan_port);
smap_replace(config, "ovn-evpn-local-ip", ovs_cfg->evpn_local_ip);
smap_replace(config, "is-interconn",
ovs_cfg->is_interconn ? "true" : "false");
smap_replace(config, OVN_FEATURE_PORT_UP_NOTIF, "true");
smap_replace(config, OVN_FEATURE_CT_NO_MASKED_LABEL, "true");
smap_replace(config, OVN_FEATURE_MAC_BINDING_TIMESTAMP, "true");
smap_replace(config, OVN_FEATURE_CT_LB_RELATED, "true");
smap_replace(config, OVN_FEATURE_FDB_TIMESTAMP, "true");
smap_replace(config, OVN_FEATURE_LS_DPG_COLUMN, "true");
smap_replace(config, OVN_FEATURE_CT_COMMIT_NAT_V2, "true");
smap_replace(config, OVN_FEATURE_CT_COMMIT_TO_ZONE, "true");
smap_replace(config, OVN_FEATURE_SAMPLE_WITH_REGISTERS,
ovs_cfg->sample_with_regs ? "true" : "false");
smap_replace(config, OVN_FEATURE_CT_NEXT_ZONE, "true");
smap_replace(config, OVN_FEATURE_CT_LABEL_FLUSH,
ovs_cfg->ct_label_flush ? "true" :"false");
smap_replace(config, OVN_FEATURE_CT_STATE_SAVE, "true");
}
/*
* Returns true if any external-id doesn't match the values in 'chassis-rec'.
*/
static bool
chassis_other_config_changed(const struct ovs_chassis_cfg *ovs_cfg,
const struct sbrec_chassis *chassis_rec)
{
const char *chassis_bridge_mappings =
get_bridge_mappings(&chassis_rec->other_config, chassis_rec->name);
if (strcmp(ovs_cfg->bridge_mappings, chassis_bridge_mappings)) {
return true;
}
const char *chassis_datapath_type =
smap_get_def(&chassis_rec->other_config, "datapath-type", "");
if (strcmp(ovs_cfg->datapath_type, chassis_datapath_type)) {
return true;
}
const char *chassis_cms_options =
get_cms_options(&chassis_rec->other_config, chassis_rec->name);
if (strcmp(ovs_cfg->cms_options, chassis_cms_options)) {
return true;
}
const char *chassis_monitor_all =
get_monitor_all(&chassis_rec->other_config, chassis_rec->name);
if (strcmp(ovs_cfg->monitor_all, chassis_monitor_all)) {
return true;
}
const char *chassis_enable_lflow_cache =
get_enable_lflow_cache(&chassis_rec->other_config, chassis_rec->name);
if (strcmp(ovs_cfg->enable_lflow_cache, chassis_enable_lflow_cache)) {
return true;
}
const char *chassis_limit_lflow_cache =
get_limit_lflow_cache(&chassis_rec->other_config, chassis_rec->name);
if (strcmp(ovs_cfg->limit_lflow_cache, chassis_limit_lflow_cache)) {
return true;
}
const char *chassis_memlimit_lflow_cache =
get_memlimit_lflow_cache(&chassis_rec->other_config,
chassis_rec->name);
if (strcmp(ovs_cfg->memlimit_lflow_cache, chassis_memlimit_lflow_cache)) {
return true;
}
const char *chassis_trim_limit_lflow_cache =
get_trim_limit_lflow_cache(&chassis_rec->other_config,
chassis_rec->name);
if (strcmp(ovs_cfg->trim_limit_lflow_cache,
chassis_trim_limit_lflow_cache)) {
return true;
}
const char *chassis_trim_wmark_perc_lflow_cache =
get_trim_wmark_perc_lflow_cache(
&chassis_rec->other_config, chassis_rec->name);
if (strcmp(ovs_cfg->trim_wmark_perc_lflow_cache,
chassis_trim_wmark_perc_lflow_cache)) {
return true;
}
const char *chassis_trim_timeout_ms =
get_trim_timeout(&chassis_rec->other_config, chassis_rec->name);
if (strcmp(ovs_cfg->trim_timeout_ms, chassis_trim_timeout_ms)) {
return true;
}
const char *chassis_mac_mappings =
get_chassis_mac_mappings(&chassis_rec->other_config,
chassis_rec->name);
if (strcmp(ovs_cfg->chassis_macs, chassis_mac_mappings)) {
return true;
}
const char *chassis_iface_types =
smap_get_def(&chassis_rec->other_config, "iface-types", "");
if (strcmp(ds_cstr_ro(&ovs_cfg->iface_types), chassis_iface_types)) {
return true;
}
bool chassis_is_interconn =
smap_get_bool(&chassis_rec->other_config, "is-interconn", false);
if (chassis_is_interconn != ovs_cfg->is_interconn) {
return true;
}
const char *chassis_evpn_vxlan_port =
get_evpn_vxlan_port(&chassis_rec->other_config, chassis_rec->name);
if (strcmp(ovs_cfg->evpn_vxlan_port, chassis_evpn_vxlan_port)) {
return true;
}
const char *chassis_evpn_local_ip =
get_evpn_local_ip(&chassis_rec->other_config, chassis_rec->name);
if (strcmp(ovs_cfg->evpn_local_ip, chassis_evpn_local_ip)) {
return true;
}
if (!smap_get_bool(&chassis_rec->other_config, OVN_FEATURE_PORT_UP_NOTIF,
false)) {
return true;
}
if (!smap_get_bool(&chassis_rec->other_config,
OVN_FEATURE_CT_NO_MASKED_LABEL,
false)) {
return true;
}
if (!smap_get_bool(&chassis_rec->other_config,
OVN_FEATURE_MAC_BINDING_TIMESTAMP,
false)) {
return true;
}
if (!smap_get_bool(&chassis_rec->other_config,
OVN_FEATURE_CT_LB_RELATED,
false)) {
return true;
}
if (!smap_get_bool(&chassis_rec->other_config,
OVN_FEATURE_FDB_TIMESTAMP,
false)) {
return true;
}
if (!smap_get_bool(&chassis_rec->other_config,
OVN_FEATURE_LS_DPG_COLUMN,
false)) {
return true;
}
if (!smap_get_bool(&chassis_rec->other_config,
OVN_FEATURE_CT_COMMIT_NAT_V2,
false)) {
return true;
}
if (!smap_get_bool(&chassis_rec->other_config,
OVN_FEATURE_CT_COMMIT_TO_ZONE,
false)) {
return true;
}
bool chassis_sample_with_regs =
smap_get_bool(&chassis_rec->other_config,
OVN_FEATURE_SAMPLE_WITH_REGISTERS,
false);
if (chassis_sample_with_regs != ovs_cfg->sample_with_regs) {
return true;
}
if (!smap_get_bool(&chassis_rec->other_config,
OVN_FEATURE_CT_NEXT_ZONE,
false)) {
return true;
}
bool chassis_ct_label_flush =
smap_get_bool(&chassis_rec->other_config,
OVN_FEATURE_CT_LABEL_FLUSH,
false);
if (chassis_ct_label_flush != ovs_cfg->ct_label_flush) {
return true;
}
if (!smap_get_bool(&chassis_rec->other_config, OVN_FEATURE_CT_STATE_SAVE,
false)) {
return true;
}
return false;
}
/*
* Returns true if the tunnel config obtained by combining 'encap_type_set'
* with 'encap_ip_set' and 'encap_csum' doesn't match the values in
* 'chassis-rec'.
*/
static bool
chassis_tunnels_changed(const struct sset *encap_type_set,
const struct sset *encap_ip_set,
const char *encap_ip_default,
const char *encap_csum,
const struct sbrec_chassis *chassis_rec)
{
struct sset chassis_rec_encap_type_set =
SSET_INITIALIZER(&chassis_rec_encap_type_set);
bool changed = false;
for (size_t i = 0; i < chassis_rec->n_encaps; i++) {
if (strcmp(chassis_rec->name, chassis_rec->encaps[i]->chassis_name)) {
return true;
}
if (!sset_contains(encap_type_set, chassis_rec->encaps[i]->type)) {
changed = true;
break;
}
sset_add(&chassis_rec_encap_type_set, chassis_rec->encaps[i]->type);
if (!sset_contains(encap_ip_set, chassis_rec->encaps[i]->ip)) {
changed = true;
break;
}
if (strcmp(smap_get_def(&chassis_rec->encaps[i]->options, "csum", ""),
encap_csum)) {
changed = true;
break;
}
if (smap_get_bool(&chassis_rec->encaps[i]->options,
"is_default", false)) {
if (!encap_ip_default || strcmp(encap_ip_default,
chassis_rec->encaps[i]->ip)) {
changed = true;
break;
}
} else if (encap_ip_default && !strcmp(encap_ip_default,
chassis_rec->encaps[i]->ip)) {
changed = true;
break;
}
}
if (!changed) {
size_t tunnel_count =
sset_count(encap_type_set) * sset_count(encap_ip_set);
if (tunnel_count != chassis_rec->n_encaps) {
changed = true;
}
}
if (!changed) {
if (sset_count(encap_type_set) !=
sset_count(&chassis_rec_encap_type_set)) {
changed = true;
}
}
sset_destroy(&chassis_rec_encap_type_set);
return changed;
}
/*
* Build the new encaps config (full mesh of 'encap_type_set' and
* 'encap_ip_set'). Allocates and stores the new 'n_encap' Encap records in
* 'encaps'.
*/
static struct sbrec_encap **
chassis_build_encaps(struct ovsdb_idl_txn *ovnsb_idl_txn,
const struct sset *encap_type_set,
const struct sset *encap_ip_set,
const char *encap_ip_default,
const char *chassis_id,
const char *encap_csum,
size_t *n_encap,
struct ovsdb_idl_index *sbrec_encaps_index_by_ip_and_type)
{
size_t tunnel_count = 0;
struct sbrec_encap **encaps =
xmalloc(sset_count(encap_type_set) * sset_count(encap_ip_set) *
sizeof(*encaps));
const struct smap options = SMAP_CONST1(&options, "csum", encap_csum);
const char *encap_ip;
const char *encap_type;
SSET_FOR_EACH (encap_ip, encap_ip_set) {
SSET_FOR_EACH (encap_type, encap_type_set) {
struct sbrec_encap *encap_rec =
encap_lookup_by_ip_and_type(sbrec_encaps_index_by_ip_and_type,
encap_ip, encap_type);
if (encap_rec && strcmp(encap_rec->chassis_name, chassis_id)) {
static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(5, 1);
VLOG_WARN_RL(&rl, "'%s' already has encap ip '%s' and "
"type '%s', cannot duplicate on '%s'",
encap_rec->chassis_name, encap_rec->ip,
encap_rec->type, chassis_id);
/* Build encaps for valid IPs even if bad IPs are
* configured. */
continue;
}
/* Only if an Encap record does not already exist do we create a
* new record. */
if (!encap_rec) {
encap_rec = sbrec_encap_insert(ovnsb_idl_txn);
sbrec_encap_set_type(encap_rec, encap_type);
sbrec_encap_set_ip(encap_rec, encap_ip);
sbrec_encap_set_chassis_name(encap_rec, chassis_id);
}
if (!smap_is_empty(&encap_rec->options) ||
!smap_equal(&options, &encap_rec->options)) {
if (encap_ip_default && !strcmp(encap_ip_default, encap_ip)) {
struct smap _options;
smap_clone(&_options, &options);
smap_add(&_options, "is_default", "true");
sbrec_encap_set_options(encap_rec, &_options);
smap_destroy(&_options);
} else {
sbrec_encap_set_options(encap_rec, &options);
}
}
encaps[tunnel_count] = encap_rec;
tunnel_count++;
}
}
*n_encap = tunnel_count;
return encaps;
}
/* 'struct sset' of all supported options in other_confing. Anything missing
* in this set will be removed from the chassis configuration. */
static void
update_supported_sset(struct sset *supported)
{
/* OvS external_ids. */
sset_add(supported, "ovn-bridge-mappings");
sset_add(supported, "datapath-type");
sset_add(supported, "ovn-cms-options");
sset_add(supported, "ovn-monitor-all");
sset_add(supported, "ovn-enable-lflow-cache");
sset_add(supported, "ovn-limit-lflow-cache");
sset_add(supported, "ovn-memlimit-lflow-cache-kb");
sset_add(supported, "ovn-trim-limit-lflow-cache");
sset_add(supported, "ovn-trim-wmark-perc-lflow-cache");
sset_add(supported, "ovn-trim-timeout-ms");
sset_add(supported, "iface-types");
sset_add(supported, "ovn-chassis-mac-mappings");
sset_add(supported, "is-interconn");
sset_add(supported, "ovn-evpn-vxlan-ports");
sset_add(supported, "ovn-evpn-local-ip");
/* Internal options. */
sset_add(supported, "is-vtep");
sset_add(supported, "is-remote");
sset_add(supported, OVN_FEATURE_PORT_UP_NOTIF);
sset_add(supported, OVN_FEATURE_CT_NO_MASKED_LABEL);
sset_add(supported, OVN_FEATURE_MAC_BINDING_TIMESTAMP);
sset_add(supported, OVN_FEATURE_CT_LB_RELATED);
sset_add(supported, OVN_FEATURE_FDB_TIMESTAMP);
sset_add(supported, OVN_FEATURE_LS_DPG_COLUMN);
sset_add(supported, OVN_FEATURE_CT_COMMIT_NAT_V2);
sset_add(supported, OVN_FEATURE_CT_COMMIT_TO_ZONE);
sset_add(supported, OVN_FEATURE_SAMPLE_WITH_REGISTERS);
sset_add(supported, OVN_FEATURE_CT_NEXT_ZONE);
sset_add(supported, OVN_FEATURE_CT_LABEL_FLUSH);
sset_add(supported, OVN_FEATURE_CT_STATE_SAVE);
}
static void
remove_unsupported_options(const struct sbrec_chassis *chassis_rec,
enum chassis_update_status *update_status)
{
struct sset supported_options = SSET_INITIALIZER(&supported_options);
update_supported_sset(&supported_options);
const struct smap_node *node;
SMAP_FOR_EACH (node, &chassis_rec->other_config) {
if (!sset_contains(&supported_options, node->key)) {
VLOG_WARN("Removing unsupported key \"%s\" from chassis record.",
node->key);
sbrec_chassis_update_other_config_delkey(chassis_rec, node->key);
*update_status = CHASSIS_UPDATED;
}
}
sset_destroy(&supported_options);
}
/* If this is a chassis config update after we initialized the record once
* then we should always be able to find it with the ID we saved in
* chassis_state.
* Otherwise (i.e., first time we create the record or if the system-id
* changed) we create a new record.
*
* Sets '*chassis_rec' to point to the local chassis record.
* Returns true if this record was already in the database, false if it was
* just inserted.
*/
static bool
chassis_get_record(struct ovsdb_idl_txn *ovnsb_idl_txn,
struct ovsdb_idl_index *sbrec_chassis_by_name,
const char *chassis_id,
const struct sbrec_chassis **chassis_rec)
{
const struct sbrec_chassis *chassis =
chassis_lookup_by_name(sbrec_chassis_by_name, chassis_id);
if (!chassis && ovnsb_idl_txn) {
/* Create the chassis record. */
VLOG_DBG("Could not find Chassis, will create it: %s", chassis_id);
*chassis_rec = sbrec_chassis_insert(ovnsb_idl_txn);
return false;
}
*chassis_rec = chassis;
return true;
}
/* Update a Chassis record based on the config in the ovs config.
* Returns CHASSIS_UPDATED if 'chassis_rec' was updated, CHASSIS_NEED_DELETE if
* another chassis exists with an encap with same IP and type as 'chassis', and
* returns CHASSIS_NOT_UPDATED otherwise.
*/
static enum chassis_update_status
chassis_update(const struct sbrec_chassis *chassis_rec,
struct ovsdb_idl_txn *ovnsb_idl_txn,
const struct ovs_chassis_cfg *ovs_cfg,
const char *chassis_id,
const struct sset *transport_zones,
struct ovsdb_idl_index *sbrec_encaps_index_by_ip_and_type)
{
enum chassis_update_status update_status = CHASSIS_NOT_UPDATED;
if (strcmp(chassis_id, chassis_rec->name)) {
sbrec_chassis_set_name(chassis_rec, chassis_id);
update_status = CHASSIS_UPDATED;
}
if (strcmp(ovs_cfg->hostname, chassis_rec->hostname)) {
sbrec_chassis_set_hostname(chassis_rec, ovs_cfg->hostname);
update_status = CHASSIS_UPDATED;
}
if (chassis_other_config_changed(ovs_cfg, chassis_rec)) {
struct smap other_config;
smap_clone(&other_config, &chassis_rec->other_config);
chassis_build_other_config(ovs_cfg, &other_config);
sbrec_chassis_verify_other_config(chassis_rec);
sbrec_chassis_set_other_config(chassis_rec, &other_config);
smap_destroy(&other_config);
update_status = CHASSIS_UPDATED;
}
update_chassis_transport_zones(transport_zones, chassis_rec);
remove_unsupported_options(chassis_rec, &update_status);
/* If any of the encaps should change, update them. */
bool tunnels_changed =
chassis_tunnels_changed(&ovs_cfg->encap_type_set,
&ovs_cfg->encap_ip_set,
ovs_cfg->encap_ip_default,
ovs_cfg->encap_csum,
chassis_rec);
if (!tunnels_changed) {
return update_status;
}
struct sbrec_encap **encaps;
size_t n_encap;
encaps =
chassis_build_encaps(ovnsb_idl_txn, &ovs_cfg->encap_type_set,
&ovs_cfg->encap_ip_set,
ovs_cfg->encap_ip_default, chassis_id,
ovs_cfg->encap_csum, &n_encap,
sbrec_encaps_index_by_ip_and_type);
sbrec_chassis_set_encaps(chassis_rec, encaps, n_encap);
free(encaps);
if (!n_encap) {
return CHASSIS_NEED_DELETE;
}
return CHASSIS_UPDATED;
}
/* If this is a chassis_private config update after we initialized the record
* once then we should always be able to find it with the ID we saved in
* chassis_state.
* Otherwise (i.e., first time we created the chassis record or if the
* system-id changed) we create a new record.
*
* Returns the local chassis record.
*/
static const struct sbrec_chassis_private *
chassis_private_get_record(
struct ovsdb_idl_txn *ovnsb_idl_txn,
struct ovsdb_idl_index *sbrec_chassis_pvt_by_name,
const char *chassis_id)
{
const struct sbrec_chassis_private *chassis_p =
chassis_private_lookup_by_name(sbrec_chassis_pvt_by_name,
chassis_id);
if (!chassis_p) {
return sbrec_chassis_private_insert(ovnsb_idl_txn);
}
return chassis_p;
}
static void
chassis_private_update(const struct sbrec_chassis_private *chassis_pvt,
const struct sbrec_chassis *chassis,
const char *chassis_id)
{
if (!chassis_pvt->name || strcmp(chassis_pvt->name, chassis_id)) {
sbrec_chassis_private_set_name(chassis_pvt, chassis_id);
}
if (chassis_pvt->chassis != chassis) {
sbrec_chassis_private_set_chassis(chassis_pvt, chassis);
}
}
/* Returns this chassis's Chassis record, if it is available. */
const struct sbrec_chassis *
chassis_run(struct ovsdb_idl_txn *ovnsb_idl_txn,
struct ovsdb_idl_index *sbrec_chassis_by_name,
struct ovsdb_idl_index *sbrec_chassis_private_by_name,
const struct ovsrec_open_vswitch_table *ovs_table,
const char *chassis_id,
const struct ovsrec_bridge *br_int,
const struct sset *transport_zones,
const struct sbrec_chassis_private **chassis_private,
struct ovsdb_idl_index *sbrec_encaps_index_by_ip_and_type)
{
struct ovs_chassis_cfg ovs_cfg;
*chassis_private = NULL;
/* Get the chassis config from the ovs table. */
ovs_chassis_cfg_init(&ovs_cfg);
if (!chassis_parse_ovs_config(ovs_table, br_int, &ovs_cfg)) {
return NULL;
}
const struct sbrec_chassis *chassis_rec = NULL;
bool existed = chassis_get_record(ovnsb_idl_txn, sbrec_chassis_by_name,
chassis_id, &chassis_rec);
/* If we found (or created) a record, update it with the correct config
* and store the current chassis_id for fast lookup in case it gets
* modified in the ovs table.
*/
if (chassis_rec && ovnsb_idl_txn) {
enum chassis_update_status update_status =
chassis_update(chassis_rec, ovnsb_idl_txn, &ovs_cfg,
chassis_id,
transport_zones, sbrec_encaps_index_by_ip_and_type);
*chassis_private = chassis_private_get_record(ovnsb_idl_txn,
sbrec_chassis_private_by_name, chassis_id);
if (update_status == CHASSIS_NEED_DELETE) {
sbrec_chassis_delete(chassis_rec);
if (*chassis_private) {
sbrec_chassis_private_delete(*chassis_private);
}
ovs_chassis_cfg_destroy(&ovs_cfg);
return NULL;
}
if (!existed || update_status == CHASSIS_UPDATED) {
ovsdb_idl_txn_add_comment(ovnsb_idl_txn,
"ovn-controller: %s chassis '%s'",
!existed ? "registering" : "updating",
chassis_id);
}
if (*chassis_private) {
chassis_private_update(*chassis_private, chassis_rec, chassis_id);
}
}
ovs_chassis_cfg_destroy(&ovs_cfg);
return existed ? chassis_rec : NULL;
}
bool
chassis_get_mac(const struct sbrec_chassis *chassis_rec,
const char *bridge_mapping,
struct eth_addr *chassis_mac)
{
const char *tokens =
get_chassis_mac_mappings(&chassis_rec->other_config,
chassis_rec->name);
if (!tokens[0]) {
return false;
}
char *save_ptr = NULL;
bool ret = false;
char *tokstr = xstrdup(tokens);
/* Format for a chassis mac configuration is:
* ovn-chassis-mac-mappings="bridge-name1:MAC1,bridge-name2:MAC2"
*/
for (char *token = strtok_r(tokstr, ",", &save_ptr);
token != NULL;
token = strtok_r(NULL, ",", &save_ptr)) {
char *save_ptr2 = NULL;
char *chassis_mac_bridge = strtok_r(token, ":", &save_ptr2);
char *chassis_mac_str = strtok_r(NULL, "", &save_ptr2);
if (!strcmp(chassis_mac_bridge, bridge_mapping)) {
struct eth_addr temp_mac;
/* Return the first chassis mac. */
char *err_str = str_to_mac(chassis_mac_str, &temp_mac);
if (err_str) {
free(err_str);
continue;
}
ret = true;
*chassis_mac = temp_mac;
break;
}
}
free(tokstr);
return ret;
}
const char *
get_ovs_chassis_id(const struct ovsrec_open_vswitch_table *ovs_table)
{
if (cli_system_id) {
return cli_system_id;
}
if (file_system_id) {
return file_system_id;
}
const struct ovsrec_open_vswitch *cfg
= ovsrec_open_vswitch_table_first(ovs_table);
const char *chassis_id = cfg ? smap_get(&cfg->external_ids, "system-id")
: NULL;
if (!chassis_id) {
static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(5, 1);
VLOG_WARN_RL(&rl, "'system-id' in Open_vSwitch database is missing.");
}
return chassis_id;
}
static bool
is_chassis_idx_stored(const struct ovsrec_open_vswitch_table *ovs_table)
{
const struct ovsrec_open_vswitch *cfg =
ovsrec_open_vswitch_table_first(ovs_table);
const char *chassis_id = get_ovs_chassis_id(ovs_table);
if (!chassis_id) {
return false;
}
char *idx_key = xasprintf(CHASSIS_IDX_PREFIX "%s", chassis_id);
const char *idx = smap_get(&cfg->other_config, idx_key);
free(idx_key);
return !!idx;
}
const char *get_chassis_idx(const struct ovsrec_open_vswitch_table *ovs_table)
{
const struct ovsrec_open_vswitch *cfg =
ovsrec_open_vswitch_table_first(ovs_table);
const char *chassis_id = get_ovs_chassis_id(ovs_table);
if (!chassis_id) {
return "";
}
char *idx_key = xasprintf(CHASSIS_IDX_PREFIX "%s", chassis_id);
const char *idx = smap_get_def(&cfg->other_config, idx_key, "");
free(idx_key);
return idx;
}
void
store_chassis_index_if_needed(
const struct ovsrec_open_vswitch_table *ovs_table)
{
const struct ovsrec_open_vswitch *cfg =
ovsrec_open_vswitch_table_first(ovs_table);
if (!cfg) {
return;
}
const char *chassis_id = get_ovs_chassis_id(ovs_table);
char *idx_key = xasprintf(CHASSIS_IDX_PREFIX "%s", chassis_id);
const char *chassis_idx = smap_get(&cfg->other_config, idx_key);
if (!chassis_idx) {
/* Collect all indices so far consumed by other chassis. */
struct sset used_indices = SSET_INITIALIZER(&used_indices);
struct smap_node *node;
SMAP_FOR_EACH (node, &cfg->other_config) {
if (!strncmp(node->key, CHASSIS_IDX_PREFIX,
sizeof(CHASSIS_IDX_PREFIX) - 1)) {
sset_add(&used_indices, node->value);
}
}
/* First chassis on the host: use an empty string to avoid adding an
* unnecessary index character to tunnel port names when a single
* controller is running on the host (the most common case). */
if (!sset_contains(&used_indices, "")) {
ovsrec_open_vswitch_update_other_config_setkey(
cfg, idx_key, "");
goto out;
}
/* Next chassis gets an alphanum index allocated. */
char idx[] = "0";
for (char i = '0'; i <= '9'; i++) {
idx[0] = i;
if (!sset_contains(&used_indices, idx)) {
ovsrec_open_vswitch_update_other_config_setkey(
cfg, idx_key, idx);
goto out;
}
}
for (char i = 'a'; i <= 'z'; i++) {
idx[0] = i;
if (!sset_contains(&used_indices, idx)) {
ovsrec_open_vswitch_update_other_config_setkey(
cfg, idx_key, idx);
goto out;
}
}
/* All indices consumed: it's safer to just exit. */
VLOG_ERR("All unique controller indices consumed. Exiting.");
exit(EXIT_FAILURE);
}
out:
free(idx_key);
}
static void
clear_chassis_index_if_needed(
const struct ovsrec_open_vswitch_table *ovs_table)
{
const struct ovsrec_open_vswitch *cfg =
ovsrec_open_vswitch_table_first(ovs_table);
const char *chassis_id = get_ovs_chassis_id(ovs_table);
char *idx_key = xasprintf(CHASSIS_IDX_PREFIX "%s", chassis_id);
if (smap_get(&cfg->other_config, idx_key)) {
ovsrec_open_vswitch_update_other_config_delkey(cfg, idx_key);
}
free(idx_key);
}
/* Returns true if the database is all cleaned up, false if more work is
* required. */
bool
chassis_cleanup(struct ovsdb_idl_txn *ovs_idl_txn,
struct ovsdb_idl_txn *ovnsb_idl_txn,
const struct ovsrec_open_vswitch_table *ovs_table,
const struct sbrec_chassis *chassis_rec,
const struct sbrec_chassis_private *chassis_private_rec)
{
if (!chassis_rec && !chassis_private_rec &&
!is_chassis_idx_stored(ovs_table)) {
return true;
}
const char *chassis_name = get_ovs_chassis_id(ovs_table);
if (ovs_idl_txn) {
ovsdb_idl_txn_add_comment(
ovs_idl_txn,
"ovn-controller: unregistering chassis index for '%s'",
chassis_name);
clear_chassis_index_if_needed(ovs_table);
}
if (ovnsb_idl_txn) {
ovsdb_idl_txn_add_comment(ovnsb_idl_txn,
"ovn-controller: unregistering chassis '%s'",
chassis_name);
if (chassis_rec) {
sbrec_chassis_delete(chassis_rec);
}
if (chassis_private_rec) {
sbrec_chassis_private_delete(chassis_private_rec);
}
}
return false;
}
|