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