Skip to content

Commit 979bdc4

Browse files
committed
gobgp inspect
bgp inspect fix fixing bgp inspect
1 parent 6c9c51a commit 979bdc4

File tree

903 files changed

+302680
-925
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

903 files changed

+302680
-925
lines changed

Godeps/Godeps.json

+37-17
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Vagrantfile

-10
Original file line numberDiff line numberDiff line change
@@ -91,11 +91,6 @@ systemctl start openvswitch
9191
ovs-vsctl set-manager ptcp:6640) || exit 1
9292
SCRIPT
9393

94-
provision_gobgp = <<SCRIPT
95-
#Get gobgp binary
96-
wget https://cisco.box.com/shared/static/5leqlo84kjh0thty91ouotilm4ish3nz -q -O #{gopath_folder}/bin/gobgp && chmod +x #{gopath_folder}/bin/gobgp
97-
SCRIPT
98-
9994
provision_bird = <<SCRIPT
10095
## setup the environment file. Export the env-vars passed as args to 'vagrant up'
10196
echo Args passed: [[ $@ ]]
@@ -233,11 +228,6 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
233228
s.inline = provision_common_once
234229
s.args = [node_name, node_addr, cluster_ip_nodes, ENV["http_proxy"] || "", ENV["https_proxy"] || "", ENV["USE_RELEASE"] || "", ENV["CONTIV_CLUSTER_STORE"] || "etcd://localhost:2379", ENV["CONTIV_DOCKER_VERSION"] || "", ENV['CONTIV_NODE_OS'] || "", *ENV['CONTIV_ENV']]
235230
end
236-
if ENV['CONTIV_L3'] then
237-
node.vm.provision "shell" do |s|
238-
s.inline = provision_gobgp
239-
end
240-
end
241231
node.vm.provision "shell", run: "always" do |s|
242232
s.inline = provision_common_always
243233
s.args = [node_name, node_addr]

netmaster/objApi/apiController.go

