summaryrefslogtreecommitdiffstats
path: root/usr.sbin/atm/scspd/scsp_hfsm.c
blob: d1bec1616013ff8fcb1888d1993117fd9ade667f (plain)
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
/*
 *
 * ===================================
 * HARP  |  Host ATM Research Platform
 * ===================================
 *
 *
 * This Host ATM Research Platform ("HARP") file (the "Software") is
 * made available by Network Computing Services, Inc. ("NetworkCS")
 * "AS IS".  NetworkCS does not provide maintenance, improvements or
 * support of any kind.
 *
 * NETWORKCS MAKES NO WARRANTIES OR REPRESENTATIONS, EXPRESS OR IMPLIED,
 * INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF MERCHANTABILITY
 * AND FITNESS FOR A PARTICULAR PURPOSE, AS TO ANY ELEMENT OF THE
 * SOFTWARE OR ANY SUPPORT PROVIDED IN CONNECTION WITH THIS SOFTWARE.
 * In no event shall NetworkCS be responsible for any damages, including
 * but not limited to consequential damages, arising from or relating to
 * any use of the Software or related support.
 *
 * Copyright 1994-1998 Network Computing Services, Inc.
 *
 * Copies of this Software may be made, however, the above copyright
 * notice must be reproduced on all copies.
 *
 *	@(#) $FreeBSD$
 *
 */


/*
 * Server Cache Synchronization Protocol (SCSP) Support
 * ----------------------------------------------------
 *
 * HELLO finite state machine
 *
 */

#include <sys/types.h>
#include <sys/param.h>
#include <sys/socket.h>
#include <net/if.h>
#include <netinet/in.h>
#include <netatm/queue.h> 
#include <netatm/atm.h>
#include <netatm/atm_if.h>
#include <netatm/atm_sap.h>
#include <netatm/atm_sys.h>
#include <netatm/atm_ioctl.h>
  
#include <errno.h>
#include <libatm.h>
#include <stdio.h>
#include <syslog.h>

#include "scsp_msg.h"
#include "scsp_if.h"
#include "scsp_var.h"

#ifndef lint
__RCSID("@(#) $FreeBSD$");
#endif


/*
 * HELLO FSM actions
 */
#define	HELLO_ACTION_CNT	7
int	scsp_hello_act_00 __P((Scsp_dcs *, Scsp_msg *));
int	scsp_hello_act_01 __P((Scsp_dcs *, Scsp_msg *));
int	scsp_hello_act_02 __P((Scsp_dcs *, Scsp_msg *));
int	scsp_hello_act_03 __P((Scsp_dcs *, Scsp_msg *));
int	scsp_hello_act_04 __P((Scsp_dcs *, Scsp_msg *));
int	scsp_hello_act_05 __P((Scsp_dcs *, Scsp_msg *));
int	scsp_hello_act_06 __P((Scsp_dcs *, Scsp_msg *));

static int (*scsp_action_vector[HELLO_ACTION_CNT])() = {
	scsp_hello_act_00,
	scsp_hello_act_01,
	scsp_hello_act_02,
	scsp_hello_act_03,
	scsp_hello_act_04,
	scsp_hello_act_05,
	scsp_hello_act_06
};

/*
 * HELLO FSM state table
 */
static int hello_state_table[SCSP_HFSM_EVENT_CNT][SCSP_HFSM_STATE_CNT] = {
	/* 0  1  2  3		     */
	{  1, 1, 1, 1 },	/* 0 */
	{  0, 2, 2, 2 },	/* 1 */
	{  0, 3, 3, 3 },	/* 2 */
	{  0, 0, 4, 4 },	/* 3 */
	{  0, 5, 5, 6 },	/* 4 */
};

/*
 * HELLO finite state machine
 *
 * Arguments:
 *	dcsp	pointer to a DCS control block for the neighbor
 *	event	the event which has occurred
 *	msg	pointer to received message, if there is one
 *
 * Returns:
 *	0	success
 *	errno	error encountered
 *
 */
int
scsp_hfsm(dcsp, event, msg)
	Scsp_dcs	*dcsp;
	int		event;
	Scsp_msg	*msg;
{
	int	action, rc, state;

	/*
	 * Select an action from the state table
	 */
	state = dcsp->sd_hello_state;
	action = hello_state_table[event][state];
	if (scsp_trace_mode & SCSP_TRACE_HFSM) {
		scsp_trace("HFSM: state=%d, event=%d, action=%d\n",
				state, event, action);
	}
	if (action >= HELLO_ACTION_CNT || action <= 0) {
		scsp_log(LOG_ERR, "Hello FSM--invalid action %d; state=%d, event=%d",
				action, dcsp->sd_hello_state, event);
		abort();
	}

	/*
	 * Perform the selected action
	 */
	rc = scsp_action_vector[action](dcsp, msg);

	return(rc);
}


