2 * llc_station.c - station component of LLC
4 * Copyright (c) 1997 by Procom Technology, Inc.
5 * 2001-2003 by Arnaldo Carvalho de Melo <acme@conectiva.com.br>
7 * This program can be redistributed or modified under the terms of the
8 * GNU General Public License as published by the Free Software Foundation.
9 * This program is distributed without any warranty or implied warranty
10 * of merchantability or fitness for a particular purpose.
12 * See the GNU General Public License for more details.
14 #include <linux/init.h>
15 #include <linux/module.h>
16 #include <linux/slab.h>
18 #include <net/llc_sap.h>
19 #include <net/llc_conn.h>
20 #include <net/llc_c_ac.h>
21 #include <net/llc_s_ac.h>
22 #include <net/llc_c_ev.h>
23 #include <net/llc_c_st.h>
24 #include <net/llc_s_ev.h>
25 #include <net/llc_s_st.h>
26 #include <net/llc_pdu.h>
29 * struct llc_station - LLC station component
31 * SAP and connection resource manager, one per adapter.
33 * @state - state of station
34 * @xid_r_count - XID response PDU counter
35 * @mac_sa - MAC source address
36 * @sap_list - list of related SAPs
37 * @ev_q - events entering state mach.
38 * @mac_pdu_q - PDUs ready to send to MAC
43 struct timer_list ack_timer
;
47 struct sk_buff_head list
;
50 struct sk_buff_head mac_pdu_q
;
53 #define LLC_STATION_ACK_TIME (3 * HZ)
55 int sysctl_llc_station_ack_timeout
= LLC_STATION_ACK_TIME
;
57 /* Types of events (possible values in 'ev->type') */
58 #define LLC_STATION_EV_TYPE_SIMPLE 1
59 #define LLC_STATION_EV_TYPE_CONDITION 2
60 #define LLC_STATION_EV_TYPE_PRIM 3
61 #define LLC_STATION_EV_TYPE_PDU 4 /* command/response PDU */
62 #define LLC_STATION_EV_TYPE_ACK_TMR 5
63 #define LLC_STATION_EV_TYPE_RPT_STATUS 6
66 #define LLC_STATION_EV_ENABLE_WITH_DUP_ADDR_CHECK 1
67 #define LLC_STATION_EV_ENABLE_WITHOUT_DUP_ADDR_CHECK 2
68 #define LLC_STATION_EV_ACK_TMR_EXP_LT_RETRY_CNT_MAX_RETRY 3
69 #define LLC_STATION_EV_ACK_TMR_EXP_EQ_RETRY_CNT_MAX_RETRY 4
70 #define LLC_STATION_EV_RX_NULL_DSAP_XID_C 5
71 #define LLC_STATION_EV_RX_NULL_DSAP_0_XID_R_XID_R_CNT_EQ 6
72 #define LLC_STATION_EV_RX_NULL_DSAP_1_XID_R_XID_R_CNT_EQ 7
73 #define LLC_STATION_EV_RX_NULL_DSAP_TEST_C 8
74 #define LLC_STATION_EV_DISABLE_REQ 9
76 struct llc_station_state_ev
{
81 struct list_head node
; /* node in station->ev_q.list */
84 static __inline__
struct llc_station_state_ev
*
85 llc_station_ev(struct sk_buff
*skb
)
87 return (struct llc_station_state_ev
*)skb
->cb
;
90 typedef int (*llc_station_ev_t
)(struct sk_buff
*skb
);
92 #define LLC_STATION_STATE_DOWN 1 /* initial state */
93 #define LLC_STATION_STATE_DUP_ADDR_CHK 2
94 #define LLC_STATION_STATE_UP 3
96 #define LLC_NBR_STATION_STATES 3 /* size of state table */
98 typedef int (*llc_station_action_t
)(struct sk_buff
*skb
);
100 /* Station component state table structure */
101 struct llc_station_state_trans
{
104 llc_station_action_t
*ev_actions
;
107 struct llc_station_state
{
109 struct llc_station_state_trans
**transitions
;
112 static struct llc_station llc_main_station
;
114 static int llc_stat_ev_enable_with_dup_addr_check(struct sk_buff
*skb
)
116 struct llc_station_state_ev
*ev
= llc_station_ev(skb
);
118 return ev
->type
== LLC_STATION_EV_TYPE_SIMPLE
&&
120 LLC_STATION_EV_ENABLE_WITH_DUP_ADDR_CHECK
? 0 : 1;
123 static int llc_stat_ev_enable_without_dup_addr_check(struct sk_buff
*skb
)
125 struct llc_station_state_ev
*ev
= llc_station_ev(skb
);
127 return ev
->type
== LLC_STATION_EV_TYPE_SIMPLE
&&
129 LLC_STATION_EV_ENABLE_WITHOUT_DUP_ADDR_CHECK
? 0 : 1;
132 static int llc_stat_ev_ack_tmr_exp_lt_retry_cnt_max_retry(struct sk_buff
*skb
)
134 struct llc_station_state_ev
*ev
= llc_station_ev(skb
);
136 return ev
->type
== LLC_STATION_EV_TYPE_ACK_TMR
&&
137 llc_main_station
.retry_count
<
138 llc_main_station
.maximum_retry
? 0 : 1;
141 static int llc_stat_ev_ack_tmr_exp_eq_retry_cnt_max_retry(struct sk_buff
*skb
)
143 struct llc_station_state_ev
*ev
= llc_station_ev(skb
);
145 return ev
->type
== LLC_STATION_EV_TYPE_ACK_TMR
&&
146 llc_main_station
.retry_count
==
147 llc_main_station
.maximum_retry
? 0 : 1;
150 static int llc_stat_ev_rx_null_dsap_xid_c(struct sk_buff
*skb
)
152 struct llc_station_state_ev
*ev
= llc_station_ev(skb
);
153 struct llc_pdu_un
*pdu
= llc_pdu_un_hdr(skb
);
155 return ev
->type
== LLC_STATION_EV_TYPE_PDU
&&
156 LLC_PDU_IS_CMD(pdu
) && /* command PDU */
157 LLC_PDU_TYPE_IS_U(pdu
) && /* U type PDU */
158 LLC_U_PDU_CMD(pdu
) == LLC_1_PDU_CMD_XID
&&
159 !pdu
->dsap
? 0 : 1; /* NULL DSAP value */
162 static int llc_stat_ev_rx_null_dsap_0_xid_r_xid_r_cnt_eq(struct sk_buff
*skb
)
164 struct llc_station_state_ev
*ev
= llc_station_ev(skb
);
165 struct llc_pdu_un
*pdu
= llc_pdu_un_hdr(skb
);
167 return ev
->type
== LLC_STATION_EV_TYPE_PDU
&&
168 LLC_PDU_IS_RSP(pdu
) && /* response PDU */
169 LLC_PDU_TYPE_IS_U(pdu
) && /* U type PDU */
170 LLC_U_PDU_RSP(pdu
) == LLC_1_PDU_CMD_XID
&&
171 !pdu
->dsap
&& /* NULL DSAP value */
172 !llc_main_station
.xid_r_count
? 0 : 1;
175 static int llc_stat_ev_rx_null_dsap_1_xid_r_xid_r_cnt_eq(struct sk_buff
*skb
)
177 struct llc_station_state_ev
*ev
= llc_station_ev(skb
);
178 struct llc_pdu_un
*pdu
= llc_pdu_un_hdr(skb
);
180 return ev
->type
== LLC_STATION_EV_TYPE_PDU
&&
181 LLC_PDU_IS_RSP(pdu
) && /* response PDU */
182 LLC_PDU_TYPE_IS_U(pdu
) && /* U type PDU */
183 LLC_U_PDU_RSP(pdu
) == LLC_1_PDU_CMD_XID
&&
184 !pdu
->dsap
&& /* NULL DSAP value */
185 llc_main_station
.xid_r_count
== 1 ? 0 : 1;
188 static int llc_stat_ev_rx_null_dsap_test_c(struct sk_buff
*skb
)
190 struct llc_station_state_ev
*ev
= llc_station_ev(skb
);
191 struct llc_pdu_un
*pdu
= llc_pdu_un_hdr(skb
);
193 return ev
->type
== LLC_STATION_EV_TYPE_PDU
&&
194 LLC_PDU_IS_CMD(pdu
) && /* command PDU */
195 LLC_PDU_TYPE_IS_U(pdu
) && /* U type PDU */
196 LLC_U_PDU_CMD(pdu
) == LLC_1_PDU_CMD_TEST
&&
197 !pdu
->dsap
? 0 : 1; /* NULL DSAP */
200 static int llc_stat_ev_disable_req(struct sk_buff
*skb
)
202 struct llc_station_state_ev
*ev
= llc_station_ev(skb
);
204 return ev
->type
== LLC_STATION_EV_TYPE_PRIM
&&
205 ev
->prim
== LLC_DISABLE_PRIM
&&
206 ev
->prim_type
== LLC_PRIM_TYPE_REQ
? 0 : 1;
210 * llc_station_send_pdu - queues PDU to send
211 * @skb: Address of the PDU
213 * Queues a PDU to send to the MAC layer.
215 static void llc_station_send_pdu(struct sk_buff
*skb
)
217 skb_queue_tail(&llc_main_station
.mac_pdu_q
, skb
);
218 while ((skb
= skb_dequeue(&llc_main_station
.mac_pdu_q
)) != NULL
)
219 if (dev_queue_xmit(skb
))
223 static int llc_station_ac_start_ack_timer(struct sk_buff
*skb
)
225 mod_timer(&llc_main_station
.ack_timer
,
226 jiffies
+ sysctl_llc_station_ack_timeout
);
230 static int llc_station_ac_set_retry_cnt_0(struct sk_buff
*skb
)
232 llc_main_station
.retry_count
= 0;
236 static int llc_station_ac_inc_retry_cnt_by_1(struct sk_buff
*skb
)
238 llc_main_station
.retry_count
++;
242 static int llc_station_ac_set_xid_r_cnt_0(struct sk_buff
*skb
)
244 llc_main_station
.xid_r_count
= 0;
248 static int llc_station_ac_inc_xid_r_cnt_by_1(struct sk_buff
*skb
)
250 llc_main_station
.xid_r_count
++;
254 static int llc_station_ac_send_null_dsap_xid_c(struct sk_buff
*skb
)
257 struct sk_buff
*nskb
= llc_alloc_frame(NULL
, skb
->dev
, LLC_PDU_TYPE_U
,
258 sizeof(struct llc_xid_info
));
262 llc_pdu_header_init(nskb
, LLC_PDU_TYPE_U
, 0, 0, LLC_PDU_CMD
);
263 llc_pdu_init_as_xid_cmd(nskb
, LLC_XID_NULL_CLASS_2
, 127);
264 rc
= llc_mac_hdr_init(nskb
, skb
->dev
->dev_addr
, skb
->dev
->dev_addr
);
267 llc_station_send_pdu(nskb
);
275 static int llc_station_ac_send_xid_r(struct sk_buff
*skb
)
277 u8 mac_da
[ETH_ALEN
], dsap
;
279 struct sk_buff
*nskb
= llc_alloc_frame(NULL
, skb
->dev
, LLC_PDU_TYPE_U
,
280 sizeof(struct llc_xid_info
));
285 llc_pdu_decode_sa(skb
, mac_da
);
286 llc_pdu_decode_ssap(skb
, &dsap
);
287 llc_pdu_header_init(nskb
, LLC_PDU_TYPE_U
, 0, dsap
, LLC_PDU_RSP
);
288 llc_pdu_init_as_xid_rsp(nskb
, LLC_XID_NULL_CLASS_2
, 127);
289 rc
= llc_mac_hdr_init(nskb
, skb
->dev
->dev_addr
, mac_da
);
292 llc_station_send_pdu(nskb
);
300 static int llc_station_ac_send_test_r(struct sk_buff
*skb
)
302 u8 mac_da
[ETH_ALEN
], dsap
;
305 struct sk_buff
*nskb
;
307 /* The test request command is type U (llc_len = 3) */
308 data_size
= ntohs(eth_hdr(skb
)->h_proto
) - 3;
309 nskb
= llc_alloc_frame(NULL
, skb
->dev
, LLC_PDU_TYPE_U
, data_size
);
314 llc_pdu_decode_sa(skb
, mac_da
);
315 llc_pdu_decode_ssap(skb
, &dsap
);
316 llc_pdu_header_init(nskb
, LLC_PDU_TYPE_U
, 0, dsap
, LLC_PDU_RSP
);
317 llc_pdu_init_as_test_rsp(nskb
, skb
);
318 rc
= llc_mac_hdr_init(nskb
, skb
->dev
->dev_addr
, mac_da
);
321 llc_station_send_pdu(nskb
);
329 static int llc_station_ac_report_status(struct sk_buff
*skb
)
334 /* COMMON STATION STATE transitions */
336 /* dummy last-transition indicator; common to all state transition groups
337 * last entry for this state
338 * all members are zeros, .bss zeroes it
340 static struct llc_station_state_trans llc_stat_state_trans_end
;
342 /* DOWN STATE transitions */
344 /* state transition for LLC_STATION_EV_ENABLE_WITH_DUP_ADDR_CHECK event */
345 static llc_station_action_t llc_stat_down_state_actions_1
[] = {
346 [0] = llc_station_ac_start_ack_timer
,
347 [1] = llc_station_ac_set_retry_cnt_0
,
348 [2] = llc_station_ac_set_xid_r_cnt_0
,
349 [3] = llc_station_ac_send_null_dsap_xid_c
,
353 static struct llc_station_state_trans llc_stat_down_state_trans_1
= {
354 .ev
= llc_stat_ev_enable_with_dup_addr_check
,
355 .next_state
= LLC_STATION_STATE_DUP_ADDR_CHK
,
356 .ev_actions
= llc_stat_down_state_actions_1
,
359 /* state transition for LLC_STATION_EV_ENABLE_WITHOUT_DUP_ADDR_CHECK event */
360 static llc_station_action_t llc_stat_down_state_actions_2
[] = {
361 [0] = llc_station_ac_report_status
, /* STATION UP */
365 static struct llc_station_state_trans llc_stat_down_state_trans_2
= {
366 .ev
= llc_stat_ev_enable_without_dup_addr_check
,
367 .next_state
= LLC_STATION_STATE_UP
,
368 .ev_actions
= llc_stat_down_state_actions_2
,
371 /* array of pointers; one to each transition */
372 static struct llc_station_state_trans
*llc_stat_dwn_state_trans
[] = {
373 [0] = &llc_stat_down_state_trans_1
,
374 [1] = &llc_stat_down_state_trans_2
,
375 [2] = &llc_stat_state_trans_end
,
378 /* UP STATE transitions */
379 /* state transition for LLC_STATION_EV_DISABLE_REQ event */
380 static llc_station_action_t llc_stat_up_state_actions_1
[] = {
381 [0] = llc_station_ac_report_status
, /* STATION DOWN */
385 static struct llc_station_state_trans llc_stat_up_state_trans_1
= {
386 .ev
= llc_stat_ev_disable_req
,
387 .next_state
= LLC_STATION_STATE_DOWN
,
388 .ev_actions
= llc_stat_up_state_actions_1
,
391 /* state transition for LLC_STATION_EV_RX_NULL_DSAP_XID_C event */
392 static llc_station_action_t llc_stat_up_state_actions_2
[] = {
393 [0] = llc_station_ac_send_xid_r
,
397 static struct llc_station_state_trans llc_stat_up_state_trans_2
= {
398 .ev
= llc_stat_ev_rx_null_dsap_xid_c
,
399 .next_state
= LLC_STATION_STATE_UP
,
400 .ev_actions
= llc_stat_up_state_actions_2
,
403 /* state transition for LLC_STATION_EV_RX_NULL_DSAP_TEST_C event */
404 static llc_station_action_t llc_stat_up_state_actions_3
[] = {
405 [0] = llc_station_ac_send_test_r
,
409 static struct llc_station_state_trans llc_stat_up_state_trans_3
= {
410 .ev
= llc_stat_ev_rx_null_dsap_test_c
,
411 .next_state
= LLC_STATION_STATE_UP
,
412 .ev_actions
= llc_stat_up_state_actions_3
,
415 /* array of pointers; one to each transition */
416 static struct llc_station_state_trans
*llc_stat_up_state_trans
[] = {
417 [0] = &llc_stat_up_state_trans_1
,
418 [1] = &llc_stat_up_state_trans_2
,
419 [2] = &llc_stat_up_state_trans_3
,
420 [3] = &llc_stat_state_trans_end
,
423 /* DUP ADDR CHK STATE transitions */
424 /* state transition for LLC_STATION_EV_RX_NULL_DSAP_0_XID_R_XID_R_CNT_EQ
427 static llc_station_action_t llc_stat_dupaddr_state_actions_1
[] = {
428 [0] = llc_station_ac_inc_xid_r_cnt_by_1
,
432 static struct llc_station_state_trans llc_stat_dupaddr_state_trans_1
= {
433 .ev
= llc_stat_ev_rx_null_dsap_0_xid_r_xid_r_cnt_eq
,
434 .next_state
= LLC_STATION_STATE_DUP_ADDR_CHK
,
435 .ev_actions
= llc_stat_dupaddr_state_actions_1
,
438 /* state transition for LLC_STATION_EV_RX_NULL_DSAP_1_XID_R_XID_R_CNT_EQ
441 static llc_station_action_t llc_stat_dupaddr_state_actions_2
[] = {
442 [0] = llc_station_ac_report_status
, /* DUPLICATE ADDRESS FOUND */
446 static struct llc_station_state_trans llc_stat_dupaddr_state_trans_2
= {
447 .ev
= llc_stat_ev_rx_null_dsap_1_xid_r_xid_r_cnt_eq
,
448 .next_state
= LLC_STATION_STATE_DOWN
,
449 .ev_actions
= llc_stat_dupaddr_state_actions_2
,
452 /* state transition for LLC_STATION_EV_RX_NULL_DSAP_XID_C event */
453 static llc_station_action_t llc_stat_dupaddr_state_actions_3
[] = {
454 [0] = llc_station_ac_send_xid_r
,
458 static struct llc_station_state_trans llc_stat_dupaddr_state_trans_3
= {
459 .ev
= llc_stat_ev_rx_null_dsap_xid_c
,
460 .next_state
= LLC_STATION_STATE_DUP_ADDR_CHK
,
461 .ev_actions
= llc_stat_dupaddr_state_actions_3
,
464 /* state transition for LLC_STATION_EV_ACK_TMR_EXP_LT_RETRY_CNT_MAX_RETRY
467 static llc_station_action_t llc_stat_dupaddr_state_actions_4
[] = {
468 [0] = llc_station_ac_start_ack_timer
,
469 [1] = llc_station_ac_inc_retry_cnt_by_1
,
470 [2] = llc_station_ac_set_xid_r_cnt_0
,
471 [3] = llc_station_ac_send_null_dsap_xid_c
,
475 static struct llc_station_state_trans llc_stat_dupaddr_state_trans_4
= {
476 .ev
= llc_stat_ev_ack_tmr_exp_lt_retry_cnt_max_retry
,
477 .next_state
= LLC_STATION_STATE_DUP_ADDR_CHK
,
478 .ev_actions
= llc_stat_dupaddr_state_actions_4
,
481 /* state transition for LLC_STATION_EV_ACK_TMR_EXP_EQ_RETRY_CNT_MAX_RETRY
484 static llc_station_action_t llc_stat_dupaddr_state_actions_5
[] = {
485 [0] = llc_station_ac_report_status
, /* STATION UP */
489 static struct llc_station_state_trans llc_stat_dupaddr_state_trans_5
= {
490 .ev
= llc_stat_ev_ack_tmr_exp_eq_retry_cnt_max_retry
,
491 .next_state
= LLC_STATION_STATE_UP
,
492 .ev_actions
= llc_stat_dupaddr_state_actions_5
,
495 /* state transition for LLC_STATION_EV_DISABLE_REQ event */
496 static llc_station_action_t llc_stat_dupaddr_state_actions_6
[] = {
497 [0] = llc_station_ac_report_status
, /* STATION DOWN */
501 static struct llc_station_state_trans llc_stat_dupaddr_state_trans_6
= {
502 .ev
= llc_stat_ev_disable_req
,
503 .next_state
= LLC_STATION_STATE_DOWN
,
504 .ev_actions
= llc_stat_dupaddr_state_actions_6
,
507 /* array of pointers; one to each transition */
508 static struct llc_station_state_trans
*llc_stat_dupaddr_state_trans
[] = {
509 [0] = &llc_stat_dupaddr_state_trans_6
, /* Request */
510 [1] = &llc_stat_dupaddr_state_trans_4
, /* Timer */
511 [2] = &llc_stat_dupaddr_state_trans_5
,
512 [3] = &llc_stat_dupaddr_state_trans_1
, /* Receive frame */
513 [4] = &llc_stat_dupaddr_state_trans_2
,
514 [5] = &llc_stat_dupaddr_state_trans_3
,
515 [6] = &llc_stat_state_trans_end
,
518 static struct llc_station_state
519 llc_station_state_table
[LLC_NBR_STATION_STATES
] = {
520 [LLC_STATION_STATE_DOWN
- 1] = {
521 .curr_state
= LLC_STATION_STATE_DOWN
,
522 .transitions
= llc_stat_dwn_state_trans
,
524 [LLC_STATION_STATE_DUP_ADDR_CHK
- 1] = {
525 .curr_state
= LLC_STATION_STATE_DUP_ADDR_CHK
,
526 .transitions
= llc_stat_dupaddr_state_trans
,
528 [LLC_STATION_STATE_UP
- 1] = {
529 .curr_state
= LLC_STATION_STATE_UP
,
530 .transitions
= llc_stat_up_state_trans
,
535 * llc_exec_station_trans_actions - executes actions for transition
536 * @trans: Address of the transition
537 * @skb: Address of the event that caused the transition
539 * Executes actions of a transition of the station state machine. Returns
540 * 0 if all actions complete successfully, nonzero otherwise.
542 static u16
llc_exec_station_trans_actions(struct llc_station_state_trans
*trans
,
546 llc_station_action_t
*next_action
= trans
->ev_actions
;
548 for (; next_action
&& *next_action
; next_action
++)
549 if ((*next_action
)(skb
))
555 * llc_find_station_trans - finds transition for this event
556 * @skb: Address of the event
558 * Search thru events of the current state of the station until list
559 * exhausted or it's obvious that the event is not valid for the current
560 * state. Returns the address of the transition if cound, %NULL otherwise.
562 static struct llc_station_state_trans
*
563 llc_find_station_trans(struct sk_buff
*skb
)
566 struct llc_station_state_trans
*rc
= NULL
;
567 struct llc_station_state_trans
**next_trans
;
568 struct llc_station_state
*curr_state
=
569 &llc_station_state_table
[llc_main_station
.state
- 1];
571 for (next_trans
= curr_state
->transitions
; next_trans
[i
]->ev
; i
++)
572 if (!next_trans
[i
]->ev(skb
)) {
580 * llc_station_free_ev - frees an event
581 * @skb: Address of the event
585 static void llc_station_free_ev(struct sk_buff
*skb
)
587 struct llc_station_state_ev
*ev
= llc_station_ev(skb
);
589 if (ev
->type
== LLC_STATION_EV_TYPE_PDU
)
594 * llc_station_next_state - processes event and goes to the next state
595 * @skb: Address of the event
597 * Processes an event, executes any transitions related to that event and
598 * updates the state of the station.
600 static u16
llc_station_next_state(struct sk_buff
*skb
)
603 struct llc_station_state_trans
*trans
;
605 if (llc_main_station
.state
> LLC_NBR_STATION_STATES
)
607 trans
= llc_find_station_trans(skb
);
609 /* got the state to which we next transition; perform the
610 * actions associated with this transition before actually
611 * transitioning to the next state
613 rc
= llc_exec_station_trans_actions(trans
, skb
);
615 /* transition station to next state if all actions
616 * execute successfully; done; wait for next event
618 llc_main_station
.state
= trans
->next_state
;
620 /* event not recognized in current state; re-queue it for
621 * processing again at a later time; return failure
625 llc_station_free_ev(skb
);
630 * llc_station_service_events - service events in the queue
632 * Get an event from the station event queue (if any); attempt to service
633 * the event; if event serviced, get the next event (if any) on the event
634 * queue; if event not service, re-queue the event on the event queue and
635 * attempt to service the next event; when serviced all events in queue,
636 * finished; if don't transition to different state, just service all
637 * events once; if transition to new state, service all events again.
638 * Caller must hold llc_main_station.ev_q.lock.
640 static void llc_station_service_events(void)
644 while ((skb
= skb_dequeue(&llc_main_station
.ev_q
.list
)) != NULL
)
645 llc_station_next_state(skb
);
649 * llc_station_state_process: queue event and try to process queue.
650 * @skb: Address of the event
652 * Queues an event (on the station event queue) for handling by the
653 * station state machine and attempts to process any queued-up events.
655 static void llc_station_state_process(struct sk_buff
*skb
)
657 spin_lock_bh(&llc_main_station
.ev_q
.lock
);
658 skb_queue_tail(&llc_main_station
.ev_q
.list
, skb
);
659 llc_station_service_events();
660 spin_unlock_bh(&llc_main_station
.ev_q
.lock
);
663 static void llc_station_ack_tmr_cb(unsigned long timeout_data
)
665 struct sk_buff
*skb
= alloc_skb(0, GFP_ATOMIC
);
668 struct llc_station_state_ev
*ev
= llc_station_ev(skb
);
670 ev
->type
= LLC_STATION_EV_TYPE_ACK_TMR
;
671 llc_station_state_process(skb
);
676 * llc_station_rcv - send received pdu to the station state machine
677 * @skb: received frame.
679 * Sends data unit to station state machine.
681 static void llc_station_rcv(struct sk_buff
*skb
)
683 struct llc_station_state_ev
*ev
= llc_station_ev(skb
);
685 ev
->type
= LLC_STATION_EV_TYPE_PDU
;
687 llc_station_state_process(skb
);
690 int __init
llc_station_init(void)
694 struct llc_station_state_ev
*ev
;
696 skb_queue_head_init(&llc_main_station
.mac_pdu_q
);
697 skb_queue_head_init(&llc_main_station
.ev_q
.list
);
698 spin_lock_init(&llc_main_station
.ev_q
.lock
);
699 setup_timer(&llc_main_station
.ack_timer
, llc_station_ack_tmr_cb
,
700 (unsigned long)&llc_main_station
);
701 llc_main_station
.ack_timer
.expires
= jiffies
+
702 sysctl_llc_station_ack_timeout
;
703 skb
= alloc_skb(0, GFP_ATOMIC
);
707 llc_set_station_handler(llc_station_rcv
);
708 ev
= llc_station_ev(skb
);
709 memset(ev
, 0, sizeof(*ev
));
710 llc_main_station
.maximum_retry
= 1;
711 llc_main_station
.state
= LLC_STATION_STATE_DOWN
;
712 ev
->type
= LLC_STATION_EV_TYPE_SIMPLE
;
713 ev
->prim_type
= LLC_STATION_EV_ENABLE_WITHOUT_DUP_ADDR_CHECK
;
714 rc
= llc_station_next_state(skb
);
719 void __exit
llc_station_exit(void)
721 llc_set_station_handler(NULL
);