Blame view

net/llc/llc_station.c 20.7 KB
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
2
3
4
5
6
7
8
9
10
11
12
13
  /*
   * llc_station.c - station component of LLC
   *
   * Copyright (c) 1997 by Procom Technology, Inc.
   * 		 2001-2003 by Arnaldo Carvalho de Melo <acme@conectiva.com.br>
   *
   * This program can be redistributed or modified under the terms of the
   * GNU General Public License as published by the Free Software Foundation.
   * This program is distributed without any warranty or implied warranty
   * of merchantability or fitness for a particular purpose.
   *
   * See the GNU General Public License for more details.
   */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
14
15
  #include <linux/init.h>
  #include <linux/module.h>
5a0e3ad6a   Tejun Heo   include cleanup: ...
16
  #include <linux/slab.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
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
  #include <net/llc.h>
  #include <net/llc_sap.h>
  #include <net/llc_conn.h>
  #include <net/llc_c_ac.h>
  #include <net/llc_s_ac.h>
  #include <net/llc_c_ev.h>
  #include <net/llc_c_st.h>
  #include <net/llc_s_ev.h>
  #include <net/llc_s_st.h>
  #include <net/llc_pdu.h>
  
  /**
   * struct llc_station - LLC station component
   *
   * SAP and connection resource manager, one per adapter.
   *
   * @state - state of station
   * @xid_r_count - XID response PDU counter
   * @mac_sa - MAC source address
   * @sap_list - list of related SAPs
   * @ev_q - events entering state mach.
   * @mac_pdu_q - PDUs ready to send to MAC
   */
  struct llc_station {
  	u8			    state;
  	u8			    xid_r_count;
  	struct timer_list	    ack_timer;
  	u8			    retry_count;
  	u8			    maximum_retry;
  	struct {
  		struct sk_buff_head list;
  		spinlock_t	    lock;
  	} ev_q;
  	struct sk_buff_head	    mac_pdu_q;
  };