/*
 * HELLO finite state machine action 0
 * Unexpected action -- log an error message
 *
 * Arguments:
 *	dcsp	pointer to DCS control block
 *	msg	pointer to received message (ignored)
 *
 * Returns:
 *	EOPNOTSUPP	always returns EOPNOTSUPP
 *
 */
int
scsp_hello_act_00(dcsp, msg)
	Scsp_dcs	*dcsp;
	Scsp_msg	*msg;
{
	scsp_log(LOG_ERR, "Hello FSM error--unexpected action, state=%d",
			dcsp->sd_hello_state);
	return(EOPNOTSUPP);
}


/*
 * HELLO finite state machine action 1
 * VCC open -- send HELLO message, start hello timer, go to Waiting
 * state
 *
 * Arguments:
 *	dcsp	pointer to DCS control block
 *	msg	pointer to received message (ignored)
 *
 * Returns:
 *	0	success
 *	errno	error encountered
 *
 */
int
scsp_hello_act_01(dcsp, msg)
	Scsp_dcs	*dcsp;
	Scsp_msg	*msg;
{
	int		rc;

	/*
	 * Cancel the VCC open timer if it's running
	 */
	HARP_CANCEL(&dcsp->sd_open_t);

	/*
	 * Go to Waiting state
	 */
	dcsp->sd_hello_state = SCSP_HFSM_WAITING;

	/*
	 * Send a Hello message
	 */
	rc = scsp_send_hello(dcsp);
	if (rc == 0) {
		/*
		 * Success--start the Hello timer
		 */
		HARP_TIMER(&dcsp->sd_hello_h_t, SCSP_HELLO_Interval,
				scsp_hello_timeout);
	}

	return(rc);
}


/*
 * HELLO finite state machine action 2
 * VCC closed -- notify CA FSM, go to Down state, try to re-open VCC
 *
 * Arguments:
 *	dcsp	pointer to DCS control block
 *	msg	pointer to received message (ignored)
 *
 * Returns:
 *	0	success
 *	errno	error encountered
 *
 */
int
scsp_hello_act_02(dcsp, msg)
	Scsp_dcs	*dcsp;
	Scsp_msg	*msg;
{
	int		rc;

	/*
	 * Cancel any current timers
	 */
	HARP_CANCEL(&dcsp->sd_hello_h_t);
	HARP_CANCEL(&dcsp->sd_hello_rcv_t);

	/*
	 * Log the loss of the VCC
	 */
	if (dcsp->sd_hello_state > SCSP_HFSM_WAITING) {
		scsp_log(LOG_ERR, "VC to %s closed",
				format_atm_addr(&dcsp->sd_addr));
	}

	/*
	 * Tell the CA FSM that the conection to the DCS is lost
	 */
	rc = scsp_cafsm(dcsp, SCSP_CAFSM_HELLO_DOWN, (void *)0);

	/*
	 * Go to Down state
	 */
	dcsp->sd_hello_state = SCSP_HFSM_DOWN;

	/*
	 * If our ID is lower than the DCS's, wait a second before
	 * trying to connect.  This should keep both of us from
	 * trying to connect at the same time, resulting in two
	 * VCCs being open.
	 */
	if (scsp_cmp_id(&dcsp->sd_server->ss_lsid,
			&dcsp->sd_dcsid) < 0) {
		/*
		 * Our ID is lower--start the VCC open timer for one
		 * second so we'll try to open the VCC if the DCS
		 * doesn't do it by then
		 */
		HARP_TIMER(&dcsp->sd_open_t, 1, scsp_open_timeout);
	} else {
		/*
		 * Our ID is higher--try to reopen the VCC immediately
		 */
		if (scsp_dcs_connect(dcsp)) {
			/*
			 * Conncect failed -- set a timer and try
			 * again later
			 */
			HARP_TIMER(&dcsp->sd_open_t, SCSP_Open_Interval,
					scsp_open_timeout);
		}
	}

	return(0);
}


