blob: 7ba96618660e349de2253473d6701ab8bbad9613 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*********************************************************************
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +09002 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * Filename: ircomm_lmp.c
4 * Version: 1.0
5 * Description: Interface between IrCOMM and IrLMP
6 * Status: Stable
7 * Author: Dag Brattli <dagb@cs.uit.no>
8 * Created at: Sun Jun 6 20:48:27 1999
9 * Modified at: Sun Dec 12 13:44:17 1999
10 * Modified by: Dag Brattli <dagb@cs.uit.no>
11 * Sources: Previous IrLPT work by Thomas Davis
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +090012 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 * Copyright (c) 1999 Dag Brattli, All Rights Reserved.
14 * Copyright (c) 2000-2003 Jean Tourrilhes <jt@hpl.hp.com>
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +090015 *
16 * This program is free software; you can redistribute it and/or
17 * modify it under the terms of the GNU General Public License as
18 * published by the Free Software Foundation; either version 2 of
Linus Torvalds1da177e2005-04-16 15:20:36 -070019 * the License, or (at your option) any later version.
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +090020 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070021 * This program is distributed in the hope that it will be useful,
22 * but WITHOUT ANY WARRANTY; without even the implied warranty of
23 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24 * GNU General Public License for more details.
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +090025 *
26 * You should have received a copy of the GNU General Public License
27 * along with this program; if not, write to the Free Software
28 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
Linus Torvalds1da177e2005-04-16 15:20:36 -070029 * MA 02111-1307 USA
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +090030 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070031 ********************************************************************/
32
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <linux/init.h>
34
35#include <net/irda/irda.h>
36#include <net/irda/irlmp.h>
37#include <net/irda/iriap.h>
38#include <net/irda/irda_device.h> /* struct irda_skb_cb */
39
40#include <net/irda/ircomm_event.h>
41#include <net/irda/ircomm_lmp.h>
42
43
44/*
45 * Function ircomm_lmp_connect_request (self, userdata)
46 *
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +090047 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 *
49 */
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +090050static int ircomm_lmp_connect_request(struct ircomm_cb *self,
51 struct sk_buff *userdata,
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 struct ircomm_info *info)
53{
54 int ret = 0;
55
Harvey Harrison0dc47872008-03-05 20:47:47 -080056 IRDA_DEBUG(0, "%s()\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
58 /* Don't forget to refcount it - should be NULL anyway */
59 if(userdata)
60 skb_get(userdata);
61
62 ret = irlmp_connect_request(self->lsap, info->dlsap_sel,
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +090063 info->saddr, info->daddr, NULL, userdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 return ret;
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +090065}
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
67/*
68 * Function ircomm_lmp_connect_response (self, skb)
69 *
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +090070 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 *
72 */
73static int ircomm_lmp_connect_response(struct ircomm_cb *self,
74 struct sk_buff *userdata)
75{
76 struct sk_buff *tx_skb;
77 int ret;
78
Harvey Harrison0dc47872008-03-05 20:47:47 -080079 IRDA_DEBUG(0, "%s()\n", __func__ );
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +090080
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 /* Any userdata supplied? */
82 if (userdata == NULL) {
Samuel Ortiz1b0fee72006-09-27 20:06:44 -070083 tx_skb = alloc_skb(LMP_MAX_HEADER, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 if (!tx_skb)
85 return -ENOMEM;
86
87 /* Reserve space for MUX and LAP header */
88 skb_reserve(tx_skb, LMP_MAX_HEADER);
89 } else {
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +090090 /*
91 * Check that the client has reserved enough space for
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 * headers
93 */
94 IRDA_ASSERT(skb_headroom(userdata) >= LMP_MAX_HEADER,
95 return -1;);
96
97 /* Don't forget to refcount it - should be NULL anyway */
98 skb_get(userdata);
99 tx_skb = userdata;
100 }
101
102 ret = irlmp_connect_response(self->lsap, tx_skb);
103
104 return 0;
105}
106
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900107static int ircomm_lmp_disconnect_request(struct ircomm_cb *self,
108 struct sk_buff *userdata,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 struct ircomm_info *info)
110{
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900111 struct sk_buff *tx_skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 int ret;
113
Harvey Harrison0dc47872008-03-05 20:47:47 -0800114 IRDA_DEBUG(0, "%s()\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900116 if (!userdata) {
Samuel Ortiz1b0fee72006-09-27 20:06:44 -0700117 tx_skb = alloc_skb(LMP_MAX_HEADER, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 if (!tx_skb)
119 return -ENOMEM;
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900120
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 /* Reserve space for MUX and LAP header */
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900122 skb_reserve(tx_skb, LMP_MAX_HEADER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 userdata = tx_skb;
124 } else {
125 /* Don't forget to refcount it - should be NULL anyway */
126 skb_get(userdata);
127 }
128
129 ret = irlmp_disconnect_request(self->lsap, userdata);
130
131 return ret;
132}
133
134/*
135 * Function ircomm_lmp_flow_control (skb)
136 *
137 * This function is called when a data frame we have sent to IrLAP has
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900138 * been deallocated. We do this to make sure we don't flood IrLAP with
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 * frames, since we are not using the IrTTP flow control mechanism
140 */
141static void ircomm_lmp_flow_control(struct sk_buff *skb)
142{
143 struct irda_skb_cb *cb;
144 struct ircomm_cb *self;
145 int line;
146
147 IRDA_ASSERT(skb != NULL, return;);
148
149 cb = (struct irda_skb_cb *) skb->cb;
150
Harvey Harrison0dc47872008-03-05 20:47:47 -0800151 IRDA_DEBUG(2, "%s()\n", __func__ );
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900152
153 line = cb->line;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
155 self = (struct ircomm_cb *) hashbin_lock_find(ircomm, line, NULL);
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900156 if (!self) {
Harvey Harrison0dc47872008-03-05 20:47:47 -0800157 IRDA_DEBUG(2, "%s(), didn't find myself\n", __func__ );
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900158 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 }
160
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900161 IRDA_ASSERT(self != NULL, return;);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 IRDA_ASSERT(self->magic == IRCOMM_MAGIC, return;);
163
164 self->pkt_count--;
165
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900166 if ((self->pkt_count < 2) && (self->flow_status == FLOW_STOP)) {
Harvey Harrison0dc47872008-03-05 20:47:47 -0800167 IRDA_DEBUG(2, "%s(), asking TTY to start again!\n", __func__ );
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900168 self->flow_status = FLOW_START;
169 if (self->notify.flow_indication)
170 self->notify.flow_indication(self->notify.instance,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 self, FLOW_START);
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900172 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173}
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900174
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175/*
176 * Function ircomm_lmp_data_request (self, userdata)
177 *
178 * Send data frame to peer device
179 *
180 */
181static int ircomm_lmp_data_request(struct ircomm_cb *self,
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900182 struct sk_buff *skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 int not_used)
184{
185 struct irda_skb_cb *cb;
186 int ret;
187
188 IRDA_ASSERT(skb != NULL, return -1;);
189
190 cb = (struct irda_skb_cb *) skb->cb;
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900191
192 cb->line = self->line;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
Harvey Harrison0dc47872008-03-05 20:47:47 -0800194 IRDA_DEBUG(4, "%s(), sending frame\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
196 /* Don't forget to refcount it - see ircomm_tty_do_softint() */
197 skb_get(skb);
198
Herbert Xud55d87f2009-06-22 02:25:25 +0000199 skb_orphan(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 skb->destructor = ircomm_lmp_flow_control;
201
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900202 if ((self->pkt_count++ > 7) && (self->flow_status == FLOW_START)) {
Harvey Harrison0dc47872008-03-05 20:47:47 -0800203 IRDA_DEBUG(2, "%s(), asking TTY to slow down!\n", __func__ );
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900204 self->flow_status = FLOW_STOP;
205 if (self->notify.flow_indication)
206 self->notify.flow_indication(self->notify.instance,
207 self, FLOW_STOP);
208 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 ret = irlmp_data_request(self->lsap, skb);
210 if (ret) {
Harvey Harrison0dc47872008-03-05 20:47:47 -0800211 IRDA_ERROR("%s(), failed\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 /* irlmp_data_request already free the packet */
213 }
214
215 return ret;
216}
217
218/*
219 * Function ircomm_lmp_data_indication (instance, sap, skb)
220 *
221 * Incoming data which we must deliver to the state machine, to check
222 * we are still connected.
223 */
224static int ircomm_lmp_data_indication(void *instance, void *sap,
225 struct sk_buff *skb)
226{
227 struct ircomm_cb *self = (struct ircomm_cb *) instance;
228
Harvey Harrison0dc47872008-03-05 20:47:47 -0800229 IRDA_DEBUG(4, "%s()\n", __func__ );
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900230
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 IRDA_ASSERT(self != NULL, return -1;);
232 IRDA_ASSERT(self->magic == IRCOMM_MAGIC, return -1;);
233 IRDA_ASSERT(skb != NULL, return -1;);
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900234
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 ircomm_do_event(self, IRCOMM_LMP_DATA_INDICATION, skb, NULL);
236
237 /* Drop reference count - see ircomm_tty_data_indication(). */
238 dev_kfree_skb(skb);
239
240 return 0;
241}
242
243/*
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900244 * Function ircomm_lmp_connect_confirm (instance, sap, qos, max_sdu_size,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 * max_header_size, skb)
246 *
247 * Connection has been confirmed by peer device
248 *
249 */
250static void ircomm_lmp_connect_confirm(void *instance, void *sap,
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900251 struct qos_info *qos,
252 __u32 max_seg_size,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 __u8 max_header_size,
254 struct sk_buff *skb)
255{
256 struct ircomm_cb *self = (struct ircomm_cb *) instance;
257 struct ircomm_info info;
258
Harvey Harrison0dc47872008-03-05 20:47:47 -0800259 IRDA_DEBUG(0, "%s()\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
261 IRDA_ASSERT(self != NULL, return;);
262 IRDA_ASSERT(self->magic == IRCOMM_MAGIC, return;);
263 IRDA_ASSERT(skb != NULL, return;);
264 IRDA_ASSERT(qos != NULL, return;);
265
266 info.max_data_size = max_seg_size;
267 info.max_header_size = max_header_size;
268 info.qos = qos;
269
270 ircomm_do_event(self, IRCOMM_LMP_CONNECT_CONFIRM, skb, &info);
271
272 /* Drop reference count - see ircomm_tty_connect_confirm(). */
273 dev_kfree_skb(skb);
274}
275
276/*
277 * Function ircomm_lmp_connect_indication (instance, sap, qos, max_sdu_size,
278 * max_header_size, skb)
279 *
280 * Peer device wants to make a connection with us
281 *
282 */
283static void ircomm_lmp_connect_indication(void *instance, void *sap,
284 struct qos_info *qos,
285 __u32 max_seg_size,
286 __u8 max_header_size,
287 struct sk_buff *skb)
288{
289 struct ircomm_cb *self = (struct ircomm_cb *)instance;
290 struct ircomm_info info;
291
Harvey Harrison0dc47872008-03-05 20:47:47 -0800292 IRDA_DEBUG(0, "%s()\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
294 IRDA_ASSERT(self != NULL, return;);
295 IRDA_ASSERT(self->magic == IRCOMM_MAGIC, return;);
296 IRDA_ASSERT(skb != NULL, return;);
297 IRDA_ASSERT(qos != NULL, return;);
298
299 info.max_data_size = max_seg_size;
300 info.max_header_size = max_header_size;
301 info.qos = qos;
302
303 ircomm_do_event(self, IRCOMM_LMP_CONNECT_INDICATION, skb, &info);
304
305 /* Drop reference count - see ircomm_tty_connect_indication(). */
306 dev_kfree_skb(skb);
307}
308
309/*
310 * Function ircomm_lmp_disconnect_indication (instance, sap, reason, skb)
311 *
312 * Peer device has closed the connection, or the link went down for some
313 * other reason
314 */
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900315static void ircomm_lmp_disconnect_indication(void *instance, void *sap,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 LM_REASON reason,
317 struct sk_buff *skb)
318{
319 struct ircomm_cb *self = (struct ircomm_cb *) instance;
320 struct ircomm_info info;
321
Harvey Harrison0dc47872008-03-05 20:47:47 -0800322 IRDA_DEBUG(0, "%s()\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
324 IRDA_ASSERT(self != NULL, return;);
325 IRDA_ASSERT(self->magic == IRCOMM_MAGIC, return;);
326
327 info.reason = reason;
328
329 ircomm_do_event(self, IRCOMM_LMP_DISCONNECT_INDICATION, skb, &info);
330
331 /* Drop reference count - see ircomm_tty_disconnect_indication(). */
332 if(skb)
333 dev_kfree_skb(skb);
334}
335/*
336 * Function ircomm_open_lsap (self)
337 *
338 * Open LSAP. This function will only be used when using "raw" services
339 *
340 */
341int ircomm_open_lsap(struct ircomm_cb *self)
342{
343 notify_t notify;
344
Harvey Harrison0dc47872008-03-05 20:47:47 -0800345 IRDA_DEBUG(0, "%s()\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
347 /* Register callbacks */
348 irda_notify_init(&notify);
349 notify.data_indication = ircomm_lmp_data_indication;
350 notify.connect_confirm = ircomm_lmp_connect_confirm;
351 notify.connect_indication = ircomm_lmp_connect_indication;
352 notify.disconnect_indication = ircomm_lmp_disconnect_indication;
353 notify.instance = self;
354 strlcpy(notify.name, "IrCOMM", sizeof(notify.name));
355
356 self->lsap = irlmp_open_lsap(LSAP_ANY, &notify, 0);
357 if (!self->lsap) {
Harvey Harrison0dc47872008-03-05 20:47:47 -0800358 IRDA_DEBUG(0,"%sfailed to allocate tsap\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 return -1;
360 }
361 self->slsap_sel = self->lsap->slsap_sel;
362
363 /*
364 * Initialize the call-table for issuing commands
365 */
366 self->issue.data_request = ircomm_lmp_data_request;
367 self->issue.connect_request = ircomm_lmp_connect_request;
368 self->issue.connect_response = ircomm_lmp_connect_response;
369 self->issue.disconnect_request = ircomm_lmp_disconnect_request;
370
371 return 0;
372}