+30-12
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,6 @@ package objApi
1818
import (
1919
"errors"
2020
"fmt"
21-
"strconv"
22-
"strings"
23-
2421
"github.com/contiv/contivmodel"
2522
"github.com/contiv/netplugin/core"
2623
"github.com/contiv/netplugin/netmaster/gstate"
@@ -30,14 +27,16 @@ import (
3027
"github.com/contiv/netplugin/utils"
3128
"github.com/contiv/netplugin/utils/netutils"
3229
"github.com/contiv/objdb/modeldb"
30+
"strconv"
31+
"strings"
3332

3433
"encoding/json"
3534
"io/ioutil"
3635
"net/http"
3736

3837
log "github.com/Sirupsen/logrus"
3938
"github.com/gorilla/mux"
40-
api "github.com/osrg/gobgp/api"
39+
bgpconf "github.com/osrg/gobgp/config"
4140
)
4241

4342
// APIController stores the api controller state
@@ -47,8 +46,8 @@ type APIController struct {
4746

4847
// BgpInspect is bgp inspect struct
4948
type BgpInspect struct {
50-
Peer *api.Peer
51-
Rib *api.Table
49+
Peers []*bgpconf.Neighbor
50+
Dsts []string
5251
}
5352

5453
var apiCtrler *APIController
@@ -1560,7 +1559,6 @@ func (ac *APIController) BgpUpdate(oldbgpCfg *contivModel.Bgp, NewbgpCfg *contiv
15601559

15611560
//BgpGetOper inspects the oper state of bgp object
15621561
func (ac *APIController) BgpGetOper(bgp *contivModel.BgpInspect) error {
1563-
log.Infof("Received BgpInspect: %+v", bgp)
15641562
var obj *BgpInspect
15651563
var host string
15661564

@@ -1607,12 +1605,18 @@ func (ac *APIController) BgpGetOper(bgp *contivModel.BgpInspect) error {
16071605
if err := json.Unmarshal(response, &obj); err != nil {
16081606
return err
16091607
}
1608+
//Assuming bgp peer state will be only for one neighbor
1609+
if obj.Peers != nil {
1610+
nConf := obj.Peers[0]
1611+
bgp.Oper.NeighborStatus = string(nConf.State.SessionState)
1612+
bgp.Oper.AdminStatus = nConf.State.AdminState
1613+
}
16101614

1611-
bgp.Oper.NeighborStatus = obj.Peer.Info.BgpState
1612-
bgp.Oper.AdminStatus = obj.Peer.Info.AdminState
1613-
bgp.Oper.NumRoutes = len(obj.Rib.Destinations)
1614-
for _, v := range obj.Rib.Destinations {
1615-
bgp.Oper.Routes = append(bgp.Oper.Routes, v.Prefix)
1615+
if obj.Dsts != nil {
1616+
for _, dst := range obj.Dsts {
1617+
bgp.Oper.Routes = append(bgp.Oper.Routes, dst)
1618+
}
1619+
bgp.Oper.NumRoutes = len(bgp.Oper.Routes)
16161620
}
16171621

16181622
return nil
@@ -1802,3 +1806,17 @@ func validatePorts(ports []string) bool {
18021806
}
18031807
return true
18041808
}
1809+
1810+
/*
1811+
func getIp(prefix string) string {
1812+
length := len(prefix)
1813+
var p string
1814+
for i := 0; i+8 < len; i = i + 8 {
1815+
temp := prefix[i : i+8]
1816+
s := strconv.ParseInt(temp, 2, 8)
1817+
1818+
p = string(s) + "."
1819+
}
1820+
1821+
}
1822+
*/

test/systemtests/bgp_test.go

+77-48
Original file line numberDiff line numberDiff line change
@@ -824,7 +824,7 @@ func (s *systemtestSuite) SetupBgp(c *C, misConfig bool) {
824824
var neighborIP, routerIP, hostname string
825825
for num := 0; num < len(s.nodes); num++ {
826826
hostname = fmt.Sprintf("netplugin-node%d", num+1)
827-
fmt.Println("Adding bgp host to", hostname)
827+
logrus.Infof("Adding bgp host to %s", hostname)
828828
netNum := (num + 1) % 3
829829
if netNum == 0 {
830830
routerIP = "80.1.1.2/24"
@@ -863,52 +863,67 @@ func (s *systemtestSuite) TearDownBgp(c *C) {
863863
}
864864
}
865865

866-
func (s *systemtestSuite) CheckBgpConnection(c *C) error {
866+
func (s *systemtestSuite) CheckBgpConnection(c *C) {
867867

868-
count := 0
869-
for i := 0; i < 100; i++ {
870-
if count == len(s.nodes) {
871-
return nil
872-
}
873-
count = 0
874-
time.Sleep(3 * time.Second)
875-
for _, node := range s.nodes {
876-
out, _ := node.tbnode.RunCommandWithOutput("/opt/gopath/bin/gobgp neighbor")
877-
fmt.Println(out)
878-
if strings.Contains(out, "Establ") {
879-
count++
868+
endChan := make(chan error)
869+
for _, n := range s.nodes {
870+
go func(n node) {
871+
for i := 0; i < 100; i++ {
872+
time.Sleep(3 * time.Second)
873+
bgp, err := s.cli.BgpInspect(n.Name())
874+
if err != nil {
875+
continue
876+
}
877+
if strings.Contains(bgp.Oper.NeighborStatus, "established") {
878+
logrus.Infof("Bgp Connection on Node:%s established", n.Name())
879+
endChan <- nil
880+
return
881+
}
880882
}
881-
}
883+
endChan <- errors.New("bgp connection failed")
884+
}(*n)
885+
}
886+
887+
for range s.nodes {
888+
c.Assert(<-endChan, IsNil)
882889
}
883-
return errors.New("BGP connection not established")
884890
}
885891

886-
func (s *systemtestSuite) CheckBgpNoConnection(c *C) error {
892+
func (s *systemtestSuite) CheckBgpNoConnection(c *C) {
887893

888-
count := 0
889-
for i := 0; i < 100; i++ {
890-
if count == len(s.nodes) {
891-
return nil
892-
}
893-
count = 0
894-
time.Sleep(3 * time.Second)
895-
for _, node := range s.nodes {
896-
out, _ := node.tbnode.RunCommandWithOutput("/opt/gopath/bin/gobgp neighbor")
897-
fmt.Println(out)
898-
if !strings.Contains(out, "Establ") {
899-
count++
894+
endChan := make(chan error)
895+
for _, n := range s.nodes {
896+
go func(n node) {
897+
for i := 0; i < 100; i++ {
898+
time.Sleep(3 * time.Second)
899+
bgp, err := s.cli.BgpInspect(n.Name())
900+
if err != nil {
901+
continue
902+
}
903+
if !strings.Contains(bgp.Oper.NeighborStatus, "established") {
904+
logrus.Infof("Bgp Connection on Node:%s established", n.Name())
905+
endChan <- nil
906+
return
907+
}
900908
}
901-
}
909+
endChan <- errors.New("bgp connection failed")
910+
}(*n)
911+
}
912+
913+
for range s.nodes {
914+
c.Assert(<-endChan, IsNil)
902915
}
903-
return errors.New("BGP connection persists")
904916
}
905917

906918
func (s *systemtestSuite) CheckBgpConnectionForaNode(c *C, node remotessh.TestbedNode) error {
907919
for i := 0; i < 100; i++ {
908920
time.Sleep(3 * time.Second)
909-
out, _ := node.RunCommandWithOutput("/opt/gopath/bin/gobgp neighbor")
910-
fmt.Println(out)
911-
if strings.Contains(out, "Establ") {
921+
bgp, err := s.cli.BgpInspect(node.GetName())
922+
if err != nil {
923+
continue
924+
}
925+
if strings.Contains(bgp.Oper.NeighborStatus, "established") {
926+
logrus.Infof("Bgp Connection on Node:%s established", node.GetName())
912927
return nil
913928
}
914929
}
@@ -918,9 +933,12 @@ func (s *systemtestSuite) CheckBgpConnectionForaNode(c *C, node remotessh.Testbe
918933
func (s *systemtestSuite) CheckBgpNoConnectionForaNode(c *C, node remotessh.TestbedNode) error {
919934
for i := 0; i < 100; i++ {
920935
time.Sleep(3 * time.Second)
921-
out, _ := node.RunCommandWithOutput("/opt/gopath/bin/gobgp neighbor")
922-
fmt.Println(out)
923-
if !strings.Contains(out, "Establ") {
936+
bgp, err := s.cli.BgpInspect(node.GetName())
937+
if err != nil {
938+
continue
939+
}
940+
if !strings.Contains(bgp.Oper.NeighborStatus, "established") {
941+
logrus.Infof("Bgp Connection on Node:%s Disconnected", node.GetName())
924942
return nil
925943
}
926944
}
@@ -932,16 +950,25 @@ func (s *systemtestSuite) CheckBgpRouteDistribution(c *C, containers []*containe
932950
for _, n := range s.nodes {
933951
go func(n *node, containers []*container) {
934952
logrus.Infof("Checking Bgp container route distribution on node %s", n.Name())
953+
remoteRoutes := 0
954+
for _, cont := range containers {
955+
if cont.node != n {
956+
remoteRoutes++
957+
}
958+
}
935959
for i := 0; i < 120; i++ {
936960
time.Sleep(1 * time.Second)
937961
contCount := 0
938-
for _, cont := range containers {
939-
out, _ := n.tbnode.RunCommandWithOutput("/opt/gopath/bin/gobgp global rib")
940-
if strings.Contains(out, cont.eth0.ip) {
941-
contCount++
962+
bgp, err := s.cli.BgpInspect(n.Name())
963+
if err == nil {
964+
routes := strings.Join(bgp.Oper.Routes, ",")
965+
for _, cont := range containers {
966+
if strings.Contains(routes, cont.eth0.ip) {
967+
contCount++
968+
}
942969
}
943970
}
944-
if contCount == len(containers) {
971+
if contCount == remoteRoutes {
945972
endChan <- nil
946973
logrus.Infof("Done checking container route distribution on node %s", n.Name())
947974
return
@@ -968,12 +995,14 @@ func (s *systemtestSuite) CheckBgpRouteDistributionIPList(c *C, ips []string) ([
968995
for _, ip := range ips {
969996
nodeCount = 0
970997
for _, node := range s.nodes {
971-
out, _ := node.tbnode.RunCommandWithOutput("/opt/gopath/bin/gobgp global rib")
972-
fmt.Println(out)
973-
if strings.Contains(out, ip) {
974-
nodeCount++
975-
} else {
976-
break
998+
bgp, err := s.cli.BgpInspect(node.Name())
999+
if err == nil {
1000+
routes := strings.Join(bgp.Oper.Routes, ",")
1001+
if !strings.Contains(routes, ip) {
1002+
nodeCount++
1003+
} else {
1004+
break
1005+
}
9771006
}
9781007
}
9791008
if nodeCount == len(s.nodes) {

vendor/github.com/contiv/.gitignore

+3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)