/*
 * HELLO finite state machine action 3
 * Hello timer expired -- send HELLO message, restart hello timer
 *
 * Arguments:
 *	dcsp	pointer to DCS control block
 *	msg	pointer to received message (ignored)
 *
 * Returns:
 *	0	success
 *	errno	error encountered
 *
 */
int
scsp_hello_act_03(dcsp, msg)
	Scsp_dcs	*dcsp;
	Scsp_msg	*msg;
{
	int		rc;

	/*
	 * Send a Hello message
	 */
	rc = scsp_send_hello(dcsp);
	if (rc == 0) {
		/*
		 * Success--restart the Hello timer
		 */
		HARP_TIMER(&dcsp->sd_hello_h_t, SCSP_HELLO_Interval,
				scsp_hello_timeout);
	}

	return(rc);
}


/*
 * HELLO finite state machine action 4
 * Receive timer expired -- if we haven't received any Hellos, notify
 * CA FSM and go to Waiting state;  if we've received Hellos, but we
 * weren't in the receiver ID list, go to Unidirectional state
 *
 * Arguments:
 *	dcsp	pointer to DCS control block
 *	msg	pointer to received message (ignored)
 *
 * Returns:
 *	0	success
 *	errno	error encountered
 *
 */
int
scsp_hello_act_04(dcsp, msg)
	Scsp_dcs	*dcsp;
	Scsp_msg	*msg;
{
	int	rc = 0;

	/*
	 * Check whether we'ver received any Hellos lately
	 */
	if (dcsp->sd_hello_rcvd) {
		/*
		 * We've had Hellos since the receive timer was
		 * started--go to Unidirectional state
		 */
		dcsp->sd_hello_rcvd = 0;
		dcsp->sd_hello_state = SCSP_HFSM_UNI_DIR;
	} else {
		/*
		 * We haven't seen any Hellos at all from the DCS in
		 * hello_interval * dead_factor seconds--go to Waiting
		 * state
		 */
		dcsp->sd_hello_state = SCSP_HFSM_WAITING;
	}

	/*
	 * Notify the CA FSM
	 */
	rc = scsp_cafsm(dcsp, SCSP_CAFSM_HELLO_DOWN, (void *)0);

	return(rc);
}


/*
 * HELLO finite state machine action 5
 * Message received -- Ignore all but HELLO messages;  if local server
 * is in receiver list, notify CA FSM and go to Bidirectional state;
 * otherwise, go to Unidirectional state
 *
 * Arguments:
 *	dcsp	pointer to DCS control block
 *	msg	pointer to received message
 *
 * Returns:
 *	0	success
 *	errno	error encountered
 *
 */
int
scsp_hello_act_05(dcsp, msg)
	Scsp_dcs	*dcsp;
	Scsp_msg	*msg;
{
	int	rc;
	Scsp_id	*ridp;

	/*
	 * Null message pointer means message decode failed, so
	 * message must have been invalid.  Go to Waiting state.
	 */
	if (msg == (Scsp_msg *)0) {
		dcsp->sd_hello_state = SCSP_HFSM_WAITING;
		HARP_CANCEL(&dcsp->sd_hello_rcv_t);
		return(0);
	}

	/*
	 * Ignore the message if it isn't a Hello
	 */
	if (msg->sc_msg_type != SCSP_HELLO_MSG) {
		return(0);
	}

	/*
	 * Save relevant information about DCS, but don't let him give
	 * us zero for timeout values
	 */
	if (msg->sc_hello->hello_int) {
		dcsp->sd_hello_int = msg->sc_hello->hello_int;
	} else {
		dcsp->sd_hello_int = 1;
	}
	if (msg->sc_hello->dead_factor) {
		dcsp->sd_hello_df = msg->sc_hello->dead_factor;
	} else {
		dcsp->sd_hello_df = 1;
	}
	dcsp->sd_dcsid = msg->sc_hello->hello_mcp.sid;

	/*
	 * Check the message for the local server's ID
	 */
	for (ridp = &msg->sc_hello->hello_mcp.rid;
			ridp;
			ridp = ridp->next) {
		if (scsp_cmp_id(&dcsp->sd_server->ss_lsid, ridp) == 0) {
			/*
			 * Cancel and restart the receive timer
			 */
			HARP_CANCEL(&dcsp->sd_hello_rcv_t);
			HARP_TIMER(&dcsp->sd_hello_rcv_t,
					dcsp->sd_hello_int * dcsp->sd_hello_df,
					scsp_hello_rcv_timeout);

			/*
			 * Go to Bidirectional state and notify the
			 * CA FSM that the connection is up
			 */
			dcsp->sd_hello_state = SCSP_HFSM_BI_DIR;
			rc = scsp_cafsm(dcsp,
					SCSP_CAFSM_HELLO_UP,
					(void *)0);
			return(rc);
		}
	}

	/*
	 * We weren't in the receiver ID list, so go to
	 * Unidirectional state
	 */
	dcsp->sd_hello_state = SCSP_HFSM_UNI_DIR;

	return(0);
}


