]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blob - net/irda/af_irda.c
[IrDA] af_irda: irda_accept cleanup
[linux-2.6-omap-h63xx.git] / net / irda / af_irda.c
1 /*********************************************************************
2  *
3  * Filename:      af_irda.c
4  * Version:       0.9
5  * Description:   IrDA sockets implementation
6  * Status:        Stable
7  * Author:        Dag Brattli <dagb@cs.uit.no>
8  * Created at:    Sun May 31 10:12:43 1998
9  * Modified at:   Sat Dec 25 21:10:23 1999
10  * Modified by:   Dag Brattli <dag@brattli.net>
11  * Sources:       af_netroom.c, af_ax25.c, af_rose.c, af_x25.c etc.
12  *
13  *     Copyright (c) 1999 Dag Brattli <dagb@cs.uit.no>
14  *     Copyright (c) 1999-2003 Jean Tourrilhes <jt@hpl.hp.com>
15  *     All Rights Reserved.
16  *
17  *     This program is free software; you can redistribute it and/or
18  *     modify it under the terms of the GNU General Public License as
19  *     published by the Free Software Foundation; either version 2 of
20  *     the License, or (at your option) any later version.
21  *
22  *     This program is distributed in the hope that it will be useful,
23  *     but WITHOUT ANY WARRANTY; without even the implied warranty of
24  *     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25  *     GNU General Public License for more details.
26  *
27  *     You should have received a copy of the GNU General Public License
28  *     along with this program; if not, write to the Free Software
29  *     Foundation, Inc., 59 Temple Place, Suite 330, Boston,
30  *     MA 02111-1307 USA
31  *
32  *     Linux-IrDA now supports four different types of IrDA sockets:
33  *
34  *     o SOCK_STREAM:    TinyTP connections with SAR disabled. The
35  *                       max SDU size is 0 for conn. of this type
36  *     o SOCK_SEQPACKET: TinyTP connections with SAR enabled. TTP may
37  *                       fragment the messages, but will preserve
38  *                       the message boundaries
39  *     o SOCK_DGRAM:     IRDAPROTO_UNITDATA: TinyTP connections with Unitdata
40  *                       (unreliable) transfers
41  *                       IRDAPROTO_ULTRA: Connectionless and unreliable data
42  *
43  ********************************************************************/
44
45 #include <linux/capability.h>
46 #include <linux/module.h>
47 #include <linux/types.h>
48 #include <linux/socket.h>
49 #include <linux/sockios.h>
50 #include <linux/init.h>
51 #include <linux/net.h>
52 #include <linux/irda.h>
53 #include <linux/poll.h>
54
55 #include <asm/ioctls.h>         /* TIOCOUTQ, TIOCINQ */
56 #include <asm/uaccess.h>
57
58 #include <net/sock.h>
59 #include <net/tcp_states.h>
60
61 #include <net/irda/af_irda.h>
62
63 static int irda_create(struct socket *sock, int protocol);
64
65 static const struct proto_ops irda_stream_ops;
66 static const struct proto_ops irda_seqpacket_ops;
67 static const struct proto_ops irda_dgram_ops;
68
69 #ifdef CONFIG_IRDA_ULTRA
70 static const struct proto_ops irda_ultra_ops;
71 #define ULTRA_MAX_DATA 382
72 #endif /* CONFIG_IRDA_ULTRA */
73
74 #define IRDA_MAX_HEADER (TTP_MAX_HEADER)
75
76 /*
77  * Function irda_data_indication (instance, sap, skb)
78  *
79  *    Received some data from TinyTP. Just queue it on the receive queue
80  *
81  */
82 static int irda_data_indication(void *instance, void *sap, struct sk_buff *skb)
83 {
84         struct irda_sock *self;
85         struct sock *sk;
86         int err;
87
88         IRDA_DEBUG(3, "%s()\n", __FUNCTION__);
89
90         self = instance;
91         sk = instance;
92         IRDA_ASSERT(sk != NULL, return -1;);
93
94         err = sock_queue_rcv_skb(sk, skb);
95         if (err) {
96                 IRDA_DEBUG(1, "%s(), error: no more mem!\n", __FUNCTION__);
97                 self->rx_flow = FLOW_STOP;
98
99                 /* When we return error, TTP will need to requeue the skb */
100                 return err;
101         }
102
103         return 0;
104 }
105
106 /*
107  * Function irda_disconnect_indication (instance, sap, reason, skb)
108  *
109  *    Connection has been closed. Check reason to find out why
110  *
111  */
112 static void irda_disconnect_indication(void *instance, void *sap,
113                                        LM_REASON reason, struct sk_buff *skb)
114 {
115         struct irda_sock *self;
116         struct sock *sk;
117
118         self = instance;
119
120         IRDA_DEBUG(2, "%s(%p)\n", __FUNCTION__, self);
121
122         /* Don't care about it, but let's not leak it */
123         if(skb)
124                 dev_kfree_skb(skb);
125
126         sk = instance;
127         if (sk == NULL) {
128                 IRDA_DEBUG(0, "%s(%p) : BUG : sk is NULL\n",
129                            __FUNCTION__, self);
130                 return;
131         }
132
133         /* Prevent race conditions with irda_release() and irda_shutdown() */
134         bh_lock_sock(sk);
135         if (!sock_flag(sk, SOCK_DEAD) && sk->sk_state != TCP_CLOSE) {
136                 sk->sk_state     = TCP_CLOSE;
137                 sk->sk_shutdown |= SEND_SHUTDOWN;
138
139                 sk->sk_state_change(sk);
140
141                 /* Close our TSAP.
142                  * If we leave it open, IrLMP put it back into the list of
143                  * unconnected LSAPs. The problem is that any incoming request
144                  * can then be matched to this socket (and it will be, because
145                  * it is at the head of the list). This would prevent any
146                  * listening socket waiting on the same TSAP to get those
147                  * requests. Some apps forget to close sockets, or hang to it
148                  * a bit too long, so we may stay in this dead state long
149                  * enough to be noticed...
150                  * Note : all socket function do check sk->sk_state, so we are
151                  * safe...
152                  * Jean II
153                  */
154                 if (self->tsap) {
155                         irttp_close_tsap(self->tsap);
156                         self->tsap = NULL;
157                 }
158         }
159         bh_unlock_sock(sk);
160
161         /* Note : once we are there, there is not much you want to do
162          * with the socket anymore, apart from closing it.
163          * For example, bind() and connect() won't reset sk->sk_err,
164          * sk->sk_shutdown and sk->sk_flags to valid values...
165          * Jean II
166          */
167 }
168
169 /*
170  * Function irda_connect_confirm (instance, sap, qos, max_sdu_size, skb)
171  *
172  *    Connections has been confirmed by the remote device
173  *
174  */
175 static void irda_connect_confirm(void *instance, void *sap,
176                                  struct qos_info *qos,
177                                  __u32 max_sdu_size, __u8 max_header_size,
178                                  struct sk_buff *skb)
179 {
180         struct irda_sock *self;
181         struct sock *sk;
182
183         self = instance;
184
185         IRDA_DEBUG(2, "%s(%p)\n", __FUNCTION__, self);
186
187         sk = instance;
188         if (sk == NULL) {
189                 dev_kfree_skb(skb);
190                 return;
191         }
192
193         dev_kfree_skb(skb);
194         // Should be ??? skb_queue_tail(&sk->sk_receive_queue, skb);
195
196         /* How much header space do we need to reserve */
197         self->max_header_size = max_header_size;
198
199         /* IrTTP max SDU size in transmit direction */
200         self->max_sdu_size_tx = max_sdu_size;
201
202         /* Find out what the largest chunk of data that we can transmit is */
203         switch (sk->sk_type) {
204         case SOCK_STREAM:
205                 if (max_sdu_size != 0) {
206                         IRDA_ERROR("%s: max_sdu_size must be 0\n",
207                                    __FUNCTION__);
208                         return;
209                 }
210                 self->max_data_size = irttp_get_max_seg_size(self->tsap);
211                 break;
212         case SOCK_SEQPACKET:
213                 if (max_sdu_size == 0) {
214                         IRDA_ERROR("%s: max_sdu_size cannot be 0\n",
215                                    __FUNCTION__);
216                         return;
217                 }
218                 self->max_data_size = max_sdu_size;
219                 break;
220         default:
221                 self->max_data_size = irttp_get_max_seg_size(self->tsap);
222         }
223
224         IRDA_DEBUG(2, "%s(), max_data_size=%d\n", __FUNCTION__,
225                    self->max_data_size);
226
227         memcpy(&self->qos_tx, qos, sizeof(struct qos_info));
228
229         /* We are now connected! */
230         sk->sk_state = TCP_ESTABLISHED;
231         sk->sk_state_change(sk);
232 }
233
234 /*
235  * Function irda_connect_indication(instance, sap, qos, max_sdu_size, userdata)
236  *
237  *    Incoming connection
238  *
239  */
240 static void irda_connect_indication(void *instance, void *sap,
241                                     struct qos_info *qos, __u32 max_sdu_size,
242                                     __u8 max_header_size, struct sk_buff *skb)
243 {
244         struct irda_sock *self;
245         struct sock *sk;
246
247         self = instance;
248
249         IRDA_DEBUG(2, "%s(%p)\n", __FUNCTION__, self);
250
251         sk = instance;
252         if (sk == NULL) {
253                 dev_kfree_skb(skb);
254                 return;
255         }
256
257         /* How much header space do we need to reserve */
258         self->max_header_size = max_header_size;
259
260         /* IrTTP max SDU size in transmit direction */
261         self->max_sdu_size_tx = max_sdu_size;
262
263         /* Find out what the largest chunk of data that we can transmit is */
264         switch (sk->sk_type) {
265         case SOCK_STREAM:
266                 if (max_sdu_size != 0) {
267                         IRDA_ERROR("%s: max_sdu_size must be 0\n",
268                                    __FUNCTION__);
269                         kfree_skb(skb);
270                         return;
271                 }
272                 self->max_data_size = irttp_get_max_seg_size(self->tsap);
273                 break;
274         case SOCK_SEQPACKET:
275                 if (max_sdu_size == 0) {
276                         IRDA_ERROR("%s: max_sdu_size cannot be 0\n",
277                                    __FUNCTION__);
278                         kfree_skb(skb);
279                         return;
280                 }
281                 self->max_data_size = max_sdu_size;
282                 break;
283         default:
284                 self->max_data_size = irttp_get_max_seg_size(self->tsap);
285         }
286
287         IRDA_DEBUG(2, "%s(), max_data_size=%d\n", __FUNCTION__,
288                    self->max_data_size);
289
290         memcpy(&self->qos_tx, qos, sizeof(struct qos_info));
291
292         skb_queue_tail(&sk->sk_receive_queue, skb);
293         sk->sk_state_change(sk);
294 }
295
296 /*
297  * Function irda_connect_response (handle)
298  *
299  *    Accept incoming connection
300  *
301  */
302 static void irda_connect_response(struct irda_sock *self)
303 {
304         struct sk_buff *skb;
305
306         IRDA_DEBUG(2, "%s()\n", __FUNCTION__);
307
308         IRDA_ASSERT(self != NULL, return;);
309
310         skb = alloc_skb(TTP_MAX_HEADER + TTP_SAR_HEADER,
311                         GFP_ATOMIC);
312         if (skb == NULL) {
313                 IRDA_DEBUG(0, "%s() Unable to allocate sk_buff!\n",
314                            __FUNCTION__);
315                 return;
316         }
317
318         /* Reserve space for MUX_CONTROL and LAP header */
319         skb_reserve(skb, IRDA_MAX_HEADER);
320
321         irttp_connect_response(self->tsap, self->max_sdu_size_rx, skb);
322 }
323
324 /*
325  * Function irda_flow_indication (instance, sap, flow)
326  *
327  *    Used by TinyTP to tell us if it can accept more data or not
328  *
329  */
330 static void irda_flow_indication(void *instance, void *sap, LOCAL_FLOW flow)
331 {
332         struct irda_sock *self;
333         struct sock *sk;
334
335         IRDA_DEBUG(2, "%s()\n", __FUNCTION__);
336
337         self = instance;
338         sk = instance;
339         IRDA_ASSERT(sk != NULL, return;);
340
341         switch (flow) {
342         case FLOW_STOP:
343                 IRDA_DEBUG(1, "%s(), IrTTP wants us to slow down\n",
344                            __FUNCTION__);
345                 self->tx_flow = flow;
346                 break;
347         case FLOW_START:
348                 self->tx_flow = flow;
349                 IRDA_DEBUG(1, "%s(), IrTTP wants us to start again\n",
350                            __FUNCTION__);
351                 wake_up_interruptible(sk->sk_sleep);
352                 break;
353         default:
354                 IRDA_DEBUG(0, "%s(), Unknown flow command!\n", __FUNCTION__);
355                 /* Unknown flow command, better stop */
356                 self->tx_flow = flow;
357                 break;
358         }
359 }
360
361 /*
362  * Function irda_getvalue_confirm (obj_id, value, priv)
363  *
364  *    Got answer from remote LM-IAS, just pass object to requester...
365  *
366  * Note : duplicate from above, but we need our own version that
367  * doesn't touch the dtsap_sel and save the full value structure...
368  */
369 static void irda_getvalue_confirm(int result, __u16 obj_id,
370                                   struct ias_value *value, void *priv)
371 {
372         struct irda_sock *self;
373
374         self = (struct irda_sock *) priv;
375         if (!self) {
376                 IRDA_WARNING("%s: lost myself!\n", __FUNCTION__);
377                 return;
378         }
379
380         IRDA_DEBUG(2, "%s(%p)\n", __FUNCTION__, self);
381
382         /* We probably don't need to make any more queries */
383         iriap_close(self->iriap);
384         self->iriap = NULL;
385
386         /* Check if request succeeded */
387         if (result != IAS_SUCCESS) {
388                 IRDA_DEBUG(1, "%s(), IAS query failed! (%d)\n", __FUNCTION__,
389                            result);
390
391                 self->errno = result;   /* We really need it later */
392
393                 /* Wake up any processes waiting for result */
394                 wake_up_interruptible(&self->query_wait);
395
396                 return;
397         }
398
399         /* Pass the object to the caller (so the caller must delete it) */
400         self->ias_result = value;
401         self->errno = 0;
402
403         /* Wake up any processes waiting for result */
404         wake_up_interruptible(&self->query_wait);
405 }
406
407 /*
408  * Function irda_selective_discovery_indication (discovery)
409  *
410  *    Got a selective discovery indication from IrLMP.
411  *
412  * IrLMP is telling us that this node is new and matching our hint bit
413  * filter. Wake up any process waiting for answer...
414  */
415 static void irda_selective_discovery_indication(discinfo_t *discovery,
416                                                 DISCOVERY_MODE mode,
417                                                 void *priv)
418 {
419         struct irda_sock *self;
420
421         IRDA_DEBUG(2, "%s()\n", __FUNCTION__);
422
423         self = (struct irda_sock *) priv;
424         if (!self) {
425                 IRDA_WARNING("%s: lost myself!\n", __FUNCTION__);
426                 return;
427         }
428
429         /* Pass parameter to the caller */
430         self->cachedaddr = discovery->daddr;
431
432         /* Wake up process if its waiting for device to be discovered */
433         wake_up_interruptible(&self->query_wait);
434 }
435
436 /*
437  * Function irda_discovery_timeout (priv)
438  *
439  *    Timeout in the selective discovery process
440  *
441  * We were waiting for a node to be discovered, but nothing has come up
442  * so far. Wake up the user and tell him that we failed...
443  */
444 static void irda_discovery_timeout(u_long priv)
445 {
446         struct irda_sock *self;
447
448         IRDA_DEBUG(2, "%s()\n", __FUNCTION__);
449
450         self = (struct irda_sock *) priv;
451         IRDA_ASSERT(self != NULL, return;);
452
453         /* Nothing for the caller */
454         self->cachelog = NULL;
455         self->cachedaddr = 0;
456         self->errno = -ETIME;
457
458         /* Wake up process if its still waiting... */
459         wake_up_interruptible(&self->query_wait);
460 }
461
462 /*
463  * Function irda_open_tsap (self)
464  *
465  *    Open local Transport Service Access Point (TSAP)
466  *
467  */
468 static int irda_open_tsap(struct irda_sock *self, __u8 tsap_sel, char *name)
469 {
470         notify_t notify;
471
472         if (self->tsap) {
473                 IRDA_WARNING("%s: busy!\n", __FUNCTION__);
474                 return -EBUSY;
475         }
476
477         /* Initialize callbacks to be used by the IrDA stack */
478         irda_notify_init(&notify);
479         notify.connect_confirm       = irda_connect_confirm;
480         notify.connect_indication    = irda_connect_indication;
481         notify.disconnect_indication = irda_disconnect_indication;
482         notify.data_indication       = irda_data_indication;
483         notify.udata_indication      = irda_data_indication;
484         notify.flow_indication       = irda_flow_indication;
485         notify.instance = self;
486         strncpy(notify.name, name, NOTIFY_MAX_NAME);
487
488         self->tsap = irttp_open_tsap(tsap_sel, DEFAULT_INITIAL_CREDIT,
489                                      &notify);
490         if (self->tsap == NULL) {
491                 IRDA_DEBUG(0, "%s(), Unable to allocate TSAP!\n",
492                            __FUNCTION__);
493                 return -ENOMEM;
494         }
495         /* Remember which TSAP selector we actually got */
496         self->stsap_sel = self->tsap->stsap_sel;
497
498         return 0;
499 }
500
501 /*
502  * Function irda_open_lsap (self)
503  *
504  *    Open local Link Service Access Point (LSAP). Used for opening Ultra
505  *    sockets
506  */
507 #ifdef CONFIG_IRDA_ULTRA
508 static int irda_open_lsap(struct irda_sock *self, int pid)
509 {
510         notify_t notify;
511
512         if (self->lsap) {
513                 IRDA_WARNING("%s(), busy!\n", __FUNCTION__);
514                 return -EBUSY;
515         }
516
517         /* Initialize callbacks to be used by the IrDA stack */
518         irda_notify_init(&notify);
519         notify.udata_indication = irda_data_indication;
520         notify.instance = self;
521         strncpy(notify.name, "Ultra", NOTIFY_MAX_NAME);
522
523         self->lsap = irlmp_open_lsap(LSAP_CONNLESS, &notify, pid);
524         if (self->lsap == NULL) {
525                 IRDA_DEBUG( 0, "%s(), Unable to allocate LSAP!\n", __FUNCTION__);
526                 return -ENOMEM;
527         }
528
529         return 0;
530 }
531 #endif /* CONFIG_IRDA_ULTRA */
532
533 /*
534  * Function irda_find_lsap_sel (self, name)
535  *
536  *    Try to lookup LSAP selector in remote LM-IAS
537  *
538  * Basically, we start a IAP query, and then go to sleep. When the query
539  * return, irda_getvalue_confirm will wake us up, and we can examine the
540  * result of the query...
541  * Note that in some case, the query fail even before we go to sleep,
542  * creating some races...
543  */
544 static int irda_find_lsap_sel(struct irda_sock *self, char *name)
545 {
546         IRDA_DEBUG(2, "%s(%p, %s)\n", __FUNCTION__, self, name);
547
548         IRDA_ASSERT(self != NULL, return -1;);
549
550         if (self->iriap) {
551                 IRDA_WARNING("%s(): busy with a previous query\n",
552                              __FUNCTION__);
553                 return -EBUSY;
554         }
555
556         self->iriap = iriap_open(LSAP_ANY, IAS_CLIENT, self,
557                                  irda_getvalue_confirm);
558         if(self->iriap == NULL)
559                 return -ENOMEM;
560
561         /* Treat unexpected wakeup as disconnect */
562         self->errno = -EHOSTUNREACH;
563
564         /* Query remote LM-IAS */
565         iriap_getvaluebyclass_request(self->iriap, self->saddr, self->daddr,
566                                       name, "IrDA:TinyTP:LsapSel");
567
568         /* Wait for answer, if not yet finished (or failed) */
569         if (wait_event_interruptible(self->query_wait, (self->iriap==NULL)))
570                 /* Treat signals as disconnect */
571                 return -EHOSTUNREACH;
572
573         /* Check what happened */
574         if (self->errno)
575         {
576                 /* Requested object/attribute doesn't exist */
577                 if((self->errno == IAS_CLASS_UNKNOWN) ||
578                    (self->errno == IAS_ATTRIB_UNKNOWN))
579                         return (-EADDRNOTAVAIL);
580                 else
581                         return (-EHOSTUNREACH);
582         }
583
584         /* Get the remote TSAP selector */
585         switch (self->ias_result->type) {
586         case IAS_INTEGER:
587                 IRDA_DEBUG(4, "%s() int=%d\n",
588                            __FUNCTION__, self->ias_result->t.integer);
589
590                 if (self->ias_result->t.integer != -1)
591                         self->dtsap_sel = self->ias_result->t.integer;
592                 else
593                         self->dtsap_sel = 0;
594                 break;
595         default:
596                 self->dtsap_sel = 0;
597                 IRDA_DEBUG(0, "%s(), bad type!\n", __FUNCTION__);
598                 break;
599         }
600         if (self->ias_result)
601                 irias_delete_value(self->ias_result);
602
603         if (self->dtsap_sel)
604                 return 0;
605
606         return -EADDRNOTAVAIL;
607 }
608
609 /*
610  * Function irda_discover_daddr_and_lsap_sel (self, name)
611  *
612  *    This try to find a device with the requested service.
613  *
614  * It basically look into the discovery log. For each address in the list,
615  * it queries the LM-IAS of the device to find if this device offer
616  * the requested service.
617  * If there is more than one node supporting the service, we complain
618  * to the user (it should move devices around).
619  * The, we set both the destination address and the lsap selector to point
620  * on the service on the unique device we have found.
621  *
622  * Note : this function fails if there is more than one device in range,
623  * because IrLMP doesn't disconnect the LAP when the last LSAP is closed.
624  * Moreover, we would need to wait the LAP disconnection...
625  */
626 static int irda_discover_daddr_and_lsap_sel(struct irda_sock *self, char *name)
627 {
628         discinfo_t *discoveries;        /* Copy of the discovery log */
629         int     number;                 /* Number of nodes in the log */
630         int     i;
631         int     err = -ENETUNREACH;
632         __u32   daddr = DEV_ADDR_ANY;   /* Address we found the service on */
633         __u8    dtsap_sel = 0x0;        /* TSAP associated with it */
634
635         IRDA_DEBUG(2, "%s(), name=%s\n", __FUNCTION__, name);
636
637         IRDA_ASSERT(self != NULL, return -1;);
638
639         /* Ask lmp for the current discovery log
640          * Note : we have to use irlmp_get_discoveries(), as opposed
641          * to play with the cachelog directly, because while we are
642          * making our ias query, le log might change... */
643         discoveries = irlmp_get_discoveries(&number, self->mask.word,
644                                             self->nslots);
645         /* Check if the we got some results */
646         if (discoveries == NULL)
647                 return -ENETUNREACH;    /* No nodes discovered */
648
649         /*
650          * Now, check all discovered devices (if any), and connect
651          * client only about the services that the client is
652          * interested in...
653          */
654         for(i = 0; i < number; i++) {
655                 /* Try the address in the log */
656                 self->daddr = discoveries[i].daddr;
657                 self->saddr = 0x0;
658                 IRDA_DEBUG(1, "%s(), trying daddr = %08x\n",
659                            __FUNCTION__, self->daddr);
660
661                 /* Query remote LM-IAS for this service */
662                 err = irda_find_lsap_sel(self, name);
663                 switch (err) {
664                 case 0:
665                         /* We found the requested service */
666                         if(daddr != DEV_ADDR_ANY) {
667                                 IRDA_DEBUG(1, "%s(), discovered service ''%s'' in two different devices !!!\n",
668                                            __FUNCTION__, name);
669                                 self->daddr = DEV_ADDR_ANY;
670                                 kfree(discoveries);
671                                 return(-ENOTUNIQ);
672                         }
673                         /* First time we found that one, save it ! */
674                         daddr = self->daddr;
675                         dtsap_sel = self->dtsap_sel;
676                         break;
677                 case -EADDRNOTAVAIL:
678                         /* Requested service simply doesn't exist on this node */
679                         break;
680                 default:
681                         /* Something bad did happen :-( */
682                         IRDA_DEBUG(0, "%s(), unexpected IAS query failure\n", __FUNCTION__);
683                         self->daddr = DEV_ADDR_ANY;
684                         kfree(discoveries);
685                         return(-EHOSTUNREACH);
686                         break;
687                 }
688         }
689         /* Cleanup our copy of the discovery log */
690         kfree(discoveries);
691
692         /* Check out what we found */
693         if(daddr == DEV_ADDR_ANY) {
694                 IRDA_DEBUG(1, "%s(), cannot discover service ''%s'' in any device !!!\n",
695                            __FUNCTION__, name);
696                 self->daddr = DEV_ADDR_ANY;
697                 return(-EADDRNOTAVAIL);
698         }
699
700         /* Revert back to discovered device & service */
701         self->daddr = daddr;
702         self->saddr = 0x0;
703         self->dtsap_sel = dtsap_sel;
704
705         IRDA_DEBUG(1, "%s(), discovered requested service ''%s'' at address %08x\n",
706                    __FUNCTION__, name, self->daddr);
707
708         return 0;
709 }
710
711 /*
712  * Function irda_getname (sock, uaddr, uaddr_len, peer)
713  *
714  *    Return the our own, or peers socket address (sockaddr_irda)
715  *
716  */
717 static int irda_getname(struct socket *sock, struct sockaddr *uaddr,
718                         int *uaddr_len, int peer)
719 {
720         struct sockaddr_irda saddr;
721         struct sock *sk = sock->sk;
722         struct irda_sock *self = irda_sk(sk);
723
724         if (peer) {
725                 if (sk->sk_state != TCP_ESTABLISHED)
726                         return -ENOTCONN;
727
728                 saddr.sir_family = AF_IRDA;
729                 saddr.sir_lsap_sel = self->dtsap_sel;
730                 saddr.sir_addr = self->daddr;
731         } else {
732                 saddr.sir_family = AF_IRDA;
733                 saddr.sir_lsap_sel = self->stsap_sel;
734                 saddr.sir_addr = self->saddr;
735         }
736
737         IRDA_DEBUG(1, "%s(), tsap_sel = %#x\n", __FUNCTION__, saddr.sir_lsap_sel);
738         IRDA_DEBUG(1, "%s(), addr = %08x\n", __FUNCTION__, saddr.sir_addr);
739
740         /* uaddr_len come to us uninitialised */
741         *uaddr_len = sizeof (struct sockaddr_irda);
742         memcpy(uaddr, &saddr, *uaddr_len);
743
744         return 0;
745 }
746
747 /*
748  * Function irda_listen (sock, backlog)
749  *
750  *    Just move to the listen state
751  *
752  */
753 static int irda_listen(struct socket *sock, int backlog)
754 {
755         struct sock *sk = sock->sk;
756
757         IRDA_DEBUG(2, "%s()\n", __FUNCTION__);
758
759         if ((sk->sk_type != SOCK_STREAM) && (sk->sk_type != SOCK_SEQPACKET) &&
760             (sk->sk_type != SOCK_DGRAM))
761                 return -EOPNOTSUPP;
762
763         if (sk->sk_state != TCP_LISTEN) {
764                 sk->sk_max_ack_backlog = backlog;
765                 sk->sk_state           = TCP_LISTEN;
766
767                 return 0;
768         }
769
770         return -EOPNOTSUPP;
771 }
772
773 /*
774  * Function irda_bind (sock, uaddr, addr_len)
775  *
776  *    Used by servers to register their well known TSAP
777  *
778  */
779 static int irda_bind(struct socket *sock, struct sockaddr *uaddr, int addr_len)
780 {
781         struct sock *sk = sock->sk;
782         struct sockaddr_irda *addr = (struct sockaddr_irda *) uaddr;
783         struct irda_sock *self = irda_sk(sk);
784         int err;
785
786         IRDA_ASSERT(self != NULL, return -1;);
787
788         IRDA_DEBUG(2, "%s(%p)\n", __FUNCTION__, self);
789
790         if (addr_len != sizeof(struct sockaddr_irda))
791                 return -EINVAL;
792
793 #ifdef CONFIG_IRDA_ULTRA
794         /* Special care for Ultra sockets */
795         if ((sk->sk_type == SOCK_DGRAM) &&
796             (sk->sk_protocol == IRDAPROTO_ULTRA)) {
797                 self->pid = addr->sir_lsap_sel;
798                 if (self->pid & 0x80) {
799                         IRDA_DEBUG(0, "%s(), extension in PID not supp!\n", __FUNCTION__);
800                         return -EOPNOTSUPP;
801                 }
802                 err = irda_open_lsap(self, self->pid);
803                 if (err < 0)
804                         return err;
805
806                 /* Pretend we are connected */
807                 sock->state = SS_CONNECTED;
808                 sk->sk_state   = TCP_ESTABLISHED;
809
810                 return 0;
811         }
812 #endif /* CONFIG_IRDA_ULTRA */
813
814         err = irda_open_tsap(self, addr->sir_lsap_sel, addr->sir_name);
815         if (err < 0)
816                 return err;
817
818         /*  Register with LM-IAS */
819         self->ias_obj = irias_new_object(addr->sir_name, jiffies);
820         irias_add_integer_attrib(self->ias_obj, "IrDA:TinyTP:LsapSel",
821                                  self->stsap_sel, IAS_KERNEL_ATTR);
822         irias_insert_object(self->ias_obj);
823
824         return 0;
825 }
826
827 /*
828  * Function irda_accept (sock, newsock, flags)
829  *
830  *    Wait for incoming connection
831  *
832  */
833 static int irda_accept(struct socket *sock, struct socket *newsock, int flags)
834 {
835         struct sock *sk = sock->sk;
836         struct irda_sock *new, *self = irda_sk(sk);
837         struct sock *newsk;
838         struct sk_buff *skb;
839         int err;
840
841         IRDA_DEBUG(2, "%s()\n", __FUNCTION__);
842
843         IRDA_ASSERT(self != NULL, return -1;);
844
845         err = irda_create(newsock, sk->sk_protocol);
846         if (err)
847                 return err;
848
849         if (sock->state != SS_UNCONNECTED)
850                 return -EINVAL;
851
852         if ((sk = sock->sk) == NULL)
853                 return -EINVAL;
854
855         if ((sk->sk_type != SOCK_STREAM) && (sk->sk_type != SOCK_SEQPACKET) &&
856             (sk->sk_type != SOCK_DGRAM))
857                 return -EOPNOTSUPP;
858
859         if (sk->sk_state != TCP_LISTEN)
860                 return -EINVAL;
861
862         /*
863          *      The read queue this time is holding sockets ready to use
864          *      hooked into the SABM we saved
865          */
866
867         /*
868          * We can perform the accept only if there is incoming data
869          * on the listening socket.
870          * So, we will block the caller until we receive any data.
871          * If the caller was waiting on select() or poll() before
872          * calling us, the data is waiting for us ;-)
873          * Jean II
874          */
875         while (1) {
876                 skb = skb_dequeue(&sk->sk_receive_queue);
877                 if (skb)
878                         break;
879
880                 /* Non blocking operation */
881                 if (flags & O_NONBLOCK)
882                         return -EWOULDBLOCK;
883
884                 err = wait_event_interruptible(*(sk->sk_sleep),
885                                         skb_peek(&sk->sk_receive_queue));
886                 if (err)
887                         return err;
888         }
889
890         newsk = newsock->sk;
891         newsk->sk_state = TCP_ESTABLISHED;
892
893         new = irda_sk(newsk);
894         IRDA_ASSERT(new != NULL, return -1;);
895
896         /* Now attach up the new socket */
897         new->tsap = irttp_dup(self->tsap, new);
898         if (!new->tsap) {
899                 IRDA_DEBUG(0, "%s(), dup failed!\n", __FUNCTION__);
900                 kfree_skb(skb);
901                 return -1;
902         }
903
904         new->stsap_sel = new->tsap->stsap_sel;
905         new->dtsap_sel = new->tsap->dtsap_sel;
906         new->saddr = irttp_get_saddr(new->tsap);
907         new->daddr = irttp_get_daddr(new->tsap);
908
909         new->max_sdu_size_tx = self->max_sdu_size_tx;
910         new->max_sdu_size_rx = self->max_sdu_size_rx;
911         new->max_data_size   = self->max_data_size;
912         new->max_header_size = self->max_header_size;
913
914         memcpy(&new->qos_tx, &self->qos_tx, sizeof(struct qos_info));
915
916         /* Clean up the original one to keep it in listen state */
917         irttp_listen(self->tsap);
918
919         /* Wow ! What is that ? Jean II */
920         skb->sk = NULL;
921         skb->destructor = NULL;
922         kfree_skb(skb);
923         sk->sk_ack_backlog--;
924
925         newsock->state = SS_CONNECTED;
926
927         irda_connect_response(new);
928
929         return 0;
930 }
931
932 /*
933  * Function irda_connect (sock, uaddr, addr_len, flags)
934  *
935  *    Connect to a IrDA device
936  *
937  * The main difference with a "standard" connect is that with IrDA we need
938  * to resolve the service name into a TSAP selector (in TCP, port number
939  * doesn't have to be resolved).
940  * Because of this service name resoltion, we can offer "auto-connect",
941  * where we connect to a service without specifying a destination address.
942  *
943  * Note : by consulting "errno", the user space caller may learn the cause
944  * of the failure. Most of them are visible in the function, others may come
945  * from subroutines called and are listed here :
946  *      o EBUSY : already processing a connect
947  *      o EHOSTUNREACH : bad addr->sir_addr argument
948  *      o EADDRNOTAVAIL : bad addr->sir_name argument
949  *      o ENOTUNIQ : more than one node has addr->sir_name (auto-connect)
950  *      o ENETUNREACH : no node found on the network (auto-connect)
951  */
952 static int irda_connect(struct socket *sock, struct sockaddr *uaddr,
953                         int addr_len, int flags)
954 {
955         struct sock *sk = sock->sk;
956         struct sockaddr_irda *addr = (struct sockaddr_irda *) uaddr;
957         struct irda_sock *self = irda_sk(sk);
958         int err;
959
960         IRDA_DEBUG(2, "%s(%p)\n", __FUNCTION__, self);
961
962         /* Don't allow connect for Ultra sockets */
963         if ((sk->sk_type == SOCK_DGRAM) && (sk->sk_protocol == IRDAPROTO_ULTRA))
964                 return -ESOCKTNOSUPPORT;
965
966         if (sk->sk_state == TCP_ESTABLISHED && sock->state == SS_CONNECTING) {
967                 sock->state = SS_CONNECTED;
968                 return 0;   /* Connect completed during a ERESTARTSYS event */
969         }
970
971         if (sk->sk_state == TCP_CLOSE && sock->state == SS_CONNECTING) {
972                 sock->state = SS_UNCONNECTED;
973                 return -ECONNREFUSED;
974         }
975
976         if (sk->sk_state == TCP_ESTABLISHED)
977                 return -EISCONN;      /* No reconnect on a seqpacket socket */
978
979         sk->sk_state   = TCP_CLOSE;
980         sock->state = SS_UNCONNECTED;
981
982         if (addr_len != sizeof(struct sockaddr_irda))
983                 return -EINVAL;
984
985         /* Check if user supplied any destination device address */
986         if ((!addr->sir_addr) || (addr->sir_addr == DEV_ADDR_ANY)) {
987                 /* Try to find one suitable */
988                 err = irda_discover_daddr_and_lsap_sel(self, addr->sir_name);
989                 if (err) {
990                         IRDA_DEBUG(0, "%s(), auto-connect failed!\n", __FUNCTION__);
991                         return err;
992                 }
993         } else {
994                 /* Use the one provided by the user */
995                 self->daddr = addr->sir_addr;
996                 IRDA_DEBUG(1, "%s(), daddr = %08x\n", __FUNCTION__, self->daddr);
997
998                 /* If we don't have a valid service name, we assume the
999                  * user want to connect on a specific LSAP. Prevent
1000                  * the use of invalid LSAPs (IrLMP 1.1 p10). Jean II */
1001                 if((addr->sir_name[0] != '\0') ||
1002                    (addr->sir_lsap_sel >= 0x70)) {
1003                         /* Query remote LM-IAS using service name */
1004                         err = irda_find_lsap_sel(self, addr->sir_name);
1005                         if (err) {
1006                                 IRDA_DEBUG(0, "%s(), connect failed!\n", __FUNCTION__);
1007                                 return err;
1008                         }
1009                 } else {
1010                         /* Directly connect to the remote LSAP
1011                          * specified by the sir_lsap field.
1012                          * Please use with caution, in IrDA LSAPs are
1013                          * dynamic and there is no "well-known" LSAP. */
1014                         self->dtsap_sel = addr->sir_lsap_sel;
1015                 }
1016         }
1017
1018         /* Check if we have opened a local TSAP */
1019         if (!self->tsap)
1020                 irda_open_tsap(self, LSAP_ANY, addr->sir_name);
1021
1022         /* Move to connecting socket, start sending Connect Requests */
1023         sock->state = SS_CONNECTING;
1024         sk->sk_state   = TCP_SYN_SENT;
1025
1026         /* Connect to remote device */
1027         err = irttp_connect_request(self->tsap, self->dtsap_sel,
1028                                     self->saddr, self->daddr, NULL,
1029                                     self->max_sdu_size_rx, NULL);
1030         if (err) {
1031                 IRDA_DEBUG(0, "%s(), connect failed!\n", __FUNCTION__);
1032                 return err;
1033         }
1034
1035         /* Now the loop */
1036         if (sk->sk_state != TCP_ESTABLISHED && (flags & O_NONBLOCK))
1037                 return -EINPROGRESS;
1038
1039         if (wait_event_interruptible(*(sk->sk_sleep),
1040                                      (sk->sk_state != TCP_SYN_SENT)))
1041                 return -ERESTARTSYS;
1042
1043         if (sk->sk_state != TCP_ESTABLISHED) {
1044                 sock->state = SS_UNCONNECTED;
1045                 err = sock_error(sk);
1046                 return err? err : -ECONNRESET;
1047         }
1048
1049         sock->state = SS_CONNECTED;
1050
1051         /* At this point, IrLMP has assigned our source address */
1052         self->saddr = irttp_get_saddr(self->tsap);
1053
1054         return 0;
1055 }
1056
1057 static struct proto irda_proto = {
1058         .name     = "IRDA",
1059         .owner    = THIS_MODULE,
1060         .obj_size = sizeof(struct irda_sock),
1061 };
1062
1063 /*
1064  * Function irda_create (sock, protocol)
1065  *
1066  *    Create IrDA socket
1067  *
1068  */
1069 static int irda_create(struct socket *sock, int protocol)
1070 {
1071         struct sock *sk;
1072         struct irda_sock *self;
1073
1074         IRDA_DEBUG(2, "%s()\n", __FUNCTION__);
1075
1076         /* Check for valid socket type */
1077         switch (sock->type) {
1078         case SOCK_STREAM:     /* For TTP connections with SAR disabled */
1079         case SOCK_SEQPACKET:  /* For TTP connections with SAR enabled */
1080         case SOCK_DGRAM:      /* For TTP Unitdata or LMP Ultra transfers */
1081                 break;
1082         default:
1083                 return -ESOCKTNOSUPPORT;
1084         }
1085
1086         /* Allocate networking socket */
1087         sk = sk_alloc(PF_IRDA, GFP_ATOMIC, &irda_proto, 1);
1088         if (sk == NULL)
1089                 return -ENOMEM;
1090
1091         self = irda_sk(sk);
1092         IRDA_DEBUG(2, "%s() : self is %p\n", __FUNCTION__, self);
1093
1094         init_waitqueue_head(&self->query_wait);
1095
1096         /* Initialise networking socket struct */
1097         sock_init_data(sock, sk);       /* Note : set sk->sk_refcnt to 1 */
1098         sk->sk_family = PF_IRDA;
1099         sk->sk_protocol = protocol;
1100
1101         switch (sock->type) {
1102         case SOCK_STREAM:
1103                 sock->ops = &irda_stream_ops;
1104                 self->max_sdu_size_rx = TTP_SAR_DISABLE;
1105                 break;
1106         case SOCK_SEQPACKET:
1107                 sock->ops = &irda_seqpacket_ops;
1108                 self->max_sdu_size_rx = TTP_SAR_UNBOUND;
1109                 break;
1110         case SOCK_DGRAM:
1111                 switch (protocol) {
1112 #ifdef CONFIG_IRDA_ULTRA
1113                 case IRDAPROTO_ULTRA:
1114                         sock->ops = &irda_ultra_ops;
1115                         /* Initialise now, because we may send on unbound
1116                          * sockets. Jean II */
1117                         self->max_data_size = ULTRA_MAX_DATA - LMP_PID_HEADER;
1118                         self->max_header_size = IRDA_MAX_HEADER + LMP_PID_HEADER;
1119                         break;
1120 #endif /* CONFIG_IRDA_ULTRA */
1121                 case IRDAPROTO_UNITDATA:
1122                         sock->ops = &irda_dgram_ops;
1123                         /* We let Unitdata conn. be like seqpack conn. */
1124                         self->max_sdu_size_rx = TTP_SAR_UNBOUND;
1125                         break;
1126                 default:
1127                         IRDA_ERROR("%s: protocol not supported!\n",
1128                                    __FUNCTION__);
1129                         return -ESOCKTNOSUPPORT;
1130                 }
1131                 break;
1132         default:
1133                 return -ESOCKTNOSUPPORT;
1134         }
1135
1136         /* Register as a client with IrLMP */
1137         self->ckey = irlmp_register_client(0, NULL, NULL, NULL);
1138         self->mask.word = 0xffff;
1139         self->rx_flow = self->tx_flow = FLOW_START;
1140         self->nslots = DISCOVERY_DEFAULT_SLOTS;
1141         self->daddr = DEV_ADDR_ANY;     /* Until we get connected */
1142         self->saddr = 0x0;              /* so IrLMP assign us any link */
1143         return 0;
1144 }
1145
1146 /*
1147  * Function irda_destroy_socket (self)
1148  *
1149  *    Destroy socket
1150  *
1151  */
1152 static void irda_destroy_socket(struct irda_sock *self)
1153 {
1154         IRDA_DEBUG(2, "%s(%p)\n", __FUNCTION__, self);
1155
1156         IRDA_ASSERT(self != NULL, return;);
1157
1158         /* Unregister with IrLMP */
1159         irlmp_unregister_client(self->ckey);
1160         irlmp_unregister_service(self->skey);
1161
1162         /* Unregister with LM-IAS */
1163         if (self->ias_obj) {
1164                 irias_delete_object(self->ias_obj);
1165                 self->ias_obj = NULL;
1166         }
1167
1168         if (self->iriap) {
1169                 iriap_close(self->iriap);
1170                 self->iriap = NULL;
1171         }
1172
1173         if (self->tsap) {
1174                 irttp_disconnect_request(self->tsap, NULL, P_NORMAL);
1175                 irttp_close_tsap(self->tsap);
1176                 self->tsap = NULL;
1177         }
1178 #ifdef CONFIG_IRDA_ULTRA
1179         if (self->lsap) {
1180                 irlmp_close_lsap(self->lsap);
1181                 self->lsap = NULL;
1182         }
1183 #endif /* CONFIG_IRDA_ULTRA */
1184 }
1185
1186 /*
1187  * Function irda_release (sock)
1188  */
1189 static int irda_release(struct socket *sock)
1190 {
1191         struct sock *sk = sock->sk;
1192
1193         IRDA_DEBUG(2, "%s()\n", __FUNCTION__);
1194
1195         if (sk == NULL)
1196                 return 0;
1197
1198         lock_sock(sk);
1199         sk->sk_state       = TCP_CLOSE;
1200         sk->sk_shutdown   |= SEND_SHUTDOWN;
1201         sk->sk_state_change(sk);
1202
1203         /* Destroy IrDA socket */
1204         irda_destroy_socket(irda_sk(sk));
1205
1206         sock_orphan(sk);
1207         sock->sk   = NULL;
1208         release_sock(sk);
1209
1210         /* Purge queues (see sock_init_data()) */
1211         skb_queue_purge(&sk->sk_receive_queue);
1212
1213         /* Destroy networking socket if we are the last reference on it,
1214          * i.e. if(sk->sk_refcnt == 0) -> sk_free(sk) */
1215         sock_put(sk);
1216
1217         /* Notes on socket locking and deallocation... - Jean II
1218          * In theory we should put pairs of sock_hold() / sock_put() to
1219          * prevent the socket to be destroyed whenever there is an
1220          * outstanding request or outstanding incoming packet or event.
1221          *
1222          * 1) This may include IAS request, both in connect and getsockopt.
1223          * Unfortunately, the situation is a bit more messy than it looks,
1224          * because we close iriap and kfree(self) above.
1225          *
1226          * 2) This may include selective discovery in getsockopt.
1227          * Same stuff as above, irlmp registration and self are gone.
1228          *
1229          * Probably 1 and 2 may not matter, because it's all triggered
1230          * by a process and the socket layer already prevent the
1231          * socket to go away while a process is holding it, through
1232          * sockfd_put() and fput()...
1233          *
1234          * 3) This may include deferred TSAP closure. In particular,
1235          * we may receive a late irda_disconnect_indication()
1236          * Fortunately, (tsap_cb *)->close_pend should protect us
1237          * from that.
1238          *
1239          * I did some testing on SMP, and it looks solid. And the socket
1240          * memory leak is now gone... - Jean II
1241          */
1242
1243         return 0;
1244 }
1245
1246 /*
1247  * Function irda_sendmsg (iocb, sock, msg, len)
1248  *
1249  *    Send message down to TinyTP. This function is used for both STREAM and
1250  *    SEQPACK services. This is possible since it forces the client to
1251  *    fragment the message if necessary
1252  */
1253 static int irda_sendmsg(struct kiocb *iocb, struct socket *sock,
1254                         struct msghdr *msg, size_t len)
1255 {
1256         struct sock *sk = sock->sk;
1257         struct irda_sock *self;
1258         struct sk_buff *skb;
1259         int err;
1260
1261         IRDA_DEBUG(4, "%s(), len=%zd\n", __FUNCTION__, len);
1262
1263         /* Note : socket.c set MSG_EOR on SEQPACKET sockets */
1264         if (msg->msg_flags & ~(MSG_DONTWAIT|MSG_EOR|MSG_CMSG_COMPAT))
1265                 return -EINVAL;
1266
1267         if (sk->sk_shutdown & SEND_SHUTDOWN) {
1268                 send_sig(SIGPIPE, current, 0);
1269                 return -EPIPE;
1270         }
1271
1272         if (sk->sk_state != TCP_ESTABLISHED)
1273                 return -ENOTCONN;
1274
1275         self = irda_sk(sk);
1276         IRDA_ASSERT(self != NULL, return -1;);
1277
1278         /* Check if IrTTP is wants us to slow down */
1279
1280         if (wait_event_interruptible(*(sk->sk_sleep),
1281             (self->tx_flow != FLOW_STOP  ||  sk->sk_state != TCP_ESTABLISHED)))
1282                 return -ERESTARTSYS;
1283
1284         /* Check if we are still connected */
1285         if (sk->sk_state != TCP_ESTABLISHED)
1286                 return -ENOTCONN;
1287
1288         /* Check that we don't send out too big frames */
1289         if (len > self->max_data_size) {
1290                 IRDA_DEBUG(2, "%s(), Chopping frame from %zd to %d bytes!\n",
1291                            __FUNCTION__, len, self->max_data_size);
1292                 len = self->max_data_size;
1293         }
1294
1295         skb = sock_alloc_send_skb(sk, len + self->max_header_size + 16,
1296                                   msg->msg_flags & MSG_DONTWAIT, &err);
1297         if (!skb)
1298                 return -ENOBUFS;
1299
1300         skb_reserve(skb, self->max_header_size + 16);
1301         skb_reset_transport_header(skb);
1302         skb_put(skb, len);
1303         err = memcpy_fromiovec(skb_transport_header(skb), msg->msg_iov, len);
1304         if (err) {
1305                 kfree_skb(skb);
1306                 return err;
1307         }
1308
1309         /*
1310          * Just send the message to TinyTP, and let it deal with possible
1311          * errors. No need to duplicate all that here
1312          */
1313         err = irttp_data_request(self->tsap, skb);
1314         if (err) {
1315                 IRDA_DEBUG(0, "%s(), err=%d\n", __FUNCTION__, err);
1316                 return err;
1317         }
1318         /* Tell client how much data we actually sent */
1319         return len;
1320 }
1321
1322 /*
1323  * Function irda_recvmsg_dgram (iocb, sock, msg, size, flags)
1324  *
1325  *    Try to receive message and copy it to user. The frame is discarded
1326  *    after being read, regardless of how much the user actually read
1327  */
1328 static int irda_recvmsg_dgram(struct kiocb *iocb, struct socket *sock,
1329                               struct msghdr *msg, size_t size, int flags)
1330 {
1331         struct sock *sk = sock->sk;
1332         struct irda_sock *self = irda_sk(sk);
1333         struct sk_buff *skb;
1334         size_t copied;
1335         int err;
1336
1337         IRDA_DEBUG(4, "%s()\n", __FUNCTION__);
1338
1339         IRDA_ASSERT(self != NULL, return -1;);
1340
1341         if ((err = sock_error(sk)) < 0)
1342                 return err;
1343
1344         skb = skb_recv_datagram(sk, flags & ~MSG_DONTWAIT,
1345                                 flags & MSG_DONTWAIT, &err);
1346         if (!skb)
1347                 return err;
1348
1349         skb_reset_transport_header(skb);
1350         copied = skb->len;
1351
1352         if (copied > size) {
1353                 IRDA_DEBUG(2, "%s(), Received truncated frame (%zd < %zd)!\n",
1354                            __FUNCTION__, copied, size);
1355                 copied = size;
1356                 msg->msg_flags |= MSG_TRUNC;
1357         }
1358         skb_copy_datagram_iovec(skb, 0, msg->msg_iov, copied);
1359
1360         skb_free_datagram(sk, skb);
1361
1362         /*
1363          *  Check if we have previously stopped IrTTP and we know
1364          *  have more free space in our rx_queue. If so tell IrTTP
1365          *  to start delivering frames again before our rx_queue gets
1366          *  empty
1367          */
1368         if (self->rx_flow == FLOW_STOP) {
1369                 if ((atomic_read(&sk->sk_rmem_alloc) << 2) <= sk->sk_rcvbuf) {
1370                         IRDA_DEBUG(2, "%s(), Starting IrTTP\n", __FUNCTION__);
1371                         self->rx_flow = FLOW_START;
1372                         irttp_flow_request(self->tsap, FLOW_START);
1373                 }
1374         }
1375
1376         return copied;
1377 }
1378
1379 /*
1380  * Function irda_recvmsg_stream (iocb, sock, msg, size, flags)
1381  */
1382 static int irda_recvmsg_stream(struct kiocb *iocb, struct socket *sock,
1383                                struct msghdr *msg, size_t size, int flags)
1384 {
1385         struct sock *sk = sock->sk;
1386         struct irda_sock *self = irda_sk(sk);
1387         int noblock = flags & MSG_DONTWAIT;
1388         size_t copied = 0;
1389         int target, err;
1390         long timeo;
1391
1392         IRDA_DEBUG(3, "%s()\n", __FUNCTION__);
1393
1394         IRDA_ASSERT(self != NULL, return -1;);
1395
1396         if ((err = sock_error(sk)) < 0)
1397                 return err;
1398
1399         if (sock->flags & __SO_ACCEPTCON)
1400                 return(-EINVAL);
1401
1402         if (flags & MSG_OOB)
1403                 return -EOPNOTSUPP;
1404
1405         target = sock_rcvlowat(sk, flags & MSG_WAITALL, size);
1406         timeo = sock_rcvtimeo(sk, noblock);
1407
1408         msg->msg_namelen = 0;
1409
1410         do {
1411                 int chunk;
1412                 struct sk_buff *skb = skb_dequeue(&sk->sk_receive_queue);
1413
1414                 if (skb == NULL) {
1415                         DEFINE_WAIT(wait);
1416                         int ret = 0;
1417
1418                         if (copied >= target)
1419                                 break;
1420
1421                         prepare_to_wait_exclusive(sk->sk_sleep, &wait, TASK_INTERRUPTIBLE);
1422
1423                         /*
1424                          *      POSIX 1003.1g mandates this order.
1425                          */
1426                         ret = sock_error(sk);
1427                         if (ret)
1428                                 ;
1429                         else if (sk->sk_shutdown & RCV_SHUTDOWN)
1430                                 ;
1431                         else if (noblock)
1432                                 ret = -EAGAIN;
1433                         else if (signal_pending(current))
1434                                 ret = sock_intr_errno(timeo);
1435                         else if (sk->sk_state != TCP_ESTABLISHED)
1436                                 ret = -ENOTCONN;
1437                         else if (skb_peek(&sk->sk_receive_queue) == NULL)
1438                                 /* Wait process until data arrives */
1439                                 schedule();
1440
1441                         finish_wait(sk->sk_sleep, &wait);
1442
1443                         if (ret)
1444                                 return ret;
1445                         if (sk->sk_shutdown & RCV_SHUTDOWN)
1446                                 break;
1447
1448                         continue;
1449                 }
1450
1451                 chunk = min_t(unsigned int, skb->len, size);
1452                 if (memcpy_toiovec(msg->msg_iov, skb->data, chunk)) {
1453                         skb_queue_head(&sk->sk_receive_queue, skb);
1454                         if (copied == 0)
1455                                 copied = -EFAULT;
1456                         break;
1457                 }
1458                 copied += chunk;
1459                 size -= chunk;
1460
1461                 /* Mark read part of skb as used */
1462                 if (!(flags & MSG_PEEK)) {
1463                         skb_pull(skb, chunk);
1464
1465                         /* put the skb back if we didn't use it up.. */
1466                         if (skb->len) {
1467                                 IRDA_DEBUG(1, "%s(), back on q!\n",
1468                                            __FUNCTION__);
1469                                 skb_queue_head(&sk->sk_receive_queue, skb);
1470                                 break;
1471                         }
1472
1473                         kfree_skb(skb);
1474                 } else {
1475                         IRDA_DEBUG(0, "%s() questionable!?\n", __FUNCTION__);
1476
1477                         /* put message back and return */
1478                         skb_queue_head(&sk->sk_receive_queue, skb);
1479                         break;
1480                 }
1481         } while (size);
1482
1483         /*
1484          *  Check if we have previously stopped IrTTP and we know
1485          *  have more free space in our rx_queue. If so tell IrTTP
1486          *  to start delivering frames again before our rx_queue gets
1487          *  empty
1488          */
1489         if (self->rx_flow == FLOW_STOP) {
1490                 if ((atomic_read(&sk->sk_rmem_alloc) << 2) <= sk->sk_rcvbuf) {
1491                         IRDA_DEBUG(2, "%s(), Starting IrTTP\n", __FUNCTION__);
1492                         self->rx_flow = FLOW_START;
1493                         irttp_flow_request(self->tsap, FLOW_START);
1494                 }
1495         }
1496
1497         return copied;
1498 }
1499
1500 /*
1501  * Function irda_sendmsg_dgram (iocb, sock, msg, len)
1502  *
1503  *    Send message down to TinyTP for the unreliable sequenced
1504  *    packet service...
1505  *
1506  */
1507 static int irda_sendmsg_dgram(struct kiocb *iocb, struct socket *sock,
1508                               struct msghdr *msg, size_t len)
1509 {
1510         struct sock *sk = sock->sk;
1511         struct irda_sock *self;
1512         struct sk_buff *skb;
1513         int err;
1514
1515         IRDA_DEBUG(4, "%s(), len=%zd\n", __FUNCTION__, len);
1516
1517         if (msg->msg_flags & ~(MSG_DONTWAIT|MSG_CMSG_COMPAT))
1518                 return -EINVAL;
1519
1520         if (sk->sk_shutdown & SEND_SHUTDOWN) {
1521                 send_sig(SIGPIPE, current, 0);
1522                 return -EPIPE;
1523         }
1524
1525         if (sk->sk_state != TCP_ESTABLISHED)
1526                 return -ENOTCONN;
1527
1528         self = irda_sk(sk);
1529         IRDA_ASSERT(self != NULL, return -1;);
1530
1531         /*
1532          * Check that we don't send out too big frames. This is an unreliable
1533          * service, so we have no fragmentation and no coalescence
1534          */
1535         if (len > self->max_data_size) {
1536                 IRDA_DEBUG(0, "%s(), Warning to much data! "
1537                            "Chopping frame from %zd to %d bytes!\n",
1538                            __FUNCTION__, len, self->max_data_size);
1539                 len = self->max_data_size;
1540         }
1541
1542         skb = sock_alloc_send_skb(sk, len + self->max_header_size,
1543                                   msg->msg_flags & MSG_DONTWAIT, &err);
1544         if (!skb)
1545                 return -ENOBUFS;
1546
1547         skb_reserve(skb, self->max_header_size);
1548         skb_reset_transport_header(skb);
1549
1550         IRDA_DEBUG(4, "%s(), appending user data\n", __FUNCTION__);
1551         skb_put(skb, len);
1552         err = memcpy_fromiovec(skb_transport_header(skb), msg->msg_iov, len);
1553         if (err) {
1554                 kfree_skb(skb);
1555                 return err;
1556         }
1557
1558         /*
1559          * Just send the message to TinyTP, and let it deal with possible
1560          * errors. No need to duplicate all that here
1561          */
1562         err = irttp_udata_request(self->tsap, skb);
1563         if (err) {
1564                 IRDA_DEBUG(0, "%s(), err=%d\n", __FUNCTION__, err);
1565                 return err;
1566         }
1567         return len;
1568 }
1569
1570 /*
1571  * Function irda_sendmsg_ultra (iocb, sock, msg, len)
1572  *
1573  *    Send message down to IrLMP for the unreliable Ultra
1574  *    packet service...
1575  */
1576 #ifdef CONFIG_IRDA_ULTRA
1577 static int irda_sendmsg_ultra(struct kiocb *iocb, struct socket *sock,
1578                               struct msghdr *msg, size_t len)
1579 {
1580         struct sock *sk = sock->sk;
1581         struct irda_sock *self;
1582         __u8 pid = 0;
1583         int bound = 0;
1584         struct sk_buff *skb;
1585         int err;
1586
1587         IRDA_DEBUG(4, "%s(), len=%zd\n", __FUNCTION__, len);
1588
1589         if (msg->msg_flags & ~(MSG_DONTWAIT|MSG_CMSG_COMPAT))
1590                 return -EINVAL;
1591
1592         if (sk->sk_shutdown & SEND_SHUTDOWN) {
1593                 send_sig(SIGPIPE, current, 0);
1594                 return -EPIPE;
1595         }
1596
1597         self = irda_sk(sk);
1598         IRDA_ASSERT(self != NULL, return -1;);
1599
1600         /* Check if an address was specified with sendto. Jean II */
1601         if (msg->msg_name) {
1602                 struct sockaddr_irda *addr = (struct sockaddr_irda *) msg->msg_name;
1603                 /* Check address, extract pid. Jean II */
1604                 if (msg->msg_namelen < sizeof(*addr))
1605                         return -EINVAL;
1606                 if (addr->sir_family != AF_IRDA)
1607                         return -EINVAL;
1608
1609                 pid = addr->sir_lsap_sel;
1610                 if (pid & 0x80) {
1611                         IRDA_DEBUG(0, "%s(), extension in PID not supp!\n", __FUNCTION__);
1612                         return -EOPNOTSUPP;
1613                 }
1614         } else {
1615                 /* Check that the socket is properly bound to an Ultra
1616                  * port. Jean II */
1617                 if ((self->lsap == NULL) ||
1618                     (sk->sk_state != TCP_ESTABLISHED)) {
1619                         IRDA_DEBUG(0, "%s(), socket not bound to Ultra PID.\n",
1620                                    __FUNCTION__);
1621                         return -ENOTCONN;
1622                 }
1623                 /* Use PID from socket */
1624                 bound = 1;
1625         }
1626
1627         /*
1628          * Check that we don't send out too big frames. This is an unreliable
1629          * service, so we have no fragmentation and no coalescence
1630          */
1631         if (len > self->max_data_size) {
1632                 IRDA_DEBUG(0, "%s(), Warning to much data! "
1633                            "Chopping frame from %zd to %d bytes!\n",
1634                            __FUNCTION__, len, self->max_data_size);
1635                 len = self->max_data_size;
1636         }
1637
1638         skb = sock_alloc_send_skb(sk, len + self->max_header_size,
1639                                   msg->msg_flags & MSG_DONTWAIT, &err);
1640         if (!skb)
1641                 return -ENOBUFS;
1642
1643         skb_reserve(skb, self->max_header_size);
1644         skb_reset_transport_header(skb);
1645
1646         IRDA_DEBUG(4, "%s(), appending user data\n", __FUNCTION__);
1647         skb_put(skb, len);
1648         err = memcpy_fromiovec(skb_transport_header(skb), msg->msg_iov, len);
1649         if (err) {
1650                 kfree_skb(skb);
1651                 return err;
1652         }
1653
1654         err = irlmp_connless_data_request((bound ? self->lsap : NULL),
1655                                           skb, pid);
1656         if (err) {
1657                 IRDA_DEBUG(0, "%s(), err=%d\n", __FUNCTION__, err);
1658                 return err;
1659         }
1660         return len;
1661 }
1662 #endif /* CONFIG_IRDA_ULTRA */
1663
1664 /*
1665  * Function irda_shutdown (sk, how)
1666  */
1667 static int irda_shutdown(struct socket *sock, int how)
1668 {
1669         struct sock *sk = sock->sk;
1670         struct irda_sock *self = irda_sk(sk);
1671
1672         IRDA_ASSERT(self != NULL, return -1;);
1673
1674         IRDA_DEBUG(1, "%s(%p)\n", __FUNCTION__, self);
1675
1676         sk->sk_state       = TCP_CLOSE;
1677         sk->sk_shutdown   |= SEND_SHUTDOWN;
1678         sk->sk_state_change(sk);
1679
1680         if (self->iriap) {
1681                 iriap_close(self->iriap);
1682                 self->iriap = NULL;
1683         }
1684
1685         if (self->tsap) {
1686                 irttp_disconnect_request(self->tsap, NULL, P_NORMAL);
1687                 irttp_close_tsap(self->tsap);
1688                 self->tsap = NULL;
1689         }
1690
1691         /* A few cleanup so the socket look as good as new... */
1692         self->rx_flow = self->tx_flow = FLOW_START;     /* needed ??? */
1693         self->daddr = DEV_ADDR_ANY;     /* Until we get re-connected */
1694         self->saddr = 0x0;              /* so IrLMP assign us any link */
1695
1696         return 0;
1697 }
1698
1699 /*
1700  * Function irda_poll (file, sock, wait)
1701  */
1702 static unsigned int irda_poll(struct file * file, struct socket *sock,
1703                               poll_table *wait)
1704 {
1705         struct sock *sk = sock->sk;
1706         struct irda_sock *self = irda_sk(sk);
1707         unsigned int mask;
1708
1709         IRDA_DEBUG(4, "%s()\n", __FUNCTION__);
1710
1711         poll_wait(file, sk->sk_sleep, wait);
1712         mask = 0;
1713
1714         /* Exceptional events? */
1715         if (sk->sk_err)
1716                 mask |= POLLERR;
1717         if (sk->sk_shutdown & RCV_SHUTDOWN) {
1718                 IRDA_DEBUG(0, "%s(), POLLHUP\n", __FUNCTION__);
1719                 mask |= POLLHUP;
1720         }
1721
1722         /* Readable? */
1723         if (!skb_queue_empty(&sk->sk_receive_queue)) {
1724                 IRDA_DEBUG(4, "Socket is readable\n");
1725                 mask |= POLLIN | POLLRDNORM;
1726         }
1727
1728         /* Connection-based need to check for termination and startup */
1729         switch (sk->sk_type) {
1730         case SOCK_STREAM:
1731                 if (sk->sk_state == TCP_CLOSE) {
1732                         IRDA_DEBUG(0, "%s(), POLLHUP\n", __FUNCTION__);
1733                         mask |= POLLHUP;
1734                 }
1735
1736                 if (sk->sk_state == TCP_ESTABLISHED) {
1737                         if ((self->tx_flow == FLOW_START) &&
1738                             sock_writeable(sk))
1739                         {
1740                                 mask |= POLLOUT | POLLWRNORM | POLLWRBAND;
1741                         }
1742                 }
1743                 break;
1744         case SOCK_SEQPACKET:
1745                 if ((self->tx_flow == FLOW_START) &&
1746                     sock_writeable(sk))
1747                 {
1748                         mask |= POLLOUT | POLLWRNORM | POLLWRBAND;
1749                 }
1750                 break;
1751         case SOCK_DGRAM:
1752                 if (sock_writeable(sk))
1753                         mask |= POLLOUT | POLLWRNORM | POLLWRBAND;
1754                 break;
1755         default:
1756                 break;
1757         }
1758         return mask;
1759 }
1760
1761 /*
1762  * Function irda_ioctl (sock, cmd, arg)
1763  */
1764 static int irda_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
1765 {
1766         struct sock *sk = sock->sk;
1767
1768         IRDA_DEBUG(4, "%s(), cmd=%#x\n", __FUNCTION__, cmd);
1769
1770         switch (cmd) {
1771         case TIOCOUTQ: {
1772                 long amount;
1773                 amount = sk->sk_sndbuf - atomic_read(&sk->sk_wmem_alloc);
1774                 if (amount < 0)
1775                         amount = 0;
1776                 if (put_user(amount, (unsigned int __user *)arg))
1777                         return -EFAULT;
1778                 return 0;
1779         }
1780
1781         case TIOCINQ: {
1782                 struct sk_buff *skb;
1783                 long amount = 0L;
1784                 /* These two are safe on a single CPU system as only user tasks fiddle here */
1785                 if ((skb = skb_peek(&sk->sk_receive_queue)) != NULL)
1786                         amount = skb->len;
1787                 if (put_user(amount, (unsigned int __user *)arg))
1788                         return -EFAULT;
1789                 return 0;
1790         }
1791
1792         case SIOCGSTAMP:
1793                 if (sk != NULL)
1794                         return sock_get_timestamp(sk, (struct timeval __user *)arg);
1795                 return -EINVAL;
1796
1797         case SIOCGIFADDR:
1798         case SIOCSIFADDR:
1799         case SIOCGIFDSTADDR:
1800         case SIOCSIFDSTADDR:
1801         case SIOCGIFBRDADDR:
1802         case SIOCSIFBRDADDR:
1803         case SIOCGIFNETMASK:
1804         case SIOCSIFNETMASK:
1805         case SIOCGIFMETRIC:
1806         case SIOCSIFMETRIC:
1807                 return -EINVAL;
1808         default:
1809                 IRDA_DEBUG(1, "%s(), doing device ioctl!\n", __FUNCTION__);
1810                 return -ENOIOCTLCMD;
1811         }
1812
1813         /*NOTREACHED*/
1814         return 0;
1815 }
1816
1817 #ifdef CONFIG_COMPAT
1818 /*
1819  * Function irda_ioctl (sock, cmd, arg)
1820  */
1821 static int irda_compat_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
1822 {
1823         /*
1824          * All IRDA's ioctl are standard ones.
1825          */
1826         return -ENOIOCTLCMD;
1827 }
1828 #endif
1829
1830 /*
1831  * Function irda_setsockopt (sock, level, optname, optval, optlen)
1832  *
1833  *    Set some options for the socket
1834  *
1835  */
1836 static int irda_setsockopt(struct socket *sock, int level, int optname,
1837                            char __user *optval, int optlen)
1838 {
1839         struct sock *sk = sock->sk;
1840         struct irda_sock *self = irda_sk(sk);
1841         struct irda_ias_set    *ias_opt;
1842         struct ias_object      *ias_obj;
1843         struct ias_attrib *     ias_attr;       /* Attribute in IAS object */
1844         int opt;
1845
1846         IRDA_ASSERT(self != NULL, return -1;);
1847
1848         IRDA_DEBUG(2, "%s(%p)\n", __FUNCTION__, self);
1849
1850         if (level != SOL_IRLMP)
1851                 return -ENOPROTOOPT;
1852
1853         switch (optname) {
1854         case IRLMP_IAS_SET:
1855                 /* The user want to add an attribute to an existing IAS object
1856                  * (in the IAS database) or to create a new object with this
1857                  * attribute.
1858                  * We first query IAS to know if the object exist, and then
1859                  * create the right attribute...
1860                  */
1861
1862                 if (optlen != sizeof(struct irda_ias_set))
1863                         return -EINVAL;
1864
1865                 ias_opt = kmalloc(sizeof(struct irda_ias_set), GFP_ATOMIC);
1866                 if (ias_opt == NULL)
1867                         return -ENOMEM;
1868
1869                 /* Copy query to the driver. */
1870                 if (copy_from_user(ias_opt, optval, optlen)) {
1871                         kfree(ias_opt);
1872                         return -EFAULT;
1873                 }
1874
1875                 /* Find the object we target.
1876                  * If the user gives us an empty string, we use the object
1877                  * associated with this socket. This will workaround
1878                  * duplicated class name - Jean II */
1879                 if(ias_opt->irda_class_name[0] == '\0') {
1880                         if(self->ias_obj == NULL) {
1881                                 kfree(ias_opt);
1882                                 return -EINVAL;
1883                         }
1884                         ias_obj = self->ias_obj;
1885                 } else
1886                         ias_obj = irias_find_object(ias_opt->irda_class_name);
1887
1888                 /* Only ROOT can mess with the global IAS database.
1889                  * Users can only add attributes to the object associated
1890                  * with the socket they own - Jean II */
1891                 if((!capable(CAP_NET_ADMIN)) &&
1892                    ((ias_obj == NULL) || (ias_obj != self->ias_obj))) {
1893                         kfree(ias_opt);
1894                         return -EPERM;
1895                 }
1896
1897                 /* If the object doesn't exist, create it */
1898                 if(ias_obj == (struct ias_object *) NULL) {
1899                         /* Create a new object */
1900                         ias_obj = irias_new_object(ias_opt->irda_class_name,
1901                                                    jiffies);
1902                 }
1903
1904                 /* Do we have the attribute already ? */
1905                 if(irias_find_attrib(ias_obj, ias_opt->irda_attrib_name)) {
1906                         kfree(ias_opt);
1907                         return -EINVAL;
1908                 }
1909
1910                 /* Look at the type */
1911                 switch(ias_opt->irda_attrib_type) {
1912                 case IAS_INTEGER:
1913                         /* Add an integer attribute */
1914                         irias_add_integer_attrib(
1915                                 ias_obj,
1916                                 ias_opt->irda_attrib_name,
1917                                 ias_opt->attribute.irda_attrib_int,
1918                                 IAS_USER_ATTR);
1919                         break;
1920                 case IAS_OCT_SEQ:
1921                         /* Check length */
1922                         if(ias_opt->attribute.irda_attrib_octet_seq.len >
1923                            IAS_MAX_OCTET_STRING) {
1924                                 kfree(ias_opt);
1925                                 return -EINVAL;
1926                         }
1927                         /* Add an octet sequence attribute */
1928                         irias_add_octseq_attrib(
1929                               ias_obj,
1930                               ias_opt->irda_attrib_name,
1931                               ias_opt->attribute.irda_attrib_octet_seq.octet_seq,
1932                               ias_opt->attribute.irda_attrib_octet_seq.len,
1933                               IAS_USER_ATTR);
1934                         break;
1935                 case IAS_STRING:
1936                         /* Should check charset & co */
1937                         /* Check length */
1938                         /* The length is encoded in a __u8, and
1939                          * IAS_MAX_STRING == 256, so there is no way
1940                          * userspace can pass us a string too large.
1941                          * Jean II */
1942                         /* NULL terminate the string (avoid troubles) */
1943                         ias_opt->attribute.irda_attrib_string.string[ias_opt->attribute.irda_attrib_string.len] = '\0';
1944                         /* Add a string attribute */
1945                         irias_add_string_attrib(
1946                                 ias_obj,
1947                                 ias_opt->irda_attrib_name,
1948                                 ias_opt->attribute.irda_attrib_string.string,
1949                                 IAS_USER_ATTR);
1950                         break;
1951                 default :
1952                         kfree(ias_opt);
1953                         return -EINVAL;
1954                 }
1955                 irias_insert_object(ias_obj);
1956                 kfree(ias_opt);
1957                 break;
1958         case IRLMP_IAS_DEL:
1959                 /* The user want to delete an object from our local IAS
1960                  * database. We just need to query the IAS, check is the
1961                  * object is not owned by the kernel and delete it.
1962                  */
1963
1964                 if (optlen != sizeof(struct irda_ias_set))
1965                         return -EINVAL;
1966
1967                 ias_opt = kmalloc(sizeof(struct irda_ias_set), GFP_ATOMIC);
1968                 if (ias_opt == NULL)
1969                         return -ENOMEM;
1970
1971                 /* Copy query to the driver. */
1972                 if (copy_from_user(ias_opt, optval, optlen)) {
1973                         kfree(ias_opt);
1974                         return -EFAULT;
1975                 }
1976
1977                 /* Find the object we target.
1978                  * If the user gives us an empty string, we use the object
1979                  * associated with this socket. This will workaround
1980                  * duplicated class name - Jean II */
1981                 if(ias_opt->irda_class_name[0] == '\0')
1982                         ias_obj = self->ias_obj;
1983                 else
1984                         ias_obj = irias_find_object(ias_opt->irda_class_name);
1985                 if(ias_obj == (struct ias_object *) NULL) {
1986                         kfree(ias_opt);
1987                         return -EINVAL;
1988                 }
1989
1990                 /* Only ROOT can mess with the global IAS database.
1991                  * Users can only del attributes from the object associated
1992                  * with the socket they own - Jean II */
1993                 if((!capable(CAP_NET_ADMIN)) &&
1994                    ((ias_obj == NULL) || (ias_obj != self->ias_obj))) {
1995                         kfree(ias_opt);
1996                         return -EPERM;
1997                 }
1998
1999                 /* Find the attribute (in the object) we target */
2000                 ias_attr = irias_find_attrib(ias_obj,
2001                                              ias_opt->irda_attrib_name);
2002                 if(ias_attr == (struct ias_attrib *) NULL) {
2003                         kfree(ias_opt);
2004                         return -EINVAL;
2005                 }
2006
2007                 /* Check is the user space own the object */
2008                 if(ias_attr->value->owner != IAS_USER_ATTR) {
2009                         IRDA_DEBUG(1, "%s(), attempting to delete a kernel attribute\n", __FUNCTION__);
2010                         kfree(ias_opt);
2011                         return -EPERM;
2012                 }
2013
2014                 /* Remove the attribute (and maybe the object) */
2015                 irias_delete_attrib(ias_obj, ias_attr, 1);
2016                 kfree(ias_opt);
2017                 break;
2018         case IRLMP_MAX_SDU_SIZE:
2019                 if (optlen < sizeof(int))
2020                         return -EINVAL;
2021
2022                 if (get_user(opt, (int __user *)optval))
2023                         return -EFAULT;
2024
2025                 /* Only possible for a seqpacket service (TTP with SAR) */
2026                 if (sk->sk_type != SOCK_SEQPACKET) {
2027                         IRDA_DEBUG(2, "%s(), setting max_sdu_size = %d\n",
2028                                    __FUNCTION__, opt);
2029                         self->max_sdu_size_rx = opt;
2030                 } else {
2031                         IRDA_WARNING("%s: not allowed to set MAXSDUSIZE for this socket type!\n",
2032                                      __FUNCTION__);
2033                         return -ENOPROTOOPT;
2034                 }
2035                 break;
2036         case IRLMP_HINTS_SET:
2037                 if (optlen < sizeof(int))
2038                         return -EINVAL;
2039
2040                 /* The input is really a (__u8 hints[2]), easier as an int */
2041                 if (get_user(opt, (int __user *)optval))
2042                         return -EFAULT;
2043
2044                 /* Unregister any old registration */
2045                 if (self->skey)
2046                         irlmp_unregister_service(self->skey);
2047
2048                 self->skey = irlmp_register_service((__u16) opt);
2049                 break;
2050         case IRLMP_HINT_MASK_SET:
2051                 /* As opposed to the previous case which set the hint bits
2052                  * that we advertise, this one set the filter we use when
2053                  * making a discovery (nodes which don't match any hint
2054                  * bit in the mask are not reported).
2055                  */
2056                 if (optlen < sizeof(int))
2057                         return -EINVAL;
2058
2059                 /* The input is really a (__u8 hints[2]), easier as an int */
2060                 if (get_user(opt, (int __user *)optval))
2061                         return -EFAULT;
2062
2063                 /* Set the new hint mask */
2064                 self->mask.word = (__u16) opt;
2065                 /* Mask out extension bits */
2066                 self->mask.word &= 0x7f7f;
2067                 /* Check if no bits */
2068                 if(!self->mask.word)
2069                         self->mask.word = 0xFFFF;
2070
2071                 break;
2072         default:
2073                 return -ENOPROTOOPT;
2074         }
2075         return 0;
2076 }
2077
2078 /*
2079  * Function irda_extract_ias_value(ias_opt, ias_value)
2080  *
2081  *    Translate internal IAS value structure to the user space representation
2082  *
2083  * The external representation of IAS values, as we exchange them with
2084  * user space program is quite different from the internal representation,
2085  * as stored in the IAS database (because we need a flat structure for
2086  * crossing kernel boundary).
2087  * This function transform the former in the latter. We also check
2088  * that the value type is valid.
2089  */
2090 static int irda_extract_ias_value(struct irda_ias_set *ias_opt,
2091                                   struct ias_value *ias_value)
2092 {
2093         /* Look at the type */
2094         switch (ias_value->type) {
2095         case IAS_INTEGER:
2096                 /* Copy the integer */
2097                 ias_opt->attribute.irda_attrib_int = ias_value->t.integer;
2098                 break;
2099         case IAS_OCT_SEQ:
2100                 /* Set length */
2101                 ias_opt->attribute.irda_attrib_octet_seq.len = ias_value->len;
2102                 /* Copy over */
2103                 memcpy(ias_opt->attribute.irda_attrib_octet_seq.octet_seq,
2104                        ias_value->t.oct_seq, ias_value->len);
2105                 break;
2106         case IAS_STRING:
2107                 /* Set length */
2108                 ias_opt->attribute.irda_attrib_string.len = ias_value->len;
2109                 ias_opt->attribute.irda_attrib_string.charset = ias_value->charset;
2110                 /* Copy over */
2111                 memcpy(ias_opt->attribute.irda_attrib_string.string,
2112                        ias_value->t.string, ias_value->len);
2113                 /* NULL terminate the string (avoid troubles) */
2114                 ias_opt->attribute.irda_attrib_string.string[ias_value->len] = '\0';
2115                 break;
2116         case IAS_MISSING:
2117         default :
2118                 return -EINVAL;
2119         }
2120
2121         /* Copy type over */
2122         ias_opt->irda_attrib_type = ias_value->type;
2123
2124         return 0;
2125 }
2126
2127 /*
2128  * Function irda_getsockopt (sock, level, optname, optval, optlen)
2129  */
2130 static int irda_getsockopt(struct socket *sock, int level, int optname,
2131                            char __user *optval, int __user *optlen)
2132 {
2133         struct sock *sk = sock->sk;
2134         struct irda_sock *self = irda_sk(sk);
2135         struct irda_device_list list;
2136         struct irda_device_info *discoveries;
2137         struct irda_ias_set *   ias_opt;        /* IAS get/query params */
2138         struct ias_object *     ias_obj;        /* Object in IAS */
2139         struct ias_attrib *     ias_attr;       /* Attribute in IAS object */
2140         int daddr = DEV_ADDR_ANY;       /* Dest address for IAS queries */
2141         int val = 0;
2142         int len = 0;
2143         int err;
2144         int offset, total;
2145
2146         IRDA_DEBUG(2, "%s(%p)\n", __FUNCTION__, self);
2147
2148         if (level != SOL_IRLMP)
2149                 return -ENOPROTOOPT;
2150
2151         if (get_user(len, optlen))
2152                 return -EFAULT;
2153
2154         if(len < 0)
2155                 return -EINVAL;
2156
2157         switch (optname) {
2158         case IRLMP_ENUMDEVICES:
2159                 /* Ask lmp for the current discovery log */
2160                 discoveries = irlmp_get_discoveries(&list.len, self->mask.word,
2161                                                     self->nslots);
2162                 /* Check if the we got some results */
2163                 if (discoveries == NULL)
2164                         return -EAGAIN;         /* Didn't find any devices */
2165                 err = 0;
2166
2167                 /* Write total list length back to client */
2168                 if (copy_to_user(optval, &list,
2169                                  sizeof(struct irda_device_list) -
2170                                  sizeof(struct irda_device_info)))
2171                         err = -EFAULT;
2172
2173                 /* Offset to first device entry */
2174                 offset = sizeof(struct irda_device_list) -
2175                         sizeof(struct irda_device_info);
2176
2177                 /* Copy the list itself - watch for overflow */
2178                 if(list.len > 2048)
2179                 {
2180                         err = -EINVAL;
2181                         goto bed;
2182                 }
2183                 total = offset + (list.len * sizeof(struct irda_device_info));
2184                 if (total > len)
2185                         total = len;
2186                 if (copy_to_user(optval+offset, discoveries, total - offset))
2187                         err = -EFAULT;
2188
2189                 /* Write total number of bytes used back to client */
2190                 if (put_user(total, optlen))
2191                         err = -EFAULT;
2192 bed:
2193                 /* Free up our buffer */
2194                 kfree(discoveries);
2195                 if (err)
2196                         return err;
2197                 break;
2198         case IRLMP_MAX_SDU_SIZE:
2199                 val = self->max_data_size;
2200                 len = sizeof(int);
2201                 if (put_user(len, optlen))
2202                         return -EFAULT;
2203
2204                 if (copy_to_user(optval, &val, len))
2205                         return -EFAULT;
2206                 break;
2207         case IRLMP_IAS_GET:
2208                 /* The user want an object from our local IAS database.
2209                  * We just need to query the IAS and return the value
2210                  * that we found */
2211
2212                 /* Check that the user has allocated the right space for us */
2213                 if (len != sizeof(struct irda_ias_set))
2214                         return -EINVAL;
2215
2216                 ias_opt = kmalloc(sizeof(struct irda_ias_set), GFP_ATOMIC);
2217                 if (ias_opt == NULL)
2218                         return -ENOMEM;
2219
2220                 /* Copy query to the driver. */
2221                 if (copy_from_user(ias_opt, optval, len)) {
2222                         kfree(ias_opt);
2223                         return -EFAULT;
2224                 }
2225
2226                 /* Find the object we target.
2227                  * If the user gives us an empty string, we use the object
2228                  * associated with this socket. This will workaround
2229                  * duplicated class name - Jean II */
2230                 if(ias_opt->irda_class_name[0] == '\0')
2231                         ias_obj = self->ias_obj;
2232                 else
2233                         ias_obj = irias_find_object(ias_opt->irda_class_name);
2234                 if(ias_obj == (struct ias_object *) NULL) {
2235                         kfree(ias_opt);
2236                         return -EINVAL;
2237                 }
2238
2239                 /* Find the attribute (in the object) we target */
2240                 ias_attr = irias_find_attrib(ias_obj,
2241                                              ias_opt->irda_attrib_name);
2242                 if(ias_attr == (struct ias_attrib *) NULL) {
2243                         kfree(ias_opt);
2244                         return -EINVAL;
2245                 }
2246
2247                 /* Translate from internal to user structure */
2248                 err = irda_extract_ias_value(ias_opt, ias_attr->value);
2249                 if(err) {
2250                         kfree(ias_opt);
2251                         return err;
2252                 }
2253
2254                 /* Copy reply to the user */
2255                 if (copy_to_user(optval, ias_opt,
2256                                  sizeof(struct irda_ias_set))) {
2257                         kfree(ias_opt);
2258                         return -EFAULT;
2259                 }
2260                 /* Note : don't need to put optlen, we checked it */
2261                 kfree(ias_opt);
2262                 break;
2263         case IRLMP_IAS_QUERY:
2264                 /* The user want an object from a remote IAS database.
2265                  * We need to use IAP to query the remote database and
2266                  * then wait for the answer to come back. */
2267
2268                 /* Check that the user has allocated the right space for us */
2269                 if (len != sizeof(struct irda_ias_set))
2270                         return -EINVAL;
2271
2272                 ias_opt = kmalloc(sizeof(struct irda_ias_set), GFP_ATOMIC);
2273                 if (ias_opt == NULL)
2274                         return -ENOMEM;
2275
2276                 /* Copy query to the driver. */
2277                 if (copy_from_user(ias_opt, optval, len)) {
2278                         kfree(ias_opt);
2279                         return -EFAULT;
2280                 }
2281
2282                 /* At this point, there are two cases...
2283                  * 1) the socket is connected - that's the easy case, we
2284                  *      just query the device we are connected to...
2285                  * 2) the socket is not connected - the user doesn't want
2286                  *      to connect and/or may not have a valid service name
2287                  *      (so can't create a fake connection). In this case,
2288                  *      we assume that the user pass us a valid destination
2289                  *      address in the requesting structure...
2290                  */
2291                 if(self->daddr != DEV_ADDR_ANY) {
2292                         /* We are connected - reuse known daddr */
2293                         daddr = self->daddr;
2294                 } else {
2295                         /* We are not connected, we must specify a valid
2296                          * destination address */
2297                         daddr = ias_opt->daddr;
2298                         if((!daddr) || (daddr == DEV_ADDR_ANY)) {
2299                                 kfree(ias_opt);
2300                                 return -EINVAL;
2301                         }
2302                 }
2303
2304                 /* Check that we can proceed with IAP */
2305                 if (self->iriap) {
2306                         IRDA_WARNING("%s: busy with a previous query\n",
2307                                      __FUNCTION__);
2308                         kfree(ias_opt);
2309                         return -EBUSY;
2310                 }
2311
2312                 self->iriap = iriap_open(LSAP_ANY, IAS_CLIENT, self,
2313                                          irda_getvalue_confirm);
2314
2315                 if (self->iriap == NULL) {
2316                         kfree(ias_opt);
2317                         return -ENOMEM;
2318                 }
2319
2320                 /* Treat unexpected wakeup as disconnect */
2321                 self->errno = -EHOSTUNREACH;
2322
2323                 /* Query remote LM-IAS */
2324                 iriap_getvaluebyclass_request(self->iriap,
2325                                               self->saddr, daddr,
2326                                               ias_opt->irda_class_name,
2327                                               ias_opt->irda_attrib_name);
2328
2329                 /* Wait for answer, if not yet finished (or failed) */
2330                 if (wait_event_interruptible(self->query_wait,
2331                                              (self->iriap == NULL))) {
2332                         /* pending request uses copy of ias_opt-content
2333                          * we can free it regardless! */
2334                         kfree(ias_opt);
2335                         /* Treat signals as disconnect */
2336                         return -EHOSTUNREACH;
2337                 }
2338
2339                 /* Check what happened */
2340                 if (self->errno)
2341                 {
2342                         kfree(ias_opt);
2343                         /* Requested object/attribute doesn't exist */
2344                         if((self->errno == IAS_CLASS_UNKNOWN) ||
2345                            (self->errno == IAS_ATTRIB_UNKNOWN))
2346                                 return (-EADDRNOTAVAIL);
2347                         else
2348                                 return (-EHOSTUNREACH);
2349                 }
2350
2351                 /* Translate from internal to user structure */
2352                 err = irda_extract_ias_value(ias_opt, self->ias_result);
2353                 if (self->ias_result)
2354                         irias_delete_value(self->ias_result);
2355                 if (err) {
2356                         kfree(ias_opt);
2357                         return err;
2358                 }
2359
2360                 /* Copy reply to the user */
2361                 if (copy_to_user(optval, ias_opt,
2362                                  sizeof(struct irda_ias_set))) {
2363                         kfree(ias_opt);
2364                         return -EFAULT;
2365                 }
2366                 /* Note : don't need to put optlen, we checked it */
2367                 kfree(ias_opt);
2368                 break;
2369         case IRLMP_WAITDEVICE:
2370                 /* This function is just another way of seeing life ;-)
2371                  * IRLMP_ENUMDEVICES assumes that you have a static network,
2372                  * and that you just want to pick one of the devices present.
2373                  * On the other hand, in here we assume that no device is
2374                  * present and that at some point in the future a device will
2375                  * come into range. When this device arrive, we just wake
2376                  * up the caller, so that he has time to connect to it before
2377                  * the device goes away...
2378                  * Note : once the node has been discovered for more than a
2379                  * few second, it won't trigger this function, unless it
2380                  * goes away and come back changes its hint bits (so we
2381                  * might call it IRLMP_WAITNEWDEVICE).
2382                  */
2383
2384                 /* Check that the user is passing us an int */
2385                 if (len != sizeof(int))
2386                         return -EINVAL;
2387                 /* Get timeout in ms (max time we block the caller) */
2388                 if (get_user(val, (int __user *)optval))
2389                         return -EFAULT;
2390
2391                 /* Tell IrLMP we want to be notified */
2392                 irlmp_update_client(self->ckey, self->mask.word,
2393                                     irda_selective_discovery_indication,
2394                                     NULL, (void *) self);
2395
2396                 /* Do some discovery (and also return cached results) */
2397                 irlmp_discovery_request(self->nslots);
2398
2399                 /* Wait until a node is discovered */
2400                 if (!self->cachedaddr) {
2401                         int ret = 0;
2402
2403                         IRDA_DEBUG(1, "%s(), nothing discovered yet, going to sleep...\n", __FUNCTION__);
2404
2405                         /* Set watchdog timer to expire in <val> ms. */
2406                         self->errno = 0;
2407                         init_timer(&self->watchdog);
2408                         self->watchdog.function = irda_discovery_timeout;
2409                         self->watchdog.data = (unsigned long) self;
2410                         self->watchdog.expires = jiffies + (val * HZ/1000);
2411                         add_timer(&(self->watchdog));
2412
2413                         /* Wait for IR-LMP to call us back */
2414                         __wait_event_interruptible(self->query_wait,
2415                               (self->cachedaddr != 0 || self->errno == -ETIME),
2416                                                    ret);
2417
2418                         /* If watchdog is still activated, kill it! */
2419                         if(timer_pending(&(self->watchdog)))
2420                                 del_timer(&(self->watchdog));
2421
2422                         IRDA_DEBUG(1, "%s(), ...waking up !\n", __FUNCTION__);
2423
2424                         if (ret != 0)
2425                                 return ret;
2426                 }
2427                 else
2428                         IRDA_DEBUG(1, "%s(), found immediately !\n",
2429                                    __FUNCTION__);
2430
2431                 /* Tell IrLMP that we have been notified */
2432                 irlmp_update_client(self->ckey, self->mask.word,
2433                                     NULL, NULL, NULL);
2434
2435                 /* Check if the we got some results */
2436                 if (!self->cachedaddr)
2437                         return -EAGAIN;         /* Didn't find any devices */
2438                 daddr = self->cachedaddr;
2439                 /* Cleanup */
2440                 self->cachedaddr = 0;
2441
2442                 /* We return the daddr of the device that trigger the
2443                  * wakeup. As irlmp pass us only the new devices, we
2444                  * are sure that it's not an old device.
2445                  * If the user want more details, he should query
2446                  * the whole discovery log and pick one device...
2447                  */
2448                 if (put_user(daddr, (int __user *)optval))
2449                         return -EFAULT;
2450
2451                 break;
2452         default:
2453                 return -ENOPROTOOPT;
2454         }
2455
2456         return 0;
2457 }
2458
2459 static struct net_proto_family irda_family_ops = {
2460         .family = PF_IRDA,
2461         .create = irda_create,
2462         .owner  = THIS_MODULE,
2463 };
2464
2465 static const struct proto_ops SOCKOPS_WRAPPED(irda_stream_ops) = {
2466         .family =       PF_IRDA,
2467         .owner =        THIS_MODULE,
2468         .release =      irda_release,
2469         .bind =         irda_bind,
2470         .connect =      irda_connect,
2471         .socketpair =   sock_no_socketpair,
2472         .accept =       irda_accept,
2473         .getname =      irda_getname,
2474         .poll =         irda_poll,
2475         .ioctl =        irda_ioctl,
2476 #ifdef CONFIG_COMPAT
2477         .compat_ioctl = irda_compat_ioctl,
2478 #endif
2479         .listen =       irda_listen,
2480         .shutdown =     irda_shutdown,
2481         .setsockopt =   irda_setsockopt,
2482         .getsockopt =   irda_getsockopt,
2483         .sendmsg =      irda_sendmsg,
2484         .recvmsg =      irda_recvmsg_stream,
2485         .mmap =         sock_no_mmap,
2486         .sendpage =     sock_no_sendpage,
2487 };
2488
2489 static const struct proto_ops SOCKOPS_WRAPPED(irda_seqpacket_ops) = {
2490         .family =       PF_IRDA,
2491         .owner =        THIS_MODULE,
2492         .release =      irda_release,
2493         .bind =         irda_bind,
2494         .connect =      irda_connect,
2495         .socketpair =   sock_no_socketpair,
2496         .accept =       irda_accept,
2497         .getname =      irda_getname,
2498         .poll =         datagram_poll,
2499         .ioctl =        irda_ioctl,
2500 #ifdef CONFIG_COMPAT
2501         .compat_ioctl = irda_compat_ioctl,
2502 #endif
2503         .listen =       irda_listen,
2504         .shutdown =     irda_shutdown,
2505         .setsockopt =   irda_setsockopt,
2506         .getsockopt =   irda_getsockopt,
2507         .sendmsg =      irda_sendmsg,
2508         .recvmsg =      irda_recvmsg_dgram,
2509         .mmap =         sock_no_mmap,
2510         .sendpage =     sock_no_sendpage,
2511 };
2512
2513 static const struct proto_ops SOCKOPS_WRAPPED(irda_dgram_ops) = {
2514         .family =       PF_IRDA,
2515         .owner =        THIS_MODULE,
2516         .release =      irda_release,
2517         .bind =         irda_bind,
2518         .connect =      irda_connect,
2519         .socketpair =   sock_no_socketpair,
2520         .accept =       irda_accept,
2521         .getname =      irda_getname,
2522         .poll =         datagram_poll,
2523         .ioctl =        irda_ioctl,
2524 #ifdef CONFIG_COMPAT
2525         .compat_ioctl = irda_compat_ioctl,
2526 #endif
2527         .listen =       irda_listen,
2528         .shutdown =     irda_shutdown,
2529         .setsockopt =   irda_setsockopt,
2530         .getsockopt =   irda_getsockopt,
2531         .sendmsg =      irda_sendmsg_dgram,
2532         .recvmsg =      irda_recvmsg_dgram,
2533         .mmap =         sock_no_mmap,
2534         .sendpage =     sock_no_sendpage,
2535 };
2536
2537 #ifdef CONFIG_IRDA_ULTRA
2538 static const struct proto_ops SOCKOPS_WRAPPED(irda_ultra_ops) = {
2539         .family =       PF_IRDA,
2540         .owner =        THIS_MODULE,
2541         .release =      irda_release,
2542         .bind =         irda_bind,
2543         .connect =      sock_no_connect,
2544         .socketpair =   sock_no_socketpair,
2545         .accept =       sock_no_accept,
2546         .getname =      irda_getname,
2547         .poll =         datagram_poll,
2548         .ioctl =        irda_ioctl,
2549 #ifdef CONFIG_COMPAT
2550         .compat_ioctl = irda_compat_ioctl,
2551 #endif
2552         .listen =       sock_no_listen,
2553         .shutdown =     irda_shutdown,
2554         .setsockopt =   irda_setsockopt,
2555         .getsockopt =   irda_getsockopt,
2556         .sendmsg =      irda_sendmsg_ultra,
2557         .recvmsg =      irda_recvmsg_dgram,
2558         .mmap =         sock_no_mmap,
2559         .sendpage =     sock_no_sendpage,
2560 };
2561 #endif /* CONFIG_IRDA_ULTRA */
2562
2563 #include <linux/smp_lock.h>
2564 SOCKOPS_WRAP(irda_stream, PF_IRDA);
2565 SOCKOPS_WRAP(irda_seqpacket, PF_IRDA);
2566 SOCKOPS_WRAP(irda_dgram, PF_IRDA);
2567 #ifdef CONFIG_IRDA_ULTRA
2568 SOCKOPS_WRAP(irda_ultra, PF_IRDA);
2569 #endif /* CONFIG_IRDA_ULTRA */
2570
2571 /*
2572  * Function irsock_init (pro)
2573  *
2574  *    Initialize IrDA protocol
2575  *
2576  */
2577 int __init irsock_init(void)
2578 {
2579         int rc = proto_register(&irda_proto, 0);
2580
2581         if (rc == 0)
2582                 rc = sock_register(&irda_family_ops);
2583
2584         return rc;
2585 }
2586
2587 /*
2588  * Function irsock_cleanup (void)
2589  *
2590  *    Remove IrDA protocol
2591  *
2592  */
2593 void __exit irsock_cleanup(void)
2594 {
2595         sock_unregister(PF_IRDA);
2596         proto_unregister(&irda_proto);
2597 }