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 */
13 /************************* CONTROL CHANNEL *************************/
15 * When ppp is not active, /dev/irnet act as a control channel.
16 * Writing allow to set up the IrDA destination of the IrNET channel,
17 * and any application may be read events happening on IrNET...
20 /*------------------------------------------------------------------*/
22 * Post an event to the control channel...
23 * Put the event in the log, and then wait all process blocked on read
24 * so they can read the log...
27 irnet_post_event(irnet_socket * ap,
34 int index; /* In the log */
36 DENTER(CTRL_TRACE, "(ap=0x%p, event=%d, daddr=%08x, name=``%s'')\n",
37 ap, event, daddr, name);
39 /* Protect this section via spinlock.
40 * Note : as we are the only event producer, we only need to exclude
41 * ourself when touching the log, which is nice and easy.
43 spin_lock_bh(&irnet_events.spinlock);
45 /* Copy the event in the log */
46 index = irnet_events.index;
47 irnet_events.log[index].event = event;
48 irnet_events.log[index].daddr = daddr;
49 irnet_events.log[index].saddr = saddr;
50 /* Try to copy IrDA nickname */
52 strcpy(irnet_events.log[index].name, name);
54 irnet_events.log[index].name[0] = '\0';
56 irnet_events.log[index].hints.word = hints;
57 /* Try to get ppp unit number */
58 if((ap != (irnet_socket *) NULL) && (ap->ppp_open))
59 irnet_events.log[index].unit = ppp_unit_number(&ap->chan);
61 irnet_events.log[index].unit = -1;
63 /* Increment the index
64 * Note that we increment the index only after the event is written,
65 * to make sure that the readers don't get garbage... */
66 irnet_events.index = (index + 1) % IRNET_MAX_EVENTS;
68 DEBUG(CTRL_INFO, "New event index is %d\n", irnet_events.index);
71 spin_unlock_bh(&irnet_events.spinlock);
73 /* Now : wake up everybody waiting for events... */
74 wake_up_interruptible_all(&irnet_events.rwait);
76 DEXIT(CTRL_TRACE, "\n");
79 /************************* IRDA SUBROUTINES *************************/
81 * These are a bunch of subroutines called from other functions
82 * down there, mostly common code or to improve readability...
84 * Note : we duplicate quite heavily some routines of af_irda.c,
85 * because our input structure (self) is quite different
86 * (struct irnet instead of struct irda_sock), which make sharing
87 * the same code impossible (at least, without templates).
90 /*------------------------------------------------------------------*/
92 * Function irda_open_tsap (self)
94 * Open local Transport Service Access Point (TSAP)
96 * Create a IrTTP instance for us and set all the IrTTP callbacks.
99 irnet_open_tsap(irnet_socket * self)
101 notify_t notify; /* Callback structure */
103 DENTER(IRDA_SR_TRACE, "(self=0x%p)\n", self);
105 DABORT(self->tsap != NULL, -EBUSY, IRDA_SR_ERROR, "Already busy !\n");
107 /* Initialize IrTTP callbacks to be used by the IrDA stack */
108 irda_notify_init(¬ify);
109 notify.connect_confirm = irnet_connect_confirm;
110 notify.connect_indication = irnet_connect_indication;
111 notify.disconnect_indication = irnet_disconnect_indication;
112 notify.data_indication = irnet_data_indication;
113 /*notify.udata_indication = NULL;*/
114 notify.flow_indication = irnet_flow_indication;
115 notify.status_indication = irnet_status_indication;
116 notify.instance = self;
117 strlcpy(notify.name, IRNET_NOTIFY_NAME, sizeof(notify.name));
119 /* Open an IrTTP instance */
120 self->tsap = irttp_open_tsap(LSAP_ANY, DEFAULT_INITIAL_CREDIT,
122 DABORT(self->tsap == NULL, -ENOMEM,
123 IRDA_SR_ERROR, "Unable to allocate TSAP !\n");
125 /* Remember which TSAP selector we actually got */
126 self->stsap_sel = self->tsap->stsap_sel;
128 DEXIT(IRDA_SR_TRACE, " - tsap=0x%p, sel=0x%X\n",
129 self->tsap, self->stsap_sel);
133 /*------------------------------------------------------------------*/
135 * Function irnet_ias_to_tsap (self, result, value)
137 * Examine an IAS object and extract TSAP
139 * We do an IAP query to find the TSAP associated with the IrNET service.
140 * When IrIAP pass us the result of the query, this function look at
141 * the return values to check for failures and extract the TSAP if
143 * Also deallocate value
144 * The failure is in self->errno
148 irnet_ias_to_tsap(irnet_socket * self,
150 struct ias_value * value)
152 __u8 dtsap_sel = 0; /* TSAP we are looking for */
154 DENTER(IRDA_SR_TRACE, "(self=0x%p)\n", self);
156 /* By default, no error */
159 /* Check if request succeeded */
162 /* Standard errors : service not available */
163 case IAS_CLASS_UNKNOWN:
164 case IAS_ATTRIB_UNKNOWN:
165 DEBUG(IRDA_SR_INFO, "IAS object doesn't exist ! (%d)\n", result);
166 self->errno = -EADDRNOTAVAIL;
169 /* Other errors, most likely IrDA stack failure */
171 DEBUG(IRDA_SR_INFO, "IAS query failed ! (%d)\n", result);
172 self->errno = -EHOSTUNREACH;
175 /* Success : we got what we wanted */
180 /* Check what was returned to us */
183 /* What type of argument have we got ? */
187 DEBUG(IRDA_SR_INFO, "result=%d\n", value->t.integer);
188 if(value->t.integer != -1)
189 /* Get the remote TSAP selector */
190 dtsap_sel = value->t.integer;
192 self->errno = -EADDRNOTAVAIL;
195 self->errno = -EADDRNOTAVAIL;
196 DERROR(IRDA_SR_ERROR, "bad type ! (0x%X)\n", value->type);
201 irias_delete_value(value);
203 else /* value == NULL */
205 /* Nothing returned to us - usually result != SUCCESS */
208 DERROR(IRDA_SR_ERROR,
209 "IrDA bug : result == SUCCESS && value == NULL\n");
210 self->errno = -EHOSTUNREACH;
213 DEXIT(IRDA_SR_TRACE, "\n");
215 /* Return the TSAP */
219 /*------------------------------------------------------------------*/
221 * Function irnet_find_lsap_sel (self)
223 * Try to lookup LSAP selector in remote LM-IAS
225 * Basically, we start a IAP query, and then go to sleep. When the query
226 * return, irnet_getvalue_confirm will wake us up, and we can examine the
227 * result of the query...
228 * Note that in some case, the query fail even before we go to sleep,
229 * creating some races...
232 irnet_find_lsap_sel(irnet_socket * self)
234 DENTER(IRDA_SR_TRACE, "(self=0x%p)\n", self);
236 /* This should not happen */
237 DABORT(self->iriap, -EBUSY, IRDA_SR_ERROR, "busy with a previous query.\n");
239 /* Create an IAP instance, will be closed in irnet_getvalue_confirm() */
240 self->iriap = iriap_open(LSAP_ANY, IAS_CLIENT, self,
241 irnet_getvalue_confirm);
243 /* Treat unexpected signals as disconnect */
244 self->errno = -EHOSTUNREACH;
246 /* Query remote LM-IAS */
247 iriap_getvaluebyclass_request(self->iriap, self->rsaddr, self->daddr,
248 IRNET_SERVICE_NAME, IRNET_IAS_VALUE);
250 /* The above request is non-blocking.
251 * After a while, IrDA will call us back in irnet_getvalue_confirm()
252 * We will then call irnet_ias_to_tsap() and finish the
253 * connection procedure */
255 DEXIT(IRDA_SR_TRACE, "\n");
259 /*------------------------------------------------------------------*/
261 * Function irnet_connect_tsap (self)
263 * Initialise the TTP socket and initiate TTP connection
267 irnet_connect_tsap(irnet_socket * self)
271 DENTER(IRDA_SR_TRACE, "(self=0x%p)\n", self);
273 /* Open a local TSAP (an IrTTP instance) */
274 err = irnet_open_tsap(self);
277 clear_bit(0, &self->ttp_connect);
278 DERROR(IRDA_SR_ERROR, "connect aborted!\n");
282 /* Connect to remote device */
283 err = irttp_connect_request(self->tsap, self->dtsap_sel,
284 self->rsaddr, self->daddr, NULL,
285 self->max_sdu_size_rx, NULL);
288 clear_bit(0, &self->ttp_connect);
289 DERROR(IRDA_SR_ERROR, "connect aborted!\n");
293 /* The above call is non-blocking.
294 * After a while, the IrDA stack will either call us back in
295 * irnet_connect_confirm() or irnet_disconnect_indication()
296 * See you there ;-) */
298 DEXIT(IRDA_SR_TRACE, "\n");
302 /*------------------------------------------------------------------*/
304 * Function irnet_discover_next_daddr (self)
306 * Query the IrNET TSAP of the next device in the log.
308 * Used in the TSAP discovery procedure.
311 irnet_discover_next_daddr(irnet_socket * self)
313 /* Close the last instance of IrIAP, and open a new one.
314 * We can't reuse the IrIAP instance in the IrIAP callback */
317 iriap_close(self->iriap);
320 /* Create a new IAP instance */
321 self->iriap = iriap_open(LSAP_ANY, IAS_CLIENT, self,
322 irnet_discovervalue_confirm);
323 if(self->iriap == NULL)
326 /* Next discovery - before the call to avoid races */
329 /* Check if we have one more address to try */
330 if(self->disco_index < self->disco_number)
332 /* Query remote LM-IAS */
333 iriap_getvaluebyclass_request(self->iriap,
334 self->discoveries[self->disco_index].saddr,
335 self->discoveries[self->disco_index].daddr,
336 IRNET_SERVICE_NAME, IRNET_IAS_VALUE);
337 /* The above request is non-blocking.
338 * After a while, IrDA will call us back in irnet_discovervalue_confirm()
339 * We will then call irnet_ias_to_tsap() and come back here again... */
346 /*------------------------------------------------------------------*/
348 * Function irnet_discover_daddr_and_lsap_sel (self)
350 * This try to find a device with the requested service.
352 * Initiate a TSAP discovery procedure.
353 * It basically look into the discovery log. For each address in the list,
354 * it queries the LM-IAS of the device to find if this device offer
355 * the requested service.
356 * If there is more than one node supporting the service, we complain
357 * to the user (it should move devices around).
358 * If we find one node which have the requested TSAP, we connect to it.
360 * This function just start the whole procedure. It request the discovery
361 * log and submit the first IAS query.
362 * The bulk of the job is handled in irnet_discovervalue_confirm()
364 * Note : this procedure fails if there is more than one device in range
365 * on the same dongle, because IrLMP doesn't disconnect the LAP when the
366 * last LSAP is closed. Moreover, we would need to wait the LAP
370 irnet_discover_daddr_and_lsap_sel(irnet_socket * self)
374 DENTER(IRDA_SR_TRACE, "(self=0x%p)\n", self);
376 /* Ask lmp for the current discovery log */
377 self->discoveries = irlmp_get_discoveries(&self->disco_number, self->mask,
378 DISCOVERY_DEFAULT_SLOTS);
380 /* Check if the we got some results */
381 if(self->discoveries == NULL)
383 self->disco_number = -1;
384 clear_bit(0, &self->ttp_connect);
385 DRETURN(-ENETUNREACH, IRDA_SR_INFO, "No Cachelog...\n");
387 DEBUG(IRDA_SR_INFO, "Got the log (0x%p), size is %d\n",
388 self->discoveries, self->disco_number);
390 /* Start with the first discovery */
391 self->disco_index = -1;
392 self->daddr = DEV_ADDR_ANY;
394 /* This will fail if the log is empty - this is non-blocking */
395 ret = irnet_discover_next_daddr(self);
400 iriap_close(self->iriap);
403 /* Cleanup our copy of the discovery log */
404 kfree(self->discoveries);
405 self->discoveries = NULL;
407 clear_bit(0, &self->ttp_connect);
408 DRETURN(-ENETUNREACH, IRDA_SR_INFO, "Cachelog empty...\n");
411 /* Follow me in irnet_discovervalue_confirm() */
413 DEXIT(IRDA_SR_TRACE, "\n");
417 /*------------------------------------------------------------------*/
419 * Function irnet_dname_to_daddr (self)
421 * Convert an IrDA nickname to a valid IrDA address
423 * It basically look into the discovery log until there is a match.
426 irnet_dname_to_daddr(irnet_socket * self)
428 struct irda_device_info *discoveries; /* Copy of the discovery log */
429 int number; /* Number of nodes in the log */
432 DENTER(IRDA_SR_TRACE, "(self=0x%p)\n", self);
434 /* Ask lmp for the current discovery log */
435 discoveries = irlmp_get_discoveries(&number, 0xffff,
436 DISCOVERY_DEFAULT_SLOTS);
437 /* Check if the we got some results */
438 if(discoveries == NULL)
439 DRETURN(-ENETUNREACH, IRDA_SR_INFO, "Cachelog empty...\n");
442 * Now, check all discovered devices (if any), and connect
443 * client only about the services that the client is
446 for(i = 0; i < number; i++)
448 /* Does the name match ? */
449 if(!strncmp(discoveries[i].info, self->rname, NICKNAME_MAX_LEN))
451 /* Yes !!! Get it.. */
452 self->daddr = discoveries[i].daddr;
453 DEBUG(IRDA_SR_INFO, "discovered device ``%s'' at address 0x%08x.\n",
454 self->rname, self->daddr);
456 DEXIT(IRDA_SR_TRACE, "\n");
461 DEBUG(IRDA_SR_INFO, "cannot discover device ``%s'' !!!\n", self->rname);
463 return(-EADDRNOTAVAIL);
467 /************************* SOCKET ROUTINES *************************/
469 * This are the main operations on IrNET sockets, basically to create
470 * and destroy IrNET sockets. These are called from the PPP part...
473 /*------------------------------------------------------------------*/
475 * Create a IrNET instance : just initialise some parameters...
478 irda_irnet_create(irnet_socket * self)
480 DENTER(IRDA_SOCK_TRACE, "(self=0x%p)\n", self);
482 self->magic = IRNET_MAGIC; /* Paranoia */
484 self->ttp_open = 0; /* Prevent higher layer from accessing IrTTP */
485 self->ttp_connect = 0; /* Not connecting yet */
486 self->rname[0] = '\0'; /* May be set via control channel */
487 self->rdaddr = DEV_ADDR_ANY; /* May be set via control channel */
488 self->rsaddr = DEV_ADDR_ANY; /* May be set via control channel */
489 self->daddr = DEV_ADDR_ANY; /* Until we get connected */
490 self->saddr = DEV_ADDR_ANY; /* Until we get connected */
491 self->max_sdu_size_rx = TTP_SAR_UNBOUND;
493 /* Register as a client with IrLMP */
494 self->ckey = irlmp_register_client(0, NULL, NULL, NULL);
495 #ifdef DISCOVERY_NOMASK
496 self->mask = 0xffff; /* For W2k compatibility */
497 #else /* DISCOVERY_NOMASK */
498 self->mask = irlmp_service_to_hint(S_LAN);
499 #endif /* DISCOVERY_NOMASK */
500 self->tx_flow = FLOW_START; /* Flow control from IrTTP */
502 DEXIT(IRDA_SOCK_TRACE, "\n");
506 /*------------------------------------------------------------------*/
508 * Connect to the other side :
509 * o convert device name to an address
510 * o find the socket number (dlsap)
511 * o Establish the connection
513 * Note : We no longer mimic af_irda. The IAS query for finding the TSAP
514 * is done asynchronously, like the TTP connection. This allow us to
515 * call this function from any context (not only process).
516 * The downside is that following what's happening in there is tricky
517 * because it involve various functions all over the place...
520 irda_irnet_connect(irnet_socket * self)
524 DENTER(IRDA_SOCK_TRACE, "(self=0x%p)\n", self);
526 /* Check if we are already trying to connect.
527 * Because irda_irnet_connect() can be called directly by pppd plus
528 * packet retries in ppp_generic and connect may take time, plus we may
529 * race with irnet_connect_indication(), we need to be careful there... */
530 if(test_and_set_bit(0, &self->ttp_connect))
531 DRETURN(-EBUSY, IRDA_SOCK_INFO, "Already connecting...\n");
532 if((self->iriap != NULL) || (self->tsap != NULL))
533 DERROR(IRDA_SOCK_ERROR, "Socket not cleaned up...\n");
535 /* Insert ourselves in the hashbin so that the IrNET server can find us.
536 * Notes : 4th arg is string of 32 char max and must be null terminated
537 * When 4th arg is used (string), 3rd arg isn't (int)
538 * Can't re-insert (MUST remove first) so check for that... */
539 if((irnet_server.running) && (self->q.q_next == NULL))
541 spin_lock_bh(&irnet_server.spinlock);
542 hashbin_insert(irnet_server.list, (irda_queue_t *) self, 0, self->rname);
543 spin_unlock_bh(&irnet_server.spinlock);
544 DEBUG(IRDA_SOCK_INFO, "Inserted ``%s'' in hashbin...\n", self->rname);
547 /* If we don't have anything (no address, no name) */
548 if((self->rdaddr == DEV_ADDR_ANY) && (self->rname[0] == '\0'))
550 /* Try to find a suitable address */
551 if((err = irnet_discover_daddr_and_lsap_sel(self)) != 0)
552 DRETURN(err, IRDA_SOCK_INFO, "auto-connect failed!\n");
553 /* In most cases, the call above is non-blocking */
557 /* If we have only the name (no address), try to get an address */
558 if(self->rdaddr == DEV_ADDR_ANY)
560 if((err = irnet_dname_to_daddr(self)) != 0)
561 DRETURN(err, IRDA_SOCK_INFO, "name connect failed!\n");
564 /* Use the requested destination address */
565 self->daddr = self->rdaddr;
567 /* Query remote LM-IAS to find LSAP selector */
568 irnet_find_lsap_sel(self);
569 /* The above call is non blocking */
572 /* At this point, we are waiting for the IrDA stack to call us back,
573 * or we have already failed.
574 * We will finish the connection procedure in irnet_connect_tsap().
576 DEXIT(IRDA_SOCK_TRACE, "\n");
580 /*------------------------------------------------------------------*/
582 * Function irda_irnet_destroy(self)
584 * Destroy irnet instance
586 * Note : this need to be called from a process context.
589 irda_irnet_destroy(irnet_socket * self)
591 DENTER(IRDA_SOCK_TRACE, "(self=0x%p)\n", self);
595 /* Remove ourselves from hashbin (if we are queued in hashbin)
596 * Note : `irnet_server.running' protect us from calls in hashbin_delete() */
597 if((irnet_server.running) && (self->q.q_next != NULL))
599 struct irnet_socket * entry;
600 DEBUG(IRDA_SOCK_INFO, "Removing from hash..\n");
601 spin_lock_bh(&irnet_server.spinlock);
602 entry = hashbin_remove_this(irnet_server.list, (irda_queue_t *) self);
603 self->q.q_next = NULL;
604 spin_unlock_bh(&irnet_server.spinlock);
605 DASSERT(entry == self, , IRDA_SOCK_ERROR, "Can't remove from hash.\n");
608 /* If we were connected, post a message */
609 if(test_bit(0, &self->ttp_open))
611 /* Note : as the disconnect comes from ppp_generic, the unit number
612 * doesn't exist anymore when we post the event, so we need to pass
613 * NULL as the first arg... */
614 irnet_post_event(NULL, IRNET_DISCONNECT_TO,
615 self->saddr, self->daddr, self->rname, 0);
618 /* Prevent various IrDA callbacks from messing up things
619 * Need to be first */
620 clear_bit(0, &self->ttp_connect);
622 /* Prevent higher layer from accessing IrTTP */
623 clear_bit(0, &self->ttp_open);
625 /* Unregister with IrLMP */
626 irlmp_unregister_client(self->ckey);
628 /* Unregister with LM-IAS */
631 iriap_close(self->iriap);
635 /* Cleanup eventual discoveries from connection attempt or control channel */
636 if(self->discoveries != NULL)
638 /* Cleanup our copy of the discovery log */
639 kfree(self->discoveries);
640 self->discoveries = NULL;
643 /* Close our IrTTP connection */
646 DEBUG(IRDA_SOCK_INFO, "Closing our TTP connection.\n");
647 irttp_disconnect_request(self->tsap, NULL, P_NORMAL);
648 irttp_close_tsap(self->tsap);
653 DEXIT(IRDA_SOCK_TRACE, "\n");
658 /************************** SERVER SOCKET **************************/
660 * The IrNET service is composed of one server socket and a variable
661 * number of regular IrNET sockets. The server socket is supposed to
662 * handle incoming connections and redirect them to one IrNET sockets.
663 * It's a superset of the regular IrNET socket, but has a very distinct
667 /*------------------------------------------------------------------*/
669 * Function irnet_daddr_to_dname (self)
671 * Convert an IrDA address to a IrDA nickname
673 * It basically look into the discovery log until there is a match.
676 irnet_daddr_to_dname(irnet_socket * self)
678 struct irda_device_info *discoveries; /* Copy of the discovery log */
679 int number; /* Number of nodes in the log */
682 DENTER(IRDA_SERV_TRACE, "(self=0x%p)\n", self);
684 /* Ask lmp for the current discovery log */
685 discoveries = irlmp_get_discoveries(&number, 0xffff,
686 DISCOVERY_DEFAULT_SLOTS);
687 /* Check if the we got some results */
688 if (discoveries == NULL)
689 DRETURN(-ENETUNREACH, IRDA_SERV_INFO, "Cachelog empty...\n");
691 /* Now, check all discovered devices (if any) */
692 for(i = 0; i < number; i++)
694 /* Does the name match ? */
695 if(discoveries[i].daddr == self->daddr)
697 /* Yes !!! Get it.. */
698 strlcpy(self->rname, discoveries[i].info, sizeof(self->rname));
699 self->rname[sizeof(self->rname) - 1] = '\0';
700 DEBUG(IRDA_SERV_INFO, "Device 0x%08x is in fact ``%s''.\n",
701 self->daddr, self->rname);
703 DEXIT(IRDA_SERV_TRACE, "\n");
708 DEXIT(IRDA_SERV_INFO, ": cannot discover device 0x%08x !!!\n", self->daddr);
710 return(-EADDRNOTAVAIL);
713 /*------------------------------------------------------------------*/
715 * Function irda_find_socket (self)
717 * Find the correct IrNET socket
719 * Look into the list of IrNET sockets and finds one with the right
722 static inline irnet_socket *
723 irnet_find_socket(irnet_socket * self)
725 irnet_socket * new = (irnet_socket *) NULL;
728 DENTER(IRDA_SERV_TRACE, "(self=0x%p)\n", self);
730 /* Get the addresses of the requester */
731 self->daddr = irttp_get_daddr(self->tsap);
732 self->saddr = irttp_get_saddr(self->tsap);
734 /* Try to get the IrDA nickname of the requester */
735 err = irnet_daddr_to_dname(self);
737 /* Protect access to the instance list */
738 spin_lock_bh(&irnet_server.spinlock);
740 /* So now, try to get an socket having specifically
741 * requested that nickname */
744 new = (irnet_socket *) hashbin_find(irnet_server.list,
747 DEBUG(IRDA_SERV_INFO, "Socket 0x%p matches rname ``%s''.\n",
751 /* If no name matches, try to find an socket by the destination address */
752 /* It can be either the requested destination address (set via the
753 * control channel), or the current destination address if the
754 * socket is in the middle of a connection request */
755 if(new == (irnet_socket *) NULL)
757 new = (irnet_socket *) hashbin_get_first(irnet_server.list);
758 while(new !=(irnet_socket *) NULL)
760 /* Does it have the same address ? */
761 if((new->rdaddr == self->daddr) || (new->daddr == self->daddr))
763 /* Yes !!! Get it.. */
764 DEBUG(IRDA_SERV_INFO, "Socket 0x%p matches daddr %#08x.\n",
768 new = (irnet_socket *) hashbin_get_next(irnet_server.list);
772 /* If we don't have any socket, get the first unconnected socket */
773 if(new == (irnet_socket *) NULL)
775 new = (irnet_socket *) hashbin_get_first(irnet_server.list);
776 while(new !=(irnet_socket *) NULL)
778 /* Is it available ? */
779 if(!(test_bit(0, &new->ttp_open)) && (new->rdaddr == DEV_ADDR_ANY) &&
780 (new->rname[0] == '\0') && (new->ppp_open))
782 /* Yes !!! Get it.. */
783 DEBUG(IRDA_SERV_INFO, "Socket 0x%p is free.\n",
787 new = (irnet_socket *) hashbin_get_next(irnet_server.list);
792 spin_unlock_bh(&irnet_server.spinlock);
794 DEXIT(IRDA_SERV_TRACE, " - new = 0x%p\n", new);
798 /*------------------------------------------------------------------*/
800 * Function irda_connect_socket (self)
802 * Connect an incoming connection to the socket
806 irnet_connect_socket(irnet_socket * server,
808 struct qos_info * qos,
810 __u8 max_header_size)
812 DENTER(IRDA_SERV_TRACE, "(server=0x%p, new=0x%p)\n",
815 /* Now attach up the new socket */
816 new->tsap = irttp_dup(server->tsap, new);
817 DABORT(new->tsap == NULL, -1, IRDA_SERV_ERROR, "dup failed!\n");
819 /* Set up all the relevant parameters on the new socket */
820 new->stsap_sel = new->tsap->stsap_sel;
821 new->dtsap_sel = new->tsap->dtsap_sel;
822 new->saddr = irttp_get_saddr(new->tsap);
823 new->daddr = irttp_get_daddr(new->tsap);
825 new->max_header_size = max_header_size;
826 new->max_sdu_size_tx = max_sdu_size;
827 new->max_data_size = max_sdu_size;
829 /* If we want to receive "stream sockets" */
830 if(max_sdu_size == 0)
831 new->max_data_size = irttp_get_max_seg_size(new->tsap);
832 #endif /* STREAM_COMPAT */
834 /* Clean up the original one to keep it in listen state */
835 irttp_listen(server->tsap);
837 /* Send a connection response on the new socket */
838 irttp_connect_response(new->tsap, new->max_sdu_size_rx, NULL);
840 /* Allow PPP to send its junk over the new socket... */
841 set_bit(0, &new->ttp_open);
843 /* Not connecting anymore, and clean up last possible remains
844 * of connection attempts on the socket */
845 clear_bit(0, &new->ttp_connect);
848 iriap_close(new->iriap);
851 if(new->discoveries != NULL)
853 kfree(new->discoveries);
854 new->discoveries = NULL;
857 #ifdef CONNECT_INDIC_KICK
858 /* As currently we don't block packets in ppp_irnet_send() while passive,
859 * this is not really needed...
860 * Also, not doing it give IrDA a chance to finish the setup properly
861 * before being swamped with packets... */
862 ppp_output_wakeup(&new->chan);
863 #endif /* CONNECT_INDIC_KICK */
865 /* Notify the control channel */
866 irnet_post_event(new, IRNET_CONNECT_FROM,
867 new->saddr, new->daddr, server->rname, 0);
869 DEXIT(IRDA_SERV_TRACE, "\n");
873 /*------------------------------------------------------------------*/
875 * Function irda_disconnect_server (self)
877 * Cleanup the server socket when the incoming connection abort
881 irnet_disconnect_server(irnet_socket * self,
884 DENTER(IRDA_SERV_TRACE, "(self=0x%p)\n", self);
886 /* Put the received packet in the black hole */
889 #ifdef FAIL_SEND_DISCONNECT
890 /* Tell the other party we don't want to be connected */
891 /* Hum... Is it the right thing to do ? And do we need to send
892 * a connect response before ? It looks ok without this... */
893 irttp_disconnect_request(self->tsap, NULL, P_NORMAL);
894 #endif /* FAIL_SEND_DISCONNECT */
896 /* Notify the control channel (see irnet_find_socket()) */
897 irnet_post_event(NULL, IRNET_REQUEST_FROM,
898 self->saddr, self->daddr, self->rname, 0);
900 /* Clean up the server to keep it in listen state */
901 irttp_listen(self->tsap);
903 DEXIT(IRDA_SERV_TRACE, "\n");
907 /*------------------------------------------------------------------*/
909 * Function irda_setup_server (self)
911 * Create a IrTTP server and set it up...
913 * Register the IrLAN hint bit, create a IrTTP instance for us,
914 * set all the IrTTP callbacks and create an IrIAS entry...
917 irnet_setup_server(void)
921 DENTER(IRDA_SERV_TRACE, "()\n");
923 /* Initialise the regular socket part of the server */
924 irda_irnet_create(&irnet_server.s);
926 /* Open a local TSAP (an IrTTP instance) for the server */
927 irnet_open_tsap(&irnet_server.s);
930 irnet_server.s.ppp_open = 0;
931 irnet_server.s.chan.private = NULL;
932 irnet_server.s.file = NULL;
934 /* Get the hint bit corresponding to IrLAN */
935 /* Note : we overload the IrLAN hint bit. As it is only a "hint", and as
936 * we provide roughly the same functionality as IrLAN, this is ok.
937 * In fact, the situation is similar as JetSend overloading the Obex hint
939 hints = irlmp_service_to_hint(S_LAN);
941 #ifdef ADVERTISE_HINT
942 /* Register with IrLMP as a service (advertise our hint bit) */
943 irnet_server.skey = irlmp_register_service(hints);
944 #endif /* ADVERTISE_HINT */
946 /* Register with LM-IAS (so that people can connect to us) */
947 irnet_server.ias_obj = irias_new_object(IRNET_SERVICE_NAME, jiffies);
948 irias_add_integer_attrib(irnet_server.ias_obj, IRNET_IAS_VALUE,
949 irnet_server.s.stsap_sel, IAS_KERNEL_ATTR);
950 irias_insert_object(irnet_server.ias_obj);
952 #ifdef DISCOVERY_EVENTS
953 /* Tell IrLMP we want to be notified of newly discovered nodes */
954 irlmp_update_client(irnet_server.s.ckey, hints,
955 irnet_discovery_indication, irnet_expiry_indication,
956 (void *) &irnet_server.s);
959 DEXIT(IRDA_SERV_TRACE, " - self=0x%p\n", &irnet_server.s);
963 /*------------------------------------------------------------------*/
965 * Function irda_destroy_server (self)
967 * Destroy the IrTTP server...
969 * Reverse of the previous function...
972 irnet_destroy_server(void)
974 DENTER(IRDA_SERV_TRACE, "()\n");
976 #ifdef ADVERTISE_HINT
977 /* Unregister with IrLMP */
978 irlmp_unregister_service(irnet_server.skey);
979 #endif /* ADVERTISE_HINT */
981 /* Unregister with LM-IAS */
982 if(irnet_server.ias_obj)
983 irias_delete_object(irnet_server.ias_obj);
985 /* Cleanup the socket part */
986 irda_irnet_destroy(&irnet_server.s);
988 DEXIT(IRDA_SERV_TRACE, "\n");
993 /************************ IRDA-TTP CALLBACKS ************************/
995 * When we create a IrTTP instance, we pass to it a set of callbacks
996 * that IrTTP will call in case of various events.
997 * We take care of those events here.
1000 /*------------------------------------------------------------------*/
1002 * Function irnet_data_indication (instance, sap, skb)
1004 * Received some data from TinyTP. Just queue it on the receive queue
1008 irnet_data_indication(void * instance,
1010 struct sk_buff *skb)
1012 irnet_socket * ap = (irnet_socket *) instance;
1016 DENTER(IRDA_TCB_TRACE, "(self/ap=0x%p, skb=0x%p)\n",
1018 DASSERT(skb != NULL, 0, IRDA_CB_ERROR, "skb is NULL !!!\n");
1020 /* Check is ppp is ready to receive our packet */
1023 DERROR(IRDA_CB_ERROR, "PPP not ready, dropping packet...\n");
1024 /* When we return error, TTP will need to requeue the skb and
1025 * will stop the sender. IrTTP will stall until we send it a
1026 * flow control request... */
1030 /* strip address/control field if present */
1032 if((p[0] == PPP_ALLSTATIONS) && (p[1] == PPP_UI))
1034 /* chop off address/control */
1037 p = skb_pull(skb, 2);
1040 /* decompress protocol field if compressed */
1043 /* protocol is compressed */
1044 skb_push(skb, 1)[0] = 0;
1050 /* pass to generic ppp layer */
1051 /* Note : how do I know if ppp can accept or not the packet ? This is
1052 * essential if I want to manage flow control smoothly... */
1053 ppp_input(&ap->chan, skb);
1055 DEXIT(IRDA_TCB_TRACE, "\n");
1059 DERROR(IRDA_CB_ERROR, "Packet too small, dropping...\n");
1061 ppp_input_error(&ap->chan, code);
1062 return 0; /* Don't return an error code, only for flow control... */
1065 /*------------------------------------------------------------------*/
1067 * Function irnet_disconnect_indication (instance, sap, reason, skb)
1069 * Connection has been closed. Chech reason to find out why
1071 * Note : there are many cases where we come here :
1072 * o attempted to connect, timeout
1073 * o connected, link is broken, LAP has timeout
1074 * o connected, other side close the link
1075 * o connection request on the server not handled
1078 irnet_disconnect_indication(void * instance,
1081 struct sk_buff *skb)
1083 irnet_socket * self = (irnet_socket *) instance;
1087 DENTER(IRDA_TCB_TRACE, "(self=0x%p)\n", self);
1088 DASSERT(self != NULL, , IRDA_CB_ERROR, "Self is NULL !!!\n");
1090 /* Don't care about it, but let's not leak it */
1094 /* Prevent higher layer from accessing IrTTP */
1095 test_open = test_and_clear_bit(0, &self->ttp_open);
1096 /* Not connecting anymore...
1097 * (note : TSAP is open, so IAP callbacks are no longer pending...) */
1098 test_connect = test_and_clear_bit(0, &self->ttp_connect);
1100 /* If both self->ttp_open and self->ttp_connect are NULL, it mean that we
1101 * have a race condition with irda_irnet_destroy() or
1102 * irnet_connect_indication(), so don't mess up tsap...
1104 if(!(test_open || test_connect))
1106 DERROR(IRDA_CB_ERROR, "Race condition detected...\n");
1110 /* If we were active, notify the control channel */
1112 irnet_post_event(self, IRNET_DISCONNECT_FROM,
1113 self->saddr, self->daddr, self->rname, 0);
1115 /* If we were trying to connect, notify the control channel */
1116 if((self->tsap) && (self != &irnet_server.s))
1117 irnet_post_event(self, IRNET_NOANSWER_FROM,
1118 self->saddr, self->daddr, self->rname, 0);
1120 /* Close our IrTTP connection, cleanup tsap */
1121 if((self->tsap) && (self != &irnet_server.s))
1123 DEBUG(IRDA_CB_INFO, "Closing our TTP connection.\n");
1124 irttp_close_tsap(self->tsap);
1127 /* Cleanup the socket in case we want to reconnect in ppp_output_wakeup() */
1128 self->stsap_sel = 0;
1129 self->daddr = DEV_ADDR_ANY;
1130 self->tx_flow = FLOW_START;
1132 /* Deal with the ppp instance if it's still alive */
1137 #ifdef MISSING_PPP_API
1138 /* ppp_unregister_channel() wants a user context, which we
1139 * are guaranteed to NOT have here. What are we supposed
1140 * to do here ? Jean II */
1141 /* If we were connected, cleanup & close the PPP channel,
1142 * which will kill pppd (hangup) and the rest */
1143 ppp_unregister_channel(&self->chan);
1149 /* If we were trying to connect, flush (drain) ppp_generic
1150 * Tx queue (most often we have blocked it), which will
1151 * trigger an other attempt to connect. If we are passive,
1152 * this will empty the Tx queue after last try. */
1153 ppp_output_wakeup(&self->chan);
1157 DEXIT(IRDA_TCB_TRACE, "\n");
1160 /*------------------------------------------------------------------*/
1162 * Function irnet_connect_confirm (instance, sap, qos, max_sdu_size, skb)
1164 * Connections has been confirmed by the remote device
1168 irnet_connect_confirm(void * instance,
1170 struct qos_info *qos,
1172 __u8 max_header_size,
1173 struct sk_buff *skb)
1175 irnet_socket * self = (irnet_socket *) instance;
1177 DENTER(IRDA_TCB_TRACE, "(self=0x%p)\n", self);
1179 /* Check if socket is closing down (via irda_irnet_destroy()) */
1180 if(! test_bit(0, &self->ttp_connect))
1182 DERROR(IRDA_CB_ERROR, "Socket no longer connecting. Ouch !\n");
1186 /* How much header space do we need to reserve */
1187 self->max_header_size = max_header_size;
1189 /* IrTTP max SDU size in transmit direction */
1190 self->max_sdu_size_tx = max_sdu_size;
1191 self->max_data_size = max_sdu_size;
1192 #ifdef STREAM_COMPAT
1193 if(max_sdu_size == 0)
1194 self->max_data_size = irttp_get_max_seg_size(self->tsap);
1195 #endif /* STREAM_COMPAT */
1197 /* At this point, IrLMP has assigned our source address */
1198 self->saddr = irttp_get_saddr(self->tsap);
1200 /* Allow higher layer to access IrTTP */
1201 set_bit(0, &self->ttp_open);
1202 clear_bit(0, &self->ttp_connect); /* Not racy, IrDA traffic is serial */
1203 /* Give a kick in the ass of ppp_generic so that he sends us some data */
1204 ppp_output_wakeup(&self->chan);
1206 /* Check size of received packet */
1209 #ifdef PASS_CONNECT_PACKETS
1210 DEBUG(IRDA_CB_INFO, "Passing connect packet to PPP.\n");
1211 /* Try to pass it to PPP */
1212 irnet_data_indication(instance, sap, skb);
1213 #else /* PASS_CONNECT_PACKETS */
1214 DERROR(IRDA_CB_ERROR, "Dropping non empty packet.\n");
1215 kfree_skb(skb); /* Note : will be optimised with other kfree... */
1216 #endif /* PASS_CONNECT_PACKETS */
1221 /* Notify the control channel */
1222 irnet_post_event(self, IRNET_CONNECT_TO,
1223 self->saddr, self->daddr, self->rname, 0);
1225 DEXIT(IRDA_TCB_TRACE, "\n");
1228 /*------------------------------------------------------------------*/
1230 * Function irnet_flow_indication (instance, sap, flow)
1232 * Used by TinyTP to tell us if it can accept more data or not
1236 irnet_flow_indication(void * instance,
1240 irnet_socket * self = (irnet_socket *) instance;
1241 LOCAL_FLOW oldflow = self->tx_flow;
1243 DENTER(IRDA_TCB_TRACE, "(self=0x%p, flow=%d)\n", self, flow);
1245 /* Update our state */
1246 self->tx_flow = flow;
1248 /* Check what IrTTP want us to do... */
1252 DEBUG(IRDA_CB_INFO, "IrTTP wants us to start again\n");
1253 /* Check if we really need to wake up PPP */
1254 if(oldflow == FLOW_STOP)
1255 ppp_output_wakeup(&self->chan);
1257 DEBUG(IRDA_CB_INFO, "But we were already transmitting !!!\n");
1260 DEBUG(IRDA_CB_INFO, "IrTTP wants us to slow down\n");
1263 DEBUG(IRDA_CB_INFO, "Unknown flow command!\n");
1267 DEXIT(IRDA_TCB_TRACE, "\n");
1270 /*------------------------------------------------------------------*/
1272 * Function irnet_status_indication (instance, sap, reason, skb)
1274 * Link (IrLAP) status report.
1278 irnet_status_indication(void * instance,
1282 irnet_socket * self = (irnet_socket *) instance;
1284 DENTER(IRDA_TCB_TRACE, "(self=0x%p)\n", self);
1285 DASSERT(self != NULL, , IRDA_CB_ERROR, "Self is NULL !!!\n");
1287 /* We can only get this event if we are connected */
1290 case STATUS_NO_ACTIVITY:
1291 irnet_post_event(self, IRNET_BLOCKED_LINK,
1292 self->saddr, self->daddr, self->rname, 0);
1295 DEBUG(IRDA_CB_INFO, "Unknown status...\n");
1298 DEXIT(IRDA_TCB_TRACE, "\n");
1301 /*------------------------------------------------------------------*/
1303 * Function irnet_connect_indication(instance, sap, qos, max_sdu_size, userdata)
1305 * Incoming connection
1307 * In theory, this function is called only on the server socket.
1308 * Some other node is attempting to connect to the IrNET service, and has
1309 * sent a connection request on our server socket.
1310 * We just redirect the connection to the relevant IrNET socket.
1312 * Note : we also make sure that between 2 irnet nodes, there can
1313 * exist only one irnet connection.
1316 irnet_connect_indication(void * instance,
1318 struct qos_info *qos,
1320 __u8 max_header_size,
1321 struct sk_buff *skb)
1323 irnet_socket * server = &irnet_server.s;
1324 irnet_socket * new = (irnet_socket *) NULL;
1326 DENTER(IRDA_TCB_TRACE, "(server=0x%p)\n", server);
1327 DASSERT(instance == &irnet_server, , IRDA_CB_ERROR,
1328 "Invalid instance (0x%p) !!!\n", instance);
1329 DASSERT(sap == irnet_server.s.tsap, , IRDA_CB_ERROR, "Invalid sap !!!\n");
1331 /* Try to find the most appropriate IrNET socket */
1332 new = irnet_find_socket(server);
1334 /* After all this hard work, do we have an socket ? */
1335 if(new == (irnet_socket *) NULL)
1337 DEXIT(IRDA_CB_INFO, ": No socket waiting for this connection.\n");
1338 irnet_disconnect_server(server, skb);
1342 /* Is the socket already busy ? */
1343 if(test_bit(0, &new->ttp_open))
1345 DEXIT(IRDA_CB_INFO, ": Socket already connected.\n");
1346 irnet_disconnect_server(server, skb);
1350 /* The following code is a bit tricky, so need comments ;-)
1352 /* If ttp_connect is set, the socket is trying to connect to the other
1353 * end and may have sent a IrTTP connection request and is waiting for
1354 * a connection response (that may never come).
1355 * Now, the pain is that the socket may have opened a tsap and is
1356 * waiting on it, while the other end is trying to connect to it on
1358 * Because IrNET can be peer to peer, we need to workaround this.
1359 * Furthermore, the way the irnetd script is implemented, the
1360 * target will create a second IrNET connection back to the
1361 * originator and expect the originator to bind this new connection
1362 * to the original PPPD instance.
1363 * And of course, if we don't use irnetd, we can have a race when
1364 * both side try to connect simultaneously, which could leave both
1365 * connections half closed (yuck).
1367 * 1) The "originator" must accept the new connection and get rid
1368 * of the old one so that irnetd works
1369 * 2) One side must deny the new connection to avoid races,
1370 * but both side must agree on which side it is...
1371 * Most often, the originator is primary at the LAP layer.
1374 /* Now, let's look at the way I wrote the test...
1375 * We need to clear up the ttp_connect flag atomically to prevent
1376 * irnet_disconnect_indication() to mess up the tsap we are going to close.
1377 * We want to clear the ttp_connect flag only if we close the tsap,
1378 * otherwise we will never close it, so we need to check for primary
1379 * *before* doing the test on the flag.
1380 * And of course, ALLOW_SIMULT_CONNECT can disable this entirely...
1384 /* Socket already connecting ? On primary ? */
1386 #ifdef ALLOW_SIMULT_CONNECT
1387 || ((irttp_is_primary(server->tsap) == 1) /* primary */
1388 && (test_and_clear_bit(0, &new->ttp_connect)))
1389 #endif /* ALLOW_SIMULT_CONNECT */
1392 DERROR(IRDA_CB_ERROR, "Socket already connecting, but going to reuse it !\n");
1394 /* Cleanup the old TSAP if necessary - IrIAP will be cleaned up later */
1395 if(new->tsap != NULL)
1397 /* Close the old connection the new socket was attempting,
1398 * so that we can hook it up to the new connection.
1399 * It's now safe to do it... */
1400 irttp_close_tsap(new->tsap);
1407 * 1) socket was not connecting or connected : ttp_connect should be 0.
1408 * 2) we don't want to connect the socket because we are secondary or
1409 * ALLOW_SIMULT_CONNECT is undefined. ttp_connect should be 1.
1410 * 3) we are half way in irnet_disconnect_indication(), and it's a
1411 * nice race condition... Fortunately, we can detect that by checking
1412 * if tsap is still alive. On the other hand, we can't be in
1413 * irda_irnet_destroy() otherwise we would not have found this
1414 * socket in the hashbin.
1416 if((test_bit(0, &new->ttp_connect)) || (new->tsap != NULL))
1418 /* Don't mess this socket, somebody else in in charge... */
1419 DERROR(IRDA_CB_ERROR, "Race condition detected, socket in use, abort connect...\n");
1420 irnet_disconnect_server(server, skb);
1425 /* So : at this point, we have a socket, and it is idle. Good ! */
1426 irnet_connect_socket(server, new, qos, max_sdu_size, max_header_size);
1428 /* Check size of received packet */
1431 #ifdef PASS_CONNECT_PACKETS
1432 DEBUG(IRDA_CB_INFO, "Passing connect packet to PPP.\n");
1433 /* Try to pass it to PPP */
1434 irnet_data_indication(new, new->tsap, skb);
1435 #else /* PASS_CONNECT_PACKETS */
1436 DERROR(IRDA_CB_ERROR, "Dropping non empty packet.\n");
1437 kfree_skb(skb); /* Note : will be optimised with other kfree... */
1438 #endif /* PASS_CONNECT_PACKETS */
1443 DEXIT(IRDA_TCB_TRACE, "\n");
1447 /********************** IRDA-IAS/LMP CALLBACKS **********************/
1449 * These are the callbacks called by other layers of the IrDA stack,
1450 * mainly LMP for discovery and IAS for name queries.
1453 /*------------------------------------------------------------------*/
1455 * Function irnet_getvalue_confirm (result, obj_id, value, priv)
1457 * Got answer from remote LM-IAS, just connect
1459 * This is the reply to a IAS query we were doing to find the TSAP of
1460 * the device we want to connect to.
1461 * If we have found a valid TSAP, just initiate the TTP connection
1465 irnet_getvalue_confirm(int result,
1467 struct ias_value *value,
1470 irnet_socket * self = (irnet_socket *) priv;
1472 DENTER(IRDA_OCB_TRACE, "(self=0x%p)\n", self);
1473 DASSERT(self != NULL, , IRDA_OCB_ERROR, "Self is NULL !!!\n");
1475 /* Check if already connected (via irnet_connect_socket())
1476 * or socket is closing down (via irda_irnet_destroy()) */
1477 if(! test_bit(0, &self->ttp_connect))
1479 DERROR(IRDA_OCB_ERROR, "Socket no longer connecting. Ouch !\n");
1483 /* We probably don't need to make any more queries */
1484 iriap_close(self->iriap);
1487 /* Post process the IAS reply */
1488 self->dtsap_sel = irnet_ias_to_tsap(self, result, value);
1490 /* If error, just go out */
1493 clear_bit(0, &self->ttp_connect);
1494 DERROR(IRDA_OCB_ERROR, "IAS connect failed ! (0x%X)\n", self->errno);
1498 DEBUG(IRDA_OCB_INFO, "daddr = %08x, lsap = %d, starting IrTTP connection\n",
1499 self->daddr, self->dtsap_sel);
1501 /* Start up TTP - non blocking */
1502 irnet_connect_tsap(self);
1504 DEXIT(IRDA_OCB_TRACE, "\n");
1507 /*------------------------------------------------------------------*/
1509 * Function irnet_discovervalue_confirm (result, obj_id, value, priv)
1511 * Handle the TSAP discovery procedure state machine.
1512 * Got answer from remote LM-IAS, try next device
1514 * We are doing a TSAP discovery procedure, and we got an answer to
1515 * a IAS query we were doing to find the TSAP on one of the address
1516 * in the discovery log.
1518 * If we have found a valid TSAP for the first time, save it. If it's
1519 * not the first time we found one, complain.
1521 * If we have more addresses in the log, just initiate a new query.
1522 * Note that those query may fail (see irnet_discover_daddr_and_lsap_sel())
1524 * Otherwise, wrap up the procedure (cleanup), check if we have found
1525 * any device and connect to it.
1528 irnet_discovervalue_confirm(int result,
1530 struct ias_value *value,
1533 irnet_socket * self = (irnet_socket *) priv;
1534 __u8 dtsap_sel; /* TSAP we are looking for */
1536 DENTER(IRDA_OCB_TRACE, "(self=0x%p)\n", self);
1537 DASSERT(self != NULL, , IRDA_OCB_ERROR, "Self is NULL !!!\n");
1539 /* Check if already connected (via irnet_connect_socket())
1540 * or socket is closing down (via irda_irnet_destroy()) */
1541 if(! test_bit(0, &self->ttp_connect))
1543 DERROR(IRDA_OCB_ERROR, "Socket no longer connecting. Ouch !\n");
1547 /* Post process the IAS reply */
1548 dtsap_sel = irnet_ias_to_tsap(self, result, value);
1550 /* Have we got something ? */
1551 if(self->errno == 0)
1553 /* We found the requested service */
1554 if(self->daddr != DEV_ADDR_ANY)
1556 DERROR(IRDA_OCB_ERROR, "More than one device in range supports IrNET...\n");
1560 /* First time we found that one, save it ! */
1561 self->daddr = self->discoveries[self->disco_index].daddr;
1562 self->dtsap_sel = dtsap_sel;
1567 if((self->errno == -EADDRNOTAVAIL) || (self->errno == 0))
1571 /* Search the next node */
1572 ret = irnet_discover_next_daddr(self);
1575 /* In this case, the above request was non-blocking.
1576 * We will return here after a while... */
1579 /* In this case, we have processed the last discovery item */
1582 /* No more queries to be done (failure or last one) */
1584 /* We probably don't need to make any more queries */
1585 iriap_close(self->iriap);
1588 /* No more items : remove the log and signal termination */
1589 DEBUG(IRDA_OCB_INFO, "Cleaning up log (0x%p)\n",
1591 if(self->discoveries != NULL)
1593 /* Cleanup our copy of the discovery log */
1594 kfree(self->discoveries);
1595 self->discoveries = NULL;
1597 self->disco_number = -1;
1599 /* Check out what we found */
1600 if(self->daddr == DEV_ADDR_ANY)
1602 self->daddr = DEV_ADDR_ANY;
1603 clear_bit(0, &self->ttp_connect);
1604 DEXIT(IRDA_OCB_TRACE, ": cannot discover IrNET in any device !!!\n");
1608 /* We have a valid address - just connect */
1610 DEBUG(IRDA_OCB_INFO, "daddr = %08x, lsap = %d, starting IrTTP connection\n",
1611 self->daddr, self->dtsap_sel);
1613 /* Start up TTP - non blocking */
1614 irnet_connect_tsap(self);
1616 DEXIT(IRDA_OCB_TRACE, "\n");
1619 #ifdef DISCOVERY_EVENTS
1620 /*------------------------------------------------------------------*/
1622 * Function irnet_discovery_indication (discovery)
1624 * Got a discovery indication from IrLMP, post an event
1626 * Note : IrLMP take care of matching the hint mask for us, and also
1627 * check if it is a "new" node for us...
1629 * As IrLMP filter on the IrLAN hint bit, we get both IrLAN and IrNET
1630 * nodes, so it's only at connection time that we will know if the
1631 * node support IrNET, IrLAN or both. The other solution is to check
1632 * in IAS the PNP ids and service name.
1633 * Note : even if a node support IrNET (or IrLAN), it's no guarantee
1634 * that we will be able to connect to it, the node might already be
1637 * One last thing : in some case, this function will trigger duplicate
1638 * discovery events. On the other hand, we should catch all
1639 * discoveries properly (i.e. not miss one). Filtering duplicate here
1640 * is to messy, so we leave that to user space...
1643 irnet_discovery_indication(discinfo_t * discovery,
1644 DISCOVERY_MODE mode,
1647 irnet_socket * self = &irnet_server.s;
1649 DENTER(IRDA_OCB_TRACE, "(self=0x%p)\n", self);
1650 DASSERT(priv == &irnet_server, , IRDA_OCB_ERROR,
1651 "Invalid instance (0x%p) !!!\n", priv);
1653 DEBUG(IRDA_OCB_INFO, "Discovered new IrNET/IrLAN node %s...\n",
1656 /* Notify the control channel */
1657 irnet_post_event(NULL, IRNET_DISCOVER,
1658 discovery->saddr, discovery->daddr, discovery->info,
1659 u16ho(discovery->hints));
1661 DEXIT(IRDA_OCB_TRACE, "\n");
1664 /*------------------------------------------------------------------*/
1666 * Function irnet_expiry_indication (expiry)
1668 * Got a expiry indication from IrLMP, post an event
1670 * Note : IrLMP take care of matching the hint mask for us, we only
1671 * check if it is a "new" node...
1674 irnet_expiry_indication(discinfo_t * expiry,
1675 DISCOVERY_MODE mode,
1678 irnet_socket * self = &irnet_server.s;
1680 DENTER(IRDA_OCB_TRACE, "(self=0x%p)\n", self);
1681 DASSERT(priv == &irnet_server, , IRDA_OCB_ERROR,
1682 "Invalid instance (0x%p) !!!\n", priv);
1684 DEBUG(IRDA_OCB_INFO, "IrNET/IrLAN node %s expired...\n",
1687 /* Notify the control channel */
1688 irnet_post_event(NULL, IRNET_EXPIRE,
1689 expiry->saddr, expiry->daddr, expiry->info,
1690 u16ho(expiry->hints));
1692 DEXIT(IRDA_OCB_TRACE, "\n");
1694 #endif /* DISCOVERY_EVENTS */
1697 /*********************** PROC ENTRY CALLBACKS ***********************/
1699 * We create a instance in the /proc filesystem, and here we take care
1703 #ifdef CONFIG_PROC_FS
1704 /*------------------------------------------------------------------*/
1706 * Function irnet_proc_read (buf, start, offset, len, unused)
1708 * Give some info to the /proc file system
1711 irnet_proc_read(char * buf,
1716 irnet_socket * self;
1722 /* Get the IrNET server information... */
1723 len += sprintf(buf+len, "IrNET server - ");
1724 len += sprintf(buf+len, "IrDA state: %s, ",
1725 (irnet_server.running ? "running" : "dead"));
1726 len += sprintf(buf+len, "stsap_sel: %02x, ", irnet_server.s.stsap_sel);
1727 len += sprintf(buf+len, "dtsap_sel: %02x\n", irnet_server.s.dtsap_sel);
1729 /* Do we need to continue ? */
1730 if(!irnet_server.running)
1733 /* Protect access to the instance list */
1734 spin_lock_bh(&irnet_server.spinlock);
1736 /* Get the sockets one by one... */
1737 self = (irnet_socket *) hashbin_get_first(irnet_server.list);
1740 /* Start printing info about the socket. */
1741 len += sprintf(buf+len, "\nIrNET socket %d - ", i++);
1743 /* First, get the requested configuration */
1744 len += sprintf(buf+len, "Requested IrDA name: \"%s\", ", self->rname);
1745 len += sprintf(buf+len, "daddr: %08x, ", self->rdaddr);
1746 len += sprintf(buf+len, "saddr: %08x\n", self->rsaddr);
1748 /* Second, get all the PPP info */
1749 len += sprintf(buf+len, " PPP state: %s",
1750 (self->ppp_open ? "registered" : "unregistered"));
1753 len += sprintf(buf+len, ", unit: ppp%d",
1754 ppp_unit_number(&self->chan));
1755 len += sprintf(buf+len, ", channel: %d",
1756 ppp_channel_index(&self->chan));
1757 len += sprintf(buf+len, ", mru: %d",
1759 /* Maybe add self->flags ? Later... */
1762 /* Then, get all the IrDA specific info... */
1764 state = "connected";
1766 if(self->tsap != NULL)
1767 state = "connecting";
1769 if(self->iriap != NULL)
1770 state = "searching";
1772 if(self->ttp_connect)
1776 len += sprintf(buf+len, "\n IrDA state: %s, ", state);
1777 len += sprintf(buf+len, "daddr: %08x, ", self->daddr);
1778 len += sprintf(buf+len, "stsap_sel: %02x, ", self->stsap_sel);
1779 len += sprintf(buf+len, "dtsap_sel: %02x\n", self->dtsap_sel);
1781 /* Next socket, please... */
1782 self = (irnet_socket *) hashbin_get_next(irnet_server.list);
1786 spin_unlock_bh(&irnet_server.spinlock);
1790 #endif /* PROC_FS */
1793 /********************** CONFIGURATION/CLEANUP **********************/
1795 * Initialisation and teardown of the IrDA part, called at module
1796 * insertion and removal...
1799 /*------------------------------------------------------------------*/
1801 * Prepare the IrNET layer for operation...
1804 irda_irnet_init(void)
1808 DENTER(MODULE_TRACE, "()\n");
1810 /* Pure paranoia - should be redundant */
1811 memset(&irnet_server, 0, sizeof(struct irnet_root));
1813 /* Setup start of irnet instance list */
1814 irnet_server.list = hashbin_new(HB_NOLOCK);
1815 DABORT(irnet_server.list == NULL, -ENOMEM,
1816 MODULE_ERROR, "Can't allocate hashbin!\n");
1817 /* Init spinlock for instance list */
1818 spin_lock_init(&irnet_server.spinlock);
1820 /* Initialise control channel */
1821 init_waitqueue_head(&irnet_events.rwait);
1822 irnet_events.index = 0;
1823 /* Init spinlock for event logging */
1824 spin_lock_init(&irnet_events.spinlock);
1826 #ifdef CONFIG_PROC_FS
1827 /* Add a /proc file for irnet infos */
1828 create_proc_info_entry("irnet", 0, proc_irda, irnet_proc_read);
1829 #endif /* CONFIG_PROC_FS */
1831 /* Setup the IrNET server */
1832 err = irnet_setup_server();
1835 /* We are no longer functional... */
1836 irnet_server.running = 1;
1838 DEXIT(MODULE_TRACE, "\n");
1842 /*------------------------------------------------------------------*/
1844 * Cleanup at exit...
1847 irda_irnet_cleanup(void)
1849 DENTER(MODULE_TRACE, "()\n");
1851 /* We are no longer there... */
1852 irnet_server.running = 0;
1854 #ifdef CONFIG_PROC_FS
1855 /* Remove our /proc file */
1856 remove_proc_entry("irnet", proc_irda);
1857 #endif /* CONFIG_PROC_FS */
1859 /* Remove our IrNET server from existence */
1860 irnet_destroy_server();
1862 /* Remove all instances of IrNET socket still present */
1863 hashbin_delete(irnet_server.list, (FREE_FUNC) irda_irnet_destroy);
1865 DEXIT(MODULE_TRACE, "\n");