dm thin metadata: fix __udivdi3 undefined on 32-bit
[linux/fpc-iii.git] / net / irda / af_irda.c
blob7cc9db38e1b629f49f9cfdab4ca158f2738119f3
1 /*********************************************************************
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.
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.
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.
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.
27 * You should have received a copy of the GNU General Public License
28 * along with this program; if not, see <http://www.gnu.org/licenses/>.
30 * Linux-IrDA now supports four different types of IrDA sockets:
32 * o SOCK_STREAM: TinyTP connections with SAR disabled. The
33 * max SDU size is 0 for conn. of this type
34 * o SOCK_SEQPACKET: TinyTP connections with SAR enabled. TTP may
35 * fragment the messages, but will preserve
36 * the message boundaries
37 * o SOCK_DGRAM: IRDAPROTO_UNITDATA: TinyTP connections with Unitdata
38 * (unreliable) transfers
39 * IRDAPROTO_ULTRA: Connectionless and unreliable data
41 ********************************************************************/
43 #include <linux/capability.h>
44 #include <linux/module.h>
45 #include <linux/types.h>
46 #include <linux/socket.h>
47 #include <linux/sockios.h>
48 #include <linux/slab.h>
49 #include <linux/init.h>
50 #include <linux/net.h>
51 #include <linux/irda.h>
52 #include <linux/poll.h>
54 #include <asm/ioctls.h> /* TIOCOUTQ, TIOCINQ */
55 #include <asm/uaccess.h>
57 #include <net/sock.h>
58 #include <net/tcp_states.h>
60 #include <net/irda/af_irda.h>
62 static int irda_create(struct net *net, struct socket *sock, int protocol, int kern);
64 static const struct proto_ops irda_stream_ops;
65 static const struct proto_ops irda_seqpacket_ops;
66 static const struct proto_ops irda_dgram_ops;
68 #ifdef CONFIG_IRDA_ULTRA
69 static const struct proto_ops irda_ultra_ops;
70 #define ULTRA_MAX_DATA 382
71 #endif /* CONFIG_IRDA_ULTRA */
73 #define IRDA_MAX_HEADER (TTP_MAX_HEADER)
76 * Function irda_data_indication (instance, sap, skb)
78 * Received some data from TinyTP. Just queue it on the receive queue
81 static int irda_data_indication(void *instance, void *sap, struct sk_buff *skb)
83 struct irda_sock *self;
84 struct sock *sk;
85 int err;
87 self = instance;
88 sk = instance;
90 err = sock_queue_rcv_skb(sk, skb);
91 if (err) {
92 pr_debug("%s(), error: no more mem!\n", __func__);
93 self->rx_flow = FLOW_STOP;
95 /* When we return error, TTP will need to requeue the skb */
96 return err;
99 return 0;
103 * Function irda_disconnect_indication (instance, sap, reason, skb)
105 * Connection has been closed. Check reason to find out why
108 static void irda_disconnect_indication(void *instance, void *sap,
109 LM_REASON reason, struct sk_buff *skb)
111 struct irda_sock *self;
112 struct sock *sk;
114 self = instance;
116 pr_debug("%s(%p)\n", __func__, self);
118 /* Don't care about it, but let's not leak it */
119 if(skb)
120 dev_kfree_skb(skb);
122 sk = instance;
123 if (sk == NULL) {
124 pr_debug("%s(%p) : BUG : sk is NULL\n",
125 __func__, self);
126 return;
129 /* Prevent race conditions with irda_release() and irda_shutdown() */
130 bh_lock_sock(sk);
131 if (!sock_flag(sk, SOCK_DEAD) && sk->sk_state != TCP_CLOSE) {
132 sk->sk_state = TCP_CLOSE;
133 sk->sk_shutdown |= SEND_SHUTDOWN;
135 sk->sk_state_change(sk);
137 /* Close our TSAP.
138 * If we leave it open, IrLMP put it back into the list of
139 * unconnected LSAPs. The problem is that any incoming request
140 * can then be matched to this socket (and it will be, because
141 * it is at the head of the list). This would prevent any
142 * listening socket waiting on the same TSAP to get those
143 * requests. Some apps forget to close sockets, or hang to it
144 * a bit too long, so we may stay in this dead state long
145 * enough to be noticed...
146 * Note : all socket function do check sk->sk_state, so we are
147 * safe...
148 * Jean II
150 if (self->tsap) {
151 irttp_close_tsap(self->tsap);
152 self->tsap = NULL;
155 bh_unlock_sock(sk);
157 /* Note : once we are there, there is not much you want to do
158 * with the socket anymore, apart from closing it.
159 * For example, bind() and connect() won't reset sk->sk_err,
160 * sk->sk_shutdown and sk->sk_flags to valid values...
161 * Jean II
166 * Function irda_connect_confirm (instance, sap, qos, max_sdu_size, skb)
168 * Connections has been confirmed by the remote device
171 static void irda_connect_confirm(void *instance, void *sap,
172 struct qos_info *qos,
173 __u32 max_sdu_size, __u8 max_header_size,
174 struct sk_buff *skb)
176 struct irda_sock *self;
177 struct sock *sk;
179 self = instance;
181 pr_debug("%s(%p)\n", __func__, self);
183 sk = instance;
184 if (sk == NULL) {
185 dev_kfree_skb(skb);
186 return;
189 dev_kfree_skb(skb);
190 // Should be ??? skb_queue_tail(&sk->sk_receive_queue, skb);
192 /* How much header space do we need to reserve */
193 self->max_header_size = max_header_size;
195 /* IrTTP max SDU size in transmit direction */
196 self->max_sdu_size_tx = max_sdu_size;
198 /* Find out what the largest chunk of data that we can transmit is */
199 switch (sk->sk_type) {
200 case SOCK_STREAM:
201 if (max_sdu_size != 0) {
202 net_err_ratelimited("%s: max_sdu_size must be 0\n",
203 __func__);
204 return;
206 self->max_data_size = irttp_get_max_seg_size(self->tsap);
207 break;
208 case SOCK_SEQPACKET:
209 if (max_sdu_size == 0) {
210 net_err_ratelimited("%s: max_sdu_size cannot be 0\n",
211 __func__);
212 return;
214 self->max_data_size = max_sdu_size;
215 break;
216 default:
217 self->max_data_size = irttp_get_max_seg_size(self->tsap);
220 pr_debug("%s(), max_data_size=%d\n", __func__,
221 self->max_data_size);
223 memcpy(&self->qos_tx, qos, sizeof(struct qos_info));
225 /* We are now connected! */
226 sk->sk_state = TCP_ESTABLISHED;
227 sk->sk_state_change(sk);
231 * Function irda_connect_indication(instance, sap, qos, max_sdu_size, userdata)
233 * Incoming connection
236 static void irda_connect_indication(void *instance, void *sap,
237 struct qos_info *qos, __u32 max_sdu_size,
238 __u8 max_header_size, struct sk_buff *skb)
240 struct irda_sock *self;
241 struct sock *sk;
243 self = instance;
245 pr_debug("%s(%p)\n", __func__, self);
247 sk = instance;
248 if (sk == NULL) {
249 dev_kfree_skb(skb);
250 return;
253 /* How much header space do we need to reserve */
254 self->max_header_size = max_header_size;
256 /* IrTTP max SDU size in transmit direction */
257 self->max_sdu_size_tx = max_sdu_size;
259 /* Find out what the largest chunk of data that we can transmit is */
260 switch (sk->sk_type) {
261 case SOCK_STREAM:
262 if (max_sdu_size != 0) {
263 net_err_ratelimited("%s: max_sdu_size must be 0\n",
264 __func__);
265 kfree_skb(skb);
266 return;
268 self->max_data_size = irttp_get_max_seg_size(self->tsap);
269 break;
270 case SOCK_SEQPACKET:
271 if (max_sdu_size == 0) {
272 net_err_ratelimited("%s: max_sdu_size cannot be 0\n",
273 __func__);
274 kfree_skb(skb);
275 return;
277 self->max_data_size = max_sdu_size;
278 break;
279 default:
280 self->max_data_size = irttp_get_max_seg_size(self->tsap);
283 pr_debug("%s(), max_data_size=%d\n", __func__,
284 self->max_data_size);
286 memcpy(&self->qos_tx, qos, sizeof(struct qos_info));
288 skb_queue_tail(&sk->sk_receive_queue, skb);
289 sk->sk_state_change(sk);
293 * Function irda_connect_response (handle)
295 * Accept incoming connection
298 static void irda_connect_response(struct irda_sock *self)
300 struct sk_buff *skb;
302 skb = alloc_skb(TTP_MAX_HEADER + TTP_SAR_HEADER, GFP_KERNEL);
303 if (skb == NULL) {
304 pr_debug("%s() Unable to allocate sk_buff!\n",
305 __func__);
306 return;
309 /* Reserve space for MUX_CONTROL and LAP header */
310 skb_reserve(skb, IRDA_MAX_HEADER);
312 irttp_connect_response(self->tsap, self->max_sdu_size_rx, skb);
316 * Function irda_flow_indication (instance, sap, flow)
318 * Used by TinyTP to tell us if it can accept more data or not
321 static void irda_flow_indication(void *instance, void *sap, LOCAL_FLOW flow)
323 struct irda_sock *self;
324 struct sock *sk;
326 self = instance;
327 sk = instance;
328 BUG_ON(sk == NULL);
330 switch (flow) {
331 case FLOW_STOP:
332 pr_debug("%s(), IrTTP wants us to slow down\n",
333 __func__);
334 self->tx_flow = flow;
335 break;
336 case FLOW_START:
337 self->tx_flow = flow;
338 pr_debug("%s(), IrTTP wants us to start again\n",
339 __func__);
340 wake_up_interruptible(sk_sleep(sk));
341 break;
342 default:
343 pr_debug("%s(), Unknown flow command!\n", __func__);
344 /* Unknown flow command, better stop */
345 self->tx_flow = flow;
346 break;
351 * Function irda_getvalue_confirm (obj_id, value, priv)
353 * Got answer from remote LM-IAS, just pass object to requester...
355 * Note : duplicate from above, but we need our own version that
356 * doesn't touch the dtsap_sel and save the full value structure...
358 static void irda_getvalue_confirm(int result, __u16 obj_id,
359 struct ias_value *value, void *priv)
361 struct irda_sock *self;
363 self = priv;
364 if (!self) {
365 net_warn_ratelimited("%s: lost myself!\n", __func__);
366 return;
369 pr_debug("%s(%p)\n", __func__, self);
371 /* We probably don't need to make any more queries */
372 iriap_close(self->iriap);
373 self->iriap = NULL;
375 /* Check if request succeeded */
376 if (result != IAS_SUCCESS) {
377 pr_debug("%s(), IAS query failed! (%d)\n", __func__,
378 result);
380 self->errno = result; /* We really need it later */
382 /* Wake up any processes waiting for result */
383 wake_up_interruptible(&self->query_wait);
385 return;
388 /* Pass the object to the caller (so the caller must delete it) */
389 self->ias_result = value;
390 self->errno = 0;
392 /* Wake up any processes waiting for result */
393 wake_up_interruptible(&self->query_wait);
397 * Function irda_selective_discovery_indication (discovery)
399 * Got a selective discovery indication from IrLMP.
401 * IrLMP is telling us that this node is new and matching our hint bit
402 * filter. Wake up any process waiting for answer...
404 static void irda_selective_discovery_indication(discinfo_t *discovery,
405 DISCOVERY_MODE mode,
406 void *priv)
408 struct irda_sock *self;
410 self = priv;
411 if (!self) {
412 net_warn_ratelimited("%s: lost myself!\n", __func__);
413 return;
416 /* Pass parameter to the caller */
417 self->cachedaddr = discovery->daddr;
419 /* Wake up process if its waiting for device to be discovered */
420 wake_up_interruptible(&self->query_wait);
424 * Function irda_discovery_timeout (priv)
426 * Timeout in the selective discovery process
428 * We were waiting for a node to be discovered, but nothing has come up
429 * so far. Wake up the user and tell him that we failed...
431 static void irda_discovery_timeout(u_long priv)
433 struct irda_sock *self;
435 self = (struct irda_sock *) priv;
436 BUG_ON(self == NULL);
438 /* Nothing for the caller */
439 self->cachelog = NULL;
440 self->cachedaddr = 0;
441 self->errno = -ETIME;
443 /* Wake up process if its still waiting... */
444 wake_up_interruptible(&self->query_wait);
448 * Function irda_open_tsap (self)
450 * Open local Transport Service Access Point (TSAP)
453 static int irda_open_tsap(struct irda_sock *self, __u8 tsap_sel, char *name)
455 notify_t notify;
457 if (self->tsap) {
458 pr_debug("%s: busy!\n", __func__);
459 return -EBUSY;
462 /* Initialize callbacks to be used by the IrDA stack */
463 irda_notify_init(&notify);
464 notify.connect_confirm = irda_connect_confirm;
465 notify.connect_indication = irda_connect_indication;
466 notify.disconnect_indication = irda_disconnect_indication;
467 notify.data_indication = irda_data_indication;
468 notify.udata_indication = irda_data_indication;
469 notify.flow_indication = irda_flow_indication;
470 notify.instance = self;
471 strncpy(notify.name, name, NOTIFY_MAX_NAME);
473 self->tsap = irttp_open_tsap(tsap_sel, DEFAULT_INITIAL_CREDIT,
474 &notify);
475 if (self->tsap == NULL) {
476 pr_debug("%s(), Unable to allocate TSAP!\n",
477 __func__);
478 return -ENOMEM;
480 /* Remember which TSAP selector we actually got */
481 self->stsap_sel = self->tsap->stsap_sel;
483 return 0;
487 * Function irda_open_lsap (self)
489 * Open local Link Service Access Point (LSAP). Used for opening Ultra
490 * sockets
492 #ifdef CONFIG_IRDA_ULTRA
493 static int irda_open_lsap(struct irda_sock *self, int pid)
495 notify_t notify;
497 if (self->lsap) {
498 net_warn_ratelimited("%s(), busy!\n", __func__);
499 return -EBUSY;
502 /* Initialize callbacks to be used by the IrDA stack */
503 irda_notify_init(&notify);
504 notify.udata_indication = irda_data_indication;
505 notify.instance = self;
506 strncpy(notify.name, "Ultra", NOTIFY_MAX_NAME);
508 self->lsap = irlmp_open_lsap(LSAP_CONNLESS, &notify, pid);
509 if (self->lsap == NULL) {
510 pr_debug("%s(), Unable to allocate LSAP!\n", __func__);
511 return -ENOMEM;
514 return 0;
516 #endif /* CONFIG_IRDA_ULTRA */
519 * Function irda_find_lsap_sel (self, name)
521 * Try to lookup LSAP selector in remote LM-IAS
523 * Basically, we start a IAP query, and then go to sleep. When the query
524 * return, irda_getvalue_confirm will wake us up, and we can examine the
525 * result of the query...
526 * Note that in some case, the query fail even before we go to sleep,
527 * creating some races...
529 static int irda_find_lsap_sel(struct irda_sock *self, char *name)
531 pr_debug("%s(%p, %s)\n", __func__, self, name);
533 if (self->iriap) {
534 net_warn_ratelimited("%s(): busy with a previous query\n",
535 __func__);
536 return -EBUSY;
539 self->iriap = iriap_open(LSAP_ANY, IAS_CLIENT, self,
540 irda_getvalue_confirm);
541 if(self->iriap == NULL)
542 return -ENOMEM;
544 /* Treat unexpected wakeup as disconnect */
545 self->errno = -EHOSTUNREACH;
547 /* Query remote LM-IAS */
548 iriap_getvaluebyclass_request(self->iriap, self->saddr, self->daddr,
549 name, "IrDA:TinyTP:LsapSel");
551 /* Wait for answer, if not yet finished (or failed) */
552 if (wait_event_interruptible(self->query_wait, (self->iriap==NULL)))
553 /* Treat signals as disconnect */
554 return -EHOSTUNREACH;
556 /* Check what happened */
557 if (self->errno)
559 /* Requested object/attribute doesn't exist */
560 if((self->errno == IAS_CLASS_UNKNOWN) ||
561 (self->errno == IAS_ATTRIB_UNKNOWN))
562 return -EADDRNOTAVAIL;
563 else
564 return -EHOSTUNREACH;
567 /* Get the remote TSAP selector */
568 switch (self->ias_result->type) {
569 case IAS_INTEGER:
570 pr_debug("%s() int=%d\n",
571 __func__, self->ias_result->t.integer);
573 if (self->ias_result->t.integer != -1)
574 self->dtsap_sel = self->ias_result->t.integer;
575 else
576 self->dtsap_sel = 0;
577 break;
578 default:
579 self->dtsap_sel = 0;
580 pr_debug("%s(), bad type!\n", __func__);
581 break;
583 if (self->ias_result)
584 irias_delete_value(self->ias_result);
586 if (self->dtsap_sel)
587 return 0;
589 return -EADDRNOTAVAIL;
593 * Function irda_discover_daddr_and_lsap_sel (self, name)
595 * This try to find a device with the requested service.
597 * It basically look into the discovery log. For each address in the list,
598 * it queries the LM-IAS of the device to find if this device offer
599 * the requested service.
600 * If there is more than one node supporting the service, we complain
601 * to the user (it should move devices around).
602 * The, we set both the destination address and the lsap selector to point
603 * on the service on the unique device we have found.
605 * Note : this function fails if there is more than one device in range,
606 * because IrLMP doesn't disconnect the LAP when the last LSAP is closed.
607 * Moreover, we would need to wait the LAP disconnection...
609 static int irda_discover_daddr_and_lsap_sel(struct irda_sock *self, char *name)
611 discinfo_t *discoveries; /* Copy of the discovery log */
612 int number; /* Number of nodes in the log */
613 int i;
614 int err = -ENETUNREACH;
615 __u32 daddr = DEV_ADDR_ANY; /* Address we found the service on */
616 __u8 dtsap_sel = 0x0; /* TSAP associated with it */
618 pr_debug("%s(), name=%s\n", __func__, name);
620 /* Ask lmp for the current discovery log
621 * Note : we have to use irlmp_get_discoveries(), as opposed
622 * to play with the cachelog directly, because while we are
623 * making our ias query, le log might change... */
624 discoveries = irlmp_get_discoveries(&number, self->mask.word,
625 self->nslots);
626 /* Check if the we got some results */
627 if (discoveries == NULL)
628 return -ENETUNREACH; /* No nodes discovered */
631 * Now, check all discovered devices (if any), and connect
632 * client only about the services that the client is
633 * interested in...
635 for(i = 0; i < number; i++) {
636 /* Try the address in the log */
637 self->daddr = discoveries[i].daddr;
638 self->saddr = 0x0;
639 pr_debug("%s(), trying daddr = %08x\n",
640 __func__, self->daddr);
642 /* Query remote LM-IAS for this service */
643 err = irda_find_lsap_sel(self, name);
644 switch (err) {
645 case 0:
646 /* We found the requested service */
647 if(daddr != DEV_ADDR_ANY) {
648 pr_debug("%s(), discovered service ''%s'' in two different devices !!!\n",
649 __func__, name);
650 self->daddr = DEV_ADDR_ANY;
651 kfree(discoveries);
652 return -ENOTUNIQ;
654 /* First time we found that one, save it ! */
655 daddr = self->daddr;
656 dtsap_sel = self->dtsap_sel;
657 break;
658 case -EADDRNOTAVAIL:
659 /* Requested service simply doesn't exist on this node */
660 break;
661 default:
662 /* Something bad did happen :-( */
663 pr_debug("%s(), unexpected IAS query failure\n",
664 __func__);
665 self->daddr = DEV_ADDR_ANY;
666 kfree(discoveries);
667 return -EHOSTUNREACH;
670 /* Cleanup our copy of the discovery log */
671 kfree(discoveries);
673 /* Check out what we found */
674 if(daddr == DEV_ADDR_ANY) {
675 pr_debug("%s(), cannot discover service ''%s'' in any device !!!\n",
676 __func__, name);
677 self->daddr = DEV_ADDR_ANY;
678 return -EADDRNOTAVAIL;
681 /* Revert back to discovered device & service */
682 self->daddr = daddr;
683 self->saddr = 0x0;
684 self->dtsap_sel = dtsap_sel;
686 pr_debug("%s(), discovered requested service ''%s'' at address %08x\n",
687 __func__, name, self->daddr);
689 return 0;
693 * Function irda_getname (sock, uaddr, uaddr_len, peer)
695 * Return the our own, or peers socket address (sockaddr_irda)
698 static int irda_getname(struct socket *sock, struct sockaddr *uaddr,
699 int *uaddr_len, int peer)
701 struct sockaddr_irda saddr;
702 struct sock *sk = sock->sk;
703 struct irda_sock *self = irda_sk(sk);
705 memset(&saddr, 0, sizeof(saddr));
706 if (peer) {
707 if (sk->sk_state != TCP_ESTABLISHED)
708 return -ENOTCONN;
710 saddr.sir_family = AF_IRDA;
711 saddr.sir_lsap_sel = self->dtsap_sel;
712 saddr.sir_addr = self->daddr;
713 } else {
714 saddr.sir_family = AF_IRDA;
715 saddr.sir_lsap_sel = self->stsap_sel;
716 saddr.sir_addr = self->saddr;
719 pr_debug("%s(), tsap_sel = %#x\n", __func__, saddr.sir_lsap_sel);
720 pr_debug("%s(), addr = %08x\n", __func__, saddr.sir_addr);
722 /* uaddr_len come to us uninitialised */
723 *uaddr_len = sizeof (struct sockaddr_irda);
724 memcpy(uaddr, &saddr, *uaddr_len);
726 return 0;
730 * Function irda_listen (sock, backlog)
732 * Just move to the listen state
735 static int irda_listen(struct socket *sock, int backlog)
737 struct sock *sk = sock->sk;
738 int err = -EOPNOTSUPP;
740 lock_sock(sk);
742 if ((sk->sk_type != SOCK_STREAM) && (sk->sk_type != SOCK_SEQPACKET) &&
743 (sk->sk_type != SOCK_DGRAM))
744 goto out;
746 if (sk->sk_state != TCP_LISTEN) {
747 sk->sk_max_ack_backlog = backlog;
748 sk->sk_state = TCP_LISTEN;
750 err = 0;
752 out:
753 release_sock(sk);
755 return err;
759 * Function irda_bind (sock, uaddr, addr_len)
761 * Used by servers to register their well known TSAP
764 static int irda_bind(struct socket *sock, struct sockaddr *uaddr, int addr_len)
766 struct sock *sk = sock->sk;
767 struct sockaddr_irda *addr = (struct sockaddr_irda *) uaddr;
768 struct irda_sock *self = irda_sk(sk);
769 int err;
771 pr_debug("%s(%p)\n", __func__, self);
773 if (addr_len != sizeof(struct sockaddr_irda))
774 return -EINVAL;
776 lock_sock(sk);
778 /* Ensure that the socket is not already bound */
779 if (self->ias_obj) {
780 err = -EINVAL;
781 goto out;
784 #ifdef CONFIG_IRDA_ULTRA
785 /* Special care for Ultra sockets */
786 if ((sk->sk_type == SOCK_DGRAM) &&
787 (sk->sk_protocol == IRDAPROTO_ULTRA)) {
788 self->pid = addr->sir_lsap_sel;
789 err = -EOPNOTSUPP;
790 if (self->pid & 0x80) {
791 pr_debug("%s(), extension in PID not supp!\n",
792 __func__);
793 goto out;
795 err = irda_open_lsap(self, self->pid);
796 if (err < 0)
797 goto out;
799 /* Pretend we are connected */
800 sock->state = SS_CONNECTED;
801 sk->sk_state = TCP_ESTABLISHED;
802 err = 0;
804 goto out;
806 #endif /* CONFIG_IRDA_ULTRA */
808 self->ias_obj = irias_new_object(addr->sir_name, jiffies);
809 err = -ENOMEM;
810 if (self->ias_obj == NULL)
811 goto out;
813 err = irda_open_tsap(self, addr->sir_lsap_sel, addr->sir_name);
814 if (err < 0) {
815 irias_delete_object(self->ias_obj);
816 self->ias_obj = NULL;
817 goto out;
820 /* Register with LM-IAS */
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);
825 err = 0;
826 out:
827 release_sock(sk);
828 return err;
832 * Function irda_accept (sock, newsock, flags)
834 * Wait for incoming connection
837 static int irda_accept(struct socket *sock, struct socket *newsock, int flags)
839 struct sock *sk = sock->sk;
840 struct irda_sock *new, *self = irda_sk(sk);
841 struct sock *newsk;
842 struct sk_buff *skb;
843 int err;
845 err = irda_create(sock_net(sk), newsock, sk->sk_protocol, 0);
846 if (err)
847 return err;
849 err = -EINVAL;
851 lock_sock(sk);
852 if (sock->state != SS_UNCONNECTED)
853 goto out;
855 if ((sk = sock->sk) == NULL)
856 goto out;
858 err = -EOPNOTSUPP;
859 if ((sk->sk_type != SOCK_STREAM) && (sk->sk_type != SOCK_SEQPACKET) &&
860 (sk->sk_type != SOCK_DGRAM))
861 goto out;
863 err = -EINVAL;
864 if (sk->sk_state != TCP_LISTEN)
865 goto out;
868 * The read queue this time is holding sockets ready to use
869 * hooked into the SABM we saved
873 * We can perform the accept only if there is incoming data
874 * on the listening socket.
875 * So, we will block the caller until we receive any data.
876 * If the caller was waiting on select() or poll() before
877 * calling us, the data is waiting for us ;-)
878 * Jean II
880 while (1) {
881 skb = skb_dequeue(&sk->sk_receive_queue);
882 if (skb)
883 break;
885 /* Non blocking operation */
886 err = -EWOULDBLOCK;
887 if (flags & O_NONBLOCK)
888 goto out;
890 err = wait_event_interruptible(*(sk_sleep(sk)),
891 skb_peek(&sk->sk_receive_queue));
892 if (err)
893 goto out;
896 newsk = newsock->sk;
897 err = -EIO;
898 if (newsk == NULL)
899 goto out;
901 newsk->sk_state = TCP_ESTABLISHED;
903 new = irda_sk(newsk);
905 /* Now attach up the new socket */
906 new->tsap = irttp_dup(self->tsap, new);
907 err = -EPERM; /* value does not seem to make sense. -arnd */
908 if (!new->tsap) {
909 pr_debug("%s(), dup failed!\n", __func__);
910 kfree_skb(skb);
911 goto out;
914 new->stsap_sel = new->tsap->stsap_sel;
915 new->dtsap_sel = new->tsap->dtsap_sel;
916 new->saddr = irttp_get_saddr(new->tsap);
917 new->daddr = irttp_get_daddr(new->tsap);
919 new->max_sdu_size_tx = self->max_sdu_size_tx;
920 new->max_sdu_size_rx = self->max_sdu_size_rx;
921 new->max_data_size = self->max_data_size;
922 new->max_header_size = self->max_header_size;
924 memcpy(&new->qos_tx, &self->qos_tx, sizeof(struct qos_info));
926 /* Clean up the original one to keep it in listen state */
927 irttp_listen(self->tsap);
929 kfree_skb(skb);
930 sk->sk_ack_backlog--;
932 newsock->state = SS_CONNECTED;
934 irda_connect_response(new);
935 err = 0;
936 out:
937 release_sock(sk);
938 return err;
942 * Function irda_connect (sock, uaddr, addr_len, flags)
944 * Connect to a IrDA device
946 * The main difference with a "standard" connect is that with IrDA we need
947 * to resolve the service name into a TSAP selector (in TCP, port number
948 * doesn't have to be resolved).
949 * Because of this service name resolution, we can offer "auto-connect",
950 * where we connect to a service without specifying a destination address.
952 * Note : by consulting "errno", the user space caller may learn the cause
953 * of the failure. Most of them are visible in the function, others may come
954 * from subroutines called and are listed here :
955 * o EBUSY : already processing a connect
956 * o EHOSTUNREACH : bad addr->sir_addr argument
957 * o EADDRNOTAVAIL : bad addr->sir_name argument
958 * o ENOTUNIQ : more than one node has addr->sir_name (auto-connect)
959 * o ENETUNREACH : no node found on the network (auto-connect)
961 static int irda_connect(struct socket *sock, struct sockaddr *uaddr,
962 int addr_len, int flags)
964 struct sock *sk = sock->sk;
965 struct sockaddr_irda *addr = (struct sockaddr_irda *) uaddr;
966 struct irda_sock *self = irda_sk(sk);
967 int err;
969 pr_debug("%s(%p)\n", __func__, self);
971 lock_sock(sk);
972 /* Don't allow connect for Ultra sockets */
973 err = -ESOCKTNOSUPPORT;
974 if ((sk->sk_type == SOCK_DGRAM) && (sk->sk_protocol == IRDAPROTO_ULTRA))
975 goto out;
977 if (sk->sk_state == TCP_ESTABLISHED && sock->state == SS_CONNECTING) {
978 sock->state = SS_CONNECTED;
979 err = 0;
980 goto out; /* Connect completed during a ERESTARTSYS event */
983 if (sk->sk_state == TCP_CLOSE && sock->state == SS_CONNECTING) {
984 sock->state = SS_UNCONNECTED;
985 err = -ECONNREFUSED;
986 goto out;
989 err = -EISCONN; /* No reconnect on a seqpacket socket */
990 if (sk->sk_state == TCP_ESTABLISHED)
991 goto out;
993 sk->sk_state = TCP_CLOSE;
994 sock->state = SS_UNCONNECTED;
996 err = -EINVAL;
997 if (addr_len != sizeof(struct sockaddr_irda))
998 goto out;
1000 /* Check if user supplied any destination device address */
1001 if ((!addr->sir_addr) || (addr->sir_addr == DEV_ADDR_ANY)) {
1002 /* Try to find one suitable */
1003 err = irda_discover_daddr_and_lsap_sel(self, addr->sir_name);
1004 if (err) {
1005 pr_debug("%s(), auto-connect failed!\n", __func__);
1006 goto out;
1008 } else {
1009 /* Use the one provided by the user */
1010 self->daddr = addr->sir_addr;
1011 pr_debug("%s(), daddr = %08x\n", __func__, self->daddr);
1013 /* If we don't have a valid service name, we assume the
1014 * user want to connect on a specific LSAP. Prevent
1015 * the use of invalid LSAPs (IrLMP 1.1 p10). Jean II */
1016 if((addr->sir_name[0] != '\0') ||
1017 (addr->sir_lsap_sel >= 0x70)) {
1018 /* Query remote LM-IAS using service name */
1019 err = irda_find_lsap_sel(self, addr->sir_name);
1020 if (err) {
1021 pr_debug("%s(), connect failed!\n", __func__);
1022 goto out;
1024 } else {
1025 /* Directly connect to the remote LSAP
1026 * specified by the sir_lsap field.
1027 * Please use with caution, in IrDA LSAPs are
1028 * dynamic and there is no "well-known" LSAP. */
1029 self->dtsap_sel = addr->sir_lsap_sel;
1033 /* Check if we have opened a local TSAP */
1034 if (!self->tsap) {
1035 err = irda_open_tsap(self, LSAP_ANY, addr->sir_name);
1036 if (err)
1037 goto out;
1040 /* Move to connecting socket, start sending Connect Requests */
1041 sock->state = SS_CONNECTING;
1042 sk->sk_state = TCP_SYN_SENT;
1044 /* Connect to remote device */
1045 err = irttp_connect_request(self->tsap, self->dtsap_sel,
1046 self->saddr, self->daddr, NULL,
1047 self->max_sdu_size_rx, NULL);
1048 if (err) {
1049 pr_debug("%s(), connect failed!\n", __func__);
1050 goto out;
1053 /* Now the loop */
1054 err = -EINPROGRESS;
1055 if (sk->sk_state != TCP_ESTABLISHED && (flags & O_NONBLOCK))
1056 goto out;
1058 err = -ERESTARTSYS;
1059 if (wait_event_interruptible(*(sk_sleep(sk)),
1060 (sk->sk_state != TCP_SYN_SENT)))
1061 goto out;
1063 if (sk->sk_state != TCP_ESTABLISHED) {
1064 sock->state = SS_UNCONNECTED;
1065 err = sock_error(sk);
1066 if (!err)
1067 err = -ECONNRESET;
1068 goto out;
1071 sock->state = SS_CONNECTED;
1073 /* At this point, IrLMP has assigned our source address */
1074 self->saddr = irttp_get_saddr(self->tsap);
1075 err = 0;
1076 out:
1077 release_sock(sk);
1078 return err;
1081 static struct proto irda_proto = {
1082 .name = "IRDA",
1083 .owner = THIS_MODULE,
1084 .obj_size = sizeof(struct irda_sock),
1088 * Function irda_create (sock, protocol)
1090 * Create IrDA socket
1093 static int irda_create(struct net *net, struct socket *sock, int protocol,
1094 int kern)
1096 struct sock *sk;
1097 struct irda_sock *self;
1099 if (protocol < 0 || protocol > SK_PROTOCOL_MAX)
1100 return -EINVAL;
1102 if (net != &init_net)
1103 return -EAFNOSUPPORT;
1105 /* Check for valid socket type */
1106 switch (sock->type) {
1107 case SOCK_STREAM: /* For TTP connections with SAR disabled */
1108 case SOCK_SEQPACKET: /* For TTP connections with SAR enabled */
1109 case SOCK_DGRAM: /* For TTP Unitdata or LMP Ultra transfers */
1110 break;
1111 default:
1112 return -ESOCKTNOSUPPORT;
1115 /* Allocate networking socket */
1116 sk = sk_alloc(net, PF_IRDA, GFP_KERNEL, &irda_proto, kern);
1117 if (sk == NULL)
1118 return -ENOMEM;
1120 self = irda_sk(sk);
1121 pr_debug("%s() : self is %p\n", __func__, self);
1123 init_waitqueue_head(&self->query_wait);
1125 switch (sock->type) {
1126 case SOCK_STREAM:
1127 sock->ops = &irda_stream_ops;
1128 self->max_sdu_size_rx = TTP_SAR_DISABLE;
1129 break;
1130 case SOCK_SEQPACKET:
1131 sock->ops = &irda_seqpacket_ops;
1132 self->max_sdu_size_rx = TTP_SAR_UNBOUND;
1133 break;
1134 case SOCK_DGRAM:
1135 switch (protocol) {
1136 #ifdef CONFIG_IRDA_ULTRA
1137 case IRDAPROTO_ULTRA:
1138 sock->ops = &irda_ultra_ops;
1139 /* Initialise now, because we may send on unbound
1140 * sockets. Jean II */
1141 self->max_data_size = ULTRA_MAX_DATA - LMP_PID_HEADER;
1142 self->max_header_size = IRDA_MAX_HEADER + LMP_PID_HEADER;
1143 break;
1144 #endif /* CONFIG_IRDA_ULTRA */
1145 case IRDAPROTO_UNITDATA:
1146 sock->ops = &irda_dgram_ops;
1147 /* We let Unitdata conn. be like seqpack conn. */
1148 self->max_sdu_size_rx = TTP_SAR_UNBOUND;
1149 break;
1150 default:
1151 sk_free(sk);
1152 return -ESOCKTNOSUPPORT;
1154 break;
1155 default:
1156 sk_free(sk);
1157 return -ESOCKTNOSUPPORT;
1160 /* Initialise networking socket struct */
1161 sock_init_data(sock, sk); /* Note : set sk->sk_refcnt to 1 */
1162 sk->sk_family = PF_IRDA;
1163 sk->sk_protocol = protocol;
1165 /* Register as a client with IrLMP */
1166 self->ckey = irlmp_register_client(0, NULL, NULL, NULL);
1167 self->mask.word = 0xffff;
1168 self->rx_flow = self->tx_flow = FLOW_START;
1169 self->nslots = DISCOVERY_DEFAULT_SLOTS;
1170 self->daddr = DEV_ADDR_ANY; /* Until we get connected */
1171 self->saddr = 0x0; /* so IrLMP assign us any link */
1172 return 0;
1176 * Function irda_destroy_socket (self)
1178 * Destroy socket
1181 static void irda_destroy_socket(struct irda_sock *self)
1183 pr_debug("%s(%p)\n", __func__, self);
1185 /* Unregister with IrLMP */
1186 irlmp_unregister_client(self->ckey);
1187 irlmp_unregister_service(self->skey);
1189 /* Unregister with LM-IAS */
1190 if (self->ias_obj) {
1191 irias_delete_object(self->ias_obj);
1192 self->ias_obj = NULL;
1195 if (self->iriap) {
1196 iriap_close(self->iriap);
1197 self->iriap = NULL;
1200 if (self->tsap) {
1201 irttp_disconnect_request(self->tsap, NULL, P_NORMAL);
1202 irttp_close_tsap(self->tsap);
1203 self->tsap = NULL;
1205 #ifdef CONFIG_IRDA_ULTRA
1206 if (self->lsap) {
1207 irlmp_close_lsap(self->lsap);
1208 self->lsap = NULL;
1210 #endif /* CONFIG_IRDA_ULTRA */
1214 * Function irda_release (sock)
1216 static int irda_release(struct socket *sock)
1218 struct sock *sk = sock->sk;
1220 if (sk == NULL)
1221 return 0;
1223 lock_sock(sk);
1224 sk->sk_state = TCP_CLOSE;
1225 sk->sk_shutdown |= SEND_SHUTDOWN;
1226 sk->sk_state_change(sk);
1228 /* Destroy IrDA socket */
1229 irda_destroy_socket(irda_sk(sk));
1231 sock_orphan(sk);
1232 sock->sk = NULL;
1233 release_sock(sk);
1235 /* Purge queues (see sock_init_data()) */
1236 skb_queue_purge(&sk->sk_receive_queue);
1238 /* Destroy networking socket if we are the last reference on it,
1239 * i.e. if(sk->sk_refcnt == 0) -> sk_free(sk) */
1240 sock_put(sk);
1242 /* Notes on socket locking and deallocation... - Jean II
1243 * In theory we should put pairs of sock_hold() / sock_put() to
1244 * prevent the socket to be destroyed whenever there is an
1245 * outstanding request or outstanding incoming packet or event.
1247 * 1) This may include IAS request, both in connect and getsockopt.
1248 * Unfortunately, the situation is a bit more messy than it looks,
1249 * because we close iriap and kfree(self) above.
1251 * 2) This may include selective discovery in getsockopt.
1252 * Same stuff as above, irlmp registration and self are gone.
1254 * Probably 1 and 2 may not matter, because it's all triggered
1255 * by a process and the socket layer already prevent the
1256 * socket to go away while a process is holding it, through
1257 * sockfd_put() and fput()...
1259 * 3) This may include deferred TSAP closure. In particular,
1260 * we may receive a late irda_disconnect_indication()
1261 * Fortunately, (tsap_cb *)->close_pend should protect us
1262 * from that.
1264 * I did some testing on SMP, and it looks solid. And the socket
1265 * memory leak is now gone... - Jean II
1268 return 0;
1272 * Function irda_sendmsg (sock, msg, len)
1274 * Send message down to TinyTP. This function is used for both STREAM and
1275 * SEQPACK services. This is possible since it forces the client to
1276 * fragment the message if necessary
1278 static int irda_sendmsg(struct socket *sock, struct msghdr *msg, size_t len)
1280 struct sock *sk = sock->sk;
1281 struct irda_sock *self;
1282 struct sk_buff *skb;
1283 int err = -EPIPE;
1285 pr_debug("%s(), len=%zd\n", __func__, len);
1287 /* Note : socket.c set MSG_EOR on SEQPACKET sockets */
1288 if (msg->msg_flags & ~(MSG_DONTWAIT | MSG_EOR | MSG_CMSG_COMPAT |
1289 MSG_NOSIGNAL)) {
1290 return -EINVAL;
1293 lock_sock(sk);
1295 if (sk->sk_shutdown & SEND_SHUTDOWN)
1296 goto out_err;
1298 if (sk->sk_state != TCP_ESTABLISHED) {
1299 err = -ENOTCONN;
1300 goto out;
1303 self = irda_sk(sk);
1305 /* Check if IrTTP is wants us to slow down */
1307 if (wait_event_interruptible(*(sk_sleep(sk)),
1308 (self->tx_flow != FLOW_STOP || sk->sk_state != TCP_ESTABLISHED))) {
1309 err = -ERESTARTSYS;
1310 goto out;
1313 /* Check if we are still connected */
1314 if (sk->sk_state != TCP_ESTABLISHED) {
1315 err = -ENOTCONN;
1316 goto out;
1319 /* Check that we don't send out too big frames */
1320 if (len > self->max_data_size) {
1321 pr_debug("%s(), Chopping frame from %zd to %d bytes!\n",
1322 __func__, len, self->max_data_size);
1323 len = self->max_data_size;
1326 skb = sock_alloc_send_skb(sk, len + self->max_header_size + 16,
1327 msg->msg_flags & MSG_DONTWAIT, &err);
1328 if (!skb)
1329 goto out_err;
1331 skb_reserve(skb, self->max_header_size + 16);
1332 skb_reset_transport_header(skb);
1333 skb_put(skb, len);
1334 err = memcpy_from_msg(skb_transport_header(skb), msg, len);
1335 if (err) {
1336 kfree_skb(skb);
1337 goto out_err;
1341 * Just send the message to TinyTP, and let it deal with possible
1342 * errors. No need to duplicate all that here
1344 err = irttp_data_request(self->tsap, skb);
1345 if (err) {
1346 pr_debug("%s(), err=%d\n", __func__, err);
1347 goto out_err;
1350 release_sock(sk);
1351 /* Tell client how much data we actually sent */
1352 return len;
1354 out_err:
1355 err = sk_stream_error(sk, msg->msg_flags, err);
1356 out:
1357 release_sock(sk);
1358 return err;
1363 * Function irda_recvmsg_dgram (sock, msg, size, flags)
1365 * Try to receive message and copy it to user. The frame is discarded
1366 * after being read, regardless of how much the user actually read
1368 static int irda_recvmsg_dgram(struct socket *sock, struct msghdr *msg,
1369 size_t size, int flags)
1371 struct sock *sk = sock->sk;
1372 struct irda_sock *self = irda_sk(sk);
1373 struct sk_buff *skb;
1374 size_t copied;
1375 int err;
1377 skb = skb_recv_datagram(sk, flags & ~MSG_DONTWAIT,
1378 flags & MSG_DONTWAIT, &err);
1379 if (!skb)
1380 return err;
1382 skb_reset_transport_header(skb);
1383 copied = skb->len;
1385 if (copied > size) {
1386 pr_debug("%s(), Received truncated frame (%zd < %zd)!\n",
1387 __func__, copied, size);
1388 copied = size;
1389 msg->msg_flags |= MSG_TRUNC;
1391 skb_copy_datagram_msg(skb, 0, msg, copied);
1393 skb_free_datagram(sk, skb);
1396 * Check if we have previously stopped IrTTP and we know
1397 * have more free space in our rx_queue. If so tell IrTTP
1398 * to start delivering frames again before our rx_queue gets
1399 * empty
1401 if (self->rx_flow == FLOW_STOP) {
1402 if ((atomic_read(&sk->sk_rmem_alloc) << 2) <= sk->sk_rcvbuf) {
1403 pr_debug("%s(), Starting IrTTP\n", __func__);
1404 self->rx_flow = FLOW_START;
1405 irttp_flow_request(self->tsap, FLOW_START);
1409 return copied;
1413 * Function irda_recvmsg_stream (sock, msg, size, flags)
1415 static int irda_recvmsg_stream(struct socket *sock, struct msghdr *msg,
1416 size_t size, int flags)
1418 struct sock *sk = sock->sk;
1419 struct irda_sock *self = irda_sk(sk);
1420 int noblock = flags & MSG_DONTWAIT;
1421 size_t copied = 0;
1422 int target, err;
1423 long timeo;
1425 if ((err = sock_error(sk)) < 0)
1426 return err;
1428 if (sock->flags & __SO_ACCEPTCON)
1429 return -EINVAL;
1431 err =-EOPNOTSUPP;
1432 if (flags & MSG_OOB)
1433 return -EOPNOTSUPP;
1435 err = 0;
1436 target = sock_rcvlowat(sk, flags & MSG_WAITALL, size);
1437 timeo = sock_rcvtimeo(sk, noblock);
1439 do {
1440 int chunk;
1441 struct sk_buff *skb = skb_dequeue(&sk->sk_receive_queue);
1443 if (skb == NULL) {
1444 DEFINE_WAIT(wait);
1445 err = 0;
1447 if (copied >= target)
1448 break;
1450 prepare_to_wait_exclusive(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
1453 * POSIX 1003.1g mandates this order.
1455 err = sock_error(sk);
1456 if (err)
1458 else if (sk->sk_shutdown & RCV_SHUTDOWN)
1460 else if (noblock)
1461 err = -EAGAIN;
1462 else if (signal_pending(current))
1463 err = sock_intr_errno(timeo);
1464 else if (sk->sk_state != TCP_ESTABLISHED)
1465 err = -ENOTCONN;
1466 else if (skb_peek(&sk->sk_receive_queue) == NULL)
1467 /* Wait process until data arrives */
1468 schedule();
1470 finish_wait(sk_sleep(sk), &wait);
1472 if (err)
1473 return err;
1474 if (sk->sk_shutdown & RCV_SHUTDOWN)
1475 break;
1477 continue;
1480 chunk = min_t(unsigned int, skb->len, size);
1481 if (memcpy_to_msg(msg, skb->data, chunk)) {
1482 skb_queue_head(&sk->sk_receive_queue, skb);
1483 if (copied == 0)
1484 copied = -EFAULT;
1485 break;
1487 copied += chunk;
1488 size -= chunk;
1490 /* Mark read part of skb as used */
1491 if (!(flags & MSG_PEEK)) {
1492 skb_pull(skb, chunk);
1494 /* put the skb back if we didn't use it up.. */
1495 if (skb->len) {
1496 pr_debug("%s(), back on q!\n",
1497 __func__);
1498 skb_queue_head(&sk->sk_receive_queue, skb);
1499 break;
1502 kfree_skb(skb);
1503 } else {
1504 pr_debug("%s() questionable!?\n", __func__);
1506 /* put message back and return */
1507 skb_queue_head(&sk->sk_receive_queue, skb);
1508 break;
1510 } while (size);
1513 * Check if we have previously stopped IrTTP and we know
1514 * have more free space in our rx_queue. If so tell IrTTP
1515 * to start delivering frames again before our rx_queue gets
1516 * empty
1518 if (self->rx_flow == FLOW_STOP) {
1519 if ((atomic_read(&sk->sk_rmem_alloc) << 2) <= sk->sk_rcvbuf) {
1520 pr_debug("%s(), Starting IrTTP\n", __func__);
1521 self->rx_flow = FLOW_START;
1522 irttp_flow_request(self->tsap, FLOW_START);
1526 return copied;
1530 * Function irda_sendmsg_dgram (sock, msg, len)
1532 * Send message down to TinyTP for the unreliable sequenced
1533 * packet service...
1536 static int irda_sendmsg_dgram(struct socket *sock, struct msghdr *msg,
1537 size_t len)
1539 struct sock *sk = sock->sk;
1540 struct irda_sock *self;
1541 struct sk_buff *skb;
1542 int err;
1544 pr_debug("%s(), len=%zd\n", __func__, len);
1546 if (msg->msg_flags & ~(MSG_DONTWAIT|MSG_CMSG_COMPAT))
1547 return -EINVAL;
1549 lock_sock(sk);
1551 if (sk->sk_shutdown & SEND_SHUTDOWN) {
1552 send_sig(SIGPIPE, current, 0);
1553 err = -EPIPE;
1554 goto out;
1557 err = -ENOTCONN;
1558 if (sk->sk_state != TCP_ESTABLISHED)
1559 goto out;
1561 self = irda_sk(sk);
1564 * Check that we don't send out too big frames. This is an unreliable
1565 * service, so we have no fragmentation and no coalescence
1567 if (len > self->max_data_size) {
1568 pr_debug("%s(), Warning too much data! Chopping frame from %zd to %d bytes!\n",
1569 __func__, len, self->max_data_size);
1570 len = self->max_data_size;
1573 skb = sock_alloc_send_skb(sk, len + self->max_header_size,
1574 msg->msg_flags & MSG_DONTWAIT, &err);
1575 err = -ENOBUFS;
1576 if (!skb)
1577 goto out;
1579 skb_reserve(skb, self->max_header_size);
1580 skb_reset_transport_header(skb);
1582 pr_debug("%s(), appending user data\n", __func__);
1583 skb_put(skb, len);
1584 err = memcpy_from_msg(skb_transport_header(skb), msg, len);
1585 if (err) {
1586 kfree_skb(skb);
1587 goto out;
1591 * Just send the message to TinyTP, and let it deal with possible
1592 * errors. No need to duplicate all that here
1594 err = irttp_udata_request(self->tsap, skb);
1595 if (err) {
1596 pr_debug("%s(), err=%d\n", __func__, err);
1597 goto out;
1600 release_sock(sk);
1601 return len;
1603 out:
1604 release_sock(sk);
1605 return err;
1609 * Function irda_sendmsg_ultra (sock, msg, len)
1611 * Send message down to IrLMP for the unreliable Ultra
1612 * packet service...
1614 #ifdef CONFIG_IRDA_ULTRA
1615 static int irda_sendmsg_ultra(struct socket *sock, struct msghdr *msg,
1616 size_t len)
1618 struct sock *sk = sock->sk;
1619 struct irda_sock *self;
1620 __u8 pid = 0;
1621 int bound = 0;
1622 struct sk_buff *skb;
1623 int err;
1625 pr_debug("%s(), len=%zd\n", __func__, len);
1627 err = -EINVAL;
1628 if (msg->msg_flags & ~(MSG_DONTWAIT|MSG_CMSG_COMPAT))
1629 return -EINVAL;
1631 lock_sock(sk);
1633 err = -EPIPE;
1634 if (sk->sk_shutdown & SEND_SHUTDOWN) {
1635 send_sig(SIGPIPE, current, 0);
1636 goto out;
1639 self = irda_sk(sk);
1641 /* Check if an address was specified with sendto. Jean II */
1642 if (msg->msg_name) {
1643 DECLARE_SOCKADDR(struct sockaddr_irda *, addr, msg->msg_name);
1644 err = -EINVAL;
1645 /* Check address, extract pid. Jean II */
1646 if (msg->msg_namelen < sizeof(*addr))
1647 goto out;
1648 if (addr->sir_family != AF_IRDA)
1649 goto out;
1651 pid = addr->sir_lsap_sel;
1652 if (pid & 0x80) {
1653 pr_debug("%s(), extension in PID not supp!\n",
1654 __func__);
1655 err = -EOPNOTSUPP;
1656 goto out;
1658 } else {
1659 /* Check that the socket is properly bound to an Ultra
1660 * port. Jean II */
1661 if ((self->lsap == NULL) ||
1662 (sk->sk_state != TCP_ESTABLISHED)) {
1663 pr_debug("%s(), socket not bound to Ultra PID.\n",
1664 __func__);
1665 err = -ENOTCONN;
1666 goto out;
1668 /* Use PID from socket */
1669 bound = 1;
1673 * Check that we don't send out too big frames. This is an unreliable
1674 * service, so we have no fragmentation and no coalescence
1676 if (len > self->max_data_size) {
1677 pr_debug("%s(), Warning too much data! Chopping frame from %zd to %d bytes!\n",
1678 __func__, len, self->max_data_size);
1679 len = self->max_data_size;
1682 skb = sock_alloc_send_skb(sk, len + self->max_header_size,
1683 msg->msg_flags & MSG_DONTWAIT, &err);
1684 err = -ENOBUFS;
1685 if (!skb)
1686 goto out;
1688 skb_reserve(skb, self->max_header_size);
1689 skb_reset_transport_header(skb);
1691 pr_debug("%s(), appending user data\n", __func__);
1692 skb_put(skb, len);
1693 err = memcpy_from_msg(skb_transport_header(skb), msg, len);
1694 if (err) {
1695 kfree_skb(skb);
1696 goto out;
1699 err = irlmp_connless_data_request((bound ? self->lsap : NULL),
1700 skb, pid);
1701 if (err)
1702 pr_debug("%s(), err=%d\n", __func__, err);
1703 out:
1704 release_sock(sk);
1705 return err ? : len;
1707 #endif /* CONFIG_IRDA_ULTRA */
1710 * Function irda_shutdown (sk, how)
1712 static int irda_shutdown(struct socket *sock, int how)
1714 struct sock *sk = sock->sk;
1715 struct irda_sock *self = irda_sk(sk);
1717 pr_debug("%s(%p)\n", __func__, self);
1719 lock_sock(sk);
1721 sk->sk_state = TCP_CLOSE;
1722 sk->sk_shutdown |= SEND_SHUTDOWN;
1723 sk->sk_state_change(sk);
1725 if (self->iriap) {
1726 iriap_close(self->iriap);
1727 self->iriap = NULL;
1730 if (self->tsap) {
1731 irttp_disconnect_request(self->tsap, NULL, P_NORMAL);
1732 irttp_close_tsap(self->tsap);
1733 self->tsap = NULL;
1736 /* A few cleanup so the socket look as good as new... */
1737 self->rx_flow = self->tx_flow = FLOW_START; /* needed ??? */
1738 self->daddr = DEV_ADDR_ANY; /* Until we get re-connected */
1739 self->saddr = 0x0; /* so IrLMP assign us any link */
1741 release_sock(sk);
1743 return 0;
1747 * Function irda_poll (file, sock, wait)
1749 static unsigned int irda_poll(struct file * file, struct socket *sock,
1750 poll_table *wait)
1752 struct sock *sk = sock->sk;
1753 struct irda_sock *self = irda_sk(sk);
1754 unsigned int mask;
1756 poll_wait(file, sk_sleep(sk), wait);
1757 mask = 0;
1759 /* Exceptional events? */
1760 if (sk->sk_err)
1761 mask |= POLLERR;
1762 if (sk->sk_shutdown & RCV_SHUTDOWN) {
1763 pr_debug("%s(), POLLHUP\n", __func__);
1764 mask |= POLLHUP;
1767 /* Readable? */
1768 if (!skb_queue_empty(&sk->sk_receive_queue)) {
1769 pr_debug("Socket is readable\n");
1770 mask |= POLLIN | POLLRDNORM;
1773 /* Connection-based need to check for termination and startup */
1774 switch (sk->sk_type) {
1775 case SOCK_STREAM:
1776 if (sk->sk_state == TCP_CLOSE) {
1777 pr_debug("%s(), POLLHUP\n", __func__);
1778 mask |= POLLHUP;
1781 if (sk->sk_state == TCP_ESTABLISHED) {
1782 if ((self->tx_flow == FLOW_START) &&
1783 sock_writeable(sk))
1785 mask |= POLLOUT | POLLWRNORM | POLLWRBAND;
1788 break;
1789 case SOCK_SEQPACKET:
1790 if ((self->tx_flow == FLOW_START) &&
1791 sock_writeable(sk))
1793 mask |= POLLOUT | POLLWRNORM | POLLWRBAND;
1795 break;
1796 case SOCK_DGRAM:
1797 if (sock_writeable(sk))
1798 mask |= POLLOUT | POLLWRNORM | POLLWRBAND;
1799 break;
1800 default:
1801 break;
1804 return mask;
1808 * Function irda_ioctl (sock, cmd, arg)
1810 static int irda_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
1812 struct sock *sk = sock->sk;
1813 int err;
1815 pr_debug("%s(), cmd=%#x\n", __func__, cmd);
1817 err = -EINVAL;
1818 switch (cmd) {
1819 case TIOCOUTQ: {
1820 long amount;
1822 amount = sk->sk_sndbuf - sk_wmem_alloc_get(sk);
1823 if (amount < 0)
1824 amount = 0;
1825 err = put_user(amount, (unsigned int __user *)arg);
1826 break;
1829 case TIOCINQ: {
1830 struct sk_buff *skb;
1831 long amount = 0L;
1832 /* These two are safe on a single CPU system as only user tasks fiddle here */
1833 if ((skb = skb_peek(&sk->sk_receive_queue)) != NULL)
1834 amount = skb->len;
1835 err = put_user(amount, (unsigned int __user *)arg);
1836 break;
1839 case SIOCGSTAMP:
1840 if (sk != NULL)
1841 err = sock_get_timestamp(sk, (struct timeval __user *)arg);
1842 break;
1844 case SIOCGIFADDR:
1845 case SIOCSIFADDR:
1846 case SIOCGIFDSTADDR:
1847 case SIOCSIFDSTADDR:
1848 case SIOCGIFBRDADDR:
1849 case SIOCSIFBRDADDR:
1850 case SIOCGIFNETMASK:
1851 case SIOCSIFNETMASK:
1852 case SIOCGIFMETRIC:
1853 case SIOCSIFMETRIC:
1854 break;
1855 default:
1856 pr_debug("%s(), doing device ioctl!\n", __func__);
1857 err = -ENOIOCTLCMD;
1860 return err;
1863 #ifdef CONFIG_COMPAT
1865 * Function irda_ioctl (sock, cmd, arg)
1867 static int irda_compat_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
1870 * All IRDA's ioctl are standard ones.
1872 return -ENOIOCTLCMD;
1874 #endif
1877 * Function irda_setsockopt (sock, level, optname, optval, optlen)
1879 * Set some options for the socket
1882 static int irda_setsockopt(struct socket *sock, int level, int optname,
1883 char __user *optval, unsigned int optlen)
1885 struct sock *sk = sock->sk;
1886 struct irda_sock *self = irda_sk(sk);
1887 struct irda_ias_set *ias_opt;
1888 struct ias_object *ias_obj;
1889 struct ias_attrib * ias_attr; /* Attribute in IAS object */
1890 int opt, free_ias = 0, err = 0;
1892 pr_debug("%s(%p)\n", __func__, self);
1894 if (level != SOL_IRLMP)
1895 return -ENOPROTOOPT;
1897 lock_sock(sk);
1899 switch (optname) {
1900 case IRLMP_IAS_SET:
1901 /* The user want to add an attribute to an existing IAS object
1902 * (in the IAS database) or to create a new object with this
1903 * attribute.
1904 * We first query IAS to know if the object exist, and then
1905 * create the right attribute...
1908 if (optlen != sizeof(struct irda_ias_set)) {
1909 err = -EINVAL;
1910 goto out;
1913 ias_opt = kmalloc(sizeof(struct irda_ias_set), GFP_ATOMIC);
1914 if (ias_opt == NULL) {
1915 err = -ENOMEM;
1916 goto out;
1919 /* Copy query to the driver. */
1920 if (copy_from_user(ias_opt, optval, optlen)) {
1921 kfree(ias_opt);
1922 err = -EFAULT;
1923 goto out;
1926 /* Find the object we target.
1927 * If the user gives us an empty string, we use the object
1928 * associated with this socket. This will workaround
1929 * duplicated class name - Jean II */
1930 if(ias_opt->irda_class_name[0] == '\0') {
1931 if(self->ias_obj == NULL) {
1932 kfree(ias_opt);
1933 err = -EINVAL;
1934 goto out;
1936 ias_obj = self->ias_obj;
1937 } else
1938 ias_obj = irias_find_object(ias_opt->irda_class_name);
1940 /* Only ROOT can mess with the global IAS database.
1941 * Users can only add attributes to the object associated
1942 * with the socket they own - Jean II */
1943 if((!capable(CAP_NET_ADMIN)) &&
1944 ((ias_obj == NULL) || (ias_obj != self->ias_obj))) {
1945 kfree(ias_opt);
1946 err = -EPERM;
1947 goto out;
1950 /* If the object doesn't exist, create it */
1951 if(ias_obj == (struct ias_object *) NULL) {
1952 /* Create a new object */
1953 ias_obj = irias_new_object(ias_opt->irda_class_name,
1954 jiffies);
1955 if (ias_obj == NULL) {
1956 kfree(ias_opt);
1957 err = -ENOMEM;
1958 goto out;
1960 free_ias = 1;
1963 /* Do we have the attribute already ? */
1964 if(irias_find_attrib(ias_obj, ias_opt->irda_attrib_name)) {
1965 kfree(ias_opt);
1966 if (free_ias) {
1967 kfree(ias_obj->name);
1968 kfree(ias_obj);
1970 err = -EINVAL;
1971 goto out;
1974 /* Look at the type */
1975 switch(ias_opt->irda_attrib_type) {
1976 case IAS_INTEGER:
1977 /* Add an integer attribute */
1978 irias_add_integer_attrib(
1979 ias_obj,
1980 ias_opt->irda_attrib_name,
1981 ias_opt->attribute.irda_attrib_int,
1982 IAS_USER_ATTR);
1983 break;
1984 case IAS_OCT_SEQ:
1985 /* Check length */
1986 if(ias_opt->attribute.irda_attrib_octet_seq.len >
1987 IAS_MAX_OCTET_STRING) {
1988 kfree(ias_opt);
1989 if (free_ias) {
1990 kfree(ias_obj->name);
1991 kfree(ias_obj);
1994 err = -EINVAL;
1995 goto out;
1997 /* Add an octet sequence attribute */
1998 irias_add_octseq_attrib(
1999 ias_obj,
2000 ias_opt->irda_attrib_name,
2001 ias_opt->attribute.irda_attrib_octet_seq.octet_seq,
2002 ias_opt->attribute.irda_attrib_octet_seq.len,
2003 IAS_USER_ATTR);
2004 break;
2005 case IAS_STRING:
2006 /* Should check charset & co */
2007 /* Check length */
2008 /* The length is encoded in a __u8, and
2009 * IAS_MAX_STRING == 256, so there is no way
2010 * userspace can pass us a string too large.
2011 * Jean II */
2012 /* NULL terminate the string (avoid troubles) */
2013 ias_opt->attribute.irda_attrib_string.string[ias_opt->attribute.irda_attrib_string.len] = '\0';
2014 /* Add a string attribute */
2015 irias_add_string_attrib(
2016 ias_obj,
2017 ias_opt->irda_attrib_name,
2018 ias_opt->attribute.irda_attrib_string.string,
2019 IAS_USER_ATTR);
2020 break;
2021 default :
2022 kfree(ias_opt);
2023 if (free_ias) {
2024 kfree(ias_obj->name);
2025 kfree(ias_obj);
2027 err = -EINVAL;
2028 goto out;
2031 /* Only insert newly allocated objects */
2032 if (free_ias)
2033 irias_insert_object(ias_obj);
2035 kfree(ias_opt);
2036 break;
2037 case IRLMP_IAS_DEL:
2038 /* The user want to delete an object from our local IAS
2039 * database. We just need to query the IAS, check is the
2040 * object is not owned by the kernel and delete it.
2043 if (optlen != sizeof(struct irda_ias_set)) {
2044 err = -EINVAL;
2045 goto out;
2048 ias_opt = kmalloc(sizeof(struct irda_ias_set), GFP_ATOMIC);
2049 if (ias_opt == NULL) {
2050 err = -ENOMEM;
2051 goto out;
2054 /* Copy query to the driver. */
2055 if (copy_from_user(ias_opt, optval, optlen)) {
2056 kfree(ias_opt);
2057 err = -EFAULT;
2058 goto out;
2061 /* Find the object we target.
2062 * If the user gives us an empty string, we use the object
2063 * associated with this socket. This will workaround
2064 * duplicated class name - Jean II */
2065 if(ias_opt->irda_class_name[0] == '\0')
2066 ias_obj = self->ias_obj;
2067 else
2068 ias_obj = irias_find_object(ias_opt->irda_class_name);
2069 if(ias_obj == (struct ias_object *) NULL) {
2070 kfree(ias_opt);
2071 err = -EINVAL;
2072 goto out;
2075 /* Only ROOT can mess with the global IAS database.
2076 * Users can only del attributes from the object associated
2077 * with the socket they own - Jean II */
2078 if((!capable(CAP_NET_ADMIN)) &&
2079 ((ias_obj == NULL) || (ias_obj != self->ias_obj))) {
2080 kfree(ias_opt);
2081 err = -EPERM;
2082 goto out;
2085 /* Find the attribute (in the object) we target */
2086 ias_attr = irias_find_attrib(ias_obj,
2087 ias_opt->irda_attrib_name);
2088 if(ias_attr == (struct ias_attrib *) NULL) {
2089 kfree(ias_opt);
2090 err = -EINVAL;
2091 goto out;
2094 /* Check is the user space own the object */
2095 if(ias_attr->value->owner != IAS_USER_ATTR) {
2096 pr_debug("%s(), attempting to delete a kernel attribute\n",
2097 __func__);
2098 kfree(ias_opt);
2099 err = -EPERM;
2100 goto out;
2103 /* Remove the attribute (and maybe the object) */
2104 irias_delete_attrib(ias_obj, ias_attr, 1);
2105 kfree(ias_opt);
2106 break;
2107 case IRLMP_MAX_SDU_SIZE:
2108 if (optlen < sizeof(int)) {
2109 err = -EINVAL;
2110 goto out;
2113 if (get_user(opt, (int __user *)optval)) {
2114 err = -EFAULT;
2115 goto out;
2118 /* Only possible for a seqpacket service (TTP with SAR) */
2119 if (sk->sk_type != SOCK_SEQPACKET) {
2120 pr_debug("%s(), setting max_sdu_size = %d\n",
2121 __func__, opt);
2122 self->max_sdu_size_rx = opt;
2123 } else {
2124 net_warn_ratelimited("%s: not allowed to set MAXSDUSIZE for this socket type!\n",
2125 __func__);
2126 err = -ENOPROTOOPT;
2127 goto out;
2129 break;
2130 case IRLMP_HINTS_SET:
2131 if (optlen < sizeof(int)) {
2132 err = -EINVAL;
2133 goto out;
2136 /* The input is really a (__u8 hints[2]), easier as an int */
2137 if (get_user(opt, (int __user *)optval)) {
2138 err = -EFAULT;
2139 goto out;
2142 /* Unregister any old registration */
2143 irlmp_unregister_service(self->skey);
2145 self->skey = irlmp_register_service((__u16) opt);
2146 break;
2147 case IRLMP_HINT_MASK_SET:
2148 /* As opposed to the previous case which set the hint bits
2149 * that we advertise, this one set the filter we use when
2150 * making a discovery (nodes which don't match any hint
2151 * bit in the mask are not reported).
2153 if (optlen < sizeof(int)) {
2154 err = -EINVAL;
2155 goto out;
2158 /* The input is really a (__u8 hints[2]), easier as an int */
2159 if (get_user(opt, (int __user *)optval)) {
2160 err = -EFAULT;
2161 goto out;
2164 /* Set the new hint mask */
2165 self->mask.word = (__u16) opt;
2166 /* Mask out extension bits */
2167 self->mask.word &= 0x7f7f;
2168 /* Check if no bits */
2169 if(!self->mask.word)
2170 self->mask.word = 0xFFFF;
2172 break;
2173 default:
2174 err = -ENOPROTOOPT;
2175 break;
2178 out:
2179 release_sock(sk);
2181 return err;
2185 * Function irda_extract_ias_value(ias_opt, ias_value)
2187 * Translate internal IAS value structure to the user space representation
2189 * The external representation of IAS values, as we exchange them with
2190 * user space program is quite different from the internal representation,
2191 * as stored in the IAS database (because we need a flat structure for
2192 * crossing kernel boundary).
2193 * This function transform the former in the latter. We also check
2194 * that the value type is valid.
2196 static int irda_extract_ias_value(struct irda_ias_set *ias_opt,
2197 struct ias_value *ias_value)
2199 /* Look at the type */
2200 switch (ias_value->type) {
2201 case IAS_INTEGER:
2202 /* Copy the integer */
2203 ias_opt->attribute.irda_attrib_int = ias_value->t.integer;
2204 break;
2205 case IAS_OCT_SEQ:
2206 /* Set length */
2207 ias_opt->attribute.irda_attrib_octet_seq.len = ias_value->len;
2208 /* Copy over */
2209 memcpy(ias_opt->attribute.irda_attrib_octet_seq.octet_seq,
2210 ias_value->t.oct_seq, ias_value->len);
2211 break;
2212 case IAS_STRING:
2213 /* Set length */
2214 ias_opt->attribute.irda_attrib_string.len = ias_value->len;
2215 ias_opt->attribute.irda_attrib_string.charset = ias_value->charset;
2216 /* Copy over */
2217 memcpy(ias_opt->attribute.irda_attrib_string.string,
2218 ias_value->t.string, ias_value->len);
2219 /* NULL terminate the string (avoid troubles) */
2220 ias_opt->attribute.irda_attrib_string.string[ias_value->len] = '\0';
2221 break;
2222 case IAS_MISSING:
2223 default :
2224 return -EINVAL;
2227 /* Copy type over */
2228 ias_opt->irda_attrib_type = ias_value->type;
2230 return 0;
2234 * Function irda_getsockopt (sock, level, optname, optval, optlen)
2236 static int irda_getsockopt(struct socket *sock, int level, int optname,
2237 char __user *optval, int __user *optlen)
2239 struct sock *sk = sock->sk;
2240 struct irda_sock *self = irda_sk(sk);
2241 struct irda_device_list list = { 0 };
2242 struct irda_device_info *discoveries;
2243 struct irda_ias_set * ias_opt; /* IAS get/query params */
2244 struct ias_object * ias_obj; /* Object in IAS */
2245 struct ias_attrib * ias_attr; /* Attribute in IAS object */
2246 int daddr = DEV_ADDR_ANY; /* Dest address for IAS queries */
2247 int val = 0;
2248 int len = 0;
2249 int err = 0;
2250 int offset, total;
2252 pr_debug("%s(%p)\n", __func__, self);
2254 if (level != SOL_IRLMP)
2255 return -ENOPROTOOPT;
2257 if (get_user(len, optlen))
2258 return -EFAULT;
2260 if(len < 0)
2261 return -EINVAL;
2263 lock_sock(sk);
2265 switch (optname) {
2266 case IRLMP_ENUMDEVICES:
2268 /* Offset to first device entry */
2269 offset = sizeof(struct irda_device_list) -
2270 sizeof(struct irda_device_info);
2272 if (len < offset) {
2273 err = -EINVAL;
2274 goto out;
2277 /* Ask lmp for the current discovery log */
2278 discoveries = irlmp_get_discoveries(&list.len, self->mask.word,
2279 self->nslots);
2280 /* Check if the we got some results */
2281 if (discoveries == NULL) {
2282 err = -EAGAIN;
2283 goto out; /* Didn't find any devices */
2286 /* Write total list length back to client */
2287 if (copy_to_user(optval, &list, offset))
2288 err = -EFAULT;
2290 /* Copy the list itself - watch for overflow */
2291 if (list.len > 2048) {
2292 err = -EINVAL;
2293 goto bed;
2295 total = offset + (list.len * sizeof(struct irda_device_info));
2296 if (total > len)
2297 total = len;
2298 if (copy_to_user(optval+offset, discoveries, total - offset))
2299 err = -EFAULT;
2301 /* Write total number of bytes used back to client */
2302 if (put_user(total, optlen))
2303 err = -EFAULT;
2304 bed:
2305 /* Free up our buffer */
2306 kfree(discoveries);
2307 break;
2308 case IRLMP_MAX_SDU_SIZE:
2309 val = self->max_data_size;
2310 len = sizeof(int);
2311 if (put_user(len, optlen)) {
2312 err = -EFAULT;
2313 goto out;
2316 if (copy_to_user(optval, &val, len)) {
2317 err = -EFAULT;
2318 goto out;
2321 break;
2322 case IRLMP_IAS_GET:
2323 /* The user want an object from our local IAS database.
2324 * We just need to query the IAS and return the value
2325 * that we found */
2327 /* Check that the user has allocated the right space for us */
2328 if (len != sizeof(struct irda_ias_set)) {
2329 err = -EINVAL;
2330 goto out;
2333 ias_opt = kmalloc(sizeof(struct irda_ias_set), GFP_ATOMIC);
2334 if (ias_opt == NULL) {
2335 err = -ENOMEM;
2336 goto out;
2339 /* Copy query to the driver. */
2340 if (copy_from_user(ias_opt, optval, len)) {
2341 kfree(ias_opt);
2342 err = -EFAULT;
2343 goto out;
2346 /* Find the object we target.
2347 * If the user gives us an empty string, we use the object
2348 * associated with this socket. This will workaround
2349 * duplicated class name - Jean II */
2350 if(ias_opt->irda_class_name[0] == '\0')
2351 ias_obj = self->ias_obj;
2352 else
2353 ias_obj = irias_find_object(ias_opt->irda_class_name);
2354 if(ias_obj == (struct ias_object *) NULL) {
2355 kfree(ias_opt);
2356 err = -EINVAL;
2357 goto out;
2360 /* Find the attribute (in the object) we target */
2361 ias_attr = irias_find_attrib(ias_obj,
2362 ias_opt->irda_attrib_name);
2363 if(ias_attr == (struct ias_attrib *) NULL) {
2364 kfree(ias_opt);
2365 err = -EINVAL;
2366 goto out;
2369 /* Translate from internal to user structure */
2370 err = irda_extract_ias_value(ias_opt, ias_attr->value);
2371 if(err) {
2372 kfree(ias_opt);
2373 goto out;
2376 /* Copy reply to the user */
2377 if (copy_to_user(optval, ias_opt,
2378 sizeof(struct irda_ias_set))) {
2379 kfree(ias_opt);
2380 err = -EFAULT;
2381 goto out;
2383 /* Note : don't need to put optlen, we checked it */
2384 kfree(ias_opt);
2385 break;
2386 case IRLMP_IAS_QUERY:
2387 /* The user want an object from a remote IAS database.
2388 * We need to use IAP to query the remote database and
2389 * then wait for the answer to come back. */
2391 /* Check that the user has allocated the right space for us */
2392 if (len != sizeof(struct irda_ias_set)) {
2393 err = -EINVAL;
2394 goto out;
2397 ias_opt = kmalloc(sizeof(struct irda_ias_set), GFP_ATOMIC);
2398 if (ias_opt == NULL) {
2399 err = -ENOMEM;
2400 goto out;
2403 /* Copy query to the driver. */
2404 if (copy_from_user(ias_opt, optval, len)) {
2405 kfree(ias_opt);
2406 err = -EFAULT;
2407 goto out;
2410 /* At this point, there are two cases...
2411 * 1) the socket is connected - that's the easy case, we
2412 * just query the device we are connected to...
2413 * 2) the socket is not connected - the user doesn't want
2414 * to connect and/or may not have a valid service name
2415 * (so can't create a fake connection). In this case,
2416 * we assume that the user pass us a valid destination
2417 * address in the requesting structure...
2419 if(self->daddr != DEV_ADDR_ANY) {
2420 /* We are connected - reuse known daddr */
2421 daddr = self->daddr;
2422 } else {
2423 /* We are not connected, we must specify a valid
2424 * destination address */
2425 daddr = ias_opt->daddr;
2426 if((!daddr) || (daddr == DEV_ADDR_ANY)) {
2427 kfree(ias_opt);
2428 err = -EINVAL;
2429 goto out;
2433 /* Check that we can proceed with IAP */
2434 if (self->iriap) {
2435 net_warn_ratelimited("%s: busy with a previous query\n",
2436 __func__);
2437 kfree(ias_opt);
2438 err = -EBUSY;
2439 goto out;
2442 self->iriap = iriap_open(LSAP_ANY, IAS_CLIENT, self,
2443 irda_getvalue_confirm);
2445 if (self->iriap == NULL) {
2446 kfree(ias_opt);
2447 err = -ENOMEM;
2448 goto out;
2451 /* Treat unexpected wakeup as disconnect */
2452 self->errno = -EHOSTUNREACH;
2454 /* Query remote LM-IAS */
2455 iriap_getvaluebyclass_request(self->iriap,
2456 self->saddr, daddr,
2457 ias_opt->irda_class_name,
2458 ias_opt->irda_attrib_name);
2460 /* Wait for answer, if not yet finished (or failed) */
2461 if (wait_event_interruptible(self->query_wait,
2462 (self->iriap == NULL))) {
2463 /* pending request uses copy of ias_opt-content
2464 * we can free it regardless! */
2465 kfree(ias_opt);
2466 /* Treat signals as disconnect */
2467 err = -EHOSTUNREACH;
2468 goto out;
2471 /* Check what happened */
2472 if (self->errno)
2474 kfree(ias_opt);
2475 /* Requested object/attribute doesn't exist */
2476 if((self->errno == IAS_CLASS_UNKNOWN) ||
2477 (self->errno == IAS_ATTRIB_UNKNOWN))
2478 err = -EADDRNOTAVAIL;
2479 else
2480 err = -EHOSTUNREACH;
2482 goto out;
2485 /* Translate from internal to user structure */
2486 err = irda_extract_ias_value(ias_opt, self->ias_result);
2487 if (self->ias_result)
2488 irias_delete_value(self->ias_result);
2489 if (err) {
2490 kfree(ias_opt);
2491 goto out;
2494 /* Copy reply to the user */
2495 if (copy_to_user(optval, ias_opt,
2496 sizeof(struct irda_ias_set))) {
2497 kfree(ias_opt);
2498 err = -EFAULT;
2499 goto out;
2501 /* Note : don't need to put optlen, we checked it */
2502 kfree(ias_opt);
2503 break;
2504 case IRLMP_WAITDEVICE:
2505 /* This function is just another way of seeing life ;-)
2506 * IRLMP_ENUMDEVICES assumes that you have a static network,
2507 * and that you just want to pick one of the devices present.
2508 * On the other hand, in here we assume that no device is
2509 * present and that at some point in the future a device will
2510 * come into range. When this device arrive, we just wake
2511 * up the caller, so that he has time to connect to it before
2512 * the device goes away...
2513 * Note : once the node has been discovered for more than a
2514 * few second, it won't trigger this function, unless it
2515 * goes away and come back changes its hint bits (so we
2516 * might call it IRLMP_WAITNEWDEVICE).
2519 /* Check that the user is passing us an int */
2520 if (len != sizeof(int)) {
2521 err = -EINVAL;
2522 goto out;
2524 /* Get timeout in ms (max time we block the caller) */
2525 if (get_user(val, (int __user *)optval)) {
2526 err = -EFAULT;
2527 goto out;
2530 /* Tell IrLMP we want to be notified */
2531 irlmp_update_client(self->ckey, self->mask.word,
2532 irda_selective_discovery_indication,
2533 NULL, (void *) self);
2535 /* Do some discovery (and also return cached results) */
2536 irlmp_discovery_request(self->nslots);
2538 /* Wait until a node is discovered */
2539 if (!self->cachedaddr) {
2540 pr_debug("%s(), nothing discovered yet, going to sleep...\n",
2541 __func__);
2543 /* Set watchdog timer to expire in <val> ms. */
2544 self->errno = 0;
2545 setup_timer(&self->watchdog, irda_discovery_timeout,
2546 (unsigned long)self);
2547 mod_timer(&self->watchdog,
2548 jiffies + msecs_to_jiffies(val));
2550 /* Wait for IR-LMP to call us back */
2551 err = __wait_event_interruptible(self->query_wait,
2552 (self->cachedaddr != 0 || self->errno == -ETIME));
2554 /* If watchdog is still activated, kill it! */
2555 del_timer(&(self->watchdog));
2557 pr_debug("%s(), ...waking up !\n", __func__);
2559 if (err != 0)
2560 goto out;
2562 else
2563 pr_debug("%s(), found immediately !\n",
2564 __func__);
2566 /* Tell IrLMP that we have been notified */
2567 irlmp_update_client(self->ckey, self->mask.word,
2568 NULL, NULL, NULL);
2570 /* Check if the we got some results */
2571 if (!self->cachedaddr) {
2572 err = -EAGAIN; /* Didn't find any devices */
2573 goto out;
2575 daddr = self->cachedaddr;
2576 /* Cleanup */
2577 self->cachedaddr = 0;
2579 /* We return the daddr of the device that trigger the
2580 * wakeup. As irlmp pass us only the new devices, we
2581 * are sure that it's not an old device.
2582 * If the user want more details, he should query
2583 * the whole discovery log and pick one device...
2585 if (put_user(daddr, (int __user *)optval)) {
2586 err = -EFAULT;
2587 goto out;
2590 break;
2591 default:
2592 err = -ENOPROTOOPT;
2595 out:
2597 release_sock(sk);
2599 return err;
2602 static const struct net_proto_family irda_family_ops = {
2603 .family = PF_IRDA,
2604 .create = irda_create,
2605 .owner = THIS_MODULE,
2608 static const struct proto_ops irda_stream_ops = {
2609 .family = PF_IRDA,
2610 .owner = THIS_MODULE,
2611 .release = irda_release,
2612 .bind = irda_bind,
2613 .connect = irda_connect,
2614 .socketpair = sock_no_socketpair,
2615 .accept = irda_accept,
2616 .getname = irda_getname,
2617 .poll = irda_poll,
2618 .ioctl = irda_ioctl,
2619 #ifdef CONFIG_COMPAT
2620 .compat_ioctl = irda_compat_ioctl,
2621 #endif
2622 .listen = irda_listen,
2623 .shutdown = irda_shutdown,
2624 .setsockopt = irda_setsockopt,
2625 .getsockopt = irda_getsockopt,
2626 .sendmsg = irda_sendmsg,
2627 .recvmsg = irda_recvmsg_stream,
2628 .mmap = sock_no_mmap,
2629 .sendpage = sock_no_sendpage,
2632 static const struct proto_ops irda_seqpacket_ops = {
2633 .family = PF_IRDA,
2634 .owner = THIS_MODULE,
2635 .release = irda_release,
2636 .bind = irda_bind,
2637 .connect = irda_connect,
2638 .socketpair = sock_no_socketpair,
2639 .accept = irda_accept,
2640 .getname = irda_getname,
2641 .poll = datagram_poll,
2642 .ioctl = irda_ioctl,
2643 #ifdef CONFIG_COMPAT
2644 .compat_ioctl = irda_compat_ioctl,
2645 #endif
2646 .listen = irda_listen,
2647 .shutdown = irda_shutdown,
2648 .setsockopt = irda_setsockopt,
2649 .getsockopt = irda_getsockopt,
2650 .sendmsg = irda_sendmsg,
2651 .recvmsg = irda_recvmsg_dgram,
2652 .mmap = sock_no_mmap,
2653 .sendpage = sock_no_sendpage,
2656 static const struct proto_ops irda_dgram_ops = {
2657 .family = PF_IRDA,
2658 .owner = THIS_MODULE,
2659 .release = irda_release,
2660 .bind = irda_bind,
2661 .connect = irda_connect,
2662 .socketpair = sock_no_socketpair,
2663 .accept = irda_accept,
2664 .getname = irda_getname,
2665 .poll = datagram_poll,
2666 .ioctl = irda_ioctl,
2667 #ifdef CONFIG_COMPAT
2668 .compat_ioctl = irda_compat_ioctl,
2669 #endif
2670 .listen = irda_listen,
2671 .shutdown = irda_shutdown,
2672 .setsockopt = irda_setsockopt,
2673 .getsockopt = irda_getsockopt,
2674 .sendmsg = irda_sendmsg_dgram,
2675 .recvmsg = irda_recvmsg_dgram,
2676 .mmap = sock_no_mmap,
2677 .sendpage = sock_no_sendpage,
2680 #ifdef CONFIG_IRDA_ULTRA
2681 static const struct proto_ops irda_ultra_ops = {
2682 .family = PF_IRDA,
2683 .owner = THIS_MODULE,
2684 .release = irda_release,
2685 .bind = irda_bind,
2686 .connect = sock_no_connect,
2687 .socketpair = sock_no_socketpair,
2688 .accept = sock_no_accept,
2689 .getname = irda_getname,
2690 .poll = datagram_poll,
2691 .ioctl = irda_ioctl,
2692 #ifdef CONFIG_COMPAT
2693 .compat_ioctl = irda_compat_ioctl,
2694 #endif
2695 .listen = sock_no_listen,
2696 .shutdown = irda_shutdown,
2697 .setsockopt = irda_setsockopt,
2698 .getsockopt = irda_getsockopt,
2699 .sendmsg = irda_sendmsg_ultra,
2700 .recvmsg = irda_recvmsg_dgram,
2701 .mmap = sock_no_mmap,
2702 .sendpage = sock_no_sendpage,
2704 #endif /* CONFIG_IRDA_ULTRA */
2707 * Function irsock_init (pro)
2709 * Initialize IrDA protocol
2712 int __init irsock_init(void)
2714 int rc = proto_register(&irda_proto, 0);
2716 if (rc == 0)
2717 rc = sock_register(&irda_family_ops);
2719 return rc;
2723 * Function irsock_cleanup (void)
2725 * Remove IrDA protocol
2728 void irsock_cleanup(void)
2730 sock_unregister(PF_IRDA);
2731 proto_unregister(&irda_proto);