GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / net / irda / irnet / irnet_irda.c
bloba76d232e065d54134a9768d275567c2287357b1e
1 /*
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.
9 */
11 #include "irnet_irda.h" /* Private header */
12 #include <linux/sched.h>
13 #include <linux/seq_file.h>
14 #include <linux/slab.h>
15 #include <asm/unaligned.h>
18 * PPP disconnect work: we need to make sure we're in
19 * process context when calling ppp_unregister_channel().
21 static void irnet_ppp_disconnect(struct work_struct *work)
23 irnet_socket * self =
24 container_of(work, irnet_socket, disconnect_work);
26 if (self == NULL)
27 return;
29 * If we were connected, cleanup & close the PPP
30 * channel, which will kill pppd (hangup) and the rest.
32 if (self->ppp_open && !self->ttp_open && !self->ttp_connect) {
33 ppp_unregister_channel(&self->chan);
34 self->ppp_open = 0;
38 /************************* CONTROL CHANNEL *************************/
40 * When ppp is not active, /dev/irnet act as a control channel.
41 * Writing allow to set up the IrDA destination of the IrNET channel,
42 * and any application may be read events happening on IrNET...
45 /*------------------------------------------------------------------*/
47 * Post an event to the control channel...
48 * Put the event in the log, and then wait all process blocked on read
49 * so they can read the log...
51 static void
52 irnet_post_event(irnet_socket * ap,
53 irnet_event event,
54 __u32 saddr,
55 __u32 daddr,
56 char * name,
57 __u16 hints)
59 int index; /* In the log */
61 DENTER(CTRL_TRACE, "(ap=0x%p, event=%d, daddr=%08x, name=``%s'')\n",
62 ap, event, daddr, name);
64 /* Protect this section via spinlock.
65 * Note : as we are the only event producer, we only need to exclude
66 * ourself when touching the log, which is nice and easy.
68 spin_lock_bh(&irnet_events.spinlock);
70 /* Copy the event in the log */
71 index = irnet_events.index;
72 irnet_events.log[index].event = event;
73 irnet_events.log[index].daddr = daddr;
74 irnet_events.log[index].saddr = saddr;
75 /* Try to copy IrDA nickname */
76 if(name)
77 strcpy(irnet_events.log[index].name, name);
78 else
79 irnet_events.log[index].name[0] = '\0';
80 /* Copy hints */
81 irnet_events.log[index].hints.word = hints;
82 /* Try to get ppp unit number */
83 if((ap != (irnet_socket *) NULL) && (ap->ppp_open))
84 irnet_events.log[index].unit = ppp_unit_number(&ap->chan);
85 else
86 irnet_events.log[index].unit = -1;
88 /* Increment the index
89 * Note that we increment the index only after the event is written,
90 * to make sure that the readers don't get garbage... */
91 irnet_events.index = (index + 1) % IRNET_MAX_EVENTS;
93 DEBUG(CTRL_INFO, "New event index is %d\n", irnet_events.index);
95 /* Spin lock end */
96 spin_unlock_bh(&irnet_events.spinlock);
98 /* Now : wake up everybody waiting for events... */
99 wake_up_interruptible_all(&irnet_events.rwait);
101 DEXIT(CTRL_TRACE, "\n");
104 /************************* IRDA SUBROUTINES *************************/
106 * These are a bunch of subroutines called from other functions
107 * down there, mostly common code or to improve readability...
109 * Note : we duplicate quite heavily some routines of af_irda.c,
110 * because our input structure (self) is quite different
111 * (struct irnet instead of struct irda_sock), which make sharing
112 * the same code impossible (at least, without templates).
115 /*------------------------------------------------------------------*/
117 * Function irda_open_tsap (self)
119 * Open local Transport Service Access Point (TSAP)
121 * Create a IrTTP instance for us and set all the IrTTP callbacks.
123 static inline int
124 irnet_open_tsap(irnet_socket * self)
126 notify_t notify; /* Callback structure */
128 DENTER(IRDA_SR_TRACE, "(self=0x%p)\n", self);
130 DABORT(self->tsap != NULL, -EBUSY, IRDA_SR_ERROR, "Already busy !\n");
132 /* Initialize IrTTP callbacks to be used by the IrDA stack */
133 irda_notify_init(&notify);
134 notify.connect_confirm = irnet_connect_confirm;
135 notify.connect_indication = irnet_connect_indication;
136 notify.disconnect_indication = irnet_disconnect_indication;
137 notify.data_indication = irnet_data_indication;
138 /*notify.udata_indication = NULL;*/
139 notify.flow_indication = irnet_flow_indication;
140 notify.status_indication = irnet_status_indication;
141 notify.instance = self;
142 strlcpy(notify.name, IRNET_NOTIFY_NAME, sizeof(notify.name));
144 /* Open an IrTTP instance */
145 self->tsap = irttp_open_tsap(LSAP_ANY, DEFAULT_INITIAL_CREDIT,
146 &notify);
147 DABORT(self->tsap == NULL, -ENOMEM,
148 IRDA_SR_ERROR, "Unable to allocate TSAP !\n");
150 /* Remember which TSAP selector we actually got */
151 self->stsap_sel = self->tsap->stsap_sel;
153 DEXIT(IRDA_SR_TRACE, " - tsap=0x%p, sel=0x%X\n",
154 self->tsap, self->stsap_sel);
155 return 0;
158 /*------------------------------------------------------------------*/
160 * Function irnet_ias_to_tsap (self, result, value)
162 * Examine an IAS object and extract TSAP
164 * We do an IAP query to find the TSAP associated with the IrNET service.
165 * When IrIAP pass us the result of the query, this function look at
166 * the return values to check for failures and extract the TSAP if
167 * possible.
168 * Also deallocate value
169 * The failure is in self->errno
170 * Return TSAP or -1
172 static inline __u8
173 irnet_ias_to_tsap(irnet_socket * self,
174 int result,
175 struct ias_value * value)
177 __u8 dtsap_sel = 0; /* TSAP we are looking for */
179 DENTER(IRDA_SR_TRACE, "(self=0x%p)\n", self);
181 /* By default, no error */
182 self->errno = 0;
184 /* Check if request succeeded */
185 switch(result)
187 /* Standard errors : service not available */
188 case IAS_CLASS_UNKNOWN:
189 case IAS_ATTRIB_UNKNOWN:
190 DEBUG(IRDA_SR_INFO, "IAS object doesn't exist ! (%d)\n", result);
191 self->errno = -EADDRNOTAVAIL;
192 break;
194 /* Other errors, most likely IrDA stack failure */
195 default :
196 DEBUG(IRDA_SR_INFO, "IAS query failed ! (%d)\n", result);
197 self->errno = -EHOSTUNREACH;
198 break;
200 /* Success : we got what we wanted */
201 case IAS_SUCCESS:
202 break;
205 /* Check what was returned to us */
206 if(value != NULL)
208 /* What type of argument have we got ? */
209 switch(value->type)
211 case IAS_INTEGER:
212 DEBUG(IRDA_SR_INFO, "result=%d\n", value->t.integer);
213 if(value->t.integer != -1)
214 /* Get the remote TSAP selector */
215 dtsap_sel = value->t.integer;
216 else
217 self->errno = -EADDRNOTAVAIL;
218 break;
219 default:
220 self->errno = -EADDRNOTAVAIL;
221 DERROR(IRDA_SR_ERROR, "bad type ! (0x%X)\n", value->type);
222 break;
225 /* Cleanup */
226 irias_delete_value(value);
228 else /* value == NULL */
230 /* Nothing returned to us - usually result != SUCCESS */
231 if(!(self->errno))
233 DERROR(IRDA_SR_ERROR,
234 "IrDA bug : result == SUCCESS && value == NULL\n");
235 self->errno = -EHOSTUNREACH;
238 DEXIT(IRDA_SR_TRACE, "\n");
240 /* Return the TSAP */
241 return(dtsap_sel);
244 /*------------------------------------------------------------------*/
246 * Function irnet_find_lsap_sel (self)
248 * Try to lookup LSAP selector in remote LM-IAS
250 * Basically, we start a IAP query, and then go to sleep. When the query
251 * return, irnet_getvalue_confirm will wake us up, and we can examine the
252 * result of the query...
253 * Note that in some case, the query fail even before we go to sleep,
254 * creating some races...
256 static inline int
257 irnet_find_lsap_sel(irnet_socket * self)
259 DENTER(IRDA_SR_TRACE, "(self=0x%p)\n", self);
261 /* This should not happen */
262 DABORT(self->iriap, -EBUSY, IRDA_SR_ERROR, "busy with a previous query.\n");
264 /* Create an IAP instance, will be closed in irnet_getvalue_confirm() */
265 self->iriap = iriap_open(LSAP_ANY, IAS_CLIENT, self,
266 irnet_getvalue_confirm);
268 /* Treat unexpected signals as disconnect */
269 self->errno = -EHOSTUNREACH;
271 /* Query remote LM-IAS */
272 iriap_getvaluebyclass_request(self->iriap, self->rsaddr, self->daddr,
273 IRNET_SERVICE_NAME, IRNET_IAS_VALUE);
275 /* The above request is non-blocking.
276 * After a while, IrDA will call us back in irnet_getvalue_confirm()
277 * We will then call irnet_ias_to_tsap() and finish the
278 * connection procedure */
280 DEXIT(IRDA_SR_TRACE, "\n");
281 return 0;
284 /*------------------------------------------------------------------*/
286 * Function irnet_connect_tsap (self)
288 * Initialise the TTP socket and initiate TTP connection
291 static inline int
292 irnet_connect_tsap(irnet_socket * self)
294 int err;
296 DENTER(IRDA_SR_TRACE, "(self=0x%p)\n", self);
298 /* Open a local TSAP (an IrTTP instance) */
299 err = irnet_open_tsap(self);
300 if(err != 0)
302 clear_bit(0, &self->ttp_connect);
303 DERROR(IRDA_SR_ERROR, "connect aborted!\n");
304 return(err);
307 /* Connect to remote device */
308 err = irttp_connect_request(self->tsap, self->dtsap_sel,
309 self->rsaddr, self->daddr, NULL,
310 self->max_sdu_size_rx, NULL);
311 if(err != 0)
313 clear_bit(0, &self->ttp_connect);
314 DERROR(IRDA_SR_ERROR, "connect aborted!\n");
315 return(err);
318 /* The above call is non-blocking.
319 * After a while, the IrDA stack will either call us back in
320 * irnet_connect_confirm() or irnet_disconnect_indication()
321 * See you there ;-) */
323 DEXIT(IRDA_SR_TRACE, "\n");
324 return(err);
327 /*------------------------------------------------------------------*/
329 * Function irnet_discover_next_daddr (self)
331 * Query the IrNET TSAP of the next device in the log.
333 * Used in the TSAP discovery procedure.
335 static inline int
336 irnet_discover_next_daddr(irnet_socket * self)
338 /* Close the last instance of IrIAP, and open a new one.
339 * We can't reuse the IrIAP instance in the IrIAP callback */
340 if(self->iriap)
342 iriap_close(self->iriap);
343 self->iriap = NULL;
345 /* Create a new IAP instance */
346 self->iriap = iriap_open(LSAP_ANY, IAS_CLIENT, self,
347 irnet_discovervalue_confirm);
348 if(self->iriap == NULL)
349 return -ENOMEM;
351 /* Next discovery - before the call to avoid races */
352 self->disco_index++;
354 /* Check if we have one more address to try */
355 if(self->disco_index < self->disco_number)
357 /* Query remote LM-IAS */
358 iriap_getvaluebyclass_request(self->iriap,
359 self->discoveries[self->disco_index].saddr,
360 self->discoveries[self->disco_index].daddr,
361 IRNET_SERVICE_NAME, IRNET_IAS_VALUE);
362 /* The above request is non-blocking.
363 * After a while, IrDA will call us back in irnet_discovervalue_confirm()
364 * We will then call irnet_ias_to_tsap() and come back here again... */
365 return(0);
367 else
368 return(1);
371 /*------------------------------------------------------------------*/
373 * Function irnet_discover_daddr_and_lsap_sel (self)
375 * This try to find a device with the requested service.
377 * Initiate a TSAP discovery procedure.
378 * It basically look into the discovery log. For each address in the list,
379 * it queries the LM-IAS of the device to find if this device offer
380 * the requested service.
381 * If there is more than one node supporting the service, we complain
382 * to the user (it should move devices around).
383 * If we find one node which have the requested TSAP, we connect to it.
385 * This function just start the whole procedure. It request the discovery
386 * log and submit the first IAS query.
387 * The bulk of the job is handled in irnet_discovervalue_confirm()
389 * Note : this procedure fails if there is more than one device in range
390 * on the same dongle, because IrLMP doesn't disconnect the LAP when the
391 * last LSAP is closed. Moreover, we would need to wait the LAP
392 * disconnection...
394 static inline int
395 irnet_discover_daddr_and_lsap_sel(irnet_socket * self)
397 int ret;
399 DENTER(IRDA_SR_TRACE, "(self=0x%p)\n", self);
401 /* Ask lmp for the current discovery log */
402 self->discoveries = irlmp_get_discoveries(&self->disco_number, self->mask,
403 DISCOVERY_DEFAULT_SLOTS);
405 /* Check if the we got some results */
406 if(self->discoveries == NULL)
408 self->disco_number = -1;
409 clear_bit(0, &self->ttp_connect);
410 DRETURN(-ENETUNREACH, IRDA_SR_INFO, "No Cachelog...\n");
412 DEBUG(IRDA_SR_INFO, "Got the log (0x%p), size is %d\n",
413 self->discoveries, self->disco_number);
415 /* Start with the first discovery */
416 self->disco_index = -1;
417 self->daddr = DEV_ADDR_ANY;
419 /* This will fail if the log is empty - this is non-blocking */
420 ret = irnet_discover_next_daddr(self);
421 if(ret)
423 /* Close IAP */
424 if(self->iriap)
425 iriap_close(self->iriap);
426 self->iriap = NULL;
428 /* Cleanup our copy of the discovery log */
429 kfree(self->discoveries);
430 self->discoveries = NULL;
432 clear_bit(0, &self->ttp_connect);
433 DRETURN(-ENETUNREACH, IRDA_SR_INFO, "Cachelog empty...\n");
436 /* Follow me in irnet_discovervalue_confirm() */
438 DEXIT(IRDA_SR_TRACE, "\n");
439 return(0);
442 /*------------------------------------------------------------------*/
444 * Function irnet_dname_to_daddr (self)
446 * Convert an IrDA nickname to a valid IrDA address
448 * It basically look into the discovery log until there is a match.
450 static inline int
451 irnet_dname_to_daddr(irnet_socket * self)
453 struct irda_device_info *discoveries; /* Copy of the discovery log */
454 int number; /* Number of nodes in the log */
455 int i;
457 DENTER(IRDA_SR_TRACE, "(self=0x%p)\n", self);
459 /* Ask lmp for the current discovery log */
460 discoveries = irlmp_get_discoveries(&number, 0xffff,
461 DISCOVERY_DEFAULT_SLOTS);
462 /* Check if the we got some results */
463 if(discoveries == NULL)
464 DRETURN(-ENETUNREACH, IRDA_SR_INFO, "Cachelog empty...\n");
467 * Now, check all discovered devices (if any), and connect
468 * client only about the services that the client is
469 * interested in...
471 for(i = 0; i < number; i++)
473 /* Does the name match ? */
474 if(!strncmp(discoveries[i].info, self->rname, NICKNAME_MAX_LEN))
476 /* Yes !!! Get it.. */
477 self->daddr = discoveries[i].daddr;
478 DEBUG(IRDA_SR_INFO, "discovered device ``%s'' at address 0x%08x.\n",
479 self->rname, self->daddr);
480 kfree(discoveries);
481 DEXIT(IRDA_SR_TRACE, "\n");
482 return 0;
485 /* No luck ! */
486 DEBUG(IRDA_SR_INFO, "cannot discover device ``%s'' !!!\n", self->rname);
487 kfree(discoveries);
488 return(-EADDRNOTAVAIL);
492 /************************* SOCKET ROUTINES *************************/
494 * This are the main operations on IrNET sockets, basically to create
495 * and destroy IrNET sockets. These are called from the PPP part...
498 /*------------------------------------------------------------------*/
500 * Create a IrNET instance : just initialise some parameters...
503 irda_irnet_create(irnet_socket * self)
505 DENTER(IRDA_SOCK_TRACE, "(self=0x%p)\n", self);
507 self->magic = IRNET_MAGIC; /* Paranoia */
509 self->ttp_open = 0; /* Prevent higher layer from accessing IrTTP */
510 self->ttp_connect = 0; /* Not connecting yet */
511 self->rname[0] = '\0'; /* May be set via control channel */
512 self->rdaddr = DEV_ADDR_ANY; /* May be set via control channel */
513 self->rsaddr = DEV_ADDR_ANY; /* May be set via control channel */
514 self->daddr = DEV_ADDR_ANY; /* Until we get connected */
515 self->saddr = DEV_ADDR_ANY; /* Until we get connected */
516 self->max_sdu_size_rx = TTP_SAR_UNBOUND;
518 /* Register as a client with IrLMP */
519 self->ckey = irlmp_register_client(0, NULL, NULL, NULL);
520 #ifdef DISCOVERY_NOMASK
521 self->mask = 0xffff; /* For W2k compatibility */
522 #else /* DISCOVERY_NOMASK */
523 self->mask = irlmp_service_to_hint(S_LAN);
524 #endif /* DISCOVERY_NOMASK */
525 self->tx_flow = FLOW_START; /* Flow control from IrTTP */
527 INIT_WORK(&self->disconnect_work, irnet_ppp_disconnect);
529 DEXIT(IRDA_SOCK_TRACE, "\n");
530 return(0);
533 /*------------------------------------------------------------------*/
535 * Connect to the other side :
536 * o convert device name to an address
537 * o find the socket number (dlsap)
538 * o Establish the connection
540 * Note : We no longer mimic af_irda. The IAS query for finding the TSAP
541 * is done asynchronously, like the TTP connection. This allow us to
542 * call this function from any context (not only process).
543 * The downside is that following what's happening in there is tricky
544 * because it involve various functions all over the place...
547 irda_irnet_connect(irnet_socket * self)
549 int err;
551 DENTER(IRDA_SOCK_TRACE, "(self=0x%p)\n", self);
553 /* Check if we are already trying to connect.
554 * Because irda_irnet_connect() can be called directly by pppd plus
555 * packet retries in ppp_generic and connect may take time, plus we may
556 * race with irnet_connect_indication(), we need to be careful there... */
557 if(test_and_set_bit(0, &self->ttp_connect))
558 DRETURN(-EBUSY, IRDA_SOCK_INFO, "Already connecting...\n");
559 if((self->iriap != NULL) || (self->tsap != NULL))
560 DERROR(IRDA_SOCK_ERROR, "Socket not cleaned up...\n");
562 /* Insert ourselves in the hashbin so that the IrNET server can find us.
563 * Notes : 4th arg is string of 32 char max and must be null terminated
564 * When 4th arg is used (string), 3rd arg isn't (int)
565 * Can't re-insert (MUST remove first) so check for that... */
566 if((irnet_server.running) && (self->q.q_next == NULL))
568 spin_lock_bh(&irnet_server.spinlock);
569 hashbin_insert(irnet_server.list, (irda_queue_t *) self, 0, self->rname);
570 spin_unlock_bh(&irnet_server.spinlock);
571 DEBUG(IRDA_SOCK_INFO, "Inserted ``%s'' in hashbin...\n", self->rname);
574 /* If we don't have anything (no address, no name) */
575 if((self->rdaddr == DEV_ADDR_ANY) && (self->rname[0] == '\0'))
577 /* Try to find a suitable address */
578 if((err = irnet_discover_daddr_and_lsap_sel(self)) != 0)
579 DRETURN(err, IRDA_SOCK_INFO, "auto-connect failed!\n");
580 /* In most cases, the call above is non-blocking */
582 else
584 /* If we have only the name (no address), try to get an address */
585 if(self->rdaddr == DEV_ADDR_ANY)
587 if((err = irnet_dname_to_daddr(self)) != 0)
588 DRETURN(err, IRDA_SOCK_INFO, "name connect failed!\n");
590 else
591 /* Use the requested destination address */
592 self->daddr = self->rdaddr;
594 /* Query remote LM-IAS to find LSAP selector */
595 irnet_find_lsap_sel(self);
596 /* The above call is non blocking */
599 /* At this point, we are waiting for the IrDA stack to call us back,
600 * or we have already failed.
601 * We will finish the connection procedure in irnet_connect_tsap().
603 DEXIT(IRDA_SOCK_TRACE, "\n");
604 return(0);
607 /*------------------------------------------------------------------*/
609 * Function irda_irnet_destroy(self)
611 * Destroy irnet instance
613 * Note : this need to be called from a process context.
615 void
616 irda_irnet_destroy(irnet_socket * self)
618 DENTER(IRDA_SOCK_TRACE, "(self=0x%p)\n", self);
619 if(self == NULL)
620 return;
622 /* Remove ourselves from hashbin (if we are queued in hashbin)
623 * Note : `irnet_server.running' protect us from calls in hashbin_delete() */
624 if((irnet_server.running) && (self->q.q_next != NULL))
626 struct irnet_socket * entry;
627 DEBUG(IRDA_SOCK_INFO, "Removing from hash..\n");
628 spin_lock_bh(&irnet_server.spinlock);
629 entry = hashbin_remove_this(irnet_server.list, (irda_queue_t *) self);
630 self->q.q_next = NULL;
631 spin_unlock_bh(&irnet_server.spinlock);
632 DASSERT(entry == self, , IRDA_SOCK_ERROR, "Can't remove from hash.\n");
635 /* If we were connected, post a message */
636 if(test_bit(0, &self->ttp_open))
638 /* Note : as the disconnect comes from ppp_generic, the unit number
639 * doesn't exist anymore when we post the event, so we need to pass
640 * NULL as the first arg... */
641 irnet_post_event(NULL, IRNET_DISCONNECT_TO,
642 self->saddr, self->daddr, self->rname, 0);
645 /* Prevent various IrDA callbacks from messing up things
646 * Need to be first */
647 clear_bit(0, &self->ttp_connect);
649 /* Prevent higher layer from accessing IrTTP */
650 clear_bit(0, &self->ttp_open);
652 /* Unregister with IrLMP */
653 irlmp_unregister_client(self->ckey);
655 /* Unregister with LM-IAS */
656 if(self->iriap)
658 iriap_close(self->iriap);
659 self->iriap = NULL;
662 /* Cleanup eventual discoveries from connection attempt or control channel */
663 if(self->discoveries != NULL)
665 /* Cleanup our copy of the discovery log */
666 kfree(self->discoveries);
667 self->discoveries = NULL;
670 /* Close our IrTTP connection */
671 if(self->tsap)
673 DEBUG(IRDA_SOCK_INFO, "Closing our TTP connection.\n");
674 irttp_disconnect_request(self->tsap, NULL, P_NORMAL);
675 irttp_close_tsap(self->tsap);
676 self->tsap = NULL;
678 self->stsap_sel = 0;
680 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
690 * behaviour...
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.
701 static inline int
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 */
706 int i;
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);
728 kfree(discoveries);
729 DEXIT(IRDA_SERV_TRACE, "\n");
730 return 0;
733 /* No luck ! */
734 DEXIT(IRDA_SERV_INFO, ": cannot discover device 0x%08x !!!\n", self->daddr);
735 kfree(discoveries);
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
746 * properties...
748 static inline irnet_socket *
749 irnet_find_socket(irnet_socket * self)
751 irnet_socket * new = (irnet_socket *) NULL;
752 int err;
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 */
768 if(err == 0)
770 new = (irnet_socket *) hashbin_find(irnet_server.list,
771 0, self->rname);
772 if(new)
773 DEBUG(IRDA_SERV_INFO, "Socket 0x%p matches rname ``%s''.\n",
774 new, new->rname);
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",
791 new, self->daddr);
792 break;
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",
810 new);
811 break;
813 new = (irnet_socket *) hashbin_get_next(irnet_server.list);
817 /* Spin lock end */
818 spin_unlock_bh(&irnet_server.spinlock);
820 DEXIT(IRDA_SERV_TRACE, " - new = 0x%p\n", new);
821 return new;
824 /*------------------------------------------------------------------*/
826 * Function irda_connect_socket (self)
828 * Connect an incoming connection to the socket
831 static inline int
832 irnet_connect_socket(irnet_socket * server,
833 irnet_socket * new,
834 struct qos_info * qos,
835 __u32 max_sdu_size,
836 __u8 max_header_size)
838 DENTER(IRDA_SERV_TRACE, "(server=0x%p, new=0x%p)\n",
839 server, new);
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;
854 #ifdef STREAM_COMPAT
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);
872 if(new->iriap)
874 iriap_close(new->iriap);
875 new->iriap = NULL;
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");
896 return 0;
899 /*------------------------------------------------------------------*/
901 * Function irda_disconnect_server (self)
903 * Cleanup the server socket when the incoming connection abort
906 static inline void
907 irnet_disconnect_server(irnet_socket * self,
908 struct sk_buff *skb)
910 DENTER(IRDA_SERV_TRACE, "(self=0x%p)\n", self);
912 /* Put the received packet in the black hole */
913 kfree_skb(skb);
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");
932 /*------------------------------------------------------------------*/
934 * Function irda_setup_server (self)
936 * Create a IrTTP server and set it up...
938 * Register the IrLAN hint bit, create a IrTTP instance for us,
939 * set all the IrTTP callbacks and create an IrIAS entry...
941 static inline int
942 irnet_setup_server(void)
944 __u16 hints;
946 DENTER(IRDA_SERV_TRACE, "()\n");
948 /* Initialise the regular socket part of the server */
949 irda_irnet_create(&irnet_server.s);
951 /* Open a local TSAP (an IrTTP instance) for the server */
952 irnet_open_tsap(&irnet_server.s);
954 /* PPP part setup */
955 irnet_server.s.ppp_open = 0;
956 irnet_server.s.chan.private = NULL;
957 irnet_server.s.file = NULL;
959 /* Get the hint bit corresponding to IrLAN */
960 /* Note : we overload the IrLAN hint bit. As it is only a "hint", and as
961 * we provide roughly the same functionality as IrLAN, this is ok.
962 * In fact, the situation is similar as JetSend overloading the Obex hint
964 hints = irlmp_service_to_hint(S_LAN);
966 #ifdef ADVERTISE_HINT
967 /* Register with IrLMP as a service (advertise our hint bit) */
968 irnet_server.skey = irlmp_register_service(hints);
969 #endif /* ADVERTISE_HINT */
971 /* Register with LM-IAS (so that people can connect to us) */
972 irnet_server.ias_obj = irias_new_object(IRNET_SERVICE_NAME, jiffies);
973 irias_add_integer_attrib(irnet_server.ias_obj, IRNET_IAS_VALUE,
974 irnet_server.s.stsap_sel, IAS_KERNEL_ATTR);
975 irias_insert_object(irnet_server.ias_obj);
977 #ifdef DISCOVERY_EVENTS
978 /* Tell IrLMP we want to be notified of newly discovered nodes */
979 irlmp_update_client(irnet_server.s.ckey, hints,
980 irnet_discovery_indication, irnet_expiry_indication,
981 (void *) &irnet_server.s);
982 #endif
984 DEXIT(IRDA_SERV_TRACE, " - self=0x%p\n", &irnet_server.s);
985 return 0;
988 /*------------------------------------------------------------------*/
990 * Function irda_destroy_server (self)
992 * Destroy the IrTTP server...
994 * Reverse of the previous function...
996 static inline void
997 irnet_destroy_server(void)
999 DENTER(IRDA_SERV_TRACE, "()\n");
1001 #ifdef ADVERTISE_HINT
1002 /* Unregister with IrLMP */
1003 irlmp_unregister_service(irnet_server.skey);
1004 #endif /* ADVERTISE_HINT */
1006 /* Unregister with LM-IAS */
1007 if(irnet_server.ias_obj)
1008 irias_delete_object(irnet_server.ias_obj);
1010 /* Cleanup the socket part */
1011 irda_irnet_destroy(&irnet_server.s);
1013 DEXIT(IRDA_SERV_TRACE, "\n");
1017 /************************ IRDA-TTP CALLBACKS ************************/
1019 * When we create a IrTTP instance, we pass to it a set of callbacks
1020 * that IrTTP will call in case of various events.
1021 * We take care of those events here.
1024 /*------------------------------------------------------------------*/
1026 * Function irnet_data_indication (instance, sap, skb)
1028 * Received some data from TinyTP. Just queue it on the receive queue
1031 static int
1032 irnet_data_indication(void * instance,
1033 void * sap,
1034 struct sk_buff *skb)
1036 irnet_socket * ap = (irnet_socket *) instance;
1037 unsigned char * p;
1038 int code = 0;
1040 DENTER(IRDA_TCB_TRACE, "(self/ap=0x%p, skb=0x%p)\n",
1041 ap, skb);
1042 DASSERT(skb != NULL, 0, IRDA_CB_ERROR, "skb is NULL !!!\n");
1044 /* Check is ppp is ready to receive our packet */
1045 if(!ap->ppp_open)
1047 DERROR(IRDA_CB_ERROR, "PPP not ready, dropping packet...\n");
1048 /* When we return error, TTP will need to requeue the skb and
1049 * will stop the sender. IrTTP will stall until we send it a
1050 * flow control request... */
1051 return -ENOMEM;
1054 /* strip address/control field if present */
1055 p = skb->data;
1056 if((p[0] == PPP_ALLSTATIONS) && (p[1] == PPP_UI))
1058 /* chop off address/control */
1059 if(skb->len < 3)
1060 goto err_exit;
1061 p = skb_pull(skb, 2);
1064 /* decompress protocol field if compressed */
1065 if(p[0] & 1)
1067 /* protocol is compressed */
1068 skb_push(skb, 1)[0] = 0;
1070 else
1071 if(skb->len < 2)
1072 goto err_exit;
1074 /* pass to generic ppp layer */
1075 /* Note : how do I know if ppp can accept or not the packet ? This is
1076 * essential if I want to manage flow control smoothly... */
1077 ppp_input(&ap->chan, skb);
1079 DEXIT(IRDA_TCB_TRACE, "\n");
1080 return 0;
1082 err_exit:
1083 DERROR(IRDA_CB_ERROR, "Packet too small, dropping...\n");
1084 kfree_skb(skb);
1085 ppp_input_error(&ap->chan, code);
1086 return 0; /* Don't return an error code, only for flow control... */
1089 /*------------------------------------------------------------------*/
1091 * Function irnet_disconnect_indication (instance, sap, reason, skb)
1093 * Connection has been closed. Chech reason to find out why
1095 * Note : there are many cases where we come here :
1096 * o attempted to connect, timeout
1097 * o connected, link is broken, LAP has timeout
1098 * o connected, other side close the link
1099 * o connection request on the server not handled
1101 static void
1102 irnet_disconnect_indication(void * instance,
1103 void * sap,
1104 LM_REASON reason,
1105 struct sk_buff *skb)
1107 irnet_socket * self = (irnet_socket *) instance;
1108 int test_open;
1109 int test_connect;
1111 DENTER(IRDA_TCB_TRACE, "(self=0x%p)\n", self);
1112 DASSERT(self != NULL, , IRDA_CB_ERROR, "Self is NULL !!!\n");
1114 /* Don't care about it, but let's not leak it */
1115 if(skb)
1116 dev_kfree_skb(skb);
1118 /* Prevent higher layer from accessing IrTTP */
1119 test_open = test_and_clear_bit(0, &self->ttp_open);
1120 /* Not connecting anymore...
1121 * (note : TSAP is open, so IAP callbacks are no longer pending...) */
1122 test_connect = test_and_clear_bit(0, &self->ttp_connect);
1124 /* If both self->ttp_open and self->ttp_connect are NULL, it mean that we
1125 * have a race condition with irda_irnet_destroy() or
1126 * irnet_connect_indication(), so don't mess up tsap...
1128 if(!(test_open || test_connect))
1130 DERROR(IRDA_CB_ERROR, "Race condition detected...\n");
1131 return;
1134 /* If we were active, notify the control channel */
1135 if(test_open)
1136 irnet_post_event(self, IRNET_DISCONNECT_FROM,
1137 self->saddr, self->daddr, self->rname, 0);
1138 else
1139 /* If we were trying to connect, notify the control channel */
1140 if((self->tsap) && (self != &irnet_server.s))
1141 irnet_post_event(self, IRNET_NOANSWER_FROM,
1142 self->saddr, self->daddr, self->rname, 0);
1144 /* Close our IrTTP connection, cleanup tsap */
1145 if((self->tsap) && (self != &irnet_server.s))
1147 DEBUG(IRDA_CB_INFO, "Closing our TTP connection.\n");
1148 irttp_close_tsap(self->tsap);
1149 self->tsap = NULL;
1151 /* Cleanup the socket in case we want to reconnect in ppp_output_wakeup() */
1152 self->stsap_sel = 0;
1153 self->daddr = DEV_ADDR_ANY;
1154 self->tx_flow = FLOW_START;
1156 /* Deal with the ppp instance if it's still alive */
1157 if(self->ppp_open)
1159 if(test_open)
1161 /* ppp_unregister_channel() wants a user context. */
1162 schedule_work(&self->disconnect_work);
1164 else
1166 /* If we were trying to connect, flush (drain) ppp_generic
1167 * Tx queue (most often we have blocked it), which will
1168 * trigger an other attempt to connect. If we are passive,
1169 * this will empty the Tx queue after last try. */
1170 ppp_output_wakeup(&self->chan);
1174 DEXIT(IRDA_TCB_TRACE, "\n");
1177 /*------------------------------------------------------------------*/
1179 * Function irnet_connect_confirm (instance, sap, qos, max_sdu_size, skb)
1181 * Connections has been confirmed by the remote device
1184 static void
1185 irnet_connect_confirm(void * instance,
1186 void * sap,
1187 struct qos_info *qos,
1188 __u32 max_sdu_size,
1189 __u8 max_header_size,
1190 struct sk_buff *skb)
1192 irnet_socket * self = (irnet_socket *) instance;
1194 DENTER(IRDA_TCB_TRACE, "(self=0x%p)\n", self);
1196 /* Check if socket is closing down (via irda_irnet_destroy()) */
1197 if(! test_bit(0, &self->ttp_connect))
1199 DERROR(IRDA_CB_ERROR, "Socket no longer connecting. Ouch !\n");
1200 return;
1203 /* How much header space do we need to reserve */
1204 self->max_header_size = max_header_size;
1206 /* IrTTP max SDU size in transmit direction */
1207 self->max_sdu_size_tx = max_sdu_size;
1208 self->max_data_size = max_sdu_size;
1209 #ifdef STREAM_COMPAT
1210 if(max_sdu_size == 0)
1211 self->max_data_size = irttp_get_max_seg_size(self->tsap);
1212 #endif /* STREAM_COMPAT */
1214 /* At this point, IrLMP has assigned our source address */
1215 self->saddr = irttp_get_saddr(self->tsap);
1217 /* Allow higher layer to access IrTTP */
1218 set_bit(0, &self->ttp_open);
1219 clear_bit(0, &self->ttp_connect); /* Not racy, IrDA traffic is serial */
1220 /* Give a kick in the ass of ppp_generic so that he sends us some data */
1221 ppp_output_wakeup(&self->chan);
1223 /* Check size of received packet */
1224 if(skb->len > 0)
1226 #ifdef PASS_CONNECT_PACKETS
1227 DEBUG(IRDA_CB_INFO, "Passing connect packet to PPP.\n");
1228 /* Try to pass it to PPP */
1229 irnet_data_indication(instance, sap, skb);
1230 #else /* PASS_CONNECT_PACKETS */
1231 DERROR(IRDA_CB_ERROR, "Dropping non empty packet.\n");
1232 kfree_skb(skb); /* Note : will be optimised with other kfree... */
1233 #endif /* PASS_CONNECT_PACKETS */
1235 else
1236 kfree_skb(skb);
1238 /* Notify the control channel */
1239 irnet_post_event(self, IRNET_CONNECT_TO,
1240 self->saddr, self->daddr, self->rname, 0);
1242 DEXIT(IRDA_TCB_TRACE, "\n");
1245 /*------------------------------------------------------------------*/
1247 * Function irnet_flow_indication (instance, sap, flow)
1249 * Used by TinyTP to tell us if it can accept more data or not
1252 static void
1253 irnet_flow_indication(void * instance,
1254 void * sap,
1255 LOCAL_FLOW flow)
1257 irnet_socket * self = (irnet_socket *) instance;
1258 LOCAL_FLOW oldflow = self->tx_flow;
1260 DENTER(IRDA_TCB_TRACE, "(self=0x%p, flow=%d)\n", self, flow);
1262 /* Update our state */
1263 self->tx_flow = flow;
1265 /* Check what IrTTP want us to do... */
1266 switch(flow)
1268 case FLOW_START:
1269 DEBUG(IRDA_CB_INFO, "IrTTP wants us to start again\n");
1270 /* Check if we really need to wake up PPP */
1271 if(oldflow == FLOW_STOP)
1272 ppp_output_wakeup(&self->chan);
1273 else
1274 DEBUG(IRDA_CB_INFO, "But we were already transmitting !!!\n");
1275 break;
1276 case FLOW_STOP:
1277 DEBUG(IRDA_CB_INFO, "IrTTP wants us to slow down\n");
1278 break;
1279 default:
1280 DEBUG(IRDA_CB_INFO, "Unknown flow command!\n");
1281 break;
1284 DEXIT(IRDA_TCB_TRACE, "\n");
1287 /*------------------------------------------------------------------*/
1289 * Function irnet_status_indication (instance, sap, reason, skb)
1291 * Link (IrLAP) status report.
1294 static void
1295 irnet_status_indication(void * instance,
1296 LINK_STATUS link,
1297 LOCK_STATUS lock)
1299 irnet_socket * self = (irnet_socket *) instance;
1301 DENTER(IRDA_TCB_TRACE, "(self=0x%p)\n", self);
1302 DASSERT(self != NULL, , IRDA_CB_ERROR, "Self is NULL !!!\n");
1304 /* We can only get this event if we are connected */
1305 switch(link)
1307 case STATUS_NO_ACTIVITY:
1308 irnet_post_event(self, IRNET_BLOCKED_LINK,
1309 self->saddr, self->daddr, self->rname, 0);
1310 break;
1311 default:
1312 DEBUG(IRDA_CB_INFO, "Unknown status...\n");
1315 DEXIT(IRDA_TCB_TRACE, "\n");
1318 /*------------------------------------------------------------------*/
1320 * Function irnet_connect_indication(instance, sap, qos, max_sdu_size, userdata)
1322 * Incoming connection
1324 * In theory, this function is called only on the server socket.
1325 * Some other node is attempting to connect to the IrNET service, and has
1326 * sent a connection request on our server socket.
1327 * We just redirect the connection to the relevant IrNET socket.
1329 * Note : we also make sure that between 2 irnet nodes, there can
1330 * exist only one irnet connection.
1332 static void
1333 irnet_connect_indication(void * instance,
1334 void * sap,
1335 struct qos_info *qos,
1336 __u32 max_sdu_size,
1337 __u8 max_header_size,
1338 struct sk_buff *skb)
1340 irnet_socket * server = &irnet_server.s;
1341 irnet_socket * new = (irnet_socket *) NULL;
1343 DENTER(IRDA_TCB_TRACE, "(server=0x%p)\n", server);
1344 DASSERT(instance == &irnet_server, , IRDA_CB_ERROR,
1345 "Invalid instance (0x%p) !!!\n", instance);
1346 DASSERT(sap == irnet_server.s.tsap, , IRDA_CB_ERROR, "Invalid sap !!!\n");
1348 /* Try to find the most appropriate IrNET socket */
1349 new = irnet_find_socket(server);
1351 /* After all this hard work, do we have an socket ? */
1352 if(new == (irnet_socket *) NULL)
1354 DEXIT(IRDA_CB_INFO, ": No socket waiting for this connection.\n");
1355 irnet_disconnect_server(server, skb);
1356 return;
1359 /* Is the socket already busy ? */
1360 if(test_bit(0, &new->ttp_open))
1362 DEXIT(IRDA_CB_INFO, ": Socket already connected.\n");
1363 irnet_disconnect_server(server, skb);
1364 return;
1367 /* The following code is a bit tricky, so need comments ;-)
1369 /* Now, let's look at the way I wrote the test...
1370 * We need to clear up the ttp_connect flag atomically to prevent
1371 * irnet_disconnect_indication() to mess up the tsap we are going to close.
1372 * We want to clear the ttp_connect flag only if we close the tsap,
1373 * otherwise we will never close it, so we need to check for primary
1374 * *before* doing the test on the flag.
1375 * And of course, ALLOW_SIMULT_CONNECT can disable this entirely...
1376 * Jean II
1379 /* Socket already connecting ? On primary ? */
1380 if(0
1381 #ifdef ALLOW_SIMULT_CONNECT
1382 || ((irttp_is_primary(server->tsap) == 1) && /* primary */
1383 (test_and_clear_bit(0, &new->ttp_connect)))
1384 #endif /* ALLOW_SIMULT_CONNECT */
1387 DERROR(IRDA_CB_ERROR, "Socket already connecting, but going to reuse it !\n");
1389 /* Cleanup the old TSAP if necessary - IrIAP will be cleaned up later */
1390 if(new->tsap != NULL)
1392 /* Close the old connection the new socket was attempting,
1393 * so that we can hook it up to the new connection.
1394 * It's now safe to do it... */
1395 irttp_close_tsap(new->tsap);
1396 new->tsap = NULL;
1399 else
1401 /* Three options :
1402 * 1) socket was not connecting or connected : ttp_connect should be 0.
1403 * 2) we don't want to connect the socket because we are secondary or
1404 * ALLOW_SIMULT_CONNECT is undefined. ttp_connect should be 1.
1405 * 3) we are half way in irnet_disconnect_indication(), and it's a
1406 * nice race condition... Fortunately, we can detect that by checking
1407 * if tsap is still alive. On the other hand, we can't be in
1408 * irda_irnet_destroy() otherwise we would not have found this
1409 * socket in the hashbin.
1410 * Jean II */
1411 if((test_bit(0, &new->ttp_connect)) || (new->tsap != NULL))
1413 /* Don't mess this socket, somebody else in in charge... */
1414 DERROR(IRDA_CB_ERROR, "Race condition detected, socket in use, abort connect...\n");
1415 irnet_disconnect_server(server, skb);
1416 return;
1420 /* So : at this point, we have a socket, and it is idle. Good ! */
1421 irnet_connect_socket(server, new, qos, max_sdu_size, max_header_size);
1423 /* Check size of received packet */
1424 if(skb->len > 0)
1426 #ifdef PASS_CONNECT_PACKETS
1427 DEBUG(IRDA_CB_INFO, "Passing connect packet to PPP.\n");
1428 /* Try to pass it to PPP */
1429 irnet_data_indication(new, new->tsap, skb);
1430 #else /* PASS_CONNECT_PACKETS */
1431 DERROR(IRDA_CB_ERROR, "Dropping non empty packet.\n");
1432 kfree_skb(skb); /* Note : will be optimised with other kfree... */
1433 #endif /* PASS_CONNECT_PACKETS */
1435 else
1436 kfree_skb(skb);
1438 DEXIT(IRDA_TCB_TRACE, "\n");
1442 /********************** IRDA-IAS/LMP CALLBACKS **********************/
1444 * These are the callbacks called by other layers of the IrDA stack,
1445 * mainly LMP for discovery and IAS for name queries.
1448 /*------------------------------------------------------------------*/
1450 * Function irnet_getvalue_confirm (result, obj_id, value, priv)
1452 * Got answer from remote LM-IAS, just connect
1454 * This is the reply to a IAS query we were doing to find the TSAP of
1455 * the device we want to connect to.
1456 * If we have found a valid TSAP, just initiate the TTP connection
1457 * on this TSAP.
1459 static void
1460 irnet_getvalue_confirm(int result,
1461 __u16 obj_id,
1462 struct ias_value *value,
1463 void * priv)
1465 irnet_socket * self = (irnet_socket *) priv;
1467 DENTER(IRDA_OCB_TRACE, "(self=0x%p)\n", self);
1468 DASSERT(self != NULL, , IRDA_OCB_ERROR, "Self is NULL !!!\n");
1470 /* Check if already connected (via irnet_connect_socket())
1471 * or socket is closing down (via irda_irnet_destroy()) */
1472 if(! test_bit(0, &self->ttp_connect))
1474 DERROR(IRDA_OCB_ERROR, "Socket no longer connecting. Ouch !\n");
1475 return;
1478 /* We probably don't need to make any more queries */
1479 iriap_close(self->iriap);
1480 self->iriap = NULL;
1482 /* Post process the IAS reply */
1483 self->dtsap_sel = irnet_ias_to_tsap(self, result, value);
1485 /* If error, just go out */
1486 if(self->errno)
1488 clear_bit(0, &self->ttp_connect);
1489 DERROR(IRDA_OCB_ERROR, "IAS connect failed ! (0x%X)\n", self->errno);
1490 return;
1493 DEBUG(IRDA_OCB_INFO, "daddr = %08x, lsap = %d, starting IrTTP connection\n",
1494 self->daddr, self->dtsap_sel);
1496 /* Start up TTP - non blocking */
1497 irnet_connect_tsap(self);
1499 DEXIT(IRDA_OCB_TRACE, "\n");
1502 /*------------------------------------------------------------------*/
1504 * Function irnet_discovervalue_confirm (result, obj_id, value, priv)
1506 * Handle the TSAP discovery procedure state machine.
1507 * Got answer from remote LM-IAS, try next device
1509 * We are doing a TSAP discovery procedure, and we got an answer to
1510 * a IAS query we were doing to find the TSAP on one of the address
1511 * in the discovery log.
1513 * If we have found a valid TSAP for the first time, save it. If it's
1514 * not the first time we found one, complain.
1516 * If we have more addresses in the log, just initiate a new query.
1517 * Note that those query may fail (see irnet_discover_daddr_and_lsap_sel())
1519 * Otherwise, wrap up the procedure (cleanup), check if we have found
1520 * any device and connect to it.
1522 static void
1523 irnet_discovervalue_confirm(int result,
1524 __u16 obj_id,
1525 struct ias_value *value,
1526 void * priv)
1528 irnet_socket * self = (irnet_socket *) priv;
1529 __u8 dtsap_sel; /* TSAP we are looking for */
1531 DENTER(IRDA_OCB_TRACE, "(self=0x%p)\n", self);
1532 DASSERT(self != NULL, , IRDA_OCB_ERROR, "Self is NULL !!!\n");
1534 /* Check if already connected (via irnet_connect_socket())
1535 * or socket is closing down (via irda_irnet_destroy()) */
1536 if(! test_bit(0, &self->ttp_connect))
1538 DERROR(IRDA_OCB_ERROR, "Socket no longer connecting. Ouch !\n");
1539 return;
1542 /* Post process the IAS reply */
1543 dtsap_sel = irnet_ias_to_tsap(self, result, value);
1545 /* Have we got something ? */
1546 if(self->errno == 0)
1548 /* We found the requested service */
1549 if(self->daddr != DEV_ADDR_ANY)
1551 DERROR(IRDA_OCB_ERROR, "More than one device in range supports IrNET...\n");
1553 else
1555 /* First time we found that one, save it ! */
1556 self->daddr = self->discoveries[self->disco_index].daddr;
1557 self->dtsap_sel = dtsap_sel;
1561 /* If no failure */
1562 if((self->errno == -EADDRNOTAVAIL) || (self->errno == 0))
1564 int ret;
1566 /* Search the next node */
1567 ret = irnet_discover_next_daddr(self);
1568 if(!ret)
1570 /* In this case, the above request was non-blocking.
1571 * We will return here after a while... */
1572 return;
1574 /* In this case, we have processed the last discovery item */
1577 /* No more queries to be done (failure or last one) */
1579 /* We probably don't need to make any more queries */
1580 iriap_close(self->iriap);
1581 self->iriap = NULL;
1583 /* No more items : remove the log and signal termination */
1584 DEBUG(IRDA_OCB_INFO, "Cleaning up log (0x%p)\n",
1585 self->discoveries);
1586 if(self->discoveries != NULL)
1588 /* Cleanup our copy of the discovery log */
1589 kfree(self->discoveries);
1590 self->discoveries = NULL;
1592 self->disco_number = -1;
1594 /* Check out what we found */
1595 if(self->daddr == DEV_ADDR_ANY)
1597 self->daddr = DEV_ADDR_ANY;
1598 clear_bit(0, &self->ttp_connect);
1599 DEXIT(IRDA_OCB_TRACE, ": cannot discover IrNET in any device !!!\n");
1600 return;
1603 /* We have a valid address - just connect */
1605 DEBUG(IRDA_OCB_INFO, "daddr = %08x, lsap = %d, starting IrTTP connection\n",
1606 self->daddr, self->dtsap_sel);
1608 /* Start up TTP - non blocking */
1609 irnet_connect_tsap(self);
1611 DEXIT(IRDA_OCB_TRACE, "\n");
1614 #ifdef DISCOVERY_EVENTS
1615 /*------------------------------------------------------------------*/
1617 * Function irnet_discovery_indication (discovery)
1619 * Got a discovery indication from IrLMP, post an event
1621 * Note : IrLMP take care of matching the hint mask for us, and also
1622 * check if it is a "new" node for us...
1624 * As IrLMP filter on the IrLAN hint bit, we get both IrLAN and IrNET
1625 * nodes, so it's only at connection time that we will know if the
1626 * node support IrNET, IrLAN or both. The other solution is to check
1627 * in IAS the PNP ids and service name.
1628 * Note : even if a node support IrNET (or IrLAN), it's no guarantee
1629 * that we will be able to connect to it, the node might already be
1630 * busy...
1632 * One last thing : in some case, this function will trigger duplicate
1633 * discovery events. On the other hand, we should catch all
1634 * discoveries properly (i.e. not miss one). Filtering duplicate here
1635 * is to messy, so we leave that to user space...
1637 static void
1638 irnet_discovery_indication(discinfo_t * discovery,
1639 DISCOVERY_MODE mode,
1640 void * priv)
1642 irnet_socket * self = &irnet_server.s;
1644 DENTER(IRDA_OCB_TRACE, "(self=0x%p)\n", self);
1645 DASSERT(priv == &irnet_server, , IRDA_OCB_ERROR,
1646 "Invalid instance (0x%p) !!!\n", priv);
1648 DEBUG(IRDA_OCB_INFO, "Discovered new IrNET/IrLAN node %s...\n",
1649 discovery->info);
1651 /* Notify the control channel */
1652 irnet_post_event(NULL, IRNET_DISCOVER,
1653 discovery->saddr, discovery->daddr, discovery->info,
1654 get_unaligned((__u16 *)discovery->hints));
1656 DEXIT(IRDA_OCB_TRACE, "\n");
1659 /*------------------------------------------------------------------*/
1661 * Function irnet_expiry_indication (expiry)
1663 * Got a expiry indication from IrLMP, post an event
1665 * Note : IrLMP take care of matching the hint mask for us, we only
1666 * check if it is a "new" node...
1668 static void
1669 irnet_expiry_indication(discinfo_t * expiry,
1670 DISCOVERY_MODE mode,
1671 void * priv)
1673 irnet_socket * self = &irnet_server.s;
1675 DENTER(IRDA_OCB_TRACE, "(self=0x%p)\n", self);
1676 DASSERT(priv == &irnet_server, , IRDA_OCB_ERROR,
1677 "Invalid instance (0x%p) !!!\n", priv);
1679 DEBUG(IRDA_OCB_INFO, "IrNET/IrLAN node %s expired...\n",
1680 expiry->info);
1682 /* Notify the control channel */
1683 irnet_post_event(NULL, IRNET_EXPIRE,
1684 expiry->saddr, expiry->daddr, expiry->info,
1685 get_unaligned((__u16 *)expiry->hints));
1687 DEXIT(IRDA_OCB_TRACE, "\n");
1689 #endif /* DISCOVERY_EVENTS */
1692 /*********************** PROC ENTRY CALLBACKS ***********************/
1694 * We create a instance in the /proc filesystem, and here we take care
1695 * of that...
1698 #ifdef CONFIG_PROC_FS
1699 static int
1700 irnet_proc_show(struct seq_file *m, void *v)
1702 irnet_socket * self;
1703 char * state;
1704 int i = 0;
1706 /* Get the IrNET server information... */
1707 seq_printf(m, "IrNET server - ");
1708 seq_printf(m, "IrDA state: %s, ",
1709 (irnet_server.running ? "running" : "dead"));
1710 seq_printf(m, "stsap_sel: %02x, ", irnet_server.s.stsap_sel);
1711 seq_printf(m, "dtsap_sel: %02x\n", irnet_server.s.dtsap_sel);
1713 /* Do we need to continue ? */
1714 if(!irnet_server.running)
1715 return 0;
1717 /* Protect access to the instance list */
1718 spin_lock_bh(&irnet_server.spinlock);
1720 /* Get the sockets one by one... */
1721 self = (irnet_socket *) hashbin_get_first(irnet_server.list);
1722 while(self != NULL)
1724 /* Start printing info about the socket. */
1725 seq_printf(m, "\nIrNET socket %d - ", i++);
1727 /* First, get the requested configuration */
1728 seq_printf(m, "Requested IrDA name: \"%s\", ", self->rname);
1729 seq_printf(m, "daddr: %08x, ", self->rdaddr);
1730 seq_printf(m, "saddr: %08x\n", self->rsaddr);
1732 /* Second, get all the PPP info */
1733 seq_printf(m, " PPP state: %s",
1734 (self->ppp_open ? "registered" : "unregistered"));
1735 if(self->ppp_open)
1737 seq_printf(m, ", unit: ppp%d",
1738 ppp_unit_number(&self->chan));
1739 seq_printf(m, ", channel: %d",
1740 ppp_channel_index(&self->chan));
1741 seq_printf(m, ", mru: %d",
1742 self->mru);
1743 /* Maybe add self->flags ? Later... */
1746 /* Then, get all the IrDA specific info... */
1747 if(self->ttp_open)
1748 state = "connected";
1749 else
1750 if(self->tsap != NULL)
1751 state = "connecting";
1752 else
1753 if(self->iriap != NULL)
1754 state = "searching";
1755 else
1756 if(self->ttp_connect)
1757 state = "weird";
1758 else
1759 state = "idle";
1760 seq_printf(m, "\n IrDA state: %s, ", state);
1761 seq_printf(m, "daddr: %08x, ", self->daddr);
1762 seq_printf(m, "stsap_sel: %02x, ", self->stsap_sel);
1763 seq_printf(m, "dtsap_sel: %02x\n", self->dtsap_sel);
1765 /* Next socket, please... */
1766 self = (irnet_socket *) hashbin_get_next(irnet_server.list);
1769 /* Spin lock end */
1770 spin_unlock_bh(&irnet_server.spinlock);
1772 return 0;
1775 static int irnet_proc_open(struct inode *inode, struct file *file)
1777 return single_open(file, irnet_proc_show, NULL);
1780 static const struct file_operations irnet_proc_fops = {
1781 .owner = THIS_MODULE,
1782 .open = irnet_proc_open,
1783 .read = seq_read,
1784 .llseek = seq_lseek,
1785 .release = single_release,
1787 #endif /* PROC_FS */
1790 /********************** CONFIGURATION/CLEANUP **********************/
1792 * Initialisation and teardown of the IrDA part, called at module
1793 * insertion and removal...
1796 /*------------------------------------------------------------------*/
1798 * Prepare the IrNET layer for operation...
1800 int __init
1801 irda_irnet_init(void)
1803 int err = 0;
1805 DENTER(MODULE_TRACE, "()\n");
1807 /* Pure paranoia - should be redundant */
1808 memset(&irnet_server, 0, sizeof(struct irnet_root));
1810 /* Setup start of irnet instance list */
1811 irnet_server.list = hashbin_new(HB_NOLOCK);
1812 DABORT(irnet_server.list == NULL, -ENOMEM,
1813 MODULE_ERROR, "Can't allocate hashbin!\n");
1814 /* Init spinlock for instance list */
1815 spin_lock_init(&irnet_server.spinlock);
1817 /* Initialise control channel */
1818 init_waitqueue_head(&irnet_events.rwait);
1819 irnet_events.index = 0;
1820 /* Init spinlock for event logging */
1821 spin_lock_init(&irnet_events.spinlock);
1823 #ifdef CONFIG_PROC_FS
1824 /* Add a /proc file for irnet infos */
1825 proc_create("irnet", 0, proc_irda, &irnet_proc_fops);
1826 #endif /* CONFIG_PROC_FS */
1828 /* Setup the IrNET server */
1829 err = irnet_setup_server();
1831 if(!err)
1832 /* We are no longer functional... */
1833 irnet_server.running = 1;
1835 DEXIT(MODULE_TRACE, "\n");
1836 return err;
1839 /*------------------------------------------------------------------*/
1841 * Cleanup at exit...
1843 void __exit
1844 irda_irnet_cleanup(void)
1846 DENTER(MODULE_TRACE, "()\n");
1848 /* We are no longer there... */
1849 irnet_server.running = 0;
1851 #ifdef CONFIG_PROC_FS
1852 /* Remove our /proc file */
1853 remove_proc_entry("irnet", proc_irda);
1854 #endif /* CONFIG_PROC_FS */
1856 /* Remove our IrNET server from existence */
1857 irnet_destroy_server();
1859 /* Remove all instances of IrNET socket still present */
1860 hashbin_delete(irnet_server.list, (FREE_FUNC) irda_irnet_destroy);
1862 DEXIT(MODULE_TRACE, "\n");