2 * IrNET protocol module : Synchronous PPP over an IrDA socket.
4 * Jean II - HPL `00 - <jt@hpl.hp.com>
6 * This file implement the IRDA interface of IrNET.
7 * Basically, we sit on top of IrTTP. We set up IrTTP, IrIAS properly,
8 * and exchange frames with IrTTP.
11 #include "irnet_irda.h" /* Private header */
12 #include <linux/sched.h>
13 #include <linux/seq_file.h>
14 #include <asm/unaligned.h>
17 * PPP disconnect work: we need to make sure we're in
18 * process context when calling ppp_unregister_channel().
20 static void irnet_ppp_disconnect(struct work_struct
*work
)
23 container_of(work
, irnet_socket
, disconnect_work
);
28 * If we were connected, cleanup & close the PPP
29 * channel, which will kill pppd (hangup) and the rest.
31 if (self
->ppp_open
&& !self
->ttp_open
&& !self
->ttp_connect
) {
32 ppp_unregister_channel(&self
->chan
);
37 /************************* CONTROL CHANNEL *************************/
39 * When ppp is not active, /dev/irnet act as a control channel.
40 * Writing allow to set up the IrDA destination of the IrNET channel,
41 * and any application may be read events happening on IrNET...
44 /*------------------------------------------------------------------*/
46 * Post an event to the control channel...
47 * Put the event in the log, and then wait all process blocked on read
48 * so they can read the log...
51 irnet_post_event(irnet_socket
* ap
,
58 int index
; /* In the log */
60 DENTER(CTRL_TRACE
, "(ap=0x%p, event=%d, daddr=%08x, name=``%s'')\n",
61 ap
, event
, daddr
, name
);
63 /* Protect this section via spinlock.
64 * Note : as we are the only event producer, we only need to exclude
65 * ourself when touching the log, which is nice and easy.
67 spin_lock_bh(&irnet_events
.spinlock
);
69 /* Copy the event in the log */
70 index
= irnet_events
.index
;
71 irnet_events
.log
[index
].event
= event
;
72 irnet_events
.log
[index
].daddr
= daddr
;
73 irnet_events
.log
[index
].saddr
= saddr
;
74 /* Try to copy IrDA nickname */
76 strcpy(irnet_events
.log
[index
].name
, name
);
78 irnet_events
.log
[index
].name
[0] = '\0';
80 irnet_events
.log
[index
].hints
.word
= hints
;
81 /* Try to get ppp unit number */
82 if((ap
!= (irnet_socket
*) NULL
) && (ap
->ppp_open
))
83 irnet_events
.log
[index
].unit
= ppp_unit_number(&ap
->chan
);
85 irnet_events
.log
[index
].unit
= -1;
87 /* Increment the index
88 * Note that we increment the index only after the event is written,
89 * to make sure that the readers don't get garbage... */
90 irnet_events
.index
= (index
+ 1) % IRNET_MAX_EVENTS
;
92 DEBUG(CTRL_INFO
, "New event index is %d\n", irnet_events
.index
);
95 spin_unlock_bh(&irnet_events
.spinlock
);
97 /* Now : wake up everybody waiting for events... */
98 wake_up_interruptible_all(&irnet_events
.rwait
);
100 DEXIT(CTRL_TRACE
, "\n");
103 /************************* IRDA SUBROUTINES *************************/
105 * These are a bunch of subroutines called from other functions
106 * down there, mostly common code or to improve readability...
108 * Note : we duplicate quite heavily some routines of af_irda.c,
109 * because our input structure (self) is quite different
110 * (struct irnet instead of struct irda_sock), which make sharing
111 * the same code impossible (at least, without templates).
114 /*------------------------------------------------------------------*/
116 * Function irda_open_tsap (self)
118 * Open local Transport Service Access Point (TSAP)
120 * Create a IrTTP instance for us and set all the IrTTP callbacks.
123 irnet_open_tsap(irnet_socket
* self
)
125 notify_t notify
; /* Callback structure */
127 DENTER(IRDA_SR_TRACE
, "(self=0x%p)\n", self
);
129 DABORT(self
->tsap
!= NULL
, -EBUSY
, IRDA_SR_ERROR
, "Already busy !\n");
131 /* Initialize IrTTP callbacks to be used by the IrDA stack */
132 irda_notify_init(¬ify
);
133 notify
.connect_confirm
= irnet_connect_confirm
;
134 notify
.connect_indication
= irnet_connect_indication
;
135 notify
.disconnect_indication
= irnet_disconnect_indication
;
136 notify
.data_indication
= irnet_data_indication
;
137 /*notify.udata_indication = NULL;*/
138 notify
.flow_indication
= irnet_flow_indication
;
139 notify
.status_indication
= irnet_status_indication
;
140 notify
.instance
= self
;
141 strlcpy(notify
.name
, IRNET_NOTIFY_NAME
, sizeof(notify
.name
));
143 /* Open an IrTTP instance */
144 self
->tsap
= irttp_open_tsap(LSAP_ANY
, DEFAULT_INITIAL_CREDIT
,
146 DABORT(self
->tsap
== NULL
, -ENOMEM
,
147 IRDA_SR_ERROR
, "Unable to allocate TSAP !\n");
149 /* Remember which TSAP selector we actually got */
150 self
->stsap_sel
= self
->tsap
->stsap_sel
;
152 DEXIT(IRDA_SR_TRACE
, " - tsap=0x%p, sel=0x%X\n",
153 self
->tsap
, self
->stsap_sel
);
157 /*------------------------------------------------------------------*/
159 * Function irnet_ias_to_tsap (self, result, value)
161 * Examine an IAS object and extract TSAP
163 * We do an IAP query to find the TSAP associated with the IrNET service.
164 * When IrIAP pass us the result of the query, this function look at
165 * the return values to check for failures and extract the TSAP if
167 * Also deallocate value
168 * The failure is in self->errno
172 irnet_ias_to_tsap(irnet_socket
* self
,
174 struct ias_value
* value
)
176 __u8 dtsap_sel
= 0; /* TSAP we are looking for */
178 DENTER(IRDA_SR_TRACE
, "(self=0x%p)\n", self
);
180 /* By default, no error */
183 /* Check if request succeeded */
186 /* Standard errors : service not available */
187 case IAS_CLASS_UNKNOWN
:
188 case IAS_ATTRIB_UNKNOWN
:
189 DEBUG(IRDA_SR_INFO
, "IAS object doesn't exist ! (%d)\n", result
);
190 self
->errno
= -EADDRNOTAVAIL
;
193 /* Other errors, most likely IrDA stack failure */
195 DEBUG(IRDA_SR_INFO
, "IAS query failed ! (%d)\n", result
);
196 self
->errno
= -EHOSTUNREACH
;
199 /* Success : we got what we wanted */
204 /* Check what was returned to us */
207 /* What type of argument have we got ? */
211 DEBUG(IRDA_SR_INFO
, "result=%d\n", value
->t
.integer
);
212 if(value
->t
.integer
!= -1)
213 /* Get the remote TSAP selector */
214 dtsap_sel
= value
->t
.integer
;
216 self
->errno
= -EADDRNOTAVAIL
;
219 self
->errno
= -EADDRNOTAVAIL
;
220 DERROR(IRDA_SR_ERROR
, "bad type ! (0x%X)\n", value
->type
);
225 irias_delete_value(value
);
227 else /* value == NULL */
229 /* Nothing returned to us - usually result != SUCCESS */
232 DERROR(IRDA_SR_ERROR
,
233 "IrDA bug : result == SUCCESS && value == NULL\n");
234 self
->errno
= -EHOSTUNREACH
;
237 DEXIT(IRDA_SR_TRACE
, "\n");
239 /* Return the TSAP */
243 /*------------------------------------------------------------------*/
245 * Function irnet_find_lsap_sel (self)
247 * Try to lookup LSAP selector in remote LM-IAS
249 * Basically, we start a IAP query, and then go to sleep. When the query
250 * return, irnet_getvalue_confirm will wake us up, and we can examine the
251 * result of the query...
252 * Note that in some case, the query fail even before we go to sleep,
253 * creating some races...
256 irnet_find_lsap_sel(irnet_socket
* self
)
258 DENTER(IRDA_SR_TRACE
, "(self=0x%p)\n", self
);
260 /* This should not happen */
261 DABORT(self
->iriap
, -EBUSY
, IRDA_SR_ERROR
, "busy with a previous query.\n");
263 /* Create an IAP instance, will be closed in irnet_getvalue_confirm() */
264 self
->iriap
= iriap_open(LSAP_ANY
, IAS_CLIENT
, self
,
265 irnet_getvalue_confirm
);
267 /* Treat unexpected signals as disconnect */
268 self
->errno
= -EHOSTUNREACH
;
270 /* Query remote LM-IAS */
271 iriap_getvaluebyclass_request(self
->iriap
, self
->rsaddr
, self
->daddr
,
272 IRNET_SERVICE_NAME
, IRNET_IAS_VALUE
);
274 /* The above request is non-blocking.
275 * After a while, IrDA will call us back in irnet_getvalue_confirm()
276 * We will then call irnet_ias_to_tsap() and finish the
277 * connection procedure */
279 DEXIT(IRDA_SR_TRACE
, "\n");
283 /*------------------------------------------------------------------*/
285 * Function irnet_connect_tsap (self)
287 * Initialise the TTP socket and initiate TTP connection
291 irnet_connect_tsap(irnet_socket
* self
)
295 DENTER(IRDA_SR_TRACE
, "(self=0x%p)\n", self
);
297 /* Open a local TSAP (an IrTTP instance) */
298 err
= irnet_open_tsap(self
);
301 clear_bit(0, &self
->ttp_connect
);
302 DERROR(IRDA_SR_ERROR
, "connect aborted!\n");
306 /* Connect to remote device */
307 err
= irttp_connect_request(self
->tsap
, self
->dtsap_sel
,
308 self
->rsaddr
, self
->daddr
, NULL
,
309 self
->max_sdu_size_rx
, NULL
);
312 clear_bit(0, &self
->ttp_connect
);
313 DERROR(IRDA_SR_ERROR
, "connect aborted!\n");
317 /* The above call is non-blocking.
318 * After a while, the IrDA stack will either call us back in
319 * irnet_connect_confirm() or irnet_disconnect_indication()
320 * See you there ;-) */
322 DEXIT(IRDA_SR_TRACE
, "\n");
326 /*------------------------------------------------------------------*/
328 * Function irnet_discover_next_daddr (self)
330 * Query the IrNET TSAP of the next device in the log.
332 * Used in the TSAP discovery procedure.
335 irnet_discover_next_daddr(irnet_socket
* self
)
337 /* Close the last instance of IrIAP, and open a new one.
338 * We can't reuse the IrIAP instance in the IrIAP callback */
341 iriap_close(self
->iriap
);
344 /* Create a new IAP instance */
345 self
->iriap
= iriap_open(LSAP_ANY
, IAS_CLIENT
, self
,
346 irnet_discovervalue_confirm
);
347 if(self
->iriap
== NULL
)
350 /* Next discovery - before the call to avoid races */
353 /* Check if we have one more address to try */
354 if(self
->disco_index
< self
->disco_number
)
356 /* Query remote LM-IAS */
357 iriap_getvaluebyclass_request(self
->iriap
,
358 self
->discoveries
[self
->disco_index
].saddr
,
359 self
->discoveries
[self
->disco_index
].daddr
,
360 IRNET_SERVICE_NAME
, IRNET_IAS_VALUE
);
361 /* The above request is non-blocking.
362 * After a while, IrDA will call us back in irnet_discovervalue_confirm()
363 * We will then call irnet_ias_to_tsap() and come back here again... */
370 /*------------------------------------------------------------------*/
372 * Function irnet_discover_daddr_and_lsap_sel (self)
374 * This try to find a device with the requested service.
376 * Initiate a TSAP discovery procedure.
377 * It basically look into the discovery log. For each address in the list,
378 * it queries the LM-IAS of the device to find if this device offer
379 * the requested service.
380 * If there is more than one node supporting the service, we complain
381 * to the user (it should move devices around).
382 * If we find one node which have the requested TSAP, we connect to it.
384 * This function just start the whole procedure. It request the discovery
385 * log and submit the first IAS query.
386 * The bulk of the job is handled in irnet_discovervalue_confirm()
388 * Note : this procedure fails if there is more than one device in range
389 * on the same dongle, because IrLMP doesn't disconnect the LAP when the
390 * last LSAP is closed. Moreover, we would need to wait the LAP
394 irnet_discover_daddr_and_lsap_sel(irnet_socket
* self
)
398 DENTER(IRDA_SR_TRACE
, "(self=0x%p)\n", self
);
400 /* Ask lmp for the current discovery log */
401 self
->discoveries
= irlmp_get_discoveries(&self
->disco_number
, self
->mask
,
402 DISCOVERY_DEFAULT_SLOTS
);
404 /* Check if the we got some results */
405 if(self
->discoveries
== NULL
)
407 self
->disco_number
= -1;
408 clear_bit(0, &self
->ttp_connect
);
409 DRETURN(-ENETUNREACH
, IRDA_SR_INFO
, "No Cachelog...\n");
411 DEBUG(IRDA_SR_INFO
, "Got the log (0x%p), size is %d\n",
412 self
->discoveries
, self
->disco_number
);
414 /* Start with the first discovery */
415 self
->disco_index
= -1;
416 self
->daddr
= DEV_ADDR_ANY
;
418 /* This will fail if the log is empty - this is non-blocking */
419 ret
= irnet_discover_next_daddr(self
);
424 iriap_close(self
->iriap
);
427 /* Cleanup our copy of the discovery log */
428 kfree(self
->discoveries
);
429 self
->discoveries
= NULL
;
431 clear_bit(0, &self
->ttp_connect
);
432 DRETURN(-ENETUNREACH
, IRDA_SR_INFO
, "Cachelog empty...\n");
435 /* Follow me in irnet_discovervalue_confirm() */
437 DEXIT(IRDA_SR_TRACE
, "\n");
441 /*------------------------------------------------------------------*/
443 * Function irnet_dname_to_daddr (self)
445 * Convert an IrDA nickname to a valid IrDA address
447 * It basically look into the discovery log until there is a match.
450 irnet_dname_to_daddr(irnet_socket
* self
)
452 struct irda_device_info
*discoveries
; /* Copy of the discovery log */
453 int number
; /* Number of nodes in the log */
456 DENTER(IRDA_SR_TRACE
, "(self=0x%p)\n", self
);
458 /* Ask lmp for the current discovery log */
459 discoveries
= irlmp_get_discoveries(&number
, 0xffff,
460 DISCOVERY_DEFAULT_SLOTS
);
461 /* Check if the we got some results */
462 if(discoveries
== NULL
)
463 DRETURN(-ENETUNREACH
, IRDA_SR_INFO
, "Cachelog empty...\n");
466 * Now, check all discovered devices (if any), and connect
467 * client only about the services that the client is
470 for(i
= 0; i
< number
; i
++)
472 /* Does the name match ? */
473 if(!strncmp(discoveries
[i
].info
, self
->rname
, NICKNAME_MAX_LEN
))
475 /* Yes !!! Get it.. */
476 self
->daddr
= discoveries
[i
].daddr
;
477 DEBUG(IRDA_SR_INFO
, "discovered device ``%s'' at address 0x%08x.\n",
478 self
->rname
, self
->daddr
);
480 DEXIT(IRDA_SR_TRACE
, "\n");
485 DEBUG(IRDA_SR_INFO
, "cannot discover device ``%s'' !!!\n", self
->rname
);
487 return(-EADDRNOTAVAIL
);
491 /************************* SOCKET ROUTINES *************************/
493 * This are the main operations on IrNET sockets, basically to create
494 * and destroy IrNET sockets. These are called from the PPP part...
497 /*------------------------------------------------------------------*/
499 * Create a IrNET instance : just initialise some parameters...
502 irda_irnet_create(irnet_socket
* self
)
504 DENTER(IRDA_SOCK_TRACE
, "(self=0x%p)\n", self
);
506 self
->magic
= IRNET_MAGIC
; /* Paranoia */
508 self
->ttp_open
= 0; /* Prevent higher layer from accessing IrTTP */
509 self
->ttp_connect
= 0; /* Not connecting yet */
510 self
->rname
[0] = '\0'; /* May be set via control channel */
511 self
->rdaddr
= DEV_ADDR_ANY
; /* May be set via control channel */
512 self
->rsaddr
= DEV_ADDR_ANY
; /* May be set via control channel */
513 self
->daddr
= DEV_ADDR_ANY
; /* Until we get connected */
514 self
->saddr
= DEV_ADDR_ANY
; /* Until we get connected */
515 self
->max_sdu_size_rx
= TTP_SAR_UNBOUND
;
517 /* Register as a client with IrLMP */
518 self
->ckey
= irlmp_register_client(0, NULL
, NULL
, NULL
);
519 #ifdef DISCOVERY_NOMASK
520 self
->mask
= 0xffff; /* For W2k compatibility */
521 #else /* DISCOVERY_NOMASK */
522 self
->mask
= irlmp_service_to_hint(S_LAN
);
523 #endif /* DISCOVERY_NOMASK */
524 self
->tx_flow
= FLOW_START
; /* Flow control from IrTTP */
526 INIT_WORK(&self
->disconnect_work
, irnet_ppp_disconnect
);
528 DEXIT(IRDA_SOCK_TRACE
, "\n");
532 /*------------------------------------------------------------------*/
534 * Connect to the other side :
535 * o convert device name to an address
536 * o find the socket number (dlsap)
537 * o Establish the connection
539 * Note : We no longer mimic af_irda. The IAS query for finding the TSAP
540 * is done asynchronously, like the TTP connection. This allow us to
541 * call this function from any context (not only process).
542 * The downside is that following what's happening in there is tricky
543 * because it involve various functions all over the place...
546 irda_irnet_connect(irnet_socket
* self
)
550 DENTER(IRDA_SOCK_TRACE
, "(self=0x%p)\n", self
);
552 /* Check if we are already trying to connect.
553 * Because irda_irnet_connect() can be called directly by pppd plus
554 * packet retries in ppp_generic and connect may take time, plus we may
555 * race with irnet_connect_indication(), we need to be careful there... */
556 if(test_and_set_bit(0, &self
->ttp_connect
))
557 DRETURN(-EBUSY
, IRDA_SOCK_INFO
, "Already connecting...\n");
558 if((self
->iriap
!= NULL
) || (self
->tsap
!= NULL
))
559 DERROR(IRDA_SOCK_ERROR
, "Socket not cleaned up...\n");
561 /* Insert ourselves in the hashbin so that the IrNET server can find us.
562 * Notes : 4th arg is string of 32 char max and must be null terminated
563 * When 4th arg is used (string), 3rd arg isn't (int)
564 * Can't re-insert (MUST remove first) so check for that... */
565 if((irnet_server
.running
) && (self
->q
.q_next
== NULL
))
567 spin_lock_bh(&irnet_server
.spinlock
);
568 hashbin_insert(irnet_server
.list
, (irda_queue_t
*) self
, 0, self
->rname
);
569 spin_unlock_bh(&irnet_server
.spinlock
);
570 DEBUG(IRDA_SOCK_INFO
, "Inserted ``%s'' in hashbin...\n", self
->rname
);
573 /* If we don't have anything (no address, no name) */
574 if((self
->rdaddr
== DEV_ADDR_ANY
) && (self
->rname
[0] == '\0'))
576 /* Try to find a suitable address */
577 if((err
= irnet_discover_daddr_and_lsap_sel(self
)) != 0)
578 DRETURN(err
, IRDA_SOCK_INFO
, "auto-connect failed!\n");
579 /* In most cases, the call above is non-blocking */
583 /* If we have only the name (no address), try to get an address */
584 if(self
->rdaddr
== DEV_ADDR_ANY
)
586 if((err
= irnet_dname_to_daddr(self
)) != 0)
587 DRETURN(err
, IRDA_SOCK_INFO
, "name connect failed!\n");
590 /* Use the requested destination address */
591 self
->daddr
= self
->rdaddr
;
593 /* Query remote LM-IAS to find LSAP selector */
594 irnet_find_lsap_sel(self
);
595 /* The above call is non blocking */
598 /* At this point, we are waiting for the IrDA stack to call us back,
599 * or we have already failed.
600 * We will finish the connection procedure in irnet_connect_tsap().
602 DEXIT(IRDA_SOCK_TRACE
, "\n");
606 /*------------------------------------------------------------------*/
608 * Function irda_irnet_destroy(self)
610 * Destroy irnet instance
612 * Note : this need to be called from a process context.
615 irda_irnet_destroy(irnet_socket
* self
)
617 DENTER(IRDA_SOCK_TRACE
, "(self=0x%p)\n", self
);
621 /* Remove ourselves from hashbin (if we are queued in hashbin)
622 * Note : `irnet_server.running' protect us from calls in hashbin_delete() */
623 if((irnet_server
.running
) && (self
->q
.q_next
!= NULL
))
625 struct irnet_socket
* entry
;
626 DEBUG(IRDA_SOCK_INFO
, "Removing from hash..\n");
627 spin_lock_bh(&irnet_server
.spinlock
);
628 entry
= hashbin_remove_this(irnet_server
.list
, (irda_queue_t
*) self
);
629 self
->q
.q_next
= NULL
;
630 spin_unlock_bh(&irnet_server
.spinlock
);
631 DASSERT(entry
== self
, , IRDA_SOCK_ERROR
, "Can't remove from hash.\n");
634 /* If we were connected, post a message */
635 if(test_bit(0, &self
->ttp_open
))
637 /* Note : as the disconnect comes from ppp_generic, the unit number
638 * doesn't exist anymore when we post the event, so we need to pass
639 * NULL as the first arg... */
640 irnet_post_event(NULL
, IRNET_DISCONNECT_TO
,
641 self
->saddr
, self
->daddr
, self
->rname
, 0);
644 /* Prevent various IrDA callbacks from messing up things
645 * Need to be first */
646 clear_bit(0, &self
->ttp_connect
);
648 /* Prevent higher layer from accessing IrTTP */
649 clear_bit(0, &self
->ttp_open
);
651 /* Unregister with IrLMP */
652 irlmp_unregister_client(self
->ckey
);
654 /* Unregister with LM-IAS */
657 iriap_close(self
->iriap
);
661 /* Cleanup eventual discoveries from connection attempt or control channel */
662 if(self
->discoveries
!= NULL
)
664 /* Cleanup our copy of the discovery log */
665 kfree(self
->discoveries
);
666 self
->discoveries
= NULL
;
669 /* Close our IrTTP connection */
672 DEBUG(IRDA_SOCK_INFO
, "Closing our TTP connection.\n");
673 irttp_disconnect_request(self
->tsap
, NULL
, P_NORMAL
);
674 irttp_close_tsap(self
->tsap
);
679 DEXIT(IRDA_SOCK_TRACE
, "\n");
684 /************************** SERVER SOCKET **************************/
686 * The IrNET service is composed of one server socket and a variable
687 * number of regular IrNET sockets. The server socket is supposed to
688 * handle incoming connections and redirect them to one IrNET sockets.
689 * It's a superset of the regular IrNET socket, but has a very distinct
693 /*------------------------------------------------------------------*/
695 * Function irnet_daddr_to_dname (self)
697 * Convert an IrDA address to a IrDA nickname
699 * It basically look into the discovery log until there is a match.
702 irnet_daddr_to_dname(irnet_socket
* self
)
704 struct irda_device_info
*discoveries
; /* Copy of the discovery log */
705 int number
; /* Number of nodes in the log */
708 DENTER(IRDA_SERV_TRACE
, "(self=0x%p)\n", self
);
710 /* Ask lmp for the current discovery log */
711 discoveries
= irlmp_get_discoveries(&number
, 0xffff,
712 DISCOVERY_DEFAULT_SLOTS
);
713 /* Check if the we got some results */
714 if (discoveries
== NULL
)
715 DRETURN(-ENETUNREACH
, IRDA_SERV_INFO
, "Cachelog empty...\n");
717 /* Now, check all discovered devices (if any) */
718 for(i
= 0; i
< number
; i
++)
720 /* Does the name match ? */
721 if(discoveries
[i
].daddr
== self
->daddr
)
723 /* Yes !!! Get it.. */
724 strlcpy(self
->rname
, discoveries
[i
].info
, sizeof(self
->rname
));
725 self
->rname
[sizeof(self
->rname
) - 1] = '\0';
726 DEBUG(IRDA_SERV_INFO
, "Device 0x%08x is in fact ``%s''.\n",
727 self
->daddr
, self
->rname
);
729 DEXIT(IRDA_SERV_TRACE
, "\n");
734 DEXIT(IRDA_SERV_INFO
, ": cannot discover device 0x%08x !!!\n", self
->daddr
);
736 return(-EADDRNOTAVAIL
);
739 /*------------------------------------------------------------------*/
741 * Function irda_find_socket (self)
743 * Find the correct IrNET socket
745 * Look into the list of IrNET sockets and finds one with the right
748 static inline irnet_socket
*
749 irnet_find_socket(irnet_socket
* self
)
751 irnet_socket
* new = (irnet_socket
*) NULL
;
754 DENTER(IRDA_SERV_TRACE
, "(self=0x%p)\n", self
);
756 /* Get the addresses of the requester */
757 self
->daddr
= irttp_get_daddr(self
->tsap
);
758 self
->saddr
= irttp_get_saddr(self
->tsap
);
760 /* Try to get the IrDA nickname of the requester */
761 err
= irnet_daddr_to_dname(self
);
763 /* Protect access to the instance list */
764 spin_lock_bh(&irnet_server
.spinlock
);
766 /* So now, try to get an socket having specifically
767 * requested that nickname */
770 new = (irnet_socket
*) hashbin_find(irnet_server
.list
,
773 DEBUG(IRDA_SERV_INFO
, "Socket 0x%p matches rname ``%s''.\n",
777 /* If no name matches, try to find an socket by the destination address */
778 /* It can be either the requested destination address (set via the
779 * control channel), or the current destination address if the
780 * socket is in the middle of a connection request */
781 if(new == (irnet_socket
*) NULL
)
783 new = (irnet_socket
*) hashbin_get_first(irnet_server
.list
);
784 while(new !=(irnet_socket
*) NULL
)
786 /* Does it have the same address ? */
787 if((new->rdaddr
== self
->daddr
) || (new->daddr
== self
->daddr
))
789 /* Yes !!! Get it.. */
790 DEBUG(IRDA_SERV_INFO
, "Socket 0x%p matches daddr %#08x.\n",
794 new = (irnet_socket
*) hashbin_get_next(irnet_server
.list
);
798 /* If we don't have any socket, get the first unconnected socket */
799 if(new == (irnet_socket
*) NULL
)
801 new = (irnet_socket
*) hashbin_get_first(irnet_server
.list
);
802 while(new !=(irnet_socket
*) NULL
)
804 /* Is it available ? */
805 if(!(test_bit(0, &new->ttp_open
)) && (new->rdaddr
== DEV_ADDR_ANY
) &&
806 (new->rname
[0] == '\0') && (new->ppp_open
))
808 /* Yes !!! Get it.. */
809 DEBUG(IRDA_SERV_INFO
, "Socket 0x%p is free.\n",
813 new = (irnet_socket
*) hashbin_get_next(irnet_server
.list
);
818 spin_unlock_bh(&irnet_server
.spinlock
);
820 DEXIT(IRDA_SERV_TRACE
, " - new = 0x%p\n", new);
824 /*------------------------------------------------------------------*/
826 * Function irda_connect_socket (self)
828 * Connect an incoming connection to the socket
832 irnet_connect_socket(irnet_socket
* server
,
834 struct qos_info
* qos
,
836 __u8 max_header_size
)
838 DENTER(IRDA_SERV_TRACE
, "(server=0x%p, new=0x%p)\n",
841 /* Now attach up the new socket */
842 new->tsap
= irttp_dup(server
->tsap
, new);
843 DABORT(new->tsap
== NULL
, -1, IRDA_SERV_ERROR
, "dup failed!\n");
845 /* Set up all the relevant parameters on the new socket */
846 new->stsap_sel
= new->tsap
->stsap_sel
;
847 new->dtsap_sel
= new->tsap
->dtsap_sel
;
848 new->saddr
= irttp_get_saddr(new->tsap
);
849 new->daddr
= irttp_get_daddr(new->tsap
);
851 new->max_header_size
= max_header_size
;
852 new->max_sdu_size_tx
= max_sdu_size
;
853 new->max_data_size
= max_sdu_size
;
855 /* If we want to receive "stream sockets" */
856 if(max_sdu_size
== 0)
857 new->max_data_size
= irttp_get_max_seg_size(new->tsap
);
858 #endif /* STREAM_COMPAT */
860 /* Clean up the original one to keep it in listen state */
861 irttp_listen(server
->tsap
);
863 /* Send a connection response on the new socket */
864 irttp_connect_response(new->tsap
, new->max_sdu_size_rx
, NULL
);
866 /* Allow PPP to send its junk over the new socket... */
867 set_bit(0, &new->ttp_open
);
869 /* Not connecting anymore, and clean up last possible remains
870 * of connection attempts on the socket */
871 clear_bit(0, &new->ttp_connect
);
874 iriap_close(new->iriap
);
877 if(new->discoveries
!= NULL
)
879 kfree(new->discoveries
);
880 new->discoveries
= NULL
;
883 #ifdef CONNECT_INDIC_KICK
884 /* As currently we don't block packets in ppp_irnet_send() while passive,
885 * this is not really needed...
886 * Also, not doing it give IrDA a chance to finish the setup properly
887 * before being swamped with packets... */
888 ppp_output_wakeup(&new->chan
);
889 #endif /* CONNECT_INDIC_KICK */
891 /* Notify the control channel */
892 irnet_post_event(new, IRNET_CONNECT_FROM
,
893 new->saddr
, new->daddr
, server
->rname
, 0);
895 DEXIT(IRDA_SERV_TRACE
, "\n");
899 /*------------------------------------------------------------------*/
901 * Function irda_disconnect_server (self)
903 * Cleanup the server socket when the incoming connection abort
907 irnet_disconnect_server(irnet_socket
* self
,
910 DENTER(IRDA_SERV_TRACE
, "(self=0x%p)\n", self
);
912 /* Put the received packet in the black hole */
915 #ifdef FAIL_SEND_DISCONNECT
916 /* Tell the other party we don't want to be connected */
917 /* Hum... Is it the right thing to do ? And do we need to send
918 * a connect response before ? It looks ok without this... */
919 irttp_disconnect_request(self
->tsap
, NULL
, P_NORMAL
);
920 #endif /* FAIL_SEND_DISCONNECT */
922 /* Notify the control channel (see irnet_find_socket()) */
923 irnet_post_event(NULL
, IRNET_REQUEST_FROM
,
924 self
->saddr
, self
->daddr
, self
->rname
, 0);
926 /* Clean up the server to keep it in listen state */
927 irttp_listen(self
->tsap
);
929 DEXIT(IRDA_SERV_TRACE
, "\n");
933 /*------------------------------------------------------------------*/
935 * Function irda_setup_server (self)
937 * Create a IrTTP server and set it up...
939 * Register the IrLAN hint bit, create a IrTTP instance for us,
940 * set all the IrTTP callbacks and create an IrIAS entry...
943 irnet_setup_server(void)
947 DENTER(IRDA_SERV_TRACE
, "()\n");
949 /* Initialise the regular socket part of the server */
950 irda_irnet_create(&irnet_server
.s
);
952 /* Open a local TSAP (an IrTTP instance) for the server */
953 irnet_open_tsap(&irnet_server
.s
);
956 irnet_server
.s
.ppp_open
= 0;
957 irnet_server
.s
.chan
.private = NULL
;
958 irnet_server
.s
.file
= NULL
;
960 /* Get the hint bit corresponding to IrLAN */
961 /* Note : we overload the IrLAN hint bit. As it is only a "hint", and as
962 * we provide roughly the same functionality as IrLAN, this is ok.
963 * In fact, the situation is similar as JetSend overloading the Obex hint
965 hints
= irlmp_service_to_hint(S_LAN
);
967 #ifdef ADVERTISE_HINT
968 /* Register with IrLMP as a service (advertise our hint bit) */
969 irnet_server
.skey
= irlmp_register_service(hints
);
970 #endif /* ADVERTISE_HINT */
972 /* Register with LM-IAS (so that people can connect to us) */
973 irnet_server
.ias_obj
= irias_new_object(IRNET_SERVICE_NAME
, jiffies
);
974 irias_add_integer_attrib(irnet_server
.ias_obj
, IRNET_IAS_VALUE
,
975 irnet_server
.s
.stsap_sel
, IAS_KERNEL_ATTR
);
976 irias_insert_object(irnet_server
.ias_obj
);
978 #ifdef DISCOVERY_EVENTS
979 /* Tell IrLMP we want to be notified of newly discovered nodes */
980 irlmp_update_client(irnet_server
.s
.ckey
, hints
,
981 irnet_discovery_indication
, irnet_expiry_indication
,
982 (void *) &irnet_server
.s
);
985 DEXIT(IRDA_SERV_TRACE
, " - self=0x%p\n", &irnet_server
.s
);
989 /*------------------------------------------------------------------*/
991 * Function irda_destroy_server (self)
993 * Destroy the IrTTP server...
995 * Reverse of the previous function...
998 irnet_destroy_server(void)
1000 DENTER(IRDA_SERV_TRACE
, "()\n");
1002 #ifdef ADVERTISE_HINT
1003 /* Unregister with IrLMP */
1004 irlmp_unregister_service(irnet_server
.skey
);
1005 #endif /* ADVERTISE_HINT */
1007 /* Unregister with LM-IAS */
1008 if(irnet_server
.ias_obj
)
1009 irias_delete_object(irnet_server
.ias_obj
);
1011 /* Cleanup the socket part */
1012 irda_irnet_destroy(&irnet_server
.s
);
1014 DEXIT(IRDA_SERV_TRACE
, "\n");
1019 /************************ IRDA-TTP CALLBACKS ************************/
1021 * When we create a IrTTP instance, we pass to it a set of callbacks
1022 * that IrTTP will call in case of various events.
1023 * We take care of those events here.
1026 /*------------------------------------------------------------------*/
1028 * Function irnet_data_indication (instance, sap, skb)
1030 * Received some data from TinyTP. Just queue it on the receive queue
1034 irnet_data_indication(void * instance
,
1036 struct sk_buff
*skb
)
1038 irnet_socket
* ap
= (irnet_socket
*) instance
;
1042 DENTER(IRDA_TCB_TRACE
, "(self/ap=0x%p, skb=0x%p)\n",
1044 DASSERT(skb
!= NULL
, 0, IRDA_CB_ERROR
, "skb is NULL !!!\n");
1046 /* Check is ppp is ready to receive our packet */
1049 DERROR(IRDA_CB_ERROR
, "PPP not ready, dropping packet...\n");
1050 /* When we return error, TTP will need to requeue the skb and
1051 * will stop the sender. IrTTP will stall until we send it a
1052 * flow control request... */
1056 /* strip address/control field if present */
1058 if((p
[0] == PPP_ALLSTATIONS
) && (p
[1] == PPP_UI
))
1060 /* chop off address/control */
1063 p
= skb_pull(skb
, 2);
1066 /* decompress protocol field if compressed */
1069 /* protocol is compressed */
1070 skb_push(skb
, 1)[0] = 0;
1076 /* pass to generic ppp layer */
1077 /* Note : how do I know if ppp can accept or not the packet ? This is
1078 * essential if I want to manage flow control smoothly... */
1079 ppp_input(&ap
->chan
, skb
);
1081 DEXIT(IRDA_TCB_TRACE
, "\n");
1085 DERROR(IRDA_CB_ERROR
, "Packet too small, dropping...\n");
1087 ppp_input_error(&ap
->chan
, code
);
1088 return 0; /* Don't return an error code, only for flow control... */
1091 /*------------------------------------------------------------------*/
1093 * Function irnet_disconnect_indication (instance, sap, reason, skb)
1095 * Connection has been closed. Chech reason to find out why
1097 * Note : there are many cases where we come here :
1098 * o attempted to connect, timeout
1099 * o connected, link is broken, LAP has timeout
1100 * o connected, other side close the link
1101 * o connection request on the server not handled
1104 irnet_disconnect_indication(void * instance
,
1107 struct sk_buff
*skb
)
1109 irnet_socket
* self
= (irnet_socket
*) instance
;
1113 DENTER(IRDA_TCB_TRACE
, "(self=0x%p)\n", self
);
1114 DASSERT(self
!= NULL
, , IRDA_CB_ERROR
, "Self is NULL !!!\n");
1116 /* Don't care about it, but let's not leak it */
1120 /* Prevent higher layer from accessing IrTTP */
1121 test_open
= test_and_clear_bit(0, &self
->ttp_open
);
1122 /* Not connecting anymore...
1123 * (note : TSAP is open, so IAP callbacks are no longer pending...) */
1124 test_connect
= test_and_clear_bit(0, &self
->ttp_connect
);
1126 /* If both self->ttp_open and self->ttp_connect are NULL, it mean that we
1127 * have a race condition with irda_irnet_destroy() or
1128 * irnet_connect_indication(), so don't mess up tsap...
1130 if(!(test_open
|| test_connect
))
1132 DERROR(IRDA_CB_ERROR
, "Race condition detected...\n");
1136 /* If we were active, notify the control channel */
1138 irnet_post_event(self
, IRNET_DISCONNECT_FROM
,
1139 self
->saddr
, self
->daddr
, self
->rname
, 0);
1141 /* If we were trying to connect, notify the control channel */
1142 if((self
->tsap
) && (self
!= &irnet_server
.s
))
1143 irnet_post_event(self
, IRNET_NOANSWER_FROM
,
1144 self
->saddr
, self
->daddr
, self
->rname
, 0);
1146 /* Close our IrTTP connection, cleanup tsap */
1147 if((self
->tsap
) && (self
!= &irnet_server
.s
))
1149 DEBUG(IRDA_CB_INFO
, "Closing our TTP connection.\n");
1150 irttp_close_tsap(self
->tsap
);
1153 /* Cleanup the socket in case we want to reconnect in ppp_output_wakeup() */
1154 self
->stsap_sel
= 0;
1155 self
->daddr
= DEV_ADDR_ANY
;
1156 self
->tx_flow
= FLOW_START
;
1158 /* Deal with the ppp instance if it's still alive */
1163 /* ppp_unregister_channel() wants a user context. */
1164 schedule_work(&self
->disconnect_work
);
1168 /* If we were trying to connect, flush (drain) ppp_generic
1169 * Tx queue (most often we have blocked it), which will
1170 * trigger an other attempt to connect. If we are passive,
1171 * this will empty the Tx queue after last try. */
1172 ppp_output_wakeup(&self
->chan
);
1176 DEXIT(IRDA_TCB_TRACE
, "\n");
1179 /*------------------------------------------------------------------*/
1181 * Function irnet_connect_confirm (instance, sap, qos, max_sdu_size, skb)
1183 * Connections has been confirmed by the remote device
1187 irnet_connect_confirm(void * instance
,
1189 struct qos_info
*qos
,
1191 __u8 max_header_size
,
1192 struct sk_buff
*skb
)
1194 irnet_socket
* self
= (irnet_socket
*) instance
;
1196 DENTER(IRDA_TCB_TRACE
, "(self=0x%p)\n", self
);
1198 /* Check if socket is closing down (via irda_irnet_destroy()) */
1199 if(! test_bit(0, &self
->ttp_connect
))
1201 DERROR(IRDA_CB_ERROR
, "Socket no longer connecting. Ouch !\n");
1205 /* How much header space do we need to reserve */
1206 self
->max_header_size
= max_header_size
;
1208 /* IrTTP max SDU size in transmit direction */
1209 self
->max_sdu_size_tx
= max_sdu_size
;
1210 self
->max_data_size
= max_sdu_size
;
1211 #ifdef STREAM_COMPAT
1212 if(max_sdu_size
== 0)
1213 self
->max_data_size
= irttp_get_max_seg_size(self
->tsap
);
1214 #endif /* STREAM_COMPAT */
1216 /* At this point, IrLMP has assigned our source address */
1217 self
->saddr
= irttp_get_saddr(self
->tsap
);
1219 /* Allow higher layer to access IrTTP */
1220 set_bit(0, &self
->ttp_open
);
1221 clear_bit(0, &self
->ttp_connect
); /* Not racy, IrDA traffic is serial */
1222 /* Give a kick in the ass of ppp_generic so that he sends us some data */
1223 ppp_output_wakeup(&self
->chan
);
1225 /* Check size of received packet */
1228 #ifdef PASS_CONNECT_PACKETS
1229 DEBUG(IRDA_CB_INFO
, "Passing connect packet to PPP.\n");
1230 /* Try to pass it to PPP */
1231 irnet_data_indication(instance
, sap
, skb
);
1232 #else /* PASS_CONNECT_PACKETS */
1233 DERROR(IRDA_CB_ERROR
, "Dropping non empty packet.\n");
1234 kfree_skb(skb
); /* Note : will be optimised with other kfree... */
1235 #endif /* PASS_CONNECT_PACKETS */
1240 /* Notify the control channel */
1241 irnet_post_event(self
, IRNET_CONNECT_TO
,
1242 self
->saddr
, self
->daddr
, self
->rname
, 0);
1244 DEXIT(IRDA_TCB_TRACE
, "\n");
1247 /*------------------------------------------------------------------*/
1249 * Function irnet_flow_indication (instance, sap, flow)
1251 * Used by TinyTP to tell us if it can accept more data or not
1255 irnet_flow_indication(void * instance
,
1259 irnet_socket
* self
= (irnet_socket
*) instance
;
1260 LOCAL_FLOW oldflow
= self
->tx_flow
;
1262 DENTER(IRDA_TCB_TRACE
, "(self=0x%p, flow=%d)\n", self
, flow
);
1264 /* Update our state */
1265 self
->tx_flow
= flow
;
1267 /* Check what IrTTP want us to do... */
1271 DEBUG(IRDA_CB_INFO
, "IrTTP wants us to start again\n");
1272 /* Check if we really need to wake up PPP */
1273 if(oldflow
== FLOW_STOP
)
1274 ppp_output_wakeup(&self
->chan
);
1276 DEBUG(IRDA_CB_INFO
, "But we were already transmitting !!!\n");
1279 DEBUG(IRDA_CB_INFO
, "IrTTP wants us to slow down\n");
1282 DEBUG(IRDA_CB_INFO
, "Unknown flow command!\n");
1286 DEXIT(IRDA_TCB_TRACE
, "\n");
1289 /*------------------------------------------------------------------*/
1291 * Function irnet_status_indication (instance, sap, reason, skb)
1293 * Link (IrLAP) status report.
1297 irnet_status_indication(void * instance
,
1301 irnet_socket
* self
= (irnet_socket
*) instance
;
1303 DENTER(IRDA_TCB_TRACE
, "(self=0x%p)\n", self
);
1304 DASSERT(self
!= NULL
, , IRDA_CB_ERROR
, "Self is NULL !!!\n");
1306 /* We can only get this event if we are connected */
1309 case STATUS_NO_ACTIVITY
:
1310 irnet_post_event(self
, IRNET_BLOCKED_LINK
,
1311 self
->saddr
, self
->daddr
, self
->rname
, 0);
1314 DEBUG(IRDA_CB_INFO
, "Unknown status...\n");
1317 DEXIT(IRDA_TCB_TRACE
, "\n");
1320 /*------------------------------------------------------------------*/
1322 * Function irnet_connect_indication(instance, sap, qos, max_sdu_size, userdata)
1324 * Incoming connection
1326 * In theory, this function is called only on the server socket.
1327 * Some other node is attempting to connect to the IrNET service, and has
1328 * sent a connection request on our server socket.
1329 * We just redirect the connection to the relevant IrNET socket.
1331 * Note : we also make sure that between 2 irnet nodes, there can
1332 * exist only one irnet connection.
1335 irnet_connect_indication(void * instance
,
1337 struct qos_info
*qos
,
1339 __u8 max_header_size
,
1340 struct sk_buff
*skb
)
1342 irnet_socket
* server
= &irnet_server
.s
;
1343 irnet_socket
* new = (irnet_socket
*) NULL
;
1345 DENTER(IRDA_TCB_TRACE
, "(server=0x%p)\n", server
);
1346 DASSERT(instance
== &irnet_server
, , IRDA_CB_ERROR
,
1347 "Invalid instance (0x%p) !!!\n", instance
);
1348 DASSERT(sap
== irnet_server
.s
.tsap
, , IRDA_CB_ERROR
, "Invalid sap !!!\n");
1350 /* Try to find the most appropriate IrNET socket */
1351 new = irnet_find_socket(server
);
1353 /* After all this hard work, do we have an socket ? */
1354 if(new == (irnet_socket
*) NULL
)
1356 DEXIT(IRDA_CB_INFO
, ": No socket waiting for this connection.\n");
1357 irnet_disconnect_server(server
, skb
);
1361 /* Is the socket already busy ? */
1362 if(test_bit(0, &new->ttp_open
))
1364 DEXIT(IRDA_CB_INFO
, ": Socket already connected.\n");
1365 irnet_disconnect_server(server
, skb
);
1369 /* The following code is a bit tricky, so need comments ;-)
1371 /* If ttp_connect is set, the socket is trying to connect to the other
1372 * end and may have sent a IrTTP connection request and is waiting for
1373 * a connection response (that may never come).
1374 * Now, the pain is that the socket may have opened a tsap and is
1375 * waiting on it, while the other end is trying to connect to it on
1377 * Because IrNET can be peer to peer, we need to workaround this.
1378 * Furthermore, the way the irnetd script is implemented, the
1379 * target will create a second IrNET connection back to the
1380 * originator and expect the originator to bind this new connection
1381 * to the original PPPD instance.
1382 * And of course, if we don't use irnetd, we can have a race when
1383 * both side try to connect simultaneously, which could leave both
1384 * connections half closed (yuck).
1386 * 1) The "originator" must accept the new connection and get rid
1387 * of the old one so that irnetd works
1388 * 2) One side must deny the new connection to avoid races,
1389 * but both side must agree on which side it is...
1390 * Most often, the originator is primary at the LAP layer.
1393 /* Now, let's look at the way I wrote the test...
1394 * We need to clear up the ttp_connect flag atomically to prevent
1395 * irnet_disconnect_indication() to mess up the tsap we are going to close.
1396 * We want to clear the ttp_connect flag only if we close the tsap,
1397 * otherwise we will never close it, so we need to check for primary
1398 * *before* doing the test on the flag.
1399 * And of course, ALLOW_SIMULT_CONNECT can disable this entirely...
1403 /* Socket already connecting ? On primary ? */
1405 #ifdef ALLOW_SIMULT_CONNECT
1406 || ((irttp_is_primary(server
->tsap
) == 1) /* primary */
1407 && (test_and_clear_bit(0, &new->ttp_connect
)))
1408 #endif /* ALLOW_SIMULT_CONNECT */
1411 DERROR(IRDA_CB_ERROR
, "Socket already connecting, but going to reuse it !\n");
1413 /* Cleanup the old TSAP if necessary - IrIAP will be cleaned up later */
1414 if(new->tsap
!= NULL
)
1416 /* Close the old connection the new socket was attempting,
1417 * so that we can hook it up to the new connection.
1418 * It's now safe to do it... */
1419 irttp_close_tsap(new->tsap
);
1426 * 1) socket was not connecting or connected : ttp_connect should be 0.
1427 * 2) we don't want to connect the socket because we are secondary or
1428 * ALLOW_SIMULT_CONNECT is undefined. ttp_connect should be 1.
1429 * 3) we are half way in irnet_disconnect_indication(), and it's a
1430 * nice race condition... Fortunately, we can detect that by checking
1431 * if tsap is still alive. On the other hand, we can't be in
1432 * irda_irnet_destroy() otherwise we would not have found this
1433 * socket in the hashbin.
1435 if((test_bit(0, &new->ttp_connect
)) || (new->tsap
!= NULL
))
1437 /* Don't mess this socket, somebody else in in charge... */
1438 DERROR(IRDA_CB_ERROR
, "Race condition detected, socket in use, abort connect...\n");
1439 irnet_disconnect_server(server
, skb
);
1444 /* So : at this point, we have a socket, and it is idle. Good ! */
1445 irnet_connect_socket(server
, new, qos
, max_sdu_size
, max_header_size
);
1447 /* Check size of received packet */
1450 #ifdef PASS_CONNECT_PACKETS
1451 DEBUG(IRDA_CB_INFO
, "Passing connect packet to PPP.\n");
1452 /* Try to pass it to PPP */
1453 irnet_data_indication(new, new->tsap
, skb
);
1454 #else /* PASS_CONNECT_PACKETS */
1455 DERROR(IRDA_CB_ERROR
, "Dropping non empty packet.\n");
1456 kfree_skb(skb
); /* Note : will be optimised with other kfree... */
1457 #endif /* PASS_CONNECT_PACKETS */
1462 DEXIT(IRDA_TCB_TRACE
, "\n");
1466 /********************** IRDA-IAS/LMP CALLBACKS **********************/
1468 * These are the callbacks called by other layers of the IrDA stack,
1469 * mainly LMP for discovery and IAS for name queries.
1472 /*------------------------------------------------------------------*/
1474 * Function irnet_getvalue_confirm (result, obj_id, value, priv)
1476 * Got answer from remote LM-IAS, just connect
1478 * This is the reply to a IAS query we were doing to find the TSAP of
1479 * the device we want to connect to.
1480 * If we have found a valid TSAP, just initiate the TTP connection
1484 irnet_getvalue_confirm(int result
,
1486 struct ias_value
*value
,
1489 irnet_socket
* self
= (irnet_socket
*) priv
;
1491 DENTER(IRDA_OCB_TRACE
, "(self=0x%p)\n", self
);
1492 DASSERT(self
!= NULL
, , IRDA_OCB_ERROR
, "Self is NULL !!!\n");
1494 /* Check if already connected (via irnet_connect_socket())
1495 * or socket is closing down (via irda_irnet_destroy()) */
1496 if(! test_bit(0, &self
->ttp_connect
))
1498 DERROR(IRDA_OCB_ERROR
, "Socket no longer connecting. Ouch !\n");
1502 /* We probably don't need to make any more queries */
1503 iriap_close(self
->iriap
);
1506 /* Post process the IAS reply */
1507 self
->dtsap_sel
= irnet_ias_to_tsap(self
, result
, value
);
1509 /* If error, just go out */
1512 clear_bit(0, &self
->ttp_connect
);
1513 DERROR(IRDA_OCB_ERROR
, "IAS connect failed ! (0x%X)\n", self
->errno
);
1517 DEBUG(IRDA_OCB_INFO
, "daddr = %08x, lsap = %d, starting IrTTP connection\n",
1518 self
->daddr
, self
->dtsap_sel
);
1520 /* Start up TTP - non blocking */
1521 irnet_connect_tsap(self
);
1523 DEXIT(IRDA_OCB_TRACE
, "\n");
1526 /*------------------------------------------------------------------*/
1528 * Function irnet_discovervalue_confirm (result, obj_id, value, priv)
1530 * Handle the TSAP discovery procedure state machine.
1531 * Got answer from remote LM-IAS, try next device
1533 * We are doing a TSAP discovery procedure, and we got an answer to
1534 * a IAS query we were doing to find the TSAP on one of the address
1535 * in the discovery log.
1537 * If we have found a valid TSAP for the first time, save it. If it's
1538 * not the first time we found one, complain.
1540 * If we have more addresses in the log, just initiate a new query.
1541 * Note that those query may fail (see irnet_discover_daddr_and_lsap_sel())
1543 * Otherwise, wrap up the procedure (cleanup), check if we have found
1544 * any device and connect to it.
1547 irnet_discovervalue_confirm(int result
,
1549 struct ias_value
*value
,
1552 irnet_socket
* self
= (irnet_socket
*) priv
;
1553 __u8 dtsap_sel
; /* TSAP we are looking for */
1555 DENTER(IRDA_OCB_TRACE
, "(self=0x%p)\n", self
);
1556 DASSERT(self
!= NULL
, , IRDA_OCB_ERROR
, "Self is NULL !!!\n");
1558 /* Check if already connected (via irnet_connect_socket())
1559 * or socket is closing down (via irda_irnet_destroy()) */
1560 if(! test_bit(0, &self
->ttp_connect
))
1562 DERROR(IRDA_OCB_ERROR
, "Socket no longer connecting. Ouch !\n");
1566 /* Post process the IAS reply */
1567 dtsap_sel
= irnet_ias_to_tsap(self
, result
, value
);
1569 /* Have we got something ? */
1570 if(self
->errno
== 0)
1572 /* We found the requested service */
1573 if(self
->daddr
!= DEV_ADDR_ANY
)
1575 DERROR(IRDA_OCB_ERROR
, "More than one device in range supports IrNET...\n");
1579 /* First time we found that one, save it ! */
1580 self
->daddr
= self
->discoveries
[self
->disco_index
].daddr
;
1581 self
->dtsap_sel
= dtsap_sel
;
1586 if((self
->errno
== -EADDRNOTAVAIL
) || (self
->errno
== 0))
1590 /* Search the next node */
1591 ret
= irnet_discover_next_daddr(self
);
1594 /* In this case, the above request was non-blocking.
1595 * We will return here after a while... */
1598 /* In this case, we have processed the last discovery item */
1601 /* No more queries to be done (failure or last one) */
1603 /* We probably don't need to make any more queries */
1604 iriap_close(self
->iriap
);
1607 /* No more items : remove the log and signal termination */
1608 DEBUG(IRDA_OCB_INFO
, "Cleaning up log (0x%p)\n",
1610 if(self
->discoveries
!= NULL
)
1612 /* Cleanup our copy of the discovery log */
1613 kfree(self
->discoveries
);
1614 self
->discoveries
= NULL
;
1616 self
->disco_number
= -1;
1618 /* Check out what we found */
1619 if(self
->daddr
== DEV_ADDR_ANY
)
1621 self
->daddr
= DEV_ADDR_ANY
;
1622 clear_bit(0, &self
->ttp_connect
);
1623 DEXIT(IRDA_OCB_TRACE
, ": cannot discover IrNET in any device !!!\n");
1627 /* We have a valid address - just connect */
1629 DEBUG(IRDA_OCB_INFO
, "daddr = %08x, lsap = %d, starting IrTTP connection\n",
1630 self
->daddr
, self
->dtsap_sel
);
1632 /* Start up TTP - non blocking */
1633 irnet_connect_tsap(self
);
1635 DEXIT(IRDA_OCB_TRACE
, "\n");
1638 #ifdef DISCOVERY_EVENTS
1639 /*------------------------------------------------------------------*/
1641 * Function irnet_discovery_indication (discovery)
1643 * Got a discovery indication from IrLMP, post an event
1645 * Note : IrLMP take care of matching the hint mask for us, and also
1646 * check if it is a "new" node for us...
1648 * As IrLMP filter on the IrLAN hint bit, we get both IrLAN and IrNET
1649 * nodes, so it's only at connection time that we will know if the
1650 * node support IrNET, IrLAN or both. The other solution is to check
1651 * in IAS the PNP ids and service name.
1652 * Note : even if a node support IrNET (or IrLAN), it's no guarantee
1653 * that we will be able to connect to it, the node might already be
1656 * One last thing : in some case, this function will trigger duplicate
1657 * discovery events. On the other hand, we should catch all
1658 * discoveries properly (i.e. not miss one). Filtering duplicate here
1659 * is to messy, so we leave that to user space...
1662 irnet_discovery_indication(discinfo_t
* discovery
,
1663 DISCOVERY_MODE mode
,
1666 irnet_socket
* self
= &irnet_server
.s
;
1668 DENTER(IRDA_OCB_TRACE
, "(self=0x%p)\n", self
);
1669 DASSERT(priv
== &irnet_server
, , IRDA_OCB_ERROR
,
1670 "Invalid instance (0x%p) !!!\n", priv
);
1672 DEBUG(IRDA_OCB_INFO
, "Discovered new IrNET/IrLAN node %s...\n",
1675 /* Notify the control channel */
1676 irnet_post_event(NULL
, IRNET_DISCOVER
,
1677 discovery
->saddr
, discovery
->daddr
, discovery
->info
,
1678 get_unaligned((__u16
*)discovery
->hints
));
1680 DEXIT(IRDA_OCB_TRACE
, "\n");
1683 /*------------------------------------------------------------------*/
1685 * Function irnet_expiry_indication (expiry)
1687 * Got a expiry indication from IrLMP, post an event
1689 * Note : IrLMP take care of matching the hint mask for us, we only
1690 * check if it is a "new" node...
1693 irnet_expiry_indication(discinfo_t
* expiry
,
1694 DISCOVERY_MODE mode
,
1697 irnet_socket
* self
= &irnet_server
.s
;
1699 DENTER(IRDA_OCB_TRACE
, "(self=0x%p)\n", self
);
1700 DASSERT(priv
== &irnet_server
, , IRDA_OCB_ERROR
,
1701 "Invalid instance (0x%p) !!!\n", priv
);
1703 DEBUG(IRDA_OCB_INFO
, "IrNET/IrLAN node %s expired...\n",
1706 /* Notify the control channel */
1707 irnet_post_event(NULL
, IRNET_EXPIRE
,
1708 expiry
->saddr
, expiry
->daddr
, expiry
->info
,
1709 get_unaligned((__u16
*)expiry
->hints
));
1711 DEXIT(IRDA_OCB_TRACE
, "\n");
1713 #endif /* DISCOVERY_EVENTS */
1716 /*********************** PROC ENTRY CALLBACKS ***********************/
1718 * We create a instance in the /proc filesystem, and here we take care
1722 #ifdef CONFIG_PROC_FS
1724 irnet_proc_show(struct seq_file
*m
, void *v
)
1726 irnet_socket
* self
;
1730 /* Get the IrNET server information... */
1731 seq_printf(m
, "IrNET server - ");
1732 seq_printf(m
, "IrDA state: %s, ",
1733 (irnet_server
.running
? "running" : "dead"));
1734 seq_printf(m
, "stsap_sel: %02x, ", irnet_server
.s
.stsap_sel
);
1735 seq_printf(m
, "dtsap_sel: %02x\n", irnet_server
.s
.dtsap_sel
);
1737 /* Do we need to continue ? */
1738 if(!irnet_server
.running
)
1741 /* Protect access to the instance list */
1742 spin_lock_bh(&irnet_server
.spinlock
);
1744 /* Get the sockets one by one... */
1745 self
= (irnet_socket
*) hashbin_get_first(irnet_server
.list
);
1748 /* Start printing info about the socket. */
1749 seq_printf(m
, "\nIrNET socket %d - ", i
++);
1751 /* First, get the requested configuration */
1752 seq_printf(m
, "Requested IrDA name: \"%s\", ", self
->rname
);
1753 seq_printf(m
, "daddr: %08x, ", self
->rdaddr
);
1754 seq_printf(m
, "saddr: %08x\n", self
->rsaddr
);
1756 /* Second, get all the PPP info */
1757 seq_printf(m
, " PPP state: %s",
1758 (self
->ppp_open
? "registered" : "unregistered"));
1761 seq_printf(m
, ", unit: ppp%d",
1762 ppp_unit_number(&self
->chan
));
1763 seq_printf(m
, ", channel: %d",
1764 ppp_channel_index(&self
->chan
));
1765 seq_printf(m
, ", mru: %d",
1767 /* Maybe add self->flags ? Later... */
1770 /* Then, get all the IrDA specific info... */
1772 state
= "connected";
1774 if(self
->tsap
!= NULL
)
1775 state
= "connecting";
1777 if(self
->iriap
!= NULL
)
1778 state
= "searching";
1780 if(self
->ttp_connect
)
1784 seq_printf(m
, "\n IrDA state: %s, ", state
);
1785 seq_printf(m
, "daddr: %08x, ", self
->daddr
);
1786 seq_printf(m
, "stsap_sel: %02x, ", self
->stsap_sel
);
1787 seq_printf(m
, "dtsap_sel: %02x\n", self
->dtsap_sel
);
1789 /* Next socket, please... */
1790 self
= (irnet_socket
*) hashbin_get_next(irnet_server
.list
);
1794 spin_unlock_bh(&irnet_server
.spinlock
);
1799 static int irnet_proc_open(struct inode
*inode
, struct file
*file
)
1801 return single_open(file
, irnet_proc_show
, NULL
);
1804 static const struct file_operations irnet_proc_fops
= {
1805 .owner
= THIS_MODULE
,
1806 .open
= irnet_proc_open
,
1808 .llseek
= seq_lseek
,
1809 .release
= single_release
,
1811 #endif /* PROC_FS */
1814 /********************** CONFIGURATION/CLEANUP **********************/
1816 * Initialisation and teardown of the IrDA part, called at module
1817 * insertion and removal...
1820 /*------------------------------------------------------------------*/
1822 * Prepare the IrNET layer for operation...
1825 irda_irnet_init(void)
1829 DENTER(MODULE_TRACE
, "()\n");
1831 /* Pure paranoia - should be redundant */
1832 memset(&irnet_server
, 0, sizeof(struct irnet_root
));
1834 /* Setup start of irnet instance list */
1835 irnet_server
.list
= hashbin_new(HB_NOLOCK
);
1836 DABORT(irnet_server
.list
== NULL
, -ENOMEM
,
1837 MODULE_ERROR
, "Can't allocate hashbin!\n");
1838 /* Init spinlock for instance list */
1839 spin_lock_init(&irnet_server
.spinlock
);
1841 /* Initialise control channel */
1842 init_waitqueue_head(&irnet_events
.rwait
);
1843 irnet_events
.index
= 0;
1844 /* Init spinlock for event logging */
1845 spin_lock_init(&irnet_events
.spinlock
);
1847 #ifdef CONFIG_PROC_FS
1848 /* Add a /proc file for irnet infos */
1849 proc_create("irnet", 0, proc_irda
, &irnet_proc_fops
);
1850 #endif /* CONFIG_PROC_FS */
1852 /* Setup the IrNET server */
1853 err
= irnet_setup_server();
1856 /* We are no longer functional... */
1857 irnet_server
.running
= 1;
1859 DEXIT(MODULE_TRACE
, "\n");
1863 /*------------------------------------------------------------------*/
1865 * Cleanup at exit...
1868 irda_irnet_cleanup(void)
1870 DENTER(MODULE_TRACE
, "()\n");
1872 /* We are no longer there... */
1873 irnet_server
.running
= 0;
1875 #ifdef CONFIG_PROC_FS
1876 /* Remove our /proc file */
1877 remove_proc_entry("irnet", proc_irda
);
1878 #endif /* CONFIG_PROC_FS */
1880 /* Remove our IrNET server from existence */
1881 irnet_destroy_server();
1883 /* Remove all instances of IrNET socket still present */
1884 hashbin_delete(irnet_server
.list
, (FREE_FUNC
) irda_irnet_destroy
);
1886 DEXIT(MODULE_TRACE
, "\n");