/*
 * HELLO finite state machine action 6
 * Message received -- if message is not a HELLO, pass it to the CA
 * FSM;  otherwise, if local server is not in receiver list, notify
 * CA FSM and go to Unidirectional state
 *
 * Arguments:
 *	dcsp	pointer to DCS control block
 *	msg	pointer to received message
 *
 * Returns:
 *	0	success
 *	errno	error encountered
 *
 */
int
scsp_hello_act_06(dcsp, msg)
	Scsp_dcs	*dcsp;
	Scsp_msg	*msg;
{
	int	rc = 0, rcv_found;
	Scsp_id	*ridp;

	/*
	 * Null message pointer means message decode failed, so
	 * message must have been invalid.  Go to Waiting state.
	 */
	if (msg == (Scsp_msg *)0) {
		HARP_CANCEL(&dcsp->sd_hello_rcv_t);
		dcsp->sd_hello_state = SCSP_HFSM_WAITING;
		rc = scsp_cafsm(dcsp, SCSP_CAFSM_HELLO_DOWN, (void *)0);
		return(rc);
	}

	/*
	 * Process the message depending on its type
	 */
	switch(msg->sc_msg_type) {
	case SCSP_CA_MSG:
		rc = scsp_cafsm(dcsp, SCSP_CAFSM_CA_MSG, (void *)msg);
		break;
	case SCSP_CSU_REQ_MSG:
		rc = scsp_cafsm(dcsp, SCSP_CAFSM_CSU_REQ, (void *)msg);
		break;
	case SCSP_CSU_REPLY_MSG:
		rc = scsp_cafsm(dcsp, SCSP_CAFSM_CSU_REPLY,
				(void *)msg);
		break;
	case SCSP_CSUS_MSG:
		rc = scsp_cafsm(dcsp, SCSP_CAFSM_CSUS_MSG, (void *)msg);
		break;
	case SCSP_HELLO_MSG:
		/*
		 * Make sure DCS info is consistent.  The sender ID,
		 * family ID, protocol ID, and server group ID are
		 * checked.
		 */
		if (scsp_cmp_id(&msg->sc_hello->hello_mcp.sid,
					&dcsp->sd_dcsid) ||
				(msg->sc_hello->family_id !=
					dcsp->sd_server->ss_fid) ||
				(msg->sc_hello->hello_mcp.pid !=
					dcsp->sd_server->ss_pid) ||
				(msg->sc_hello->hello_mcp.sgid !=
					dcsp->sd_server->ss_sgid)) {
			/*
			 * Bad info--revert to waiting state
			 */
			HARP_CANCEL(&dcsp->sd_hello_rcv_t);
			dcsp->sd_hello_state = SCSP_HFSM_WAITING;
			rc = scsp_cafsm(dcsp,
					SCSP_CAFSM_HELLO_DOWN,
					(void *)0);
			return(rc);
		}

		/*
		 * Mark the arrival of the Hello message
		 */
		dcsp->sd_hello_rcvd = 1;

		/*
		 * Check the message for the local server's ID
		 */
		for (ridp = &msg->sc_hello->hello_mcp.rid,
					rcv_found = 0;
				ridp;
				ridp = ridp->next) {
			rcv_found = (scsp_cmp_id(ridp,
				&dcsp->sd_server->ss_lsid) == 0);
		}

		if (rcv_found) {
			/*
			 * The LS ID was in the list of receiver IDs--
			 * Reset the Hello receive timer
			 */
			dcsp->sd_hello_rcvd = 0;
			HARP_CANCEL(&dcsp->sd_hello_rcv_t);
			HARP_TIMER(&dcsp->sd_hello_rcv_t,
					dcsp->sd_hello_int *
						dcsp->sd_hello_df,
					scsp_hello_rcv_timeout);
		}
		break;
	}

	return(rc);
}
OpenPOWER on IntegriCloud