590232a71   Arnaldo Carvalho de Melo   [LLC]: Add sysctl...
52
53
54
  #define LLC_STATION_ACK_TIME (3 * HZ)
  
  int sysctl_llc_station_ack_timeout = LLC_STATION_ACK_TIME;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
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
  /* Types of events (possible values in 'ev->type') */
  #define LLC_STATION_EV_TYPE_SIMPLE	1
  #define LLC_STATION_EV_TYPE_CONDITION	2
  #define LLC_STATION_EV_TYPE_PRIM	3
  #define LLC_STATION_EV_TYPE_PDU		4       /* command/response PDU */
  #define LLC_STATION_EV_TYPE_ACK_TMR	5
  #define LLC_STATION_EV_TYPE_RPT_STATUS	6
  
  /* Events */
  #define LLC_STATION_EV_ENABLE_WITH_DUP_ADDR_CHECK		1
  #define LLC_STATION_EV_ENABLE_WITHOUT_DUP_ADDR_CHECK		2
  #define LLC_STATION_EV_ACK_TMR_EXP_LT_RETRY_CNT_MAX_RETRY	3
  #define LLC_STATION_EV_ACK_TMR_EXP_EQ_RETRY_CNT_MAX_RETRY	4
  #define LLC_STATION_EV_RX_NULL_DSAP_XID_C			5
  #define LLC_STATION_EV_RX_NULL_DSAP_0_XID_R_XID_R_CNT_EQ	6
  #define LLC_STATION_EV_RX_NULL_DSAP_1_XID_R_XID_R_CNT_EQ	7
  #define LLC_STATION_EV_RX_NULL_DSAP_TEST_C			8
  #define LLC_STATION_EV_DISABLE_REQ				9
  
  struct llc_station_state_ev {
  	u8		 type;
  	u8		 prim;
  	u8		 prim_type;
  	u8		 reason;
  	struct list_head node; /* node in station->ev_q.list */
  };
  
  static __inline__ struct llc_station_state_ev *
  					llc_station_ev(struct sk_buff *skb)
  {
  	return (struct llc_station_state_ev *)skb->cb;
  }
  
  typedef int (*llc_station_ev_t)(struct sk_buff *skb);
  
  #define LLC_STATION_STATE_DOWN		1	/* initial state */
  #define LLC_STATION_STATE_DUP_ADDR_CHK	2
  #define LLC_STATION_STATE_UP		3
  
  #define LLC_NBR_STATION_STATES		3	/* size of state table */
  
  typedef int (*llc_station_action_t)(struct sk_buff *skb);
  
  /* Station component state table structure */
  struct llc_station_state_trans {
  	llc_station_ev_t ev;
  	u8 next_state;
  	llc_station_action_t *ev_actions;
  };
  
  struct llc_station_state {
  	u8 curr_state;
  	struct llc_station_state_trans **transitions;
  };
  
  static struct llc_station llc_main_station;
  
  static int llc_stat_ev_enable_with_dup_addr_check(struct sk_buff *skb)
  {
d57b1869b   YOSHIFUJI Hideaki   [NET] LLC: Fix wh...
114
  	struct llc_station_state_ev *ev = llc_station_ev(skb);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
115
116
  	return ev->type == LLC_STATION_EV_TYPE_SIMPLE &&
  	       ev->prim_type ==
d57b1869b   YOSHIFUJI Hideaki   [NET] LLC: Fix wh...
117
  			      LLC_STATION_EV_ENABLE_WITH_DUP_ADDR_CHECK ? 0 : 1;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
118
119
120
121
  }
  
  static int llc_stat_ev_enable_without_dup_addr_check(struct sk_buff *skb)
  {
d57b1869b   YOSHIFUJI Hideaki   [NET] LLC: Fix wh...
122
  	struct llc_station_state_ev *ev = llc_station_ev(skb);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
123
124
125
126
127
128
129
  	return ev->type == LLC_STATION_EV_TYPE_SIMPLE &&
  	       ev->prim_type ==
  			LLC_STATION_EV_ENABLE_WITHOUT_DUP_ADDR_CHECK ? 0 : 1;
  }
  
  static int llc_stat_ev_ack_tmr_exp_lt_retry_cnt_max_retry(struct sk_buff *skb)
  {
d57b1869b   YOSHIFUJI Hideaki   [NET] LLC: Fix wh...
130
  	struct llc_station_state_ev *ev = llc_station_ev(skb);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
131
132
133
134
135
136
137
  	return ev->type == LLC_STATION_EV_TYPE_ACK_TMR &&
  		llc_main_station.retry_count <
  		llc_main_station.maximum_retry ? 0 : 1;
  }
  
  static int llc_stat_ev_ack_tmr_exp_eq_retry_cnt_max_retry(struct sk_buff *skb)
  {
d57b1869b   YOSHIFUJI Hideaki   [NET] LLC: Fix wh...
138
  	struct llc_station_state_ev *ev = llc_station_ev(skb);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
139
140
141
142
143
144
145
  	return ev->type == LLC_STATION_EV_TYPE_ACK_TMR &&
  		llc_main_station.retry_count ==
  		llc_main_station.maximum_retry ? 0 : 1;
  }
  
  static int llc_stat_ev_rx_null_dsap_xid_c(struct sk_buff *skb)
  {
d57b1869b   YOSHIFUJI Hideaki   [NET] LLC: Fix wh...
146
  	struct llc_station_state_ev *ev = llc_station_ev(skb);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
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
  	struct llc_pdu_un *pdu = llc_pdu_un_hdr(skb);
  
  	return ev->type == LLC_STATION_EV_TYPE_PDU &&
  	       LLC_PDU_IS_CMD(pdu) &&			/* command PDU */
  	       LLC_PDU_TYPE_IS_U(pdu) &&		/* U type PDU */
  	       LLC_U_PDU_CMD(pdu) == LLC_1_PDU_CMD_XID &&
  	       !pdu->dsap ? 0 : 1;			/* NULL DSAP value */
  }
  
  static int llc_stat_ev_rx_null_dsap_0_xid_r_xid_r_cnt_eq(struct sk_buff *skb)
  {
  	struct llc_station_state_ev *ev = llc_station_ev(skb);
  	struct llc_pdu_un *pdu = llc_pdu_un_hdr(skb);
  
  	return ev->type == LLC_STATION_EV_TYPE_PDU &&
  	       LLC_PDU_IS_RSP(pdu) &&			/* response PDU */
  	       LLC_PDU_TYPE_IS_U(pdu) &&		/* U type PDU */
  	       LLC_U_PDU_RSP(pdu) == LLC_1_PDU_CMD_XID &&
  	       !pdu->dsap &&				/* NULL DSAP value */
  	       !llc_main_station.xid_r_count ? 0 : 1;
  }
  
  static int llc_stat_ev_rx_null_dsap_1_xid_r_xid_r_cnt_eq(struct sk_buff *skb)
  {
  	struct llc_station_state_ev *ev = llc_station_ev(skb);
  	struct llc_pdu_un *pdu = llc_pdu_un_hdr(skb);
  
  	return ev->type == LLC_STATION_EV_TYPE_PDU &&
  	       LLC_PDU_IS_RSP(pdu) &&			/* response PDU */
  	       LLC_PDU_TYPE_IS_U(pdu) &&		/* U type PDU */
  	       LLC_U_PDU_RSP(pdu) == LLC_1_PDU_CMD_XID &&
  	       !pdu->dsap &&				/* NULL DSAP value */
  	       llc_main_station.xid_r_count == 1 ? 0 : 1;
  }
  
  static int llc_stat_ev_rx_null_dsap_test_c(struct sk_buff *skb)
  {
  	struct llc_station_state_ev *ev = llc_station_ev(skb);
  	struct llc_pdu_un *pdu = llc_pdu_un_hdr(skb);
  
  	return ev->type == LLC_STATION_EV_TYPE_PDU &&
  	       LLC_PDU_IS_CMD(pdu) &&			/* command PDU */
  	       LLC_PDU_TYPE_IS_U(pdu) &&		/* U type PDU */
  	       LLC_U_PDU_CMD(pdu) == LLC_1_PDU_CMD_TEST &&
  	       !pdu->dsap ? 0 : 1;			/* NULL DSAP */
  }
  
  static int llc_stat_ev_disable_req(struct sk_buff *skb)
  {
  	struct llc_station_state_ev *ev = llc_station_ev(skb);
  
  	return ev->type == LLC_STATION_EV_TYPE_PRIM &&
  	       ev->prim == LLC_DISABLE_PRIM &&
  	       ev->prim_type == LLC_PRIM_TYPE_REQ ? 0 : 1;
  }
  
  /**
   *	llc_station_send_pdu - queues PDU to send
   *	@skb: Address of the PDU
   *
   *	Queues a PDU to send to the MAC layer.
   */
  static void llc_station_send_pdu(struct sk_buff *skb)
  {
  	skb_queue_tail(&llc_main_station.mac_pdu_q, skb);
  	while ((skb = skb_dequeue(&llc_main_station.mac_pdu_q)) != NULL)
  		if (dev_queue_xmit(skb))
  			break;
  }
  
  static int llc_station_ac_start_ack_timer(struct sk_buff *skb)
  {
590232a71   Arnaldo Carvalho de Melo   [LLC]: Add sysctl...
219
220
  	mod_timer(&llc_main_station.ack_timer,
  		  jiffies + sysctl_llc_station_ack_timeout);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
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
  	return 0;
  }
  
  static int llc_station_ac_set_retry_cnt_0(struct sk_buff *skb)
  {
  	llc_main_station.retry_count = 0;
  	return 0;
  }
  
  static int llc_station_ac_inc_retry_cnt_by_1(struct sk_buff *skb)
  {
  	llc_main_station.retry_count++;
  	return 0;
  }
  
  static int llc_station_ac_set_xid_r_cnt_0(struct sk_buff *skb)
  {
  	llc_main_station.xid_r_count = 0;
  	return 0;
  }
  
  static int llc_station_ac_inc_xid_r_cnt_by_1(struct sk_buff *skb)
  {
  	llc_main_station.xid_r_count++;
  	return 0;
  }
  
  static int llc_station_ac_send_null_dsap_xid_c(struct sk_buff *skb)
  {
  	int rc = 1;
f83f1768f   Joonwoo Park   [LLC]: skb alloca...
251
252
  	struct sk_buff *nskb = llc_alloc_frame(NULL, skb->dev, LLC_PDU_TYPE_U,
  					       sizeof(struct llc_xid_info));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
253
254
255
256
257
  
  	if (!nskb)
  		goto out;
  	llc_pdu_header_init(nskb, LLC_PDU_TYPE_U, 0, 0, LLC_PDU_CMD);
  	llc_pdu_init_as_xid_cmd(nskb, LLC_XID_NULL_CLASS_2, 127);
a5a04819c   Joonwoo Park   [LLC]: station so...
258
  	rc = llc_mac_hdr_init(nskb, skb->dev->dev_addr, skb->dev->dev_addr);
249ff1c6d   Arnaldo Carvalho de Melo   [LLC]: Use some m...
259
  	if (unlikely(rc))
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
260
261
262
263
264
265
266
267
268
269
270
271
272
  		goto free;
  	llc_station_send_pdu(nskb);
  out:
  	return rc;
  free:
  	kfree_skb(skb);
  	goto out;
  }
  
  static int llc_station_ac_send_xid_r(struct sk_buff *skb)
  {
  	u8 mac_da[ETH_ALEN], dsap;
  	int rc = 1;
f83f1768f   Joonwoo Park   [LLC]: skb alloca...
273
274
  	struct sk_buff *nskb = llc_alloc_frame(NULL, skb->dev, LLC_PDU_TYPE_U,
  					       sizeof(struct llc_xid_info));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
275
276
277
278
  
  	if (!nskb)
  		goto out;
  	rc = 0;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
279
280
281
282
  	llc_pdu_decode_sa(skb, mac_da);
  	llc_pdu_decode_ssap(skb, &dsap);
  	llc_pdu_header_init(nskb, LLC_PDU_TYPE_U, 0, dsap, LLC_PDU_RSP);
  	llc_pdu_init_as_xid_rsp(nskb, LLC_XID_NULL_CLASS_2, 127);
a5a04819c   Joonwoo Park   [LLC]: station so...
283
  	rc = llc_mac_hdr_init(nskb, skb->dev->dev_addr, mac_da);
249ff1c6d   Arnaldo Carvalho de Melo   [LLC]: Use some m...
284
  	if (unlikely(rc))
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
285
286
287
288
289
290
291
292
293
294
295
296
297
  		goto free;
  	llc_station_send_pdu(nskb);
  out:
  	return rc;
  free:
  	kfree_skb(skb);
  	goto out;
  }
  
  static int llc_station_ac_send_test_r(struct sk_buff *skb)
  {
  	u8 mac_da[ETH_ALEN], dsap;
  	int rc = 1;
f83f1768f   Joonwoo Park   [LLC]: skb alloca...
298
299
300
301
302
303
  	u32 data_size;
  	struct sk_buff *nskb;
  
  	/* The test request command is type U (llc_len = 3) */
  	data_size = ntohs(eth_hdr(skb)->h_proto) - 3;
  	nskb = llc_alloc_frame(NULL, skb->dev, LLC_PDU_TYPE_U, data_size);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
304
305
306
307
  
  	if (!nskb)
  		goto out;
  	rc = 0;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
308
309
310
  	llc_pdu_decode_sa(skb, mac_da);
  	llc_pdu_decode_ssap(skb, &dsap);
  	llc_pdu_header_init(nskb, LLC_PDU_TYPE_U, 0, dsap, LLC_PDU_RSP);
d57b1869b   YOSHIFUJI Hideaki   [NET] LLC: Fix wh...
311
  	llc_pdu_init_as_test_rsp(nskb, skb);
a5a04819c   Joonwoo Park   [LLC]: station so...
312
  	rc = llc_mac_hdr_init(nskb, skb->dev->dev_addr, mac_da);
249ff1c6d   Arnaldo Carvalho de Melo   [LLC]: Use some m...
313
  	if (unlikely(rc))
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
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
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
  		goto free;
  	llc_station_send_pdu(nskb);
  out:
  	return rc;
  free:
  	kfree_skb(skb);
  	goto out;
  }
  
  static int llc_station_ac_report_status(struct sk_buff *skb)
  {
  	return 0;
  }
  
  /* COMMON STATION STATE transitions */
  
  /* dummy last-transition indicator; common to all state transition groups
   * last entry for this state
   * all members are zeros, .bss zeroes it
   */
  static struct llc_station_state_trans llc_stat_state_trans_end;
  
  /* DOWN STATE transitions */
  
  /* state transition for LLC_STATION_EV_ENABLE_WITH_DUP_ADDR_CHECK event */
  static llc_station_action_t llc_stat_down_state_actions_1[] = {
  	[0] = llc_station_ac_start_ack_timer,
  	[1] = llc_station_ac_set_retry_cnt_0,
  	[2] = llc_station_ac_set_xid_r_cnt_0,
  	[3] = llc_station_ac_send_null_dsap_xid_c,
  	[4] = NULL,
  };
  
  static struct llc_station_state_trans llc_stat_down_state_trans_1 = {
  	.ev	    = llc_stat_ev_enable_with_dup_addr_check,
  	.next_state = LLC_STATION_STATE_DUP_ADDR_CHK,
  	.ev_actions = llc_stat_down_state_actions_1,
  };
  
  /* state transition for LLC_STATION_EV_ENABLE_WITHOUT_DUP_ADDR_CHECK event */
  static llc_station_action_t llc_stat_down_state_actions_2[] = {
  	[0] = llc_station_ac_report_status,	/* STATION UP */
  	[1] = NULL,
  };
  
  static struct llc_station_state_trans llc_stat_down_state_trans_2 = {
  	.ev	    = llc_stat_ev_enable_without_dup_addr_check,
  	.next_state = LLC_STATION_STATE_UP,
  	.ev_actions = llc_stat_down_state_actions_2,
  };
  
  /* array of pointers; one to each transition */
  static struct llc_station_state_trans *llc_stat_dwn_state_trans[] = {
  	[0] = &llc_stat_down_state_trans_1,
  	[1] = &llc_stat_down_state_trans_2,
  	[2] = &llc_stat_state_trans_end,
  };
  
  /* UP STATE transitions */
  /* state transition for LLC_STATION_EV_DISABLE_REQ event */
  static llc_station_action_t llc_stat_up_state_actions_1[] = {
  	[0] = llc_station_ac_report_status,	/* STATION DOWN */
  	[1] = NULL,
  };
  
  static struct llc_station_state_trans llc_stat_up_state_trans_1 = {
  	.ev	    = llc_stat_ev_disable_req,
  	.next_state = LLC_STATION_STATE_DOWN,
  	.ev_actions = llc_stat_up_state_actions_1,
  };
  
  /* state transition for LLC_STATION_EV_RX_NULL_DSAP_XID_C event */
  static llc_station_action_t llc_stat_up_state_actions_2[] = {
  	[0] = llc_station_ac_send_xid_r,
  	[1] = NULL,
  };
  
  static struct llc_station_state_trans llc_stat_up_state_trans_2 = {
  	.ev	    = llc_stat_ev_rx_null_dsap_xid_c,
  	.next_state = LLC_STATION_STATE_UP,
  	.ev_actions = llc_stat_up_state_actions_2,
  };
  
  /* state transition for LLC_STATION_EV_RX_NULL_DSAP_TEST_C event */
  static llc_station_action_t llc_stat_up_state_actions_3[] = {
  	[0] = llc_station_ac_send_test_r,
  	[1] = NULL,
  };
  
  static struct llc_station_state_trans llc_stat_up_state_trans_3 = {
  	.ev	    = llc_stat_ev_rx_null_dsap_test_c,
  	.next_state = LLC_STATION_STATE_UP,
  	.ev_actions = llc_stat_up_state_actions_3,
  };
  
  /* array of pointers; one to each transition */
  static struct llc_station_state_trans *llc_stat_up_state_trans [] = {
  	[0] = &llc_stat_up_state_trans_1,
  	[1] = &llc_stat_up_state_trans_2,
  	[2] = &llc_stat_up_state_trans_3,
  	[3] = &llc_stat_state_trans_end,
  };
  
  /* DUP ADDR CHK STATE transitions */
  /* state transition for LLC_STATION_EV_RX_NULL_DSAP_0_XID_R_XID_R_CNT_EQ
   * event
   */
  static llc_station_action_t llc_stat_dupaddr_state_actions_1[] = {
  	[0] = llc_station_ac_inc_xid_r_cnt_by_1,
  	[1] = NULL,
  };
  
  static struct llc_station_state_trans llc_stat_dupaddr_state_trans_1 = {
  	.ev	    = llc_stat_ev_rx_null_dsap_0_xid_r_xid_r_cnt_eq,
  	.next_state = LLC_STATION_STATE_DUP_ADDR_CHK,
  	.ev_actions = llc_stat_dupaddr_state_actions_1,
  };
  
  /* state transition for LLC_STATION_EV_RX_NULL_DSAP_1_XID_R_XID_R_CNT_EQ
   * event
   */
  static llc_station_action_t llc_stat_dupaddr_state_actions_2[] = {
  	[0] = llc_station_ac_report_status,	/* DUPLICATE ADDRESS FOUND */
  	[1] = NULL,
  };
  
  static struct llc_station_state_trans llc_stat_dupaddr_state_trans_2 = {
  	.ev	    = llc_stat_ev_rx_null_dsap_1_xid_r_xid_r_cnt_eq,
  	.next_state = LLC_STATION_STATE_DOWN,
  	.ev_actions = llc_stat_dupaddr_state_actions_2,
  };
  
  /* state transition for LLC_STATION_EV_RX_NULL_DSAP_XID_C event */
  static llc_station_action_t llc_stat_dupaddr_state_actions_3[] = {
  	[0] = llc_station_ac_send_xid_r,
  	[1] = NULL,
  };
  
  static struct llc_station_state_trans llc_stat_dupaddr_state_trans_3 = {
  	.ev	    = llc_stat_ev_rx_null_dsap_xid_c,
  	.next_state = LLC_STATION_STATE_DUP_ADDR_CHK,
  	.ev_actions = llc_stat_dupaddr_state_actions_3,
  };
  
  /* state transition for LLC_STATION_EV_ACK_TMR_EXP_LT_RETRY_CNT_MAX_RETRY
   * event
   */
  static llc_station_action_t llc_stat_dupaddr_state_actions_4[] = {
  	[0] = llc_station_ac_start_ack_timer,
  	[1] = llc_station_ac_inc_retry_cnt_by_1,
  	[2] = llc_station_ac_set_xid_r_cnt_0,
  	[3] = llc_station_ac_send_null_dsap_xid_c,
  	[4] = NULL,
  };
  
  static struct llc_station_state_trans llc_stat_dupaddr_state_trans_4 = {
  	.ev	    = llc_stat_ev_ack_tmr_exp_lt_retry_cnt_max_retry,
  	.next_state = LLC_STATION_STATE_DUP_ADDR_CHK,
  	.ev_actions = llc_stat_dupaddr_state_actions_4,
  };
  
  /* state transition for LLC_STATION_EV_ACK_TMR_EXP_EQ_RETRY_CNT_MAX_RETRY
   * event
   */
  static llc_station_action_t llc_stat_dupaddr_state_actions_5[] = {
  	[0] = llc_station_ac_report_status,	/* STATION UP */
  	[1] = NULL,
  };
  
  static struct llc_station_state_trans llc_stat_dupaddr_state_trans_5 = {
  	.ev	    = llc_stat_ev_ack_tmr_exp_eq_retry_cnt_max_retry,
  	.next_state = LLC_STATION_STATE_UP,
  	.ev_actions = llc_stat_dupaddr_state_actions_5,
  };
  
  /* state transition for LLC_STATION_EV_DISABLE_REQ event */
  static llc_station_action_t llc_stat_dupaddr_state_actions_6[] = {
  	[0] = llc_station_ac_report_status,	/* STATION DOWN */
  	[1] = NULL,
  };
  
  static struct llc_station_state_trans llc_stat_dupaddr_state_trans_6 = {
  	.ev	    = llc_stat_ev_disable_req,
  	.next_state = LLC_STATION_STATE_DOWN,
  	.ev_actions = llc_stat_dupaddr_state_actions_6,
  };
  
  /* array of pointers; one to each transition */
  static struct llc_station_state_trans *llc_stat_dupaddr_state_trans[] = {
  	[0] = &llc_stat_dupaddr_state_trans_6,	/* Request */
  	[1] = &llc_stat_dupaddr_state_trans_4,	/* Timer */
  	[2] = &llc_stat_dupaddr_state_trans_5,
  	[3] = &llc_stat_dupaddr_state_trans_1,	/* Receive frame */
  	[4] = &llc_stat_dupaddr_state_trans_2,
  	[5] = &llc_stat_dupaddr_state_trans_3,
  	[6] = &llc_stat_state_trans_end,
  };
  
  static struct llc_station_state
  			llc_station_state_table[LLC_NBR_STATION_STATES] = {
  	[LLC_STATION_STATE_DOWN - 1] = {
  		.curr_state  = LLC_STATION_STATE_DOWN,
  		.transitions = llc_stat_dwn_state_trans,
  	},
  	[LLC_STATION_STATE_DUP_ADDR_CHK - 1] = {
  		.curr_state  = LLC_STATION_STATE_DUP_ADDR_CHK,
  		.transitions = llc_stat_dupaddr_state_trans,
  	},
  	[LLC_STATION_STATE_UP - 1] = {
  		.curr_state  = LLC_STATION_STATE_UP,
  		.transitions = llc_stat_up_state_trans,
  	},
  };
  
  /**
   *	llc_exec_station_trans_actions - executes actions for transition
   *	@trans: Address of the transition
   *	@skb: Address of the event that caused the transition
   *
   *	Executes actions of a transition of the station state machine. Returns
   *	0 if all actions complete successfully, nonzero otherwise.
   */
  static u16 llc_exec_station_trans_actions(struct llc_station_state_trans *trans,
  					  struct sk_buff *skb)
  {
  	u16 rc = 0;
  	llc_station_action_t *next_action = trans->ev_actions;
  
  	for (; next_action && *next_action; next_action++)
  		if ((*next_action)(skb))
  			rc = 1;
  	return rc;
  }
  
  /**
   *	llc_find_station_trans - finds transition for this event
   *	@skb: Address of the event
   *
   *	Search thru events of the current state of the station until list
   *	exhausted or it's obvious that the event is not valid for the current
   *	state. Returns the address of the transition if cound, %NULL otherwise.
   */
  static struct llc_station_state_trans *
  				llc_find_station_trans(struct sk_buff *skb)
  {
  	int i = 0;
  	struct llc_station_state_trans *rc = NULL;
  	struct llc_station_state_trans **next_trans;
  	struct llc_station_state *curr_state =
  				&llc_station_state_table[llc_main_station.state - 1];
  
  	for (next_trans = curr_state->transitions; next_trans[i]->ev; i++)
  		if (!next_trans[i]->ev(skb)) {
  			rc = next_trans[i];
  			break;
  		}
  	return rc;
  }
  
  /**
   *	llc_station_free_ev - frees an event
   *	@skb: Address of the event
   *
   *	Frees an event.
   */
  static void llc_station_free_ev(struct sk_buff *skb)
  {
  	struct llc_station_state_ev *ev = llc_station_ev(skb);
  
  	if (ev->type == LLC_STATION_EV_TYPE_PDU)
  		kfree_skb(skb);
  }
  
  /**
   *	llc_station_next_state - processes event and goes to the next state
   *	@skb: Address of the event
   *
   *	Processes an event, executes any transitions related to that event and
   *	updates the state of the station.
   */
  static u16 llc_station_next_state(struct sk_buff *skb)
  {
  	u16 rc = 1;
  	struct llc_station_state_trans *trans;
  
  	if (llc_main_station.state > LLC_NBR_STATION_STATES)
  		goto out;
  	trans = llc_find_station_trans(skb);
  	if (trans) {
  		/* got the state to which we next transition; perform the
  		 * actions associated with this transition before actually
  		 * transitioning to the next state
  		 */
  		rc = llc_exec_station_trans_actions(trans, skb);
  		if (!rc)
  			/* transition station to next state if all actions
  			 * execute successfully; done; wait for next event
  			 */
  			llc_main_station.state = trans->next_state;
  	} else
  		/* event not recognized in current state; re-queue it for
  		 * processing again at a later time; return failure
  		 */
  		rc = 0;
  out:
  	llc_station_free_ev(skb);
  	return rc;
  }
  
  /**
   *	llc_station_service_events - service events in the queue
   *
   *	Get an event from the station event queue (if any); attempt to service
   *	the event; if event serviced, get the next event (if any) on the event
   *	queue; if event not service, re-queue the event on the event queue and
   *	attempt to service the next event; when serviced all events in queue,
   *	finished; if don't transition to different state, just service all
   *	events once; if transition to new state, service all events again.
   *	Caller must hold llc_main_station.ev_q.lock.
   */
  static void llc_station_service_events(void)
  {
  	struct sk_buff *skb;
  
  	while ((skb = skb_dequeue(&llc_main_station.ev_q.list)) != NULL)
  		llc_station_next_state(skb);
  }
  
  /**
   *	llc_station_state_process: queue event and try to process queue.
   *	@skb: Address of the event
   *
   *	Queues an event (on the station event queue) for handling by the
   *	station state machine and attempts to process any queued-up events.
   */
  static void llc_station_state_process(struct sk_buff *skb)
  {
  	spin_lock_bh(&llc_main_station.ev_q.lock);
  	skb_queue_tail(&llc_main_station.ev_q.list, skb);
  	llc_station_service_events();
  	spin_unlock_bh(&llc_main_station.ev_q.lock);
  }
  
  static void llc_station_ack_tmr_cb(unsigned long timeout_data)
  {
  	struct sk_buff *skb = alloc_skb(0, GFP_ATOMIC);
  
  	if (skb) {
  		struct llc_station_state_ev *ev = llc_station_ev(skb);
  
  		ev->type = LLC_STATION_EV_TYPE_ACK_TMR;
  		llc_station_state_process(skb);
  	}
  }
  
  /*
   *	llc_station_rcv - send received pdu to the station state machine
   *	@skb: received frame.
   *
   *	Sends data unit to station state machine.
   */
  static void llc_station_rcv(struct sk_buff *skb)
  {
  	struct llc_station_state_ev *ev = llc_station_ev(skb);
  
  	ev->type   = LLC_STATION_EV_TYPE_PDU;
  	ev->reason = 0;
  	llc_station_state_process(skb);
  }
  
  int __init llc_station_init(void)
  {
2507136f7   Dan Carpenter   net/llc: storing ...
686
  	int rc = -ENOBUFS;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
687
688
689
690
691
692
  	struct sk_buff *skb;
  	struct llc_station_state_ev *ev;
  
  	skb_queue_head_init(&llc_main_station.mac_pdu_q);
  	skb_queue_head_init(&llc_main_station.ev_q.list);
  	spin_lock_init(&llc_main_station.ev_q.lock);
b24b8a247   Pavel Emelyanov   [NET]: Convert in...
693
694
  	setup_timer(&llc_main_station.ack_timer, llc_station_ack_tmr_cb,
  			(unsigned long)&llc_main_station);
590232a71   Arnaldo Carvalho de Melo   [LLC]: Add sysctl...
695
696
  	llc_main_station.ack_timer.expires  = jiffies +
  						sysctl_llc_station_ack_timeout;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
697
698
699
700
701
702
703
  	skb = alloc_skb(0, GFP_ATOMIC);
  	if (!skb)
  		goto out;
  	rc = 0;
  	llc_set_station_handler(llc_station_rcv);
  	ev = llc_station_ev(skb);
  	memset(ev, 0, sizeof(*ev));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
704
705
706
707
708
709
710
711
712
713
714
715
716
  	llc_main_station.maximum_retry	= 1;
  	llc_main_station.state		= LLC_STATION_STATE_DOWN;
  	ev->type	= LLC_STATION_EV_TYPE_SIMPLE;
  	ev->prim_type	= LLC_STATION_EV_ENABLE_WITHOUT_DUP_ADDR_CHECK;
  	rc = llc_station_next_state(skb);
  out:
  	return rc;
  }
  
  void __exit llc_station_exit(void)
  {
  	llc_set_station_handler(NULL);
  }