// Copyright (C) 2014 Nippon Telegraph and Telephone Corporation. // // 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. package server import ( "encoding/json" "fmt" log "github.com/Sirupsen/logrus" "github.com/osrg/gobgp/api" "github.com/osrg/gobgp/config" "github.com/osrg/gobgp/packet" "github.com/osrg/gobgp/policy" "github.com/osrg/gobgp/table" "gopkg.in/tomb.v2" "net" "strconv" "time" ) const ( FSM_CHANNEL_LENGTH = 1024 FLOP_THRESHOLD = time.Second * 30 MIN_CONNECT_RETRY = 10 ) type peerMsgType int const ( _ peerMsgType = iota PEER_MSG_PATH PEER_MSG_PEER_DOWN ) type peerMsg struct { msgType peerMsgType msgData interface{} } type Peer struct { t tomb.Tomb globalConfig config.Global peerConfig config.Neighbor connCh chan net.Conn serverMsgCh chan *serverMsg peerMsgCh chan *peerMsg getActiveCh chan struct{} fsm *FSM adjRib *table.AdjRib // peer and rib are always not one-to-one so should not be // here but it's the simplest and works our first target. rib *table.TableManager isGlobalRib bool rfMap map[bgp.RouteFamily]bool capMap map[bgp.BGPCapabilityCode]bgp.ParameterCapabilityInterface peerInfo *table.PeerInfo siblings map[string]*serverMsgDataPeer outgoing chan *bgp.BGPMessage importPolicies []*policy.Policy defaultImportPolicy config.DefaultPolicyType exportPolicies []*policy.Policy defaultExportPolicy config.DefaultPolicyType } func NewPeer(g config.Global, peer config.Neighbor, serverMsgCh chan *serverMsg, peerMsgCh chan *peerMsg, peerList []*serverMsgDataPeer, isGlobalRib bool, policyMap map[string]*policy.Policy) *Peer { p := &Peer{ globalConfig: g, peerConfig: peer, connCh: make(chan net.Conn), serverMsgCh: serverMsgCh, peerMsgCh: peerMsgCh, getActiveCh: make(chan struct{}), rfMap: make(map[bgp.RouteFamily]bool), capMap: make(map[bgp.BGPCapabilityCode]bgp.ParameterCapabilityInterface), isGlobalRib: isGlobalRib, } p.siblings = make(map[string]*serverMsgDataPeer) for _, s := range peerList { p.siblings[s.address.String()] = s } p.fsm = NewFSM(&g, &peer, p.connCh) peer.BgpNeighborCommonState.State = uint32(bgp.BGP_FSM_IDLE) peer.BgpNeighborCommonState.Downtime = time.Now().Unix() for _, rf := range peer.AfiSafiList { k, _ := bgp.GetRouteFamily(rf.AfiSafiName) p.rfMap[k] = true } p.peerInfo = &table.PeerInfo{ AS: peer.PeerAs, LocalID: g.RouterId, Address: peer.NeighborAddress, } if isGlobalRib { p.peerInfo.ID = g.RouterId } rfList := p.configuredRFlist() p.adjRib = table.NewAdjRib(rfList) p.rib = table.NewTableManager(p.peerConfig.NeighborAddress.String(), rfList) p.setPolicy(policyMap) p.t.Go(p.loop) if !peer.TransportOptions.PassiveMode && !isGlobalRib { p.t.Go(p.connectLoop) } return p } func (peer *Peer) setPolicy(policyMap map[string]*policy.Policy) { // configure import policy policyConfig := peer.peerConfig.ApplyPolicy inPolicies := make([]*policy.Policy, 0) for _, policyName := range policyConfig.ImportPolicies { log.WithFields(log.Fields{ "Topic": "Peer", "Key": peer.peerConfig.NeighborAddress, "PolicyName": policyName, }).Info("import policy installed") if pol, ok := policyMap[policyName]; ok { log.Debug("import policy : ", pol) inPolicies = append(inPolicies, pol) } } peer.importPolicies = inPolicies // configure export policy outPolicies := make([]*policy.Policy, 0) for _, policyName := range policyConfig.ExportPolicies { log.WithFields(log.Fields{ "Topic": "Peer", "Key": peer.peerConfig.NeighborAddress, "PolicyName": policyName, }).Info("export policy installed") if pol, ok := policyMap[policyName]; ok { log.Debug("export policy : ", pol) outPolicies = append(outPolicies, pol) } } peer.exportPolicies = outPolicies } func (peer *Peer) configuredRFlist() []bgp.RouteFamily { rfList := []bgp.RouteFamily{} for _, rf := range peer.peerConfig.AfiSafiList { k, _ := bgp.GetRouteFamily(rf.AfiSafiName) rfList = append(rfList, k) } return rfList } func (peer *Peer) sendPathsToSiblings(pathList []table.Path) { if len(pathList) == 0 { return } pm := &peerMsg{ msgType: PEER_MSG_PATH, msgData: pathList, } for _, s := range peer.siblings { s.peerMsgCh <- pm } } func (peer *Peer) handleBGPmessage(m *bgp.BGPMessage) { log.WithFields(log.Fields{ "Topic": "Peer", "Key": peer.peerConfig.NeighborAddress, "data": m, }).Debug("received") switch m.Header.Type { case bgp.BGP_MSG_OPEN: body := m.Body.(*bgp.BGPOpen) peer.peerInfo.ID = m.Body.(*bgp.BGPOpen).ID r := make(map[bgp.RouteFamily]bool) for _, p := range body.OptParams { if paramCap, y := p.(*bgp.OptionParameterCapability); y { for _, c := range paramCap.Capability { peer.capMap[c.Code()] = c if c.Code() == bgp.BGP_CAP_MULTIPROTOCOL { m := c.(*bgp.CapMultiProtocol) r[bgp.AfiSafiToRouteFamily(m.CapValue.AFI, m.CapValue.SAFI)] = true } } } } for rf, _ := range peer.rfMap { if _, y := r[rf]; !y { delete(peer.rfMap, rf) } } for _, rf := range peer.configuredRFlist() { if _, ok := r[rf]; ok { peer.rfMap[rf] = true } } // calculate HoldTime // RFC 4271 P.13 // a BGP speaker MUST calculate the value of the Hold Timer // by using the smaller of its configured Hold Time and the Hold Time // received in the OPEN message. holdTime := float64(body.HoldTime) myHoldTime := peer.fsm.peerConfig.Timers.HoldTime if holdTime > myHoldTime { peer.fsm.negotiatedHoldTime = myHoldTime } else { peer.fsm.negotiatedHoldTime = holdTime } case bgp.BGP_MSG_ROUTE_REFRESH: rr := m.Body.(*bgp.BGPRouteRefresh) rf := bgp.AfiSafiToRouteFamily(rr.AFI, rr.SAFI) if _, ok := peer.rfMap[rf]; !ok { log.WithFields(log.Fields{ "Topic": "Peer", "Key": peer.peerConfig.NeighborAddress, "Data": rf, }).Warn("Route family isn't supported") return } if _, ok := peer.capMap[bgp.BGP_CAP_ROUTE_REFRESH]; ok { pathList := peer.adjRib.GetOutPathList(rf) peer.sendMessages(table.CreateUpdateMsgFromPaths(pathList)) } else { log.WithFields(log.Fields{ "Topic": "Peer", "Key": peer.peerConfig.NeighborAddress, }).Warn("ROUTE_REFRESH received but the capability wasn't advertised") } case bgp.BGP_MSG_UPDATE: peer.peerConfig.BgpNeighborCommonState.UpdateRecvTime = time.Now().Unix() body := m.Body.(*bgp.BGPUpdate) _, err := bgp.ValidateUpdateMsg(body, peer.rfMap) if err != nil { log.WithFields(log.Fields{ "Topic": "Peer", "Key": peer.peerConfig.NeighborAddress, "error": err, }).Warn("malformed BGP update message") m := err.(*bgp.MessageError) if m.TypeCode != 0 { peer.outgoing <- bgp.NewBGPNotificationMessage(m.TypeCode, m.SubTypeCode, m.Data) } return } table.UpdatePathAttrs4ByteAs(body) msg := table.NewProcessMessage(m, peer.peerInfo) pathList := msg.ToPathList() peer.adjRib.UpdateIn(pathList) peer.sendPathsToSiblings(pathList) } } func (peer *Peer) sendMessages(msgs []*bgp.BGPMessage) { for _, m := range msgs { if peer.peerConfig.BgpNeighborCommonState.State != uint32(bgp.BGP_FSM_ESTABLISHED) { continue } if m.Header.Type != bgp.BGP_MSG_UPDATE { log.Fatal("not update message ", m.Header.Type) } _, y := peer.capMap[bgp.BGP_CAP_FOUR_OCTET_AS_NUMBER] if !y { log.WithFields(log.Fields{ "Topic": "Peer", "Key": peer.peerConfig.NeighborAddress, "data": m, }).Debug("update for 2byte AS peer") table.UpdatePathAttrs2ByteAs(m.Body.(*bgp.BGPUpdate)) } peer.outgoing <- m } } func (peer *Peer) handleREST(restReq *api.RestRequest) { result := &api.RestResponse{} switch restReq.RequestType { case api.REQ_GLOBAL_ADD, api.REQ_GLOBAL_DELETE: rf := restReq.RouteFamily prefixes := restReq.Data["prefix"].([]string) var isWithdraw bool if restReq.RequestType == api.REQ_GLOBAL_DELETE { isWithdraw = true } pList := make([]table.Path, 0, len(prefixes)) for _, prefix := range prefixes { var nlri bgp.AddrPrefixInterface pattr := make([]bgp.PathAttributeInterface, 0) pattr = append(pattr, bgp.NewPathAttributeOrigin(bgp.BGP_ORIGIN_ATTR_TYPE_IGP)) asparam := bgp.NewAs4PathParam(bgp.BGP_ASPATH_ATTR_TYPE_SEQ, []uint32{peer.peerInfo.AS}) pattr = append(pattr, bgp.NewPathAttributeAsPath([]bgp.AsPathParamInterface{asparam})) if rf == bgp.RF_IPv4_UC { ip, net, _ := net.ParseCIDR(prefix) if ip.To4() == nil { result.ResponseErr = fmt.Errorf("Invalid ipv4 prefix: %s", prefix) restReq.ResponseCh <- result close(restReq.ResponseCh) return } ones, _ := net.Mask.Size() nlri = &bgp.NLRInfo{ IPAddrPrefix: *bgp.NewIPAddrPrefix(uint8(ones), ip.String()), } pattr = append(pattr, bgp.NewPathAttributeNextHop("0.0.0.0")) } else if rf == bgp.RF_IPv6_UC { ip, net, _ := net.ParseCIDR(prefix) if ip.To16() == nil { result.ResponseErr = fmt.Errorf("Invalid ipv6 prefix: %s", prefix) restReq.ResponseCh <- result close(restReq.ResponseCh) return } ones, _ := net.Mask.Size() nlri = bgp.NewIPv6AddrPrefix(uint8(ones), ip.String()) pattr = append(pattr, bgp.NewPathAttributeMpReachNLRI("::", []bgp.AddrPrefixInterface{nlri})) } else { result.ResponseErr = fmt.Errorf("Unsupported address family: %s", rf) restReq.ResponseCh <- result close(restReq.ResponseCh) return } p := table.CreatePath(peer.peerInfo, nlri, pattr, isWithdraw, time.Now()) pList = append(pList, p) } pm := &peerMsg{ msgType: PEER_MSG_PATH, msgData: pList, } peer.peerMsgCh <- pm case api.REQ_LOCAL_RIB, api.REQ_GLOBAL_RIB: // just empty so we use ipv4 for any route family j, _ := json.Marshal(table.NewIPv4Table(0)) if peer.fsm.adminState != ADMIN_STATE_DOWN { if t, ok := peer.rib.Tables[restReq.RouteFamily]; ok { j, _ = json.Marshal(t) } } result.Data = j case api.REQ_NEIGHBOR_SHUTDOWN: peer.outgoing <- bgp.NewBGPNotificationMessage(bgp.BGP_ERROR_CEASE, bgp.BGP_ERROR_SUB_ADMINISTRATIVE_SHUTDOWN, nil) case api.REQ_NEIGHBOR_RESET: peer.fsm.idleHoldTime = peer.peerConfig.Timers.IdleHoldTimeAfterReset peer.outgoing <- bgp.NewBGPNotificationMessage(bgp.BGP_ERROR_CEASE, bgp.BGP_ERROR_SUB_ADMINISTRATIVE_RESET, nil) case api.REQ_NEIGHBOR_SOFT_RESET, api.REQ_NEIGHBOR_SOFT_RESET_IN: // soft-reconfiguration inbound peer.sendPathsToSiblings(peer.adjRib.GetInPathList(restReq.RouteFamily)) if restReq.RequestType == api.REQ_NEIGHBOR_SOFT_RESET_IN { break } fallthrough case api.REQ_NEIGHBOR_SOFT_RESET_OUT: pathList := peer.adjRib.GetOutPathList(restReq.RouteFamily) peer.sendMessages(table.CreateUpdateMsgFromPaths(pathList)) case api.REQ_ADJ_RIB_IN, api.REQ_ADJ_RIB_OUT: rf := restReq.RouteFamily if restReq.RequestType == api.REQ_ADJ_RIB_IN { paths := peer.adjRib.GetInPathList(rf) j, _ := json.Marshal(paths) result.Data = j log.Debugf("RouteFamily=%v adj-rib-in found : %d", rf.String(), len(paths)) } else { paths := peer.adjRib.GetOutPathList(rf) j, _ := json.Marshal(paths) result.Data = j log.Debugf("RouteFamily=%v adj-rib-out found : %d", rf.String(), len(paths)) } case api.REQ_NEIGHBOR_ENABLE, api.REQ_NEIGHBOR_DISABLE: r := make(map[string]string) if restReq.RequestType == api.REQ_NEIGHBOR_ENABLE { select { case peer.fsm.adminStateCh <- ADMIN_STATE_UP: log.WithFields(log.Fields{ "Topic": "Peer", "Key": peer.peerConfig.NeighborAddress, }).Debug("ADMIN_STATE_UP requested") r["result"] = "ADMIN_STATE_UP" default: log.Warning("previous request is still remaining. : ", peer.peerConfig.NeighborAddress) r["result"] = "previous request is still remaining" } } else { select { case peer.fsm.adminStateCh <- ADMIN_STATE_DOWN: log.WithFields(log.Fields{ "Topic": "Peer", "Key": peer.peerConfig.NeighborAddress, }).Debug("ADMIN_STATE_DOWN requested") r["result"] = "ADMIN_STATE_DOWN" default: log.Warning("previous request is still remaining. : ", peer.peerConfig.NeighborAddress) r["result"] = "previous request is still remaining" } } j, _ := json.Marshal(r) result.Data = j } restReq.ResponseCh <- result close(restReq.ResponseCh) } func (peer *Peer) sendUpdateMsgFromPaths(pList []table.Path) { pList = func(arg []table.Path) []table.Path { ret := make([]table.Path, 0, len(arg)) for _, path := range arg { if _, ok := peer.rfMap[path.GetRouteFamily()]; !ok { continue } if peer.peerConfig.NeighborAddress.Equal(path.GetSource().Address) { log.WithFields(log.Fields{ "Topic": "Peer", "Key": peer.peerConfig.NeighborAddress, "Data": path, }).Debug("From me, ignore.") continue } if !path.IsWithdraw() { applied, path := peer.applyPolicies(peer.exportPolicies, path) if applied && path == nil { log.WithFields(log.Fields{ "Topic": "Peer", "Key": peer.peerConfig.NeighborAddress, "Data": path, }).Debug("Export policy applied, reject.") continue } else if peer.defaultExportPolicy != config.DEFAULT_POLICY_TYPE_ACCEPT_ROUTE { log.WithFields(log.Fields{ "Topic": "Peer", "Key": peer.peerConfig.NeighborAddress, "Data": path, }).Debug("Default export policy applied, reject.") continue } } ret = append(ret, path.Clone(path.IsWithdraw())) } return ret }(pList) peer.adjRib.UpdateOut(pList) if bgp.FSMState(peer.peerConfig.BgpNeighborCommonState.State) != bgp.BGP_FSM_ESTABLISHED || len(pList) == 0 { return } pList = func(arg []table.Path) []table.Path { ret := make([]table.Path, 0, len(arg)) for _, path := range pList { isLocal := path.GetSource().ID.Equal(peer.peerInfo.LocalID) if isLocal { path.SetNexthop(peer.peerConfig.LocalAddress) } else { table.UpdatePathAttrs(path, &peer.globalConfig, &peer.peerConfig) } ret = append(ret, path) } return ret }(pList) peer.sendMessages(table.CreateUpdateMsgFromPaths(pList)) } // apply policies to the path // if multiple policies are defined, // this function applies each policy to the path in the order that // policies are stored in the array passed to this function. // // the way of applying statements inside a single policy // - apply statement until the condition in the statement matches. // if the condition matches the path, apply the action on the statement and // return value that indicates 'applied' to caller of this function // - if no statement applied, then process the next policy // // if no policy applied, return value that indicates 'not applied' to the caller of this function // // return values: // bool -- indicates that any of policy applied to the path that is passed to this function // table.Path -- indicates new path object that is the result of modification according to // policy's action. // If the applied policy doesn't have a modification action, // then return the path itself that is passed to this function, otherwise return // modified path. // If action of the policy is 'reject', return nil // func (peer *Peer) applyPolicies(policies []*policy.Policy, original table.Path) (bool, table.Path) { var applied bool = true for _, pol := range policies { if result, action, newpath := pol.Apply(original); result { log.Debug("newpath: ", newpath) if action == policy.ROUTE_TYPE_REJECT { log.WithFields(log.Fields{ "Topic": "Peer", "Key": peer.peerConfig.NeighborAddress, "NRLI": original.GetNlri(), }).Debug("path was rejected") // return applied, nil, this means path was rejected return applied, nil } else { // return applied, new path return applied, newpath } } } log.Debug("no policy applied.", original) // return not applied, original path return !applied, original } func (peer *Peer) handlePeerMsg(m *peerMsg) { switch m.msgType { case PEER_MSG_PATH: pList := m.msgData.([]table.Path) paths := []table.Path{} policies := peer.importPolicies log.WithFields(log.Fields{ "Topic": "Peer", "Key": peer.peerConfig.NeighborAddress, }).Debug("Import Policies :", policies) for _, p := range pList { log.Debug("p: ", p) if !p.IsWithdraw() { log.Debug("is not withdraw") if len(policies) != 0 { applied, newPath := peer.applyPolicies(policies, p) if applied { if newPath != nil { log.Debug("path accepted") paths = append(paths, newPath) } } else { if peer.defaultImportPolicy == config.DEFAULT_POLICY_TYPE_ACCEPT_ROUTE { paths = append(paths, p) log.Debug("path accepted by default import policy: ", p) } } } else { paths = append(paths, p) } } else { log.Debug("is withdraw") paths = append(paths, p) } } log.Debug("length of paths: ", len(paths)) if peer.peerConfig.RouteServer.RouteServerClient || peer.isGlobalRib { paths, _ = peer.rib.ProcessPaths(paths) } if peer.isGlobalRib { peer.sendPathsToSiblings(paths) } else { peer.sendUpdateMsgFromPaths(paths) } case PEER_MSG_PEER_DOWN: for _, rf := range peer.configuredRFlist() { pList, _ := peer.rib.DeletePathsforPeer(m.msgData.(*table.PeerInfo), rf) if peer.peerConfig.RouteServer.RouteServerClient { peer.sendUpdateMsgFromPaths(pList) } else if peer.isGlobalRib { peer.sendPathsToSiblings(pList) } } } } func (peer *Peer) handleServerMsg(m *serverMsg) { switch m.msgType { case SRV_MSG_PEER_ADDED: d := m.msgData.(*serverMsgDataPeer) peer.siblings[d.address.String()] = d for _, rf := range peer.configuredRFlist() { if peer.peerConfig.RouteServer.RouteServerClient { peer.sendPathsToSiblings(peer.adjRib.GetInPathList(rf)) } else if peer.isGlobalRib { peer.sendPathsToSiblings(peer.rib.GetPathList(rf)) } } case SRV_MSG_PEER_DELETED: d := m.msgData.(*table.PeerInfo) if _, ok := peer.siblings[d.Address.String()]; ok { delete(peer.siblings, d.Address.String()) for _, rf := range peer.configuredRFlist() { pList, _ := peer.rib.DeletePathsforPeer(d, rf) if peer.peerConfig.RouteServer.RouteServerClient { peer.sendUpdateMsgFromPaths(pList) } else { peer.sendPathsToSiblings(pList) } } } else { log.Warning("can not find peer: ", d.Address.String()) } case SRV_MSG_API: peer.handleREST(m.msgData.(*api.RestRequest)) case SRV_MSG_POLICY_UPDATED: log.Debug("policy updated") d := m.msgData.(map[string]*policy.Policy) peer.setPolicy(d) default: log.Fatal("unknown server msg type ", m.msgType) } } func (peer *Peer) connectLoop() error { var tick int if tick = int(peer.fsm.peerConfig.Timers.ConnectRetry); tick < MIN_CONNECT_RETRY { tick = MIN_CONNECT_RETRY } ticker := time.NewTicker(time.Duration(tick) * time.Second) ticker.Stop() connect := func() { if bgp.FSMState(peer.peerConfig.BgpNeighborCommonState.State) == bgp.BGP_FSM_ACTIVE { var host string addr := peer.peerConfig.NeighborAddress if addr.To4() != nil { host = addr.String() + ":" + strconv.Itoa(bgp.BGP_PORT) } else { host = "[" + addr.String() + "]:" + strconv.Itoa(bgp.BGP_PORT) } conn, err := net.DialTimeout("tcp", host, time.Duration(MIN_CONNECT_RETRY-1)*time.Second) if err == nil { peer.connCh <- conn } else { log.WithFields(log.Fields{ "Topic": "Peer", "Key": peer.peerConfig.NeighborAddress, }).Debugf("failed to connect: %s", err) } } } for { select { case <-peer.t.Dying(): log.WithFields(log.Fields{ "Topic": "Peer", "Key": peer.peerConfig.NeighborAddress, }).Debug("stop connect loop") ticker.Stop() return nil case <-ticker.C: connect() case <-peer.getActiveCh: connect() ticker = time.NewTicker(time.Duration(tick) * time.Second) } } } // this goroutine handles routing table operations func (peer *Peer) loop() error { for { incoming := make(chan *fsmMsg, FSM_CHANNEL_LENGTH) peer.outgoing = make(chan *bgp.BGPMessage, FSM_CHANNEL_LENGTH) var h *FSMHandler if !peer.isGlobalRib { h = NewFSMHandler(peer.fsm, incoming, peer.outgoing) switch peer.peerConfig.BgpNeighborCommonState.State { case uint32(bgp.BGP_FSM_ESTABLISHED): peer.peerConfig.LocalAddress = peer.fsm.LocalAddr() for rf, _ := range peer.rfMap { pathList := peer.adjRib.GetOutPathList(rf) if !peer.peerConfig.RouteServer.RouteServerClient { for _, path := range pathList { path.SetNexthop(peer.peerConfig.LocalAddress) } } peer.sendMessages(table.CreateUpdateMsgFromPaths(pathList)) } peer.fsm.peerConfig.BgpNeighborCommonState.Uptime = time.Now().Unix() peer.fsm.peerConfig.BgpNeighborCommonState.EstablishedCount++ case uint32(bgp.BGP_FSM_ACTIVE): if !peer.peerConfig.TransportOptions.PassiveMode { peer.getActiveCh <- struct{}{} } fallthrough default: peer.fsm.peerConfig.BgpNeighborCommonState.Downtime = time.Now().Unix() } } sameState := true for sameState { select { case <-peer.t.Dying(): close(peer.connCh) peer.outgoing <- bgp.NewBGPNotificationMessage(bgp.BGP_ERROR_CEASE, bgp.BGP_ERROR_SUB_PEER_DECONFIGURED, nil) // h.t.Kill(nil) will be called // internall so even goroutines in // non-established will be killed. h.Stop() return nil case e := <-incoming: switch e.MsgType { case FSM_MSG_STATE_CHANGE: nextState := e.MsgData.(bgp.FSMState) // waits for all goroutines created for the current state h.Wait() oldState := bgp.FSMState(peer.peerConfig.BgpNeighborCommonState.State) peer.peerConfig.BgpNeighborCommonState.State = uint32(nextState) peer.fsm.StateChange(nextState) sameState = false if oldState == bgp.BGP_FSM_ESTABLISHED { t := time.Now() if t.Sub(time.Unix(peer.fsm.peerConfig.BgpNeighborCommonState.Uptime, 0)) < FLOP_THRESHOLD { peer.fsm.peerConfig.BgpNeighborCommonState.Flops++ } for _, rf := range peer.configuredRFlist() { peer.adjRib.DropAllIn(rf) } pm := &peerMsg{ msgType: PEER_MSG_PEER_DOWN, msgData: peer.peerInfo, } for _, s := range peer.siblings { s.peerMsgCh <- pm } } // clear counter if h.fsm.adminState == ADMIN_STATE_DOWN { h.fsm.peerConfig.BgpNeighborCommonState = config.BgpNeighborCommonState{} } case FSM_MSG_BGP_MESSAGE: switch m := e.MsgData.(type) { case *bgp.MessageError: peer.outgoing <- bgp.NewBGPNotificationMessage(m.TypeCode, m.SubTypeCode, m.Data) case *bgp.BGPMessage: peer.handleBGPmessage(m) default: log.WithFields(log.Fields{ "Topic": "Peer", "Key": peer.peerConfig.NeighborAddress, "Data": e.MsgData, }).Panic("unknonw msg type") } } case m := <-peer.serverMsgCh: peer.handleServerMsg(m) case m := <-peer.peerMsgCh: peer.handlePeerMsg(m) } } } } func (peer *Peer) Stop() error { peer.t.Kill(nil) return peer.t.Wait() } func (peer *Peer) PassConn(conn *net.TCPConn) { peer.connCh <- conn } func (peer *Peer) MarshalJSON() ([]byte, error) { f := peer.fsm c := f.peerConfig p := make(map[string]interface{}) capList := make([]int, 0) for k, _ := range peer.capMap { capList = append(capList, int(k)) } p["conf"] = struct { RemoteIP string `json:"remote_ip"` Id string `json:"id"` RemoteAS uint32 `json:"remote_as"` CapRefresh bool `json:"cap_refresh"` CapEnhancedRefresh bool `json:"cap_enhanced_refresh"` RemoteCap []int LocalCap []int }{ RemoteIP: c.NeighborAddress.String(), Id: peer.peerInfo.ID.To4().String(), RemoteAS: c.PeerAs, RemoteCap: capList, LocalCap: []int{int(bgp.BGP_CAP_MULTIPROTOCOL), int(bgp.BGP_CAP_ROUTE_REFRESH), int(bgp.BGP_CAP_FOUR_OCTET_AS_NUMBER)}, } s := c.BgpNeighborCommonState uptime := int64(0) if s.Uptime != 0 { uptime = int64(time.Now().Sub(time.Unix(s.Uptime, 0)).Seconds()) } downtime := int64(0) if s.Downtime != 0 { downtime = int64(time.Now().Sub(time.Unix(s.Downtime, 0)).Seconds()) } advertized := uint32(0) received := uint32(0) accepted := uint32(0) if f.state == bgp.BGP_FSM_ESTABLISHED { for _, rf := range peer.configuredRFlist() { advertized += uint32(peer.adjRib.GetOutCount(rf)) received += uint32(peer.adjRib.GetInCount(rf)) accepted += uint32(peer.adjRib.GetInCount(rf)) } } p["info"] = struct { BgpState string `json:"bgp_state"` AdminState string FsmEstablishedTransitions uint32 `json:"fsm_established_transitions"` TotalMessageOut uint32 `json:"total_message_out"` TotalMessageIn uint32 `json:"total_message_in"` UpdateMessageOut uint32 `json:"update_message_out"` UpdateMessageIn uint32 `json:"update_message_in"` KeepAliveMessageOut uint32 `json:"keepalive_message_out"` KeepAliveMessageIn uint32 `json:"keepalive_message_in"` OpenMessageOut uint32 `json:"open_message_out"` OpenMessageIn uint32 `json:"open_message_in"` NotificationOut uint32 `json:"notification_out"` NotificationIn uint32 `json:"notification_in"` RefreshMessageOut uint32 `json:"refresh_message_out"` RefreshMessageIn uint32 `json:"refresh_message_in"` DiscardedOut uint32 DiscardedIn uint32 Uptime int64 `json:"uptime"` Downtime int64 `json:"downtime"` LastError string `json:"last_error"` Received uint32 Accepted uint32 Advertized uint32 OutQ int Flops uint32 }{ BgpState: f.state.String(), AdminState: f.adminState.String(), FsmEstablishedTransitions: s.EstablishedCount, TotalMessageOut: s.TotalOut, TotalMessageIn: s.TotalIn, UpdateMessageOut: s.UpdateOut, UpdateMessageIn: s.UpdateIn, KeepAliveMessageOut: s.KeepaliveOut, KeepAliveMessageIn: s.KeepaliveIn, OpenMessageOut: s.OpenOut, OpenMessageIn: s.OpenIn, NotificationOut: s.NotifyOut, NotificationIn: s.NotifyIn, RefreshMessageOut: s.RefreshOut, RefreshMessageIn: s.RefreshIn, DiscardedOut: s.DiscardedOut, DiscardedIn: s.DiscardedIn, Uptime: uptime, Downtime: downtime, Received: received, Accepted: accepted, Advertized: advertized, OutQ: len(peer.outgoing), Flops: s.Flops, } return json.Marshal(p) }