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