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
|
package com.lumaserv.bgp;
import com.lumaserv.bgp.protocol.message.BGPNotification;
import com.lumaserv.bgp.protocol.message.BGPOpen;
import com.lumaserv.bgp.protocol.message.BGPUpdate;
import lombok.Getter;
import lombok.Setter;
import java.io.IOException;
import java.util.Optional;
import java.util.Timer;
import java.util.TimerTask;
public class BGPFsm {
public static final int CONFIG_HOLD_TIME = 80; // FIXME use from configuration
public static final byte CONFIG_VERSION = 4;
public final State IDLE;
public final State CONNECT;
public final State ACTIVE;
public final State OPEN_SENT;
public final State OPEN_CONFIRM;
public final State ESTABLISHED;
@Getter
@Setter
State currentState;
boolean delayOpen;
int holdTime;
int connectRetryCounter;
int connectRetryTime = 5; //120;
@Setter
BGPSession session;
Timer keepAliveTimer;
TimerTask keepAliveTimerTask;
Timer holdTimer;
TimerTask holdTimerTask;
Timer connectRetryTimer;
TimerTask connectRetryTimerTask;
class State {
void setState(State next) {
System.out.println("State transition: " + BGPFsm.this + ":" + this + " -> " + next);
// if (next == IDLE)
// throw new RuntimeException();
currentState = next;
}
void manualStart() { throw new RuntimeException("Not implemented: " + this); }
void automaticStart() { throw new RuntimeException("Not implemented: " + this); }
void manualStartPassive() { throw new RuntimeException("Not implemented: " + this); }
void automaticStartPassive() { throw new RuntimeException("Not implemented: " + this); }
void manualStop() { throw new RuntimeException("Not implemented: " + this); }
void automaticStop() { throw new RuntimeException("Not implemented: " + this); }
void holdTimerExpires() { throw new RuntimeException("Not implemented: " + this); }
void keepAliveTimerExpires() { throw new RuntimeException("Not implemented: " + this); }
void connectRetryTimerExpires() { throw new RuntimeException("Not implemented: " + this); }
void tcpCRAcked() { throw new RuntimeException("Not implemented: " + this); }
void tcpConnectionConfirmed() { throw new RuntimeException("Not implemented: " + this); }
void tcpConnectionFails() { throw new RuntimeException("Not implemented: " + this); }
void openMsg(BGPOpen packet) { throw new RuntimeException("Not implemented: " + this); }
void keepAliveMsg() { throw new RuntimeException("Not implemented: " + this); }
void updateMsg(BGPUpdate packet) { throw new RuntimeException("Not implemented: " + this); }
void notifMsgVerErr(BGPNotification msg) { throw new RuntimeException("Not implemented: " + this); }
void notifMsg(BGPNotification msg) { throw new RuntimeException("Not implemented: " + this); }
}
class Idle extends State {
protected void start() {
// - initializes all BGP resources for the peer connection,
setConnectRetryTimer(connectRetryTime);
setState(CONNECT);
// - listens for a connection that may be initiated by the remote
// BGP peer, and
connectRetryCounter = 0;
session.startOutgoing();
}
@Override
void manualStart() {
start();
}
@Override
void automaticStart() {
start();
}
@Override
void manualStop() {
// ignore
}
@Override
void automaticStop() {
// ignore
}
protected void startPassive() {
// - initializes all BGP resources,
// - sets the ConnectRetryCounter to zero,
setConnectRetryTimer(connectRetryTime);
// - listens for a connection that may be initiated by the remote
// peer, and
setState(ACTIVE);
session.startIncoming();
}
@Override
void manualStartPassive() {
startPassive();
}
@Override
void automaticStartPassive() {
startPassive();
}
// TODO implement DampPeerOscillations related events?
// TODO
// Any other event (Events 9-12, 15-28) received in the Idle state
// does not cause change in the state of the local system.
@Override
void connectRetryTimerExpires() {} // Ignore event 9
@Override
void holdTimerExpires() {} // Ignore event 10
@Override
void keepAliveTimerExpires() {} // Ignore event 11
// Event 12 not implemented
// Event 15 not implemented
@Override
void tcpCRAcked() {} // Ignore event 16
@Override
void tcpConnectionConfirmed() {} // Ignore event 17
@Override
void tcpConnectionFails() {} // Ignore event 18
@Override
void openMsg(BGPOpen msg) {} // Ignore event 19
// Event 20 not implemented
//@Override
// TODO void bgpHeaderErr() {} // Ignore event 21
@Override
public String toString() { return "Idle"; }
}
class Connect extends State {
// TODO ignore start events 1, 3-7
@Override
void manualStop() {
session.dropConnection();
// - releases all BGP resources,
connectRetryCounter = 0;
setConnectRetryTimer(0);
setState(IDLE);
}
@Override
void connectRetryTimerExpires() {
System.out.println("connectRetryTimerExpires");
session.dropConnection();
setConnectRetryTimer(connectRetryTime);
// - stops the DelayOpenTimer and resets the timer to zero,
session.retryConnection();
// - continues to listen for a connection that may be initiated by
// the remote BGP peer, and
}
// TODO DelayOpenTimer_Expires event (Event 12)
// TODO TcpConnection_Valid event (Event 14)
// TODO Tcp_CR_Invalid event (Event 15)
protected void tcpCRAckedOrTcpConnectionConfirmed() {
if (delayOpen) {
setConnectRetryTimer(0);
// - sets the DelayOpenTimer to the initial value, and
} else {
setConnectRetryTimer(0);
// - completes BGP initialization
try {
session.sendOpen();
setHoldTimer(4 * 60);
setState(OPEN_SENT);
} catch (IOException ex) {
tcpConnectionFails();
}
}
}
@Override
void tcpCRAcked() {
tcpCRAckedOrTcpConnectionConfirmed();
}
@Override
void tcpConnectionConfirmed() {
tcpCRAckedOrTcpConnectionConfirmed();
}
// FIXME
@Override
void tcpConnectionFails() {
setConnectRetryTimer(0);
// - releases all BGP resources,
// - (optionally) performs peer oscillation damping if the
// DampPeerOscillations attribute is set to TRUE, and
session.dropConnection();
connectRetryCounter++;
setState(IDLE);
}
// TODO
// State notifMsgVerErr() {
// // - sets the ConnectRetryTimer to zero,
// // - releases all BGP resources,
// // - drops the TCP connection, and
// return IDLE;
// }
// State bgpOpen() {
// return
// }
@Override
public String toString() { return "Connect"; }
}
class Active extends State {
@Override
void manualStart() {}
@Override
void automaticStart() {}
@Override
void manualStartPassive() {}
@Override
void automaticStartPassive() {}
protected void stop() {
// - If the DelayOpenTimer is running and the
try {
BGPNotification notification = new BGPNotification()
.setMajorErrorCode(BGPNotification.Error.CEASE.getCode());
session.sendNotification(notification);
} catch (IOException ex) {
}
// - releases all BGP resources including stopping the
// DelayOpenTimer
session.dropConnection();
connectRetryCounter = 0;
setConnectRetryTimer(0);
setState(IDLE);
}
@Override
void manualStop() {
stop();
}
@Override
void automaticStop() {
stop();
}
@Override
void connectRetryTimerExpires() {
setConnectRetryTimer(connectRetryTime);
setState(CONNECT);
session.startOutgoing();
// - continues to listen for a TCP connection that may be initiated
// by a remote BGP peer, and
}
@Override
void tcpConnectionConfirmed() {
if (delayOpen) {
setConnectRetryTimer(0);
// - sets the DelayOpenTimer to the initial value
// (DelayOpenTime), and
// - stays in the Active state.
} else {
setConnectRetryTimer(0);
// - completes the BGP initialization,
try {
session.sendOpen();
setHoldTimer(4 * 60);
setState(OPEN_SENT);
} catch (IOException ex) {
tcpConnectionFails();
}
}
}
@Override
public String toString() { return "Active"; }
}
class OpenSent extends State {
protected void stop(boolean isAutomatic) {
try {
BGPNotification notification = new BGPNotification()
.setMajorErrorCode(BGPNotification.Error.CEASE.getCode());
session.sendNotification(notification);
} catch (IOException ex) {
}
setConnectRetryTimer(0);
// - releases all the BGP resources,
session.dropConnection();
if (isAutomatic) {
connectRetryCounter++;
// - (optionally) performs peer oscillation damping if the
// DampPeerOscillations attribute is set to TRUE, and
} else {
connectRetryCounter = 0;
}
setState(IDLE);
}
@Override
void manualStop() {
stop(false);
}
@Override
void automaticStop() {
stop(true);
}
@Override
void tcpConnectionFails() {
session.dropConnection();
setConnectRetryTimer(connectRetryTime);
// - continues to listen for a connection that may be initiated by
// the remote BGP peer, and
setState(ACTIVE);
}
@Override
void openMsg(BGPOpen msg) {
System.out.println("openMsg:" + msg);
Optional<BGPOpen.AS4Capability> as4Opt =
msg.getAS4Capability();
int remoteAsn = session.getConfiguration().getRemoteAs();
int openAsn = as4Opt.isPresent()
? as4Opt.get().getAsn()
: msg.getAsn();
if(remoteAsn == openAsn) {
// - resets the DelayOpenTimer to zero,
// - sets the BGP ConnectRetryTimer to zero,
session.keepAlive();
if (msg.getHoldTime() < CONFIG_HOLD_TIME)
holdTime = msg.getHoldTime();
else
holdTime = CONFIG_HOLD_TIME;
setKeepAliveTimer();
setHoldTimer(holdTime);
setState(OPEN_CONFIRM);
} else {
System.out.println("Bad asn");
try {
BGPNotification notification = new BGPNotification()
.setMajorErrorCode(BGPNotification.Error.OPEN_MESSAGE_ERROR.getCode())
.setMinorErrorCode(BGPNotification.OpenMessageError.BAD_PEER_AS.getCode());
session.sendNotification(notification);
} catch (IOException ex) {
}
setConnectRetryTimer(0);
// - releases all BGP resources,
session.dropConnection();
connectRetryCounter++;
// - (optionally) performs peer oscillation damping if the
// DampPeerOscillations attribute is TRUE, and
setState(IDLE);
}
}
@Override
public String toString() { return "OpenSent"; }
}
class OpenConfirm extends State {
@Override
void keepAliveMsg() {
// - restarts the HoldTimer and
setState(ESTABLISHED);
session.getConfiguration().getListener().onOpen(session);
}
// TODO implement keepAliveTimerExpires and holdTimerExpires
@Override
void tcpConnectionFails() {
tcpConnectionFailsOrNotifMsg();
}
@Override
void notifMsg(BGPNotification msg) {
tcpConnectionFailsOrNotifMsg();
}
protected void tcpConnectionFailsOrNotifMsg() {
setConnectRetryTimer(0);
// - releases all BGP resources,
session.dropConnection();
connectRetryCounter++;
// - (optionally) performs peer oscillation damping if the
// DampPeerOscillations attribute is set to TRUE, and
setState(IDLE);
}
@Override
public String toString() { return "OpenConfirm"; }
}
class Established extends State {
protected void stop(boolean isAutomatic) {
try {
BGPNotification notification = new BGPNotification()
.setMajorErrorCode(BGPNotification.Error.CEASE.getCode());
session.sendNotification(notification);
} catch (IOException ex) {
}
setConnectRetryTimer(0);
// - deletes all routes associated with this connection,
// - releases all BGP resources,
session.dropConnection();
if (isAutomatic) {
connectRetryCounter++;
// - (optionally in automaticStop) performs peer oscillation damping if the
// DampPeerOscillations attribute is set to TRUE, and
} else {
connectRetryCounter = 0;
}
setState(IDLE);
}
@Override
void manualStop() {
stop(false);
}
@Override
void automaticStop() {
stop(true);
}
@Override
void keepAliveMsg() {
setHoldTimer(holdTime);
}
@Override
void updateMsg(BGPUpdate packet) {
// - processes the message,
setHoldTimer(holdTime);
}
@Override
void holdTimerExpires() {
// - sends a NOTIFICATION message with the Error Code Hold Timer
// Expired,
setConnectRetryTimer(0);
// - releases all BGP resources,
session.dropConnection();
connectRetryCounter++;
// - (optionally) performs peer oscillation damping if the
// DampPeerOscillations attribute is set to TRUE, and
setState(IDLE);
}
@Override
void keepAliveTimerExpires() {
session.keepAlive();
setKeepAliveTimer();
}
@Override
void tcpConnectionFails() {
tcpConnectionFailsOrNotifMsg();
}
@Override
void notifMsg(BGPNotification msg) {
tcpConnectionFailsOrNotifMsg();
}
protected void tcpConnectionFailsOrNotifMsg() {
setConnectRetryTimer(0);
// - deletes all routes associated with this connection,
// - releases all BGP resources,
session.dropConnection();
connectRetryCounter++;
setState(IDLE);
}
@Override
public String toString() { return "Established"; }
}
BGPFsm() {
IDLE = new Idle();
CONNECT = new Connect();
ACTIVE = new Active();
OPEN_SENT = new OpenSent();
OPEN_CONFIRM = new OpenConfirm();
ESTABLISHED = new Established();
currentState = IDLE;
keepAliveTimer = new Timer();
holdTimer = new Timer();
connectRetryTimer = new Timer();
}
private void setKeepAliveTimer() {
// System.out.println("setKeepAliveTimer: " + holdTime / 3);
if (keepAliveTimerTask != null) {
keepAliveTimerTask.cancel();
keepAliveTimerTask = null;
}
if (holdTime <= 0)
return;
keepAliveTimerTask = new TimerTask() {
public void run() {
currentState.keepAliveTimerExpires();
}
};
keepAliveTimer.schedule(keepAliveTimerTask, 1000 * holdTime / 3);
}
private void setHoldTimer(int delay) {
// System.out.println("setHoldTimer: " + delay);
if (holdTimerTask != null) {
holdTimerTask.cancel();
holdTimerTask = null;
}
if (delay <= 0)
return;
holdTimerTask = new TimerTask() {
public void run() {
currentState.holdTimerExpires();
}
};
holdTimer.schedule(holdTimerTask, 1000 * delay);
}
private void setConnectRetryTimer(int delay) {
System.out.println("setHoldTimer(" + this + "):" + delay);
if (connectRetryTimerTask != null) {
connectRetryTimerTask.cancel();
connectRetryTimerTask = null;
}
if (delay <= 0)
return;
connectRetryTimerTask = new TimerTask() {
public void run() {
currentState.connectRetryTimerExpires();
}
};
connectRetryTimer.schedule(connectRetryTimerTask, 1000 * delay);
}
}
|