summaryrefslogtreecommitdiffhomepage
path: root/server
diff options
context:
space:
mode:
authorFUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>2015-03-14 00:10:40 +0900
committerFUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>2015-03-14 00:10:40 +0900
commit0076c6d4104c1c03715683b11766c69ebfeaee87 (patch)
tree71861e7a3f654ef325304bc85c805117738b5932 /server
parent35924fdd5c411301d9d0122308e20b138b665aef (diff)
server: fix handing of a connection closed by peer
When a peer closed a connection (e.g. after we send a notification), rx goroutine finds it immediately since read() returns an error and kills tomb. The problem is that tx goroutine doesn't check if tomb Dying() so tx doesn't die until tx tries to write keepalive to the socket (and it doesn't never happen if keepalive interval is zero). So fsm does't become idle shortly. This fixes tx to check Dying() and makes sure that it sends notification messages befor dying if they exists. Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Diffstat (limited to 'server')
-rw-r--r--server/fsm.go90
1 files changed, 55 insertions, 35 deletions
diff --git a/server/fsm.go b/server/fsm.go
index f519e984..50323ef1 100644
--- a/server/fsm.go
+++ b/server/fsm.go
@@ -582,47 +582,67 @@ func (h *FSMHandler) openconfirm() bgp.FSMState {
func (h *FSMHandler) sendMessageloop() error {
conn := h.conn
fsm := h.fsm
+ send := func(m *bgp.BGPMessage) error {
+ b, err := m.Serialize()
+ if err != nil {
+ log.WithFields(log.Fields{
+ "Topic": "Peer",
+ "Key": fsm.peerConfig.NeighborAddress,
+ "Data": err,
+ }).Warn("failed to serialize")
+ fsm.bgpMessageStateUpdate(0, false)
+ return nil
+ }
+ _, err = conn.Write(b)
+ if err != nil {
+ h.errorCh <- true
+ return fmt.Errorf("closed")
+ }
+ fsm.bgpMessageStateUpdate(m.Header.Type, false)
+
+ if m.Header.Type == bgp.BGP_MSG_NOTIFICATION {
+ log.WithFields(log.Fields{
+ "Topic": "Peer",
+ "Key": fsm.peerConfig.NeighborAddress,
+ "Data": m,
+ }).Warn("sent notification")
+
+ h.errorCh <- true
+ conn.Close()
+ return fmt.Errorf("closed")
+ } else {
+ log.WithFields(log.Fields{
+ "Topic": "Peer",
+ "Key": fsm.peerConfig.NeighborAddress,
+ "data": m,
+ }).Debug("sent")
+ }
+ return nil
+ }
+
for {
- // this function doesn't check Dying() because we
- // can't die before sending notificaiton. After
- // sending notification, we'll die.
select {
- case m := <-h.outgoing:
- b, err := m.Serialize()
- if err != nil {
- log.WithFields(log.Fields{
- "Topic": "Peer",
- "Key": fsm.peerConfig.NeighborAddress,
- "Data": err,
- }).Warn("failed to serialize")
- fsm.bgpMessageStateUpdate(0, false)
- continue
+ case <-h.t.Dying():
+ // a) if a configuration is deleted, we need
+ // to send notification before we die.
+ //
+ // b) if a recv goroutin found that the
+ // connection is closed and tried to kill us,
+ // we need to die immediately. Otherwise fms
+ // doesn't go to idle.
+ for len(h.outgoing) > 0 {
+ m := <-h.outgoing
+ err := send(m)
+ if err != nil {
+ return nil
+ }
}
- _, err = conn.Write(b)
+ return nil
+ case m := <-h.outgoing:
+ err := send(m)
if err != nil {
- h.errorCh <- true
return nil
}
- fsm.bgpMessageStateUpdate(m.Header.Type, false)
-
- if m.Header.Type == bgp.BGP_MSG_NOTIFICATION {
- log.WithFields(log.Fields{
- "Topic": "Peer",
- "Key": fsm.peerConfig.NeighborAddress,
- "Data": m,
- }).Warn("sent notification")
-
- h.errorCh <- true
- conn.Close()
- return nil
- } else {
- log.WithFields(log.Fields{
- "Topic": "Peer",
- "Key": fsm.peerConfig.NeighborAddress,
- "data": m,
- }).Debug("sent")
- }
-
case <-fsm.keepaliveTicker.C:
m := bgp.NewBGPKeepAliveMessage()
b, _ := m.Serialize()