1 /*********************************************************************
3 * Filename: ircomm_lmp.c
5 * Description: Interface between IrCOMM and IrLMP
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
13 * Copyright (c) 1999 Dag Brattli, All Rights Reserved.
14 * Copyright (c) 2000-2003 Jean Tourrilhes <jt@hpl.hp.com>
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
19 * the License, or (at your option) any later version.
21 * 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.
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,
31 ********************************************************************/
33 #include <linux/init.h>
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 */
40 #include <net/irda/ircomm_event.h>
41 #include <net/irda/ircomm_lmp.h>
45 * Function ircomm_lmp_connect_request (self, userdata)
50 static int ircomm_lmp_connect_request(struct ircomm_cb
*self
,
51 struct sk_buff
*userdata
,
52 struct ircomm_info
*info
)
56 IRDA_DEBUG(0, "%s()\n", __func__
);
58 /* Don't forget to refcount it - should be NULL anyway */
62 ret
= irlmp_connect_request(self
->lsap
, info
->dlsap_sel
,
63 info
->saddr
, info
->daddr
, NULL
, userdata
);
68 * Function ircomm_lmp_connect_response (self, skb)
73 static int ircomm_lmp_connect_response(struct ircomm_cb
*self
,
74 struct sk_buff
*userdata
)
76 struct sk_buff
*tx_skb
;
79 IRDA_DEBUG(0, "%s()\n", __func__
);
81 /* Any userdata supplied? */
82 if (userdata
== NULL
) {
83 tx_skb
= alloc_skb(LMP_MAX_HEADER
, GFP_ATOMIC
);
87 /* Reserve space for MUX and LAP header */
88 skb_reserve(tx_skb
, LMP_MAX_HEADER
);
91 * Check that the client has reserved enough space for
94 IRDA_ASSERT(skb_headroom(userdata
) >= LMP_MAX_HEADER
,
97 /* Don't forget to refcount it - should be NULL anyway */
102 ret
= irlmp_connect_response(self
->lsap
, tx_skb
);
107 static int ircomm_lmp_disconnect_request(struct ircomm_cb
*self
,
108 struct sk_buff
*userdata
,
109 struct ircomm_info
*info
)
111 struct sk_buff
*tx_skb
;
114 IRDA_DEBUG(0, "%s()\n", __func__
);
117 tx_skb
= alloc_skb(LMP_MAX_HEADER
, GFP_ATOMIC
);
121 /* Reserve space for MUX and LAP header */
122 skb_reserve(tx_skb
, LMP_MAX_HEADER
);
125 /* Don't forget to refcount it - should be NULL anyway */
129 ret
= irlmp_disconnect_request(self
->lsap
, userdata
);
135 * Function ircomm_lmp_flow_control (skb)
137 * This function is called when a data frame we have sent to IrLAP has
138 * been deallocated. We do this to make sure we don't flood IrLAP with
139 * frames, since we are not using the IrTTP flow control mechanism
141 static void ircomm_lmp_flow_control(struct sk_buff
*skb
)
143 struct irda_skb_cb
*cb
;
144 struct ircomm_cb
*self
;
147 IRDA_ASSERT(skb
!= NULL
, return;);
149 cb
= (struct irda_skb_cb
*) skb
->cb
;
151 IRDA_DEBUG(2, "%s()\n", __func__
);
155 self
= (struct ircomm_cb
*) hashbin_lock_find(ircomm
, line
, NULL
);
157 IRDA_DEBUG(2, "%s(), didn't find myself\n", __func__
);
161 IRDA_ASSERT(self
!= NULL
, return;);
162 IRDA_ASSERT(self
->magic
== IRCOMM_MAGIC
, return;);
166 if ((self
->pkt_count
< 2) && (self
->flow_status
== FLOW_STOP
)) {
167 IRDA_DEBUG(2, "%s(), asking TTY to start again!\n", __func__
);
168 self
->flow_status
= FLOW_START
;
169 if (self
->notify
.flow_indication
)
170 self
->notify
.flow_indication(self
->notify
.instance
,
176 * Function ircomm_lmp_data_request (self, userdata)
178 * Send data frame to peer device
181 static int ircomm_lmp_data_request(struct ircomm_cb
*self
,
185 struct irda_skb_cb
*cb
;
188 IRDA_ASSERT(skb
!= NULL
, return -1;);
190 cb
= (struct irda_skb_cb
*) skb
->cb
;
192 cb
->line
= self
->line
;
194 IRDA_DEBUG(4, "%s(), sending frame\n", __func__
);
196 /* Don't forget to refcount it - see ircomm_tty_do_softint() */
199 skb
->destructor
= ircomm_lmp_flow_control
;
201 if ((self
->pkt_count
++ > 7) && (self
->flow_status
== FLOW_START
)) {
202 IRDA_DEBUG(2, "%s(), asking TTY to slow down!\n", __func__
);
203 self
->flow_status
= FLOW_STOP
;
204 if (self
->notify
.flow_indication
)
205 self
->notify
.flow_indication(self
->notify
.instance
,
208 ret
= irlmp_data_request(self
->lsap
, skb
);
210 IRDA_ERROR("%s(), failed\n", __func__
);
211 /* irlmp_data_request already free the packet */
218 * Function ircomm_lmp_data_indication (instance, sap, skb)
220 * Incoming data which we must deliver to the state machine, to check
221 * we are still connected.
223 static int ircomm_lmp_data_indication(void *instance
, void *sap
,
226 struct ircomm_cb
*self
= (struct ircomm_cb
*) instance
;
228 IRDA_DEBUG(4, "%s()\n", __func__
);
230 IRDA_ASSERT(self
!= NULL
, return -1;);
231 IRDA_ASSERT(self
->magic
== IRCOMM_MAGIC
, return -1;);
232 IRDA_ASSERT(skb
!= NULL
, return -1;);
234 ircomm_do_event(self
, IRCOMM_LMP_DATA_INDICATION
, skb
, NULL
);
236 /* Drop reference count - see ircomm_tty_data_indication(). */
243 * Function ircomm_lmp_connect_confirm (instance, sap, qos, max_sdu_size,
244 * max_header_size, skb)
246 * Connection has been confirmed by peer device
249 static void ircomm_lmp_connect_confirm(void *instance
, void *sap
,
250 struct qos_info
*qos
,
252 __u8 max_header_size
,
255 struct ircomm_cb
*self
= (struct ircomm_cb
*) instance
;
256 struct ircomm_info info
;
258 IRDA_DEBUG(0, "%s()\n", __func__
);
260 IRDA_ASSERT(self
!= NULL
, return;);
261 IRDA_ASSERT(self
->magic
== IRCOMM_MAGIC
, return;);
262 IRDA_ASSERT(skb
!= NULL
, return;);
263 IRDA_ASSERT(qos
!= NULL
, return;);
265 info
.max_data_size
= max_seg_size
;
266 info
.max_header_size
= max_header_size
;
269 ircomm_do_event(self
, IRCOMM_LMP_CONNECT_CONFIRM
, skb
, &info
);
271 /* Drop reference count - see ircomm_tty_connect_confirm(). */
276 * Function ircomm_lmp_connect_indication (instance, sap, qos, max_sdu_size,
277 * max_header_size, skb)
279 * Peer device wants to make a connection with us
282 static void ircomm_lmp_connect_indication(void *instance
, void *sap
,
283 struct qos_info
*qos
,
285 __u8 max_header_size
,
288 struct ircomm_cb
*self
= (struct ircomm_cb
*)instance
;
289 struct ircomm_info info
;
291 IRDA_DEBUG(0, "%s()\n", __func__
);
293 IRDA_ASSERT(self
!= NULL
, return;);
294 IRDA_ASSERT(self
->magic
== IRCOMM_MAGIC
, return;);
295 IRDA_ASSERT(skb
!= NULL
, return;);
296 IRDA_ASSERT(qos
!= NULL
, return;);
298 info
.max_data_size
= max_seg_size
;
299 info
.max_header_size
= max_header_size
;
302 ircomm_do_event(self
, IRCOMM_LMP_CONNECT_INDICATION
, skb
, &info
);
304 /* Drop reference count - see ircomm_tty_connect_indication(). */
309 * Function ircomm_lmp_disconnect_indication (instance, sap, reason, skb)
311 * Peer device has closed the connection, or the link went down for some
314 static void ircomm_lmp_disconnect_indication(void *instance
, void *sap
,
318 struct ircomm_cb
*self
= (struct ircomm_cb
*) instance
;
319 struct ircomm_info info
;
321 IRDA_DEBUG(0, "%s()\n", __func__
);
323 IRDA_ASSERT(self
!= NULL
, return;);
324 IRDA_ASSERT(self
->magic
== IRCOMM_MAGIC
, return;);
326 info
.reason
= reason
;
328 ircomm_do_event(self
, IRCOMM_LMP_DISCONNECT_INDICATION
, skb
, &info
);
330 /* Drop reference count - see ircomm_tty_disconnect_indication(). */
335 * Function ircomm_open_lsap (self)
337 * Open LSAP. This function will only be used when using "raw" services
340 int ircomm_open_lsap(struct ircomm_cb
*self
)
344 IRDA_DEBUG(0, "%s()\n", __func__
);
346 /* Register callbacks */
347 irda_notify_init(¬ify
);
348 notify
.data_indication
= ircomm_lmp_data_indication
;
349 notify
.connect_confirm
= ircomm_lmp_connect_confirm
;
350 notify
.connect_indication
= ircomm_lmp_connect_indication
;
351 notify
.disconnect_indication
= ircomm_lmp_disconnect_indication
;
352 notify
.instance
= self
;
353 strlcpy(notify
.name
, "IrCOMM", sizeof(notify
.name
));
355 self
->lsap
= irlmp_open_lsap(LSAP_ANY
, ¬ify
, 0);
357 IRDA_DEBUG(0,"%sfailed to allocate tsap\n", __func__
);
360 self
->slsap_sel
= self
->lsap
->slsap_sel
;
363 * Initialize the call-table for issuing commands
365 self
->issue
.data_request
= ircomm_lmp_data_request
;
366 self
->issue
.connect_request
= ircomm_lmp_connect_request
;
367 self
->issue
.connect_response
= ircomm_lmp_connect_response
;
368 self
->issue
.disconnect_request
= ircomm_lmp_disconnect_request
;