1 /*********************************************************************
3 * Filename: ircomm_event.c
5 * Description: IrCOMM layer state machine
7 * Author: Dag Brattli <dagb@cs.uit.no>
8 * Created at: Sun Jun 6 20:33:11 1999
9 * Modified at: Sun Dec 12 13:44:32 1999
10 * Modified by: Dag Brattli <dagb@cs.uit.no>
12 * Copyright (c) 1999 Dag Brattli, All Rights Reserved.
14 * This program is free software; you can redistribute it and/or
15 * modify it under the terms of the GNU General Public License as
16 * published by the Free Software Foundation; either version 2 of
17 * the License, or (at your option) any later version.
19 * This program is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
24 * You should have received a copy of the GNU General Public License
25 * along with this program; if not, see <http://www.gnu.org/licenses/>.
27 ********************************************************************/
29 #include <linux/proc_fs.h>
30 #include <linux/init.h>
32 #include <net/irda/irda.h>
33 #include <net/irda/irlmp.h>
34 #include <net/irda/iriap.h>
35 #include <net/irda/irttp.h>
36 #include <net/irda/irias_object.h>
38 #include <net/irda/ircomm_core.h>
39 #include <net/irda/ircomm_event.h>
41 static int ircomm_state_idle(struct ircomm_cb
*self
, IRCOMM_EVENT event
,
42 struct sk_buff
*skb
, struct ircomm_info
*info
);
43 static int ircomm_state_waiti(struct ircomm_cb
*self
, IRCOMM_EVENT event
,
44 struct sk_buff
*skb
, struct ircomm_info
*info
);
45 static int ircomm_state_waitr(struct ircomm_cb
*self
, IRCOMM_EVENT event
,
46 struct sk_buff
*skb
, struct ircomm_info
*info
);
47 static int ircomm_state_conn(struct ircomm_cb
*self
, IRCOMM_EVENT event
,
48 struct sk_buff
*skb
, struct ircomm_info
*info
);
50 const char *const ircomm_state
[] = {
57 static const char *const ircomm_event
[] __maybe_unused
= {
58 "IRCOMM_CONNECT_REQUEST",
59 "IRCOMM_CONNECT_RESPONSE",
60 "IRCOMM_TTP_CONNECT_INDICATION",
61 "IRCOMM_LMP_CONNECT_INDICATION",
62 "IRCOMM_TTP_CONNECT_CONFIRM",
63 "IRCOMM_LMP_CONNECT_CONFIRM",
65 "IRCOMM_LMP_DISCONNECT_INDICATION",
66 "IRCOMM_TTP_DISCONNECT_INDICATION",
67 "IRCOMM_DISCONNECT_REQUEST",
69 "IRCOMM_TTP_DATA_INDICATION",
70 "IRCOMM_LMP_DATA_INDICATION",
71 "IRCOMM_DATA_REQUEST",
72 "IRCOMM_CONTROL_REQUEST",
73 "IRCOMM_CONTROL_INDICATION",
76 static int (*state
[])(struct ircomm_cb
*self
, IRCOMM_EVENT event
,
77 struct sk_buff
*skb
, struct ircomm_info
*info
) =
86 * Function ircomm_state_idle (self, event, skb)
88 * IrCOMM is currently idle
91 static int ircomm_state_idle(struct ircomm_cb
*self
, IRCOMM_EVENT event
,
92 struct sk_buff
*skb
, struct ircomm_info
*info
)
97 case IRCOMM_CONNECT_REQUEST
:
98 ircomm_next_state(self
, IRCOMM_WAITI
);
99 ret
= self
->issue
.connect_request(self
, skb
, info
);
101 case IRCOMM_TTP_CONNECT_INDICATION
:
102 case IRCOMM_LMP_CONNECT_INDICATION
:
103 ircomm_next_state(self
, IRCOMM_WAITR
);
104 ircomm_connect_indication(self
, skb
, info
);
107 pr_debug("%s(), unknown event: %s\n", __func__
,
108 ircomm_event
[event
]);
115 * Function ircomm_state_waiti (self, event, skb)
117 * The IrCOMM user has requested an IrCOMM connection to the remote
118 * device and is awaiting confirmation
120 static int ircomm_state_waiti(struct ircomm_cb
*self
, IRCOMM_EVENT event
,
121 struct sk_buff
*skb
, struct ircomm_info
*info
)
126 case IRCOMM_TTP_CONNECT_CONFIRM
:
127 case IRCOMM_LMP_CONNECT_CONFIRM
:
128 ircomm_next_state(self
, IRCOMM_CONN
);
129 ircomm_connect_confirm(self
, skb
, info
);
131 case IRCOMM_TTP_DISCONNECT_INDICATION
:
132 case IRCOMM_LMP_DISCONNECT_INDICATION
:
133 ircomm_next_state(self
, IRCOMM_IDLE
);
134 ircomm_disconnect_indication(self
, skb
, info
);
137 pr_debug("%s(), unknown event: %s\n", __func__
,
138 ircomm_event
[event
]);
145 * Function ircomm_state_waitr (self, event, skb)
147 * IrCOMM has received an incoming connection request and is awaiting
148 * response from the user
150 static int ircomm_state_waitr(struct ircomm_cb
*self
, IRCOMM_EVENT event
,
151 struct sk_buff
*skb
, struct ircomm_info
*info
)
156 case IRCOMM_CONNECT_RESPONSE
:
157 ircomm_next_state(self
, IRCOMM_CONN
);
158 ret
= self
->issue
.connect_response(self
, skb
);
160 case IRCOMM_DISCONNECT_REQUEST
:
161 ircomm_next_state(self
, IRCOMM_IDLE
);
162 ret
= self
->issue
.disconnect_request(self
, skb
, info
);
164 case IRCOMM_TTP_DISCONNECT_INDICATION
:
165 case IRCOMM_LMP_DISCONNECT_INDICATION
:
166 ircomm_next_state(self
, IRCOMM_IDLE
);
167 ircomm_disconnect_indication(self
, skb
, info
);
170 pr_debug("%s(), unknown event = %s\n", __func__
,
171 ircomm_event
[event
]);
178 * Function ircomm_state_conn (self, event, skb)
180 * IrCOMM is connected to the peer IrCOMM device
183 static int ircomm_state_conn(struct ircomm_cb
*self
, IRCOMM_EVENT event
,
184 struct sk_buff
*skb
, struct ircomm_info
*info
)
189 case IRCOMM_DATA_REQUEST
:
190 ret
= self
->issue
.data_request(self
, skb
, 0);
192 case IRCOMM_TTP_DATA_INDICATION
:
193 ircomm_process_data(self
, skb
);
195 case IRCOMM_LMP_DATA_INDICATION
:
196 ircomm_data_indication(self
, skb
);
198 case IRCOMM_CONTROL_REQUEST
:
199 /* Just send a separate frame for now */
200 ret
= self
->issue
.data_request(self
, skb
, skb
->len
);
202 case IRCOMM_TTP_DISCONNECT_INDICATION
:
203 case IRCOMM_LMP_DISCONNECT_INDICATION
:
204 ircomm_next_state(self
, IRCOMM_IDLE
);
205 ircomm_disconnect_indication(self
, skb
, info
);
207 case IRCOMM_DISCONNECT_REQUEST
:
208 ircomm_next_state(self
, IRCOMM_IDLE
);
209 ret
= self
->issue
.disconnect_request(self
, skb
, info
);
212 pr_debug("%s(), unknown event = %s\n", __func__
,
213 ircomm_event
[event
]);
220 * Function ircomm_do_event (self, event, skb)
225 int ircomm_do_event(struct ircomm_cb
*self
, IRCOMM_EVENT event
,
226 struct sk_buff
*skb
, struct ircomm_info
*info
)
228 pr_debug("%s: state=%s, event=%s\n", __func__
,
229 ircomm_state
[self
->state
], ircomm_event
[event
]);
231 return (*state
[self
->state
])(self
, event
, skb
, info
);
235 * Function ircomm_next_state (self, state)
240 void ircomm_next_state(struct ircomm_cb
*self
, IRCOMM_STATE state
)
244 pr_debug("%s: next state=%s, service type=%d\n", __func__
,
245 ircomm_state
[self
->state
], self
->service_type
);