1 /*********************************************************************
5 * Description: IrDA Link Management Protocol (LMP) layer
7 * Author: Dag Brattli <dagb@cs.uit.no>
8 * Created at: Sun Aug 17 20:54:32 1997
9 * Modified at: Wed Jan 5 11:26:03 2000
10 * Modified by: Dag Brattli <dagb@cs.uit.no>
12 * Copyright (c) 1998-2000 Dag Brattli <dagb@cs.uit.no>,
13 * 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 * Neither Dag Brattli nor University of Tromsø admit liability nor
22 * provide warranty for any of this software. This material is
23 * provided "AS-IS" and at no charge.
25 ********************************************************************/
27 #include <linux/module.h>
28 #include <linux/slab.h>
29 #include <linux/string.h>
30 #include <linux/skbuff.h>
31 #include <linux/types.h>
32 #include <linux/proc_fs.h>
33 #include <linux/init.h>
34 #include <linux/kmod.h>
35 #include <linux/random.h>
36 #include <linux/seq_file.h>
38 #include <net/irda/irda.h>
39 #include <net/irda/timer.h>
40 #include <net/irda/qos.h>
41 #include <net/irda/irlap.h>
42 #include <net/irda/iriap.h>
43 #include <net/irda/irlmp.h>
44 #include <net/irda/irlmp_frame.h>
46 #include <asm/unaligned.h>
48 static __u8
irlmp_find_free_slsap(void);
49 static int irlmp_slsap_inuse(__u8 slsap_sel
);
51 /* Master structure */
52 struct irlmp_cb
*irlmp
= NULL
;
54 /* These can be altered by the sysctl interface */
55 int sysctl_discovery
= 0;
56 int sysctl_discovery_timeout
= 3; /* 3 seconds by default */
57 int sysctl_discovery_slots
= 6; /* 6 slots by default */
58 int sysctl_lap_keepalive_time
= LM_IDLE_TIMEOUT
* 1000 / HZ
;
59 char sysctl_devname
[65];
61 static const char *irlmp_reasons
[] = {
72 const char *irlmp_reason_str(LM_REASON reason
)
74 reason
= min_t(size_t, reason
, ARRAY_SIZE(irlmp_reasons
) - 1);
75 return irlmp_reasons
[reason
];
79 * Function irlmp_init (void)
81 * Create (allocate) the main IrLMP structure
84 int __init
irlmp_init(void)
86 /* Initialize the irlmp structure. */
87 irlmp
= kzalloc( sizeof(struct irlmp_cb
), GFP_KERNEL
);
91 irlmp
->magic
= LMP_MAGIC
;
93 irlmp
->clients
= hashbin_new(HB_LOCK
);
94 irlmp
->services
= hashbin_new(HB_LOCK
);
95 irlmp
->links
= hashbin_new(HB_LOCK
);
96 irlmp
->unconnected_lsaps
= hashbin_new(HB_LOCK
);
97 irlmp
->cachelog
= hashbin_new(HB_NOLOCK
);
99 if ((irlmp
->clients
== NULL
) ||
100 (irlmp
->services
== NULL
) ||
101 (irlmp
->links
== NULL
) ||
102 (irlmp
->unconnected_lsaps
== NULL
) ||
103 (irlmp
->cachelog
== NULL
)) {
107 spin_lock_init(&irlmp
->cachelog
->hb_spinlock
);
109 irlmp
->last_lsap_sel
= 0x0f; /* Reserved 0x00-0x0f */
110 strcpy(sysctl_devname
, "Linux");
112 init_timer(&irlmp
->discovery_timer
);
114 /* Do discovery every 3 seconds, conditionally */
115 if (sysctl_discovery
)
116 irlmp_start_discovery_timer(irlmp
,
117 sysctl_discovery_timeout
*HZ
);
123 * Function irlmp_cleanup (void)
128 void irlmp_cleanup(void)
130 /* Check for main structure */
131 IRDA_ASSERT(irlmp
!= NULL
, return;);
132 IRDA_ASSERT(irlmp
->magic
== LMP_MAGIC
, return;);
134 del_timer(&irlmp
->discovery_timer
);
136 hashbin_delete(irlmp
->links
, (FREE_FUNC
) kfree
);
137 hashbin_delete(irlmp
->unconnected_lsaps
, (FREE_FUNC
) kfree
);
138 hashbin_delete(irlmp
->clients
, (FREE_FUNC
) kfree
);
139 hashbin_delete(irlmp
->services
, (FREE_FUNC
) kfree
);
140 hashbin_delete(irlmp
->cachelog
, (FREE_FUNC
) kfree
);
142 /* De-allocate main structure */
148 * Function irlmp_open_lsap (slsap, notify)
150 * Register with IrLMP and create a local LSAP,
151 * returns handle to LSAP.
153 struct lsap_cb
*irlmp_open_lsap(__u8 slsap_sel
, notify_t
*notify
, __u8 pid
)
155 struct lsap_cb
*self
;
157 IRDA_ASSERT(notify
!= NULL
, return NULL
;);
158 IRDA_ASSERT(irlmp
!= NULL
, return NULL
;);
159 IRDA_ASSERT(irlmp
->magic
== LMP_MAGIC
, return NULL
;);
160 IRDA_ASSERT(notify
->instance
!= NULL
, return NULL
;);
162 /* Does the client care which Source LSAP selector it gets? */
163 if (slsap_sel
== LSAP_ANY
) {
164 slsap_sel
= irlmp_find_free_slsap();
167 } else if (irlmp_slsap_inuse(slsap_sel
))
170 /* Allocate new instance of a LSAP connection */
171 self
= kzalloc(sizeof(struct lsap_cb
), GFP_ATOMIC
);
175 self
->magic
= LMP_LSAP_MAGIC
;
176 self
->slsap_sel
= slsap_sel
;
178 /* Fix connectionless LSAP's */
179 if (slsap_sel
== LSAP_CONNLESS
) {
180 #ifdef CONFIG_IRDA_ULTRA
181 self
->dlsap_sel
= LSAP_CONNLESS
;
183 #endif /* CONFIG_IRDA_ULTRA */
185 self
->dlsap_sel
= LSAP_ANY
;
186 /* self->connected = FALSE; -> already NULL via memset() */
188 init_timer(&self
->watchdog_timer
);
190 self
->notify
= *notify
;
192 self
->lsap_state
= LSAP_DISCONNECTED
;
194 /* Insert into queue of unconnected LSAPs */
195 hashbin_insert(irlmp
->unconnected_lsaps
, (irda_queue_t
*) self
,
200 EXPORT_SYMBOL(irlmp_open_lsap
);
203 * Function __irlmp_close_lsap (self)
205 * Remove an instance of LSAP
207 static void __irlmp_close_lsap(struct lsap_cb
*self
)
209 IRDA_ASSERT(self
!= NULL
, return;);
210 IRDA_ASSERT(self
->magic
== LMP_LSAP_MAGIC
, return;);
213 * Set some of the variables to preset values
216 del_timer(&self
->watchdog_timer
); /* Important! */
219 dev_kfree_skb(self
->conn_skb
);
225 * Function irlmp_close_lsap (self)
227 * Close and remove LSAP
230 void irlmp_close_lsap(struct lsap_cb
*self
)
233 struct lsap_cb
*lsap
= NULL
;
235 IRDA_ASSERT(self
!= NULL
, return;);
236 IRDA_ASSERT(self
->magic
== LMP_LSAP_MAGIC
, return;);
239 * Find out if we should remove this LSAP from a link or from the
240 * list of unconnected lsaps (not associated with a link)
244 IRDA_ASSERT(lap
->magic
== LMP_LAP_MAGIC
, return;);
245 /* We might close a LSAP before it has completed the
246 * connection setup. In those case, higher layers won't
247 * send a proper disconnect request. Harmless, except
248 * that we will forget to close LAP... - Jean II */
249 if(self
->lsap_state
!= LSAP_DISCONNECTED
) {
250 self
->lsap_state
= LSAP_DISCONNECTED
;
251 irlmp_do_lap_event(self
->lap
,
252 LM_LAP_DISCONNECT_REQUEST
, NULL
);
254 /* Now, remove from the link */
255 lsap
= hashbin_remove(lap
->lsaps
, (long) self
, NULL
);
256 #ifdef CONFIG_IRDA_CACHE_LAST_LSAP
257 lap
->cache
.valid
= FALSE
;
261 /* Check if we found the LSAP! If not then try the unconnected lsaps */
263 lsap
= hashbin_remove(irlmp
->unconnected_lsaps
, (long) self
,
267 pr_debug("%s(), Looks like somebody has removed me already!\n",
271 __irlmp_close_lsap(self
);
273 EXPORT_SYMBOL(irlmp_close_lsap
);
276 * Function irlmp_register_irlap (saddr, notify)
278 * Register IrLAP layer with IrLMP. There is possible to have multiple
279 * instances of the IrLAP layer, each connected to different IrDA ports
282 void irlmp_register_link(struct irlap_cb
*irlap
, __u32 saddr
, notify_t
*notify
)
286 IRDA_ASSERT(irlmp
!= NULL
, return;);
287 IRDA_ASSERT(irlmp
->magic
== LMP_MAGIC
, return;);
288 IRDA_ASSERT(notify
!= NULL
, return;);
291 * Allocate new instance of a LSAP connection
293 lap
= kzalloc(sizeof(struct lap_cb
), GFP_KERNEL
);
298 lap
->magic
= LMP_LAP_MAGIC
;
300 lap
->daddr
= DEV_ADDR_ANY
;
301 #ifdef CONFIG_IRDA_CACHE_LAST_LSAP
302 lap
->cache
.valid
= FALSE
;
304 lap
->lsaps
= hashbin_new(HB_LOCK
);
305 if (lap
->lsaps
== NULL
) {
306 net_warn_ratelimited("%s(), unable to kmalloc lsaps\n",
312 lap
->lap_state
= LAP_STANDBY
;
314 init_timer(&lap
->idle_timer
);
317 * Insert into queue of LMP links
319 hashbin_insert(irlmp
->links
, (irda_queue_t
*) lap
, lap
->saddr
, NULL
);
322 * We set only this variable so IrLAP can tell us on which link the
323 * different events happened on
325 irda_notify_init(notify
);
326 notify
->instance
= lap
;
330 * Function irlmp_unregister_irlap (saddr)
332 * IrLAP layer has been removed!
335 void irlmp_unregister_link(__u32 saddr
)
339 /* We must remove ourselves from the hashbin *first*. This ensure
340 * that no more LSAPs will be open on this link and no discovery
341 * will be triggered anymore. Jean II */
342 link
= hashbin_remove(irlmp
->links
, saddr
, NULL
);
344 IRDA_ASSERT(link
->magic
== LMP_LAP_MAGIC
, return;);
346 /* Kill all the LSAPs on this link. Jean II */
347 link
->reason
= LAP_DISC_INDICATION
;
348 link
->daddr
= DEV_ADDR_ANY
;
349 irlmp_do_lap_event(link
, LM_LAP_DISCONNECT_INDICATION
, NULL
);
351 /* Remove all discoveries discovered at this link */
352 irlmp_expire_discoveries(irlmp
->cachelog
, link
->saddr
, TRUE
);
355 del_timer(&link
->idle_timer
);
357 hashbin_delete(link
->lsaps
, (FREE_FUNC
) __irlmp_close_lsap
);
363 * Function irlmp_connect_request (handle, dlsap, userdata)
365 * Connect with a peer LSAP
368 int irlmp_connect_request(struct lsap_cb
*self
, __u8 dlsap_sel
,
369 __u32 saddr
, __u32 daddr
,
370 struct qos_info
*qos
, struct sk_buff
*userdata
)
372 struct sk_buff
*tx_skb
= userdata
;
374 struct lsap_cb
*lsap
;
377 IRDA_ASSERT(self
!= NULL
, return -EBADR
;);
378 IRDA_ASSERT(self
->magic
== LMP_LSAP_MAGIC
, return -EBADR
;);
380 pr_debug("%s(), slsap_sel=%02x, dlsap_sel=%02x, saddr=%08x, daddr=%08x\n",
381 __func__
, self
->slsap_sel
, dlsap_sel
, saddr
, daddr
);
383 if (test_bit(0, &self
->connected
)) {
388 /* Client must supply destination device address */
395 if (tx_skb
== NULL
) {
396 tx_skb
= alloc_skb(LMP_MAX_HEADER
, GFP_ATOMIC
);
400 skb_reserve(tx_skb
, LMP_MAX_HEADER
);
403 /* Make room for MUX control header (3 bytes) */
404 IRDA_ASSERT(skb_headroom(tx_skb
) >= LMP_CONTROL_HEADER
, return -1;);
405 skb_push(tx_skb
, LMP_CONTROL_HEADER
);
407 self
->dlsap_sel
= dlsap_sel
;
410 * Find the link to where we should try to connect since there may
411 * be more than one IrDA port on this machine. If the client has
412 * passed us the saddr (and already knows which link to use), then
413 * we use that to find the link, if not then we have to look in the
414 * discovery log and check if any of the links has discovered a
415 * device with the given daddr
417 if ((!saddr
) || (saddr
== DEV_ADDR_ANY
)) {
418 discovery_t
*discovery
;
421 spin_lock_irqsave(&irlmp
->cachelog
->hb_spinlock
, flags
);
422 if (daddr
!= DEV_ADDR_ANY
)
423 discovery
= hashbin_find(irlmp
->cachelog
, daddr
, NULL
);
425 pr_debug("%s(), no daddr\n", __func__
);
426 discovery
= (discovery_t
*)
427 hashbin_get_first(irlmp
->cachelog
);
431 saddr
= discovery
->data
.saddr
;
432 daddr
= discovery
->data
.daddr
;
434 spin_unlock_irqrestore(&irlmp
->cachelog
->hb_spinlock
, flags
);
436 lap
= hashbin_lock_find(irlmp
->links
, saddr
, NULL
);
438 pr_debug("%s(), Unable to find a usable link!\n", __func__
);
443 /* Check if LAP is disconnected or already connected */
444 if (lap
->daddr
== DEV_ADDR_ANY
)
446 else if (lap
->daddr
!= daddr
) {
447 /* Check if some LSAPs are active on this LAP */
448 if (HASHBIN_GET_SIZE(lap
->lsaps
) == 0) {
449 /* No active connection, but LAP hasn't been
450 * disconnected yet (waiting for timeout in LAP).
451 * Maybe we could give LAP a bit of help in this case.
453 pr_debug("%s(), sorry, but I'm waiting for LAP to timeout!\n",
459 /* LAP is already connected to a different node, and LAP
460 * can only talk to one node at a time */
461 pr_debug("%s(), sorry, but link is busy!\n", __func__
);
469 * Remove LSAP from list of unconnected LSAPs and insert it into the
470 * list of connected LSAPs for the particular link
472 lsap
= hashbin_remove(irlmp
->unconnected_lsaps
, (long) self
, NULL
);
474 IRDA_ASSERT(lsap
!= NULL
, return -1;);
475 IRDA_ASSERT(lsap
->magic
== LMP_LSAP_MAGIC
, return -1;);
476 IRDA_ASSERT(lsap
->lap
!= NULL
, return -1;);
477 IRDA_ASSERT(lsap
->lap
->magic
== LMP_LAP_MAGIC
, return -1;);
479 hashbin_insert(self
->lap
->lsaps
, (irda_queue_t
*) self
, (long) self
,
482 set_bit(0, &self
->connected
); /* TRUE */
485 * User supplied qos specifications?
490 irlmp_do_lsap_event(self
, LM_CONNECT_REQUEST
, tx_skb
);
492 /* Drop reference count - see irlap_data_request(). */
493 dev_kfree_skb(tx_skb
);
500 dev_kfree_skb(tx_skb
);
503 EXPORT_SYMBOL(irlmp_connect_request
);
506 * Function irlmp_connect_indication (self)
508 * Incoming connection
511 void irlmp_connect_indication(struct lsap_cb
*self
, struct sk_buff
*skb
)
517 IRDA_ASSERT(self
!= NULL
, return;);
518 IRDA_ASSERT(self
->magic
== LMP_LSAP_MAGIC
, return;);
519 IRDA_ASSERT(skb
!= NULL
, return;);
520 IRDA_ASSERT(self
->lap
!= NULL
, return;);
522 pr_debug("%s(), slsap_sel=%02x, dlsap_sel=%02x\n",
523 __func__
, self
->slsap_sel
, self
->dlsap_sel
);
525 /* Note : self->lap is set in irlmp_link_data_indication(),
526 * (case CONNECT_CMD:) because we have no way to set it here.
527 * Similarly, self->dlsap_sel is usually set in irlmp_find_lsap().
530 self
->qos
= *self
->lap
->qos
;
532 max_seg_size
= self
->lap
->qos
->data_size
.value
-LMP_HEADER
;
533 lap_header_size
= IRLAP_GET_HEADER_SIZE(self
->lap
->irlap
);
534 max_header_size
= LMP_HEADER
+ lap_header_size
;
536 /* Hide LMP_CONTROL_HEADER header from layer above */
537 skb_pull(skb
, LMP_CONTROL_HEADER
);
539 if (self
->notify
.connect_indication
) {
540 /* Don't forget to refcount it - see irlap_driver_rcv(). */
542 self
->notify
.connect_indication(self
->notify
.instance
, self
,
543 &self
->qos
, max_seg_size
,
544 max_header_size
, skb
);
549 * Function irlmp_connect_response (handle, userdata)
551 * Service user is accepting connection
554 int irlmp_connect_response(struct lsap_cb
*self
, struct sk_buff
*userdata
)
556 IRDA_ASSERT(self
!= NULL
, return -1;);
557 IRDA_ASSERT(self
->magic
== LMP_LSAP_MAGIC
, return -1;);
558 IRDA_ASSERT(userdata
!= NULL
, return -1;);
560 /* We set the connected bit and move the lsap to the connected list
561 * in the state machine itself. Jean II */
563 pr_debug("%s(), slsap_sel=%02x, dlsap_sel=%02x\n",
564 __func__
, self
->slsap_sel
, self
->dlsap_sel
);
566 /* Make room for MUX control header (3 bytes) */
567 IRDA_ASSERT(skb_headroom(userdata
) >= LMP_CONTROL_HEADER
, return -1;);
568 skb_push(userdata
, LMP_CONTROL_HEADER
);
570 irlmp_do_lsap_event(self
, LM_CONNECT_RESPONSE
, userdata
);
572 /* Drop reference count - see irlap_data_request(). */
573 dev_kfree_skb(userdata
);
577 EXPORT_SYMBOL(irlmp_connect_response
);
580 * Function irlmp_connect_confirm (handle, skb)
582 * LSAP connection confirmed peer device!
584 void irlmp_connect_confirm(struct lsap_cb
*self
, struct sk_buff
*skb
)
590 IRDA_ASSERT(skb
!= NULL
, return;);
591 IRDA_ASSERT(self
!= NULL
, return;);
592 IRDA_ASSERT(self
->magic
== LMP_LSAP_MAGIC
, return;);
593 IRDA_ASSERT(self
->lap
!= NULL
, return;);
595 self
->qos
= *self
->lap
->qos
;
597 max_seg_size
= self
->lap
->qos
->data_size
.value
-LMP_HEADER
;
598 lap_header_size
= IRLAP_GET_HEADER_SIZE(self
->lap
->irlap
);
599 max_header_size
= LMP_HEADER
+ lap_header_size
;
601 pr_debug("%s(), max_header_size=%d\n",
602 __func__
, max_header_size
);
604 /* Hide LMP_CONTROL_HEADER header from layer above */
605 skb_pull(skb
, LMP_CONTROL_HEADER
);
607 if (self
->notify
.connect_confirm
) {
608 /* Don't forget to refcount it - see irlap_driver_rcv() */
610 self
->notify
.connect_confirm(self
->notify
.instance
, self
,
611 &self
->qos
, max_seg_size
,
612 max_header_size
, skb
);
617 * Function irlmp_dup (orig, instance)
619 * Duplicate LSAP, can be used by servers to confirm a connection on a
620 * new LSAP so it can keep listening on the old one.
623 struct lsap_cb
*irlmp_dup(struct lsap_cb
*orig
, void *instance
)
628 spin_lock_irqsave(&irlmp
->unconnected_lsaps
->hb_spinlock
, flags
);
630 /* Only allowed to duplicate unconnected LSAP's, and only LSAPs
631 * that have received a connect indication. Jean II */
632 if ((!hashbin_find(irlmp
->unconnected_lsaps
, (long) orig
, NULL
)) ||
633 (orig
->lap
== NULL
)) {
634 pr_debug("%s(), invalid LSAP (wrong state)\n",
636 spin_unlock_irqrestore(&irlmp
->unconnected_lsaps
->hb_spinlock
,
641 /* Allocate a new instance */
642 new = kmemdup(orig
, sizeof(*new), GFP_ATOMIC
);
644 pr_debug("%s(), unable to kmalloc\n", __func__
);
645 spin_unlock_irqrestore(&irlmp
->unconnected_lsaps
->hb_spinlock
,
649 /* new->lap = orig->lap; => done in the memcpy() */
650 /* new->slsap_sel = orig->slsap_sel; => done in the memcpy() */
651 new->conn_skb
= NULL
;
653 spin_unlock_irqrestore(&irlmp
->unconnected_lsaps
->hb_spinlock
, flags
);
655 /* Not everything is the same */
656 new->notify
.instance
= instance
;
658 init_timer(&new->watchdog_timer
);
660 hashbin_insert(irlmp
->unconnected_lsaps
, (irda_queue_t
*) new,
663 #ifdef CONFIG_IRDA_CACHE_LAST_LSAP
664 /* Make sure that we invalidate the LSAP cache */
665 new->lap
->cache
.valid
= FALSE
;
666 #endif /* CONFIG_IRDA_CACHE_LAST_LSAP */
672 * Function irlmp_disconnect_request (handle, userdata)
674 * The service user is requesting disconnection, this will not remove the
675 * LSAP, but only mark it as disconnected
677 int irlmp_disconnect_request(struct lsap_cb
*self
, struct sk_buff
*userdata
)
679 struct lsap_cb
*lsap
;
681 IRDA_ASSERT(self
!= NULL
, return -1;);
682 IRDA_ASSERT(self
->magic
== LMP_LSAP_MAGIC
, return -1;);
683 IRDA_ASSERT(userdata
!= NULL
, return -1;);
685 /* Already disconnected ?
686 * There is a race condition between irlmp_disconnect_indication()
687 * and us that might mess up the hashbins below. This fixes it.
689 if (! test_and_clear_bit(0, &self
->connected
)) {
690 pr_debug("%s(), already disconnected!\n", __func__
);
691 dev_kfree_skb(userdata
);
695 skb_push(userdata
, LMP_CONTROL_HEADER
);
698 * Do the event before the other stuff since we must know
699 * which lap layer that the frame should be transmitted on
701 irlmp_do_lsap_event(self
, LM_DISCONNECT_REQUEST
, userdata
);
703 /* Drop reference count - see irlap_data_request(). */
704 dev_kfree_skb(userdata
);
707 * Remove LSAP from list of connected LSAPs for the particular link
708 * and insert it into the list of unconnected LSAPs
710 IRDA_ASSERT(self
->lap
!= NULL
, return -1;);
711 IRDA_ASSERT(self
->lap
->magic
== LMP_LAP_MAGIC
, return -1;);
712 IRDA_ASSERT(self
->lap
->lsaps
!= NULL
, return -1;);
714 lsap
= hashbin_remove(self
->lap
->lsaps
, (long) self
, NULL
);
715 #ifdef CONFIG_IRDA_CACHE_LAST_LSAP
716 self
->lap
->cache
.valid
= FALSE
;
719 IRDA_ASSERT(lsap
!= NULL
, return -1;);
720 IRDA_ASSERT(lsap
->magic
== LMP_LSAP_MAGIC
, return -1;);
721 IRDA_ASSERT(lsap
== self
, return -1;);
723 hashbin_insert(irlmp
->unconnected_lsaps
, (irda_queue_t
*) self
,
726 /* Reset some values */
727 self
->dlsap_sel
= LSAP_ANY
;
732 EXPORT_SYMBOL(irlmp_disconnect_request
);
735 * Function irlmp_disconnect_indication (reason, userdata)
737 * LSAP is being closed!
739 void irlmp_disconnect_indication(struct lsap_cb
*self
, LM_REASON reason
,
742 struct lsap_cb
*lsap
;
744 pr_debug("%s(), reason=%s [%d]\n", __func__
,
745 irlmp_reason_str(reason
), reason
);
746 IRDA_ASSERT(self
!= NULL
, return;);
747 IRDA_ASSERT(self
->magic
== LMP_LSAP_MAGIC
, return;);
749 pr_debug("%s(), slsap_sel=%02x, dlsap_sel=%02x\n",
750 __func__
, self
->slsap_sel
, self
->dlsap_sel
);
752 /* Already disconnected ?
753 * There is a race condition between irlmp_disconnect_request()
754 * and us that might mess up the hashbins below. This fixes it.
756 if (! test_and_clear_bit(0, &self
->connected
)) {
757 pr_debug("%s(), already disconnected!\n", __func__
);
762 * Remove association between this LSAP and the link it used
764 IRDA_ASSERT(self
->lap
!= NULL
, return;);
765 IRDA_ASSERT(self
->lap
->lsaps
!= NULL
, return;);
767 lsap
= hashbin_remove(self
->lap
->lsaps
, (long) self
, NULL
);
768 #ifdef CONFIG_IRDA_CACHE_LAST_LSAP
769 self
->lap
->cache
.valid
= FALSE
;
772 IRDA_ASSERT(lsap
!= NULL
, return;);
773 IRDA_ASSERT(lsap
== self
, return;);
774 hashbin_insert(irlmp
->unconnected_lsaps
, (irda_queue_t
*) lsap
,
777 self
->dlsap_sel
= LSAP_ANY
;
781 * Inform service user
783 if (self
->notify
.disconnect_indication
) {
784 /* Don't forget to refcount it - see irlap_driver_rcv(). */
787 self
->notify
.disconnect_indication(self
->notify
.instance
,
790 pr_debug("%s(), no handler\n", __func__
);
795 * Function irlmp_do_expiry (void)
797 * Do a cleanup of the discovery log (remove old entries)
799 * Note : separate from irlmp_do_discovery() so that we can handle
800 * passive discovery properly.
802 void irlmp_do_expiry(void)
807 * Expire discovery on all links which are *not* connected.
808 * On links which are connected, we can't do discovery
809 * anymore and can't refresh the log, so we freeze the
810 * discovery log to keep info about the device we are
812 * This info is mandatory if we want irlmp_connect_request()
813 * to work properly. - Jean II
815 lap
= (struct lap_cb
*) hashbin_get_first(irlmp
->links
);
816 while (lap
!= NULL
) {
817 IRDA_ASSERT(lap
->magic
== LMP_LAP_MAGIC
, return;);
819 if (lap
->lap_state
== LAP_STANDBY
) {
820 /* Expire discoveries discovered on this link */
821 irlmp_expire_discoveries(irlmp
->cachelog
, lap
->saddr
,
824 lap
= (struct lap_cb
*) hashbin_get_next(irlmp
->links
);
829 * Function irlmp_do_discovery (nslots)
831 * Do some discovery on all links
833 * Note : log expiry is done above.
835 void irlmp_do_discovery(int nslots
)
840 /* Make sure the value is sane */
841 if ((nslots
!= 1) && (nslots
!= 6) && (nslots
!= 8) && (nslots
!= 16)){
842 net_warn_ratelimited("%s: invalid value for number of slots!\n",
844 nslots
= sysctl_discovery_slots
= 8;
847 /* Construct new discovery info to be used by IrLAP, */
848 data_hintsp
= (__u16
*) irlmp
->discovery_cmd
.data
.hints
;
849 put_unaligned(irlmp
->hints
.word
, data_hintsp
);
852 * Set character set for device name (we use ASCII), and
853 * copy device name. Remember to make room for a \0 at the
856 irlmp
->discovery_cmd
.data
.charset
= CS_ASCII
;
857 strncpy(irlmp
->discovery_cmd
.data
.info
, sysctl_devname
,
859 irlmp
->discovery_cmd
.name_len
= strlen(irlmp
->discovery_cmd
.data
.info
);
860 irlmp
->discovery_cmd
.nslots
= nslots
;
863 * Try to send discovery packets on all links
865 lap
= (struct lap_cb
*) hashbin_get_first(irlmp
->links
);
866 while (lap
!= NULL
) {
867 IRDA_ASSERT(lap
->magic
== LMP_LAP_MAGIC
, return;);
869 if (lap
->lap_state
== LAP_STANDBY
) {
870 /* Try to discover */
871 irlmp_do_lap_event(lap
, LM_LAP_DISCOVERY_REQUEST
,
874 lap
= (struct lap_cb
*) hashbin_get_next(irlmp
->links
);
879 * Function irlmp_discovery_request (nslots)
881 * Do a discovery of devices in front of the computer
883 * If the caller has registered a client discovery callback, this
884 * allow him to receive the full content of the discovery log through
885 * this callback (as normally he will receive only new discoveries).
887 void irlmp_discovery_request(int nslots
)
889 /* Return current cached discovery log (in full) */
890 irlmp_discovery_confirm(irlmp
->cachelog
, DISCOVERY_LOG
);
893 * Start a single discovery operation if discovery is not already
896 if (!sysctl_discovery
) {
897 /* Check if user wants to override the default */
898 if (nslots
== DISCOVERY_DEFAULT_SLOTS
)
899 nslots
= sysctl_discovery_slots
;
901 irlmp_do_discovery(nslots
);
902 /* Note : we never do expiry here. Expiry will run on the
903 * discovery timer regardless of the state of sysctl_discovery
907 EXPORT_SYMBOL(irlmp_discovery_request
);
910 * Function irlmp_get_discoveries (pn, mask, slots)
912 * Return the current discovery log
914 * If discovery is not enabled, you should call this function again
915 * after 1 or 2 seconds (i.e. after discovery has been done).
917 struct irda_device_info
*irlmp_get_discoveries(int *pn
, __u16 mask
, int nslots
)
919 /* If discovery is not enabled, it's likely that the discovery log
920 * will be empty. So, we trigger a single discovery, so that next
921 * time the user call us there might be some results in the log.
924 if (!sysctl_discovery
) {
925 /* Check if user wants to override the default */
926 if (nslots
== DISCOVERY_DEFAULT_SLOTS
)
927 nslots
= sysctl_discovery_slots
;
929 /* Start discovery - will complete sometime later */
930 irlmp_do_discovery(nslots
);
931 /* Note : we never do expiry here. Expiry will run on the
932 * discovery timer regardless of the state of sysctl_discovery
936 /* Return current cached discovery log */
937 return irlmp_copy_discoveries(irlmp
->cachelog
, pn
, mask
, TRUE
);
939 EXPORT_SYMBOL(irlmp_get_discoveries
);
942 * Function irlmp_notify_client (log)
944 * Notify all about discovered devices
946 * Clients registered with IrLMP are :
949 * o Any socket (in any state - ouch, that may be a lot !)
950 * The client may have defined a callback to be notified in case of
951 * partial/selective discovery based on the hints that it passed to IrLMP.
954 irlmp_notify_client(irlmp_client_t
*client
,
955 hashbin_t
*log
, DISCOVERY_MODE mode
)
957 discinfo_t
*discoveries
; /* Copy of the discovery log */
958 int number
; /* Number of nodes in the log */
961 /* Check if client wants or not partial/selective log (optimisation) */
962 if (!client
->disco_callback
)
967 * the old code was manipulating the log directly, which was
968 * very racy. Now, we use copy_discoveries, that protects
969 * itself while dumping the log for us.
970 * The overhead of the copy is compensated by the fact that
971 * we only pass new discoveries in normal mode and don't
972 * pass the same old entry every 3s to the caller as we used
973 * to do (virtual function calling is expensive).
978 * Now, check all discovered devices (if any), and notify client
979 * only about the services that the client is interested in
980 * We also notify only about the new devices unless the caller
981 * explicitly request a dump of the log. Jean II
983 discoveries
= irlmp_copy_discoveries(log
, &number
,
984 client
->hint_mask
.word
,
985 (mode
== DISCOVERY_LOG
));
986 /* Check if the we got some results */
987 if (discoveries
== NULL
)
988 return; /* No nodes discovered */
990 /* Pass all entries to the listener */
991 for(i
= 0; i
< number
; i
++)
992 client
->disco_callback(&(discoveries
[i
]), mode
, client
->priv
);
994 /* Free up our buffer */
999 * Function irlmp_discovery_confirm ( self, log)
1001 * Some device(s) answered to our discovery request! Check to see which
1002 * device it is, and give indication to the client(s)
1005 void irlmp_discovery_confirm(hashbin_t
*log
, DISCOVERY_MODE mode
)
1007 irlmp_client_t
*client
;
1008 irlmp_client_t
*client_next
;
1010 IRDA_ASSERT(log
!= NULL
, return;);
1012 if (!(HASHBIN_GET_SIZE(log
)))
1015 /* For each client - notify callback may touch client list */
1016 client
= (irlmp_client_t
*) hashbin_get_first(irlmp
->clients
);
1017 while (NULL
!= hashbin_find_next(irlmp
->clients
, (long) client
, NULL
,
1018 (void *) &client_next
) ) {
1019 /* Check if we should notify client */
1020 irlmp_notify_client(client
, log
, mode
);
1022 client
= client_next
;
1027 * Function irlmp_discovery_expiry (expiry)
1029 * This device is no longer been discovered, and therefore it is being
1030 * purged from the discovery log. Inform all clients who have
1031 * registered for this event...
1033 * Note : called exclusively from discovery.c
1034 * Note : this is no longer called under discovery spinlock, so the
1035 * client can do whatever he wants in the callback.
1037 void irlmp_discovery_expiry(discinfo_t
*expiries
, int number
)
1039 irlmp_client_t
*client
;
1040 irlmp_client_t
*client_next
;
1043 IRDA_ASSERT(expiries
!= NULL
, return;);
1045 /* For each client - notify callback may touch client list */
1046 client
= (irlmp_client_t
*) hashbin_get_first(irlmp
->clients
);
1047 while (NULL
!= hashbin_find_next(irlmp
->clients
, (long) client
, NULL
,
1048 (void *) &client_next
) ) {
1050 /* Pass all entries to the listener */
1051 for(i
= 0; i
< number
; i
++) {
1052 /* Check if we should notify client */
1053 if ((client
->expir_callback
) &&
1054 (client
->hint_mask
.word
&
1055 get_unaligned((__u16
*)expiries
[i
].hints
)
1057 client
->expir_callback(&(expiries
[i
]),
1063 client
= client_next
;
1068 * Function irlmp_get_discovery_response ()
1070 * Used by IrLAP to get the discovery info it needs when answering
1071 * discovery requests by other devices.
1073 discovery_t
*irlmp_get_discovery_response(void)
1075 IRDA_ASSERT(irlmp
!= NULL
, return NULL
;);
1077 put_unaligned(irlmp
->hints
.word
, (__u16
*)irlmp
->discovery_rsp
.data
.hints
);
1080 * Set character set for device name (we use ASCII), and
1081 * copy device name. Remember to make room for a \0 at the
1084 irlmp
->discovery_rsp
.data
.charset
= CS_ASCII
;
1086 strncpy(irlmp
->discovery_rsp
.data
.info
, sysctl_devname
,
1088 irlmp
->discovery_rsp
.name_len
= strlen(irlmp
->discovery_rsp
.data
.info
);
1090 return &irlmp
->discovery_rsp
;
1094 * Function irlmp_data_request (self, skb)
1096 * Send some data to peer device
1098 * Note on skb management :
1099 * After calling the lower layers of the IrDA stack, we always
1100 * kfree() the skb, which drop the reference count (and potentially
1102 * IrLMP and IrLAP may queue the packet, and in those cases will need
1103 * to use skb_get() to keep it around.
1106 int irlmp_data_request(struct lsap_cb
*self
, struct sk_buff
*userdata
)
1110 IRDA_ASSERT(self
!= NULL
, return -1;);
1111 IRDA_ASSERT(self
->magic
== LMP_LSAP_MAGIC
, return -1;);
1113 /* Make room for MUX header */
1114 IRDA_ASSERT(skb_headroom(userdata
) >= LMP_HEADER
, return -1;);
1115 skb_push(userdata
, LMP_HEADER
);
1117 ret
= irlmp_do_lsap_event(self
, LM_DATA_REQUEST
, userdata
);
1119 /* Drop reference count - see irlap_data_request(). */
1120 dev_kfree_skb(userdata
);
1124 EXPORT_SYMBOL(irlmp_data_request
);
1127 * Function irlmp_data_indication (handle, skb)
1129 * Got data from LAP layer so pass it up to upper layer
1132 void irlmp_data_indication(struct lsap_cb
*self
, struct sk_buff
*skb
)
1134 /* Hide LMP header from layer above */
1135 skb_pull(skb
, LMP_HEADER
);
1137 if (self
->notify
.data_indication
) {
1138 /* Don't forget to refcount it - see irlap_driver_rcv(). */
1140 self
->notify
.data_indication(self
->notify
.instance
, self
, skb
);
1145 * Function irlmp_udata_request (self, skb)
1147 int irlmp_udata_request(struct lsap_cb
*self
, struct sk_buff
*userdata
)
1151 IRDA_ASSERT(userdata
!= NULL
, return -1;);
1153 /* Make room for MUX header */
1154 IRDA_ASSERT(skb_headroom(userdata
) >= LMP_HEADER
, return -1;);
1155 skb_push(userdata
, LMP_HEADER
);
1157 ret
= irlmp_do_lsap_event(self
, LM_UDATA_REQUEST
, userdata
);
1159 /* Drop reference count - see irlap_data_request(). */
1160 dev_kfree_skb(userdata
);
1166 * Function irlmp_udata_indication (self, skb)
1168 * Send unreliable data (but still within the connection)
1171 void irlmp_udata_indication(struct lsap_cb
*self
, struct sk_buff
*skb
)
1173 IRDA_ASSERT(self
!= NULL
, return;);
1174 IRDA_ASSERT(self
->magic
== LMP_LSAP_MAGIC
, return;);
1175 IRDA_ASSERT(skb
!= NULL
, return;);
1177 /* Hide LMP header from layer above */
1178 skb_pull(skb
, LMP_HEADER
);
1180 if (self
->notify
.udata_indication
) {
1181 /* Don't forget to refcount it - see irlap_driver_rcv(). */
1183 self
->notify
.udata_indication(self
->notify
.instance
, self
,
1189 * Function irlmp_connless_data_request (self, skb)
1191 #ifdef CONFIG_IRDA_ULTRA
1192 int irlmp_connless_data_request(struct lsap_cb
*self
, struct sk_buff
*userdata
,
1195 struct sk_buff
*clone_skb
;
1198 IRDA_ASSERT(userdata
!= NULL
, return -1;);
1200 /* Make room for MUX and PID header */
1201 IRDA_ASSERT(skb_headroom(userdata
) >= LMP_HEADER
+LMP_PID_HEADER
,
1204 /* Insert protocol identifier */
1205 skb_push(userdata
, LMP_PID_HEADER
);
1207 userdata
->data
[0] = self
->pid
;
1209 userdata
->data
[0] = pid
;
1211 /* Connectionless sockets must use 0x70 */
1212 skb_push(userdata
, LMP_HEADER
);
1213 userdata
->data
[0] = userdata
->data
[1] = LSAP_CONNLESS
;
1215 /* Try to send Connectionless packets out on all links */
1216 lap
= (struct lap_cb
*) hashbin_get_first(irlmp
->links
);
1217 while (lap
!= NULL
) {
1218 IRDA_ASSERT(lap
->magic
== LMP_LAP_MAGIC
, return -1;);
1220 clone_skb
= skb_clone(userdata
, GFP_ATOMIC
);
1222 dev_kfree_skb(userdata
);
1226 irlap_unitdata_request(lap
->irlap
, clone_skb
);
1227 /* irlap_unitdata_request() don't increase refcount,
1228 * so no dev_kfree_skb() - Jean II */
1230 lap
= (struct lap_cb
*) hashbin_get_next(irlmp
->links
);
1232 dev_kfree_skb(userdata
);
1236 #endif /* CONFIG_IRDA_ULTRA */
1239 * Function irlmp_connless_data_indication (self, skb)
1241 * Receive unreliable data outside any connection. Mostly used by Ultra
1244 #ifdef CONFIG_IRDA_ULTRA
1245 void irlmp_connless_data_indication(struct lsap_cb
*self
, struct sk_buff
*skb
)
1247 IRDA_ASSERT(self
!= NULL
, return;);
1248 IRDA_ASSERT(self
->magic
== LMP_LSAP_MAGIC
, return;);
1249 IRDA_ASSERT(skb
!= NULL
, return;);
1251 /* Hide LMP and PID header from layer above */
1252 skb_pull(skb
, LMP_HEADER
+LMP_PID_HEADER
);
1254 if (self
->notify
.udata_indication
) {
1255 /* Don't forget to refcount it - see irlap_driver_rcv(). */
1257 self
->notify
.udata_indication(self
->notify
.instance
, self
,
1261 #endif /* CONFIG_IRDA_ULTRA */
1264 * Propagate status indication from LAP to LSAPs (via LMP)
1265 * This don't trigger any change of state in lap_cb, lmp_cb or lsap_cb,
1266 * and the event is stateless, therefore we can bypass both state machines
1267 * and send the event direct to the LSAP user.
1270 void irlmp_status_indication(struct lap_cb
*self
,
1271 LINK_STATUS link
, LOCK_STATUS lock
)
1273 struct lsap_cb
*next
;
1274 struct lsap_cb
*curr
;
1276 /* Send status_indication to all LSAPs using this link */
1277 curr
= (struct lsap_cb
*) hashbin_get_first( self
->lsaps
);
1278 while (NULL
!= hashbin_find_next(self
->lsaps
, (long) curr
, NULL
,
1280 IRDA_ASSERT(curr
->magic
== LMP_LSAP_MAGIC
, return;);
1282 * Inform service user if he has requested it
1284 if (curr
->notify
.status_indication
!= NULL
)
1285 curr
->notify
.status_indication(curr
->notify
.instance
,
1288 pr_debug("%s(), no handler\n", __func__
);
1295 * Receive flow control indication from LAP.
1296 * LAP want us to send it one more frame. We implement a simple round
1297 * robin scheduler between the active sockets so that we get a bit of
1298 * fairness. Note that the round robin is far from perfect, but it's
1299 * better than nothing.
1300 * We then poll the selected socket so that we can do synchronous
1301 * refilling of IrLAP (which allow to minimise the number of buffers).
1304 void irlmp_flow_indication(struct lap_cb
*self
, LOCAL_FLOW flow
)
1306 struct lsap_cb
*next
;
1307 struct lsap_cb
*curr
;
1310 IRDA_ASSERT(self
->magic
== LMP_LAP_MAGIC
, return;);
1311 IRDA_ASSERT(flow
== FLOW_START
, return;);
1313 /* Get the number of lsap. That's the only safe way to know
1314 * that we have looped around... - Jean II */
1315 lsap_todo
= HASHBIN_GET_SIZE(self
->lsaps
);
1316 pr_debug("%s() : %d lsaps to scan\n", __func__
, lsap_todo
);
1318 /* Poll lsap in order until the queue is full or until we
1320 * Most often, the current LSAP will have something to send,
1321 * so we will go through this loop only once. - Jean II */
1322 while((lsap_todo
--) &&
1323 (IRLAP_GET_TX_QUEUE_LEN(self
->irlap
) < LAP_HIGH_THRESHOLD
)) {
1324 /* Try to find the next lsap we should poll. */
1325 next
= self
->flow_next
;
1326 /* If we have no lsap, restart from first one */
1328 next
= (struct lsap_cb
*) hashbin_get_first(self
->lsaps
);
1329 /* Verify current one and find the next one */
1330 curr
= hashbin_find_next(self
->lsaps
, (long) next
, NULL
,
1331 (void *) &self
->flow_next
);
1332 /* Uh-oh... Paranoia */
1335 pr_debug("%s() : curr is %p, next was %p and is now %p, still %d to go - queue len = %d\n",
1336 __func__
, curr
, next
, self
->flow_next
, lsap_todo
,
1337 IRLAP_GET_TX_QUEUE_LEN(self
->irlap
));
1339 /* Inform lsap user that it can send one more packet. */
1340 if (curr
->notify
.flow_indication
!= NULL
)
1341 curr
->notify
.flow_indication(curr
->notify
.instance
,
1344 pr_debug("%s(), no handler\n", __func__
);
1350 * Function irlmp_hint_to_service (hint)
1352 * Returns a list of all servics contained in the given hint bits. This
1353 * function assumes that the hint bits have the size of two bytes only
1355 __u8
*irlmp_hint_to_service(__u8
*hint
)
1361 * Allocate array to store services in. 16 entries should be safe
1362 * since we currently only support 2 hint bytes
1364 service
= kmalloc(16, GFP_ATOMIC
);
1369 pr_debug("<None>\n");
1373 if (hint
[0] & HINT_PNP
)
1374 pr_debug("PnP Compatible ");
1375 if (hint
[0] & HINT_PDA
)
1376 pr_debug("PDA/Palmtop ");
1377 if (hint
[0] & HINT_COMPUTER
)
1378 pr_debug("Computer ");
1379 if (hint
[0] & HINT_PRINTER
) {
1380 pr_debug("Printer ");
1381 service
[i
++] = S_PRINTER
;
1383 if (hint
[0] & HINT_MODEM
)
1385 if (hint
[0] & HINT_FAX
)
1387 if (hint
[0] & HINT_LAN
) {
1388 pr_debug("LAN Access ");
1389 service
[i
++] = S_LAN
;
1392 * Test if extension byte exists. This byte will usually be
1393 * there, but this is not really required by the standard.
1396 if (hint
[0] & HINT_EXTENSION
) {
1397 if (hint
[1] & HINT_TELEPHONY
) {
1398 pr_debug("Telephony ");
1399 service
[i
++] = S_TELEPHONY
;
1401 if (hint
[1] & HINT_FILE_SERVER
)
1402 pr_debug("File Server ");
1404 if (hint
[1] & HINT_COMM
) {
1405 pr_debug("IrCOMM ");
1406 service
[i
++] = S_COMM
;
1408 if (hint
[1] & HINT_OBEX
) {
1409 pr_debug("IrOBEX ");
1410 service
[i
++] = S_OBEX
;
1415 /* So that client can be notified about any discovery */
1416 service
[i
++] = S_ANY
;
1424 static const __u16 service_hint_mapping
[S_END
][2] = {
1425 { HINT_PNP
, 0 }, /* S_PNP */
1426 { HINT_PDA
, 0 }, /* S_PDA */
1427 { HINT_COMPUTER
, 0 }, /* S_COMPUTER */
1428 { HINT_PRINTER
, 0 }, /* S_PRINTER */
1429 { HINT_MODEM
, 0 }, /* S_MODEM */
1430 { HINT_FAX
, 0 }, /* S_FAX */
1431 { HINT_LAN
, 0 }, /* S_LAN */
1432 { HINT_EXTENSION
, HINT_TELEPHONY
}, /* S_TELEPHONY */
1433 { HINT_EXTENSION
, HINT_COMM
}, /* S_COMM */
1434 { HINT_EXTENSION
, HINT_OBEX
}, /* S_OBEX */
1435 { 0xFF, 0xFF }, /* S_ANY */
1439 * Function irlmp_service_to_hint (service)
1441 * Converts a service type, to a hint bit
1443 * Returns: a 16 bit hint value, with the service bit set
1445 __u16
irlmp_service_to_hint(int service
)
1447 __u16_host_order hint
;
1449 hint
.byte
[0] = service_hint_mapping
[service
][0];
1450 hint
.byte
[1] = service_hint_mapping
[service
][1];
1454 EXPORT_SYMBOL(irlmp_service_to_hint
);
1457 * Function irlmp_register_service (service)
1459 * Register local service with IrLMP
1462 void *irlmp_register_service(__u16 hints
)
1464 irlmp_service_t
*service
;
1466 pr_debug("%s(), hints = %04x\n", __func__
, hints
);
1468 /* Make a new registration */
1469 service
= kmalloc(sizeof(irlmp_service_t
), GFP_ATOMIC
);
1473 service
->hints
.word
= hints
;
1474 hashbin_insert(irlmp
->services
, (irda_queue_t
*) service
,
1475 (long) service
, NULL
);
1477 irlmp
->hints
.word
|= hints
;
1479 return (void *)service
;
1481 EXPORT_SYMBOL(irlmp_register_service
);
1484 * Function irlmp_unregister_service (handle)
1486 * Unregister service with IrLMP.
1488 * Returns: 0 on success, -1 on error
1490 int irlmp_unregister_service(void *handle
)
1492 irlmp_service_t
*service
;
1493 unsigned long flags
;
1498 /* Caller may call with invalid handle (it's legal) - Jean II */
1499 service
= hashbin_lock_find(irlmp
->services
, (long) handle
, NULL
);
1501 pr_debug("%s(), Unknown service!\n", __func__
);
1505 hashbin_remove_this(irlmp
->services
, (irda_queue_t
*) service
);
1508 /* Remove old hint bits */
1509 irlmp
->hints
.word
= 0;
1511 /* Refresh current hint bits */
1512 spin_lock_irqsave(&irlmp
->services
->hb_spinlock
, flags
);
1513 service
= (irlmp_service_t
*) hashbin_get_first(irlmp
->services
);
1515 irlmp
->hints
.word
|= service
->hints
.word
;
1517 service
= (irlmp_service_t
*)hashbin_get_next(irlmp
->services
);
1519 spin_unlock_irqrestore(&irlmp
->services
->hb_spinlock
, flags
);
1522 EXPORT_SYMBOL(irlmp_unregister_service
);
1525 * Function irlmp_register_client (hint_mask, callback1, callback2)
1527 * Register a local client with IrLMP
1528 * First callback is selective discovery (based on hints)
1529 * Second callback is for selective discovery expiries
1531 * Returns: handle > 0 on success, 0 on error
1533 void *irlmp_register_client(__u16 hint_mask
, DISCOVERY_CALLBACK1 disco_clb
,
1534 DISCOVERY_CALLBACK2 expir_clb
, void *priv
)
1536 irlmp_client_t
*client
;
1538 IRDA_ASSERT(irlmp
!= NULL
, return NULL
;);
1540 /* Make a new registration */
1541 client
= kmalloc(sizeof(irlmp_client_t
), GFP_ATOMIC
);
1545 /* Register the details */
1546 client
->hint_mask
.word
= hint_mask
;
1547 client
->disco_callback
= disco_clb
;
1548 client
->expir_callback
= expir_clb
;
1549 client
->priv
= priv
;
1551 hashbin_insert(irlmp
->clients
, (irda_queue_t
*) client
,
1552 (long) client
, NULL
);
1554 return (void *) client
;
1556 EXPORT_SYMBOL(irlmp_register_client
);
1559 * Function irlmp_update_client (handle, hint_mask, callback1, callback2)
1561 * Updates specified client (handle) with possibly new hint_mask and
1564 * Returns: 0 on success, -1 on error
1566 int irlmp_update_client(void *handle
, __u16 hint_mask
,
1567 DISCOVERY_CALLBACK1 disco_clb
,
1568 DISCOVERY_CALLBACK2 expir_clb
, void *priv
)
1570 irlmp_client_t
*client
;
1575 client
= hashbin_lock_find(irlmp
->clients
, (long) handle
, NULL
);
1577 pr_debug("%s(), Unknown client!\n", __func__
);
1581 client
->hint_mask
.word
= hint_mask
;
1582 client
->disco_callback
= disco_clb
;
1583 client
->expir_callback
= expir_clb
;
1584 client
->priv
= priv
;
1588 EXPORT_SYMBOL(irlmp_update_client
);
1591 * Function irlmp_unregister_client (handle)
1593 * Returns: 0 on success, -1 on error
1596 int irlmp_unregister_client(void *handle
)
1598 struct irlmp_client
*client
;
1603 /* Caller may call with invalid handle (it's legal) - Jean II */
1604 client
= hashbin_lock_find(irlmp
->clients
, (long) handle
, NULL
);
1606 pr_debug("%s(), Unknown client!\n", __func__
);
1610 pr_debug("%s(), removing client!\n", __func__
);
1611 hashbin_remove_this(irlmp
->clients
, (irda_queue_t
*) client
);
1616 EXPORT_SYMBOL(irlmp_unregister_client
);
1619 * Function irlmp_slsap_inuse (slsap)
1621 * Check if the given source LSAP selector is in use
1623 * This function is clearly not very efficient. On the mitigating side, the
1624 * stack make sure that in 99% of the cases, we are called only once
1625 * for each socket allocation. We could probably keep a bitmap
1626 * of the allocated LSAP, but I'm not sure the complexity is worth it.
1629 static int irlmp_slsap_inuse(__u8 slsap_sel
)
1631 struct lsap_cb
*self
;
1633 unsigned long flags
;
1635 IRDA_ASSERT(irlmp
!= NULL
, return TRUE
;);
1636 IRDA_ASSERT(irlmp
->magic
== LMP_MAGIC
, return TRUE
;);
1637 IRDA_ASSERT(slsap_sel
!= LSAP_ANY
, return TRUE
;);
1639 #ifdef CONFIG_IRDA_ULTRA
1640 /* Accept all bindings to the connectionless LSAP */
1641 if (slsap_sel
== LSAP_CONNLESS
)
1643 #endif /* CONFIG_IRDA_ULTRA */
1645 /* Valid values are between 0 and 127 (0x0-0x6F) */
1646 if (slsap_sel
> LSAP_MAX
)
1650 * Check if slsap is already in use. To do this we have to loop over
1651 * every IrLAP connection and check every LSAP associated with each
1654 spin_lock_irqsave_nested(&irlmp
->links
->hb_spinlock
, flags
,
1655 SINGLE_DEPTH_NESTING
);
1656 lap
= (struct lap_cb
*) hashbin_get_first(irlmp
->links
);
1657 while (lap
!= NULL
) {
1658 IRDA_ASSERT(lap
->magic
== LMP_LAP_MAGIC
, goto errlap
;);
1660 /* Careful for priority inversions here !
1661 * irlmp->links is never taken while another IrDA
1662 * spinlock is held, so we are safe. Jean II */
1663 spin_lock(&lap
->lsaps
->hb_spinlock
);
1665 /* For this IrLAP, check all the LSAPs */
1666 self
= (struct lsap_cb
*) hashbin_get_first(lap
->lsaps
);
1667 while (self
!= NULL
) {
1668 IRDA_ASSERT(self
->magic
== LMP_LSAP_MAGIC
,
1671 if ((self
->slsap_sel
== slsap_sel
)) {
1672 pr_debug("Source LSAP selector=%02x in use\n",
1676 self
= (struct lsap_cb
*) hashbin_get_next(lap
->lsaps
);
1678 spin_unlock(&lap
->lsaps
->hb_spinlock
);
1681 lap
= (struct lap_cb
*) hashbin_get_next(irlmp
->links
);
1683 spin_unlock_irqrestore(&irlmp
->links
->hb_spinlock
, flags
);
1686 * Server sockets are typically waiting for connections and
1687 * therefore reside in the unconnected list. We don't want
1688 * to give out their LSAPs for obvious reasons...
1691 spin_lock_irqsave(&irlmp
->unconnected_lsaps
->hb_spinlock
, flags
);
1693 self
= (struct lsap_cb
*) hashbin_get_first(irlmp
->unconnected_lsaps
);
1694 while (self
!= NULL
) {
1695 IRDA_ASSERT(self
->magic
== LMP_LSAP_MAGIC
, goto erruncon
;);
1696 if ((self
->slsap_sel
== slsap_sel
)) {
1697 pr_debug("Source LSAP selector=%02x in use (unconnected)\n",
1701 self
= (struct lsap_cb
*) hashbin_get_next(irlmp
->unconnected_lsaps
);
1703 spin_unlock_irqrestore(&irlmp
->unconnected_lsaps
->hb_spinlock
, flags
);
1707 /* Error exit from within one of the two nested loops.
1708 * Make sure we release the right spinlock in the righ order.
1711 spin_unlock(&lap
->lsaps
->hb_spinlock
);
1712 IRDA_ASSERT_LABEL(errlap
:)
1713 spin_unlock_irqrestore(&irlmp
->links
->hb_spinlock
, flags
);
1716 /* Error exit from within the unconnected loop.
1717 * Just one spinlock to release... Jean II */
1719 spin_unlock_irqrestore(&irlmp
->unconnected_lsaps
->hb_spinlock
, flags
);
1724 * Function irlmp_find_free_slsap ()
1726 * Find a free source LSAP to use. This function is called if the service
1727 * user has requested a source LSAP equal to LM_ANY
1729 static __u8
irlmp_find_free_slsap(void)
1734 IRDA_ASSERT(irlmp
!= NULL
, return -1;);
1735 IRDA_ASSERT(irlmp
->magic
== LMP_MAGIC
, return -1;);
1737 /* Most users don't really care which LSAPs they are given,
1738 * and therefore we automatically give them a free LSAP.
1739 * This function try to find a suitable LSAP, i.e. which is
1740 * not in use and is within the acceptable range. Jean II */
1743 /* Always increment to LSAP number before using it.
1744 * In theory, we could reuse the last LSAP number, as long
1745 * as it is no longer in use. Some IrDA stack do that.
1746 * However, the previous socket may be half closed, i.e.
1747 * we closed it, we think it's no longer in use, but the
1748 * other side did not receive our close and think it's
1749 * active and still send data on it.
1750 * This is similar to what is done with PIDs and TCP ports.
1751 * Also, this reduce the number of calls to irlmp_slsap_inuse()
1752 * which is an expensive function to call.
1754 irlmp
->last_lsap_sel
++;
1756 /* Check if we need to wraparound (0x70-0x7f are reserved) */
1757 if (irlmp
->last_lsap_sel
> LSAP_MAX
) {
1758 /* 0x00-0x10 are also reserved for well know ports */
1759 irlmp
->last_lsap_sel
= 0x10;
1761 /* Make sure we terminate the loop */
1763 net_err_ratelimited("%s: no more free LSAPs !\n",
1769 /* If the LSAP is in use, try the next one.
1770 * Despite the autoincrement, we need to check if the lsap
1771 * is really in use or not, first because LSAP may be
1772 * directly allocated in irlmp_open_lsap(), and also because
1773 * we may wraparound on old sockets. Jean II */
1774 } while (irlmp_slsap_inuse(irlmp
->last_lsap_sel
));
1777 lsap_sel
= irlmp
->last_lsap_sel
;
1778 pr_debug("%s(), found free lsap_sel=%02x\n",
1779 __func__
, lsap_sel
);
1785 * Function irlmp_convert_lap_reason (lap_reason)
1787 * Converts IrLAP disconnect reason codes to IrLMP disconnect reason
1791 LM_REASON
irlmp_convert_lap_reason( LAP_REASON lap_reason
)
1793 int reason
= LM_LAP_DISCONNECT
;
1795 switch (lap_reason
) {
1796 case LAP_DISC_INDICATION
: /* Received a disconnect request from peer */
1797 pr_debug("%s(), LAP_DISC_INDICATION\n", __func__
);
1798 reason
= LM_USER_REQUEST
;
1800 case LAP_NO_RESPONSE
: /* To many retransmits without response */
1801 pr_debug("%s(), LAP_NO_RESPONSE\n", __func__
);
1802 reason
= LM_LAP_DISCONNECT
;
1804 case LAP_RESET_INDICATION
:
1805 pr_debug("%s(), LAP_RESET_INDICATION\n", __func__
);
1806 reason
= LM_LAP_RESET
;
1808 case LAP_FOUND_NONE
:
1809 case LAP_MEDIA_BUSY
:
1810 case LAP_PRIMARY_CONFLICT
:
1811 pr_debug("%s(), LAP_FOUND_NONE, LAP_MEDIA_BUSY or LAP_PRIMARY_CONFLICT\n",
1813 reason
= LM_CONNECT_FAILURE
;
1816 pr_debug("%s(), Unknown IrLAP disconnect reason %d!\n",
1817 __func__
, lap_reason
);
1818 reason
= LM_LAP_DISCONNECT
;
1825 #ifdef CONFIG_PROC_FS
1827 struct irlmp_iter_state
{
1831 #define LSAP_START_TOKEN ((void *)1)
1832 #define LINK_START_TOKEN ((void *)2)
1834 static void *irlmp_seq_hb_idx(struct irlmp_iter_state
*iter
, loff_t
*off
)
1838 spin_lock_irq(&iter
->hashbin
->hb_spinlock
);
1839 for (element
= hashbin_get_first(iter
->hashbin
);
1841 element
= hashbin_get_next(iter
->hashbin
)) {
1842 if (!off
|| (*off
)-- == 0) {
1843 /* NB: hashbin left locked */
1847 spin_unlock_irq(&iter
->hashbin
->hb_spinlock
);
1848 iter
->hashbin
= NULL
;
1853 static void *irlmp_seq_start(struct seq_file
*seq
, loff_t
*pos
)
1855 struct irlmp_iter_state
*iter
= seq
->private;
1859 iter
->hashbin
= NULL
;
1861 return LSAP_START_TOKEN
;
1863 iter
->hashbin
= irlmp
->unconnected_lsaps
;
1864 v
= irlmp_seq_hb_idx(iter
, &off
);
1869 return LINK_START_TOKEN
;
1871 iter
->hashbin
= irlmp
->links
;
1872 return irlmp_seq_hb_idx(iter
, &off
);
1875 static void *irlmp_seq_next(struct seq_file
*seq
, void *v
, loff_t
*pos
)
1877 struct irlmp_iter_state
*iter
= seq
->private;
1881 if (v
== LSAP_START_TOKEN
) { /* start of list of lsaps */
1882 iter
->hashbin
= irlmp
->unconnected_lsaps
;
1883 v
= irlmp_seq_hb_idx(iter
, NULL
);
1884 return v
? v
: LINK_START_TOKEN
;
1887 if (v
== LINK_START_TOKEN
) { /* start of list of links */
1888 iter
->hashbin
= irlmp
->links
;
1889 return irlmp_seq_hb_idx(iter
, NULL
);
1892 v
= hashbin_get_next(iter
->hashbin
);
1894 if (v
== NULL
) { /* no more in this hash bin */
1895 spin_unlock_irq(&iter
->hashbin
->hb_spinlock
);
1897 if (iter
->hashbin
== irlmp
->unconnected_lsaps
)
1898 v
= LINK_START_TOKEN
;
1900 iter
->hashbin
= NULL
;
1905 static void irlmp_seq_stop(struct seq_file
*seq
, void *v
)
1907 struct irlmp_iter_state
*iter
= seq
->private;
1910 spin_unlock_irq(&iter
->hashbin
->hb_spinlock
);
1913 static int irlmp_seq_show(struct seq_file
*seq
, void *v
)
1915 const struct irlmp_iter_state
*iter
= seq
->private;
1916 struct lsap_cb
*self
= v
;
1918 if (v
== LSAP_START_TOKEN
)
1919 seq_puts(seq
, "Unconnected LSAPs:\n");
1920 else if (v
== LINK_START_TOKEN
)
1921 seq_puts(seq
, "\nRegistered Link Layers:\n");
1922 else if (iter
->hashbin
== irlmp
->unconnected_lsaps
) {
1924 IRDA_ASSERT(self
->magic
== LMP_LSAP_MAGIC
, return -EINVAL
; );
1925 seq_printf(seq
, "lsap state: %s, ",
1926 irlsap_state
[ self
->lsap_state
]);
1928 "slsap_sel: %#02x, dlsap_sel: %#02x, ",
1929 self
->slsap_sel
, self
->dlsap_sel
);
1930 seq_printf(seq
, "(%s)", self
->notify
.name
);
1931 seq_printf(seq
, "\n");
1932 } else if (iter
->hashbin
== irlmp
->links
) {
1933 struct lap_cb
*lap
= v
;
1935 seq_printf(seq
, "lap state: %s, ",
1936 irlmp_state
[lap
->lap_state
]);
1938 seq_printf(seq
, "saddr: %#08x, daddr: %#08x, ",
1939 lap
->saddr
, lap
->daddr
);
1940 seq_printf(seq
, "num lsaps: %d",
1941 HASHBIN_GET_SIZE(lap
->lsaps
));
1942 seq_printf(seq
, "\n");
1944 /* Careful for priority inversions here !
1945 * All other uses of attrib spinlock are independent of
1946 * the object spinlock, so we are safe. Jean II */
1947 spin_lock(&lap
->lsaps
->hb_spinlock
);
1949 seq_printf(seq
, "\n Connected LSAPs:\n");
1950 for (self
= (struct lsap_cb
*) hashbin_get_first(lap
->lsaps
);
1952 self
= (struct lsap_cb
*)hashbin_get_next(lap
->lsaps
)) {
1953 IRDA_ASSERT(self
->magic
== LMP_LSAP_MAGIC
,
1955 seq_printf(seq
, " lsap state: %s, ",
1956 irlsap_state
[ self
->lsap_state
]);
1958 "slsap_sel: %#02x, dlsap_sel: %#02x, ",
1959 self
->slsap_sel
, self
->dlsap_sel
);
1960 seq_printf(seq
, "(%s)", self
->notify
.name
);
1961 seq_putc(seq
, '\n');
1964 IRDA_ASSERT_LABEL(outloop
:)
1965 spin_unlock(&lap
->lsaps
->hb_spinlock
);
1966 seq_putc(seq
, '\n');
1973 static const struct seq_operations irlmp_seq_ops
= {
1974 .start
= irlmp_seq_start
,
1975 .next
= irlmp_seq_next
,
1976 .stop
= irlmp_seq_stop
,
1977 .show
= irlmp_seq_show
,
1980 static int irlmp_seq_open(struct inode
*inode
, struct file
*file
)
1982 IRDA_ASSERT(irlmp
!= NULL
, return -EINVAL
;);
1984 return seq_open_private(file
, &irlmp_seq_ops
,
1985 sizeof(struct irlmp_iter_state
));
1988 const struct file_operations irlmp_seq_fops
= {
1989 .owner
= THIS_MODULE
,
1990 .open
= irlmp_seq_open
,
1992 .llseek
= seq_lseek
,
1993 .release
= seq_release_private
,
1996 #endif /* PROC_FS */