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