1 /*********************************************************************
5 * Description: IrDA sockets implementation
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/sched/signal.h>
50 #include <linux/init.h>
51 #include <linux/net.h>
52 #include <linux/irda.h>
53 #include <linux/poll.h>
55 #include <asm/ioctls.h> /* TIOCOUTQ, TIOCINQ */
56 #include <linux/uaccess.h>
59 #include <net/tcp_states.h>
61 #include <net/irda/af_irda.h>
63 static int irda_create(struct net
*net
, struct socket
*sock
, int protocol
, int kern
);
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
;
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 */
74 #define IRDA_MAX_HEADER (TTP_MAX_HEADER)
77 * Function irda_data_indication (instance, sap, skb)
79 * Received some data from TinyTP. Just queue it on the receive queue
82 static int irda_data_indication(void *instance
, void *sap
, struct sk_buff
*skb
)
84 struct irda_sock
*self
;
91 err
= sock_queue_rcv_skb(sk
, skb
);
93 pr_debug("%s(), error: no more mem!\n", __func__
);
94 self
->rx_flow
= FLOW_STOP
;
96 /* When we return error, TTP will need to requeue the skb */
104 * Function irda_disconnect_indication (instance, sap, reason, skb)
106 * Connection has been closed. Check reason to find out why
109 static void irda_disconnect_indication(void *instance
, void *sap
,
110 LM_REASON reason
, struct sk_buff
*skb
)
112 struct irda_sock
*self
;
117 pr_debug("%s(%p)\n", __func__
, self
);
119 /* Don't care about it, but let's not leak it */
125 pr_debug("%s(%p) : BUG : sk is NULL\n",
130 /* Prevent race conditions with irda_release() and irda_shutdown() */
132 if (!sock_flag(sk
, SOCK_DEAD
) && sk
->sk_state
!= TCP_CLOSE
) {
133 sk
->sk_state
= TCP_CLOSE
;
134 sk
->sk_shutdown
|= SEND_SHUTDOWN
;
136 sk
->sk_state_change(sk
);
139 * If we leave it open, IrLMP put it back into the list of
140 * unconnected LSAPs. The problem is that any incoming request
141 * can then be matched to this socket (and it will be, because
142 * it is at the head of the list). This would prevent any
143 * listening socket waiting on the same TSAP to get those
144 * requests. Some apps forget to close sockets, or hang to it
145 * a bit too long, so we may stay in this dead state long
146 * enough to be noticed...
147 * Note : all socket function do check sk->sk_state, so we are
152 irttp_close_tsap(self
->tsap
);
158 /* Note : once we are there, there is not much you want to do
159 * with the socket anymore, apart from closing it.
160 * For example, bind() and connect() won't reset sk->sk_err,
161 * sk->sk_shutdown and sk->sk_flags to valid values...
167 * Function irda_connect_confirm (instance, sap, qos, max_sdu_size, skb)
169 * Connections has been confirmed by the remote device
172 static void irda_connect_confirm(void *instance
, void *sap
,
173 struct qos_info
*qos
,
174 __u32 max_sdu_size
, __u8 max_header_size
,
177 struct irda_sock
*self
;
182 pr_debug("%s(%p)\n", __func__
, self
);
191 // Should be ??? skb_queue_tail(&sk->sk_receive_queue, skb);
193 /* How much header space do we need to reserve */
194 self
->max_header_size
= max_header_size
;
196 /* IrTTP max SDU size in transmit direction */
197 self
->max_sdu_size_tx
= max_sdu_size
;
199 /* Find out what the largest chunk of data that we can transmit is */
200 switch (sk
->sk_type
) {
202 if (max_sdu_size
!= 0) {
203 net_err_ratelimited("%s: max_sdu_size must be 0\n",
207 self
->max_data_size
= irttp_get_max_seg_size(self
->tsap
);
210 if (max_sdu_size
== 0) {
211 net_err_ratelimited("%s: max_sdu_size cannot be 0\n",
215 self
->max_data_size
= max_sdu_size
;
218 self
->max_data_size
= irttp_get_max_seg_size(self
->tsap
);
221 pr_debug("%s(), max_data_size=%d\n", __func__
,
222 self
->max_data_size
);
224 memcpy(&self
->qos_tx
, qos
, sizeof(struct qos_info
));
226 /* We are now connected! */
227 sk
->sk_state
= TCP_ESTABLISHED
;
228 sk
->sk_state_change(sk
);
232 * Function irda_connect_indication(instance, sap, qos, max_sdu_size, userdata)
234 * Incoming connection
237 static void irda_connect_indication(void *instance
, void *sap
,
238 struct qos_info
*qos
, __u32 max_sdu_size
,
239 __u8 max_header_size
, struct sk_buff
*skb
)
241 struct irda_sock
*self
;
246 pr_debug("%s(%p)\n", __func__
, self
);
254 /* How much header space do we need to reserve */
255 self
->max_header_size
= max_header_size
;
257 /* IrTTP max SDU size in transmit direction */
258 self
->max_sdu_size_tx
= max_sdu_size
;
260 /* Find out what the largest chunk of data that we can transmit is */
261 switch (sk
->sk_type
) {
263 if (max_sdu_size
!= 0) {
264 net_err_ratelimited("%s: max_sdu_size must be 0\n",
269 self
->max_data_size
= irttp_get_max_seg_size(self
->tsap
);
272 if (max_sdu_size
== 0) {
273 net_err_ratelimited("%s: max_sdu_size cannot be 0\n",
278 self
->max_data_size
= max_sdu_size
;
281 self
->max_data_size
= irttp_get_max_seg_size(self
->tsap
);
284 pr_debug("%s(), max_data_size=%d\n", __func__
,
285 self
->max_data_size
);
287 memcpy(&self
->qos_tx
, qos
, sizeof(struct qos_info
));
289 skb_queue_tail(&sk
->sk_receive_queue
, skb
);
290 sk
->sk_state_change(sk
);
294 * Function irda_connect_response (handle)
296 * Accept incoming connection
299 static void irda_connect_response(struct irda_sock
*self
)
303 skb
= alloc_skb(TTP_MAX_HEADER
+ TTP_SAR_HEADER
, GFP_KERNEL
);
305 pr_debug("%s() Unable to allocate sk_buff!\n",
310 /* Reserve space for MUX_CONTROL and LAP header */
311 skb_reserve(skb
, IRDA_MAX_HEADER
);
313 irttp_connect_response(self
->tsap
, self
->max_sdu_size_rx
, skb
);
317 * Function irda_flow_indication (instance, sap, flow)
319 * Used by TinyTP to tell us if it can accept more data or not
322 static void irda_flow_indication(void *instance
, void *sap
, LOCAL_FLOW flow
)
324 struct irda_sock
*self
;
333 pr_debug("%s(), IrTTP wants us to slow down\n",
335 self
->tx_flow
= flow
;
338 self
->tx_flow
= flow
;
339 pr_debug("%s(), IrTTP wants us to start again\n",
341 wake_up_interruptible(sk_sleep(sk
));
344 pr_debug("%s(), Unknown flow command!\n", __func__
);
345 /* Unknown flow command, better stop */
346 self
->tx_flow
= flow
;
352 * Function irda_getvalue_confirm (obj_id, value, priv)
354 * Got answer from remote LM-IAS, just pass object to requester...
356 * Note : duplicate from above, but we need our own version that
357 * doesn't touch the dtsap_sel and save the full value structure...
359 static void irda_getvalue_confirm(int result
, __u16 obj_id
,
360 struct ias_value
*value
, void *priv
)
362 struct irda_sock
*self
;
366 net_warn_ratelimited("%s: lost myself!\n", __func__
);
370 pr_debug("%s(%p)\n", __func__
, self
);
372 /* We probably don't need to make any more queries */
373 iriap_close(self
->iriap
);
376 /* Check if request succeeded */
377 if (result
!= IAS_SUCCESS
) {
378 pr_debug("%s(), IAS query failed! (%d)\n", __func__
,
381 self
->errno
= result
; /* We really need it later */
383 /* Wake up any processes waiting for result */
384 wake_up_interruptible(&self
->query_wait
);
389 /* Pass the object to the caller (so the caller must delete it) */
390 self
->ias_result
= value
;
393 /* Wake up any processes waiting for result */
394 wake_up_interruptible(&self
->query_wait
);
398 * Function irda_selective_discovery_indication (discovery)
400 * Got a selective discovery indication from IrLMP.
402 * IrLMP is telling us that this node is new and matching our hint bit
403 * filter. Wake up any process waiting for answer...
405 static void irda_selective_discovery_indication(discinfo_t
*discovery
,
409 struct irda_sock
*self
;
413 net_warn_ratelimited("%s: lost myself!\n", __func__
);
417 /* Pass parameter to the caller */
418 self
->cachedaddr
= discovery
->daddr
;
420 /* Wake up process if its waiting for device to be discovered */
421 wake_up_interruptible(&self
->query_wait
);
425 * Function irda_discovery_timeout (priv)
427 * Timeout in the selective discovery process
429 * We were waiting for a node to be discovered, but nothing has come up
430 * so far. Wake up the user and tell him that we failed...
432 static void irda_discovery_timeout(u_long priv
)
434 struct irda_sock
*self
;
436 self
= (struct irda_sock
*) priv
;
437 BUG_ON(self
== NULL
);
439 /* Nothing for the caller */
440 self
->cachelog
= NULL
;
441 self
->cachedaddr
= 0;
442 self
->errno
= -ETIME
;
444 /* Wake up process if its still waiting... */
445 wake_up_interruptible(&self
->query_wait
);
449 * Function irda_open_tsap (self)
451 * Open local Transport Service Access Point (TSAP)
454 static int irda_open_tsap(struct irda_sock
*self
, __u8 tsap_sel
, char *name
)
459 pr_debug("%s: busy!\n", __func__
);
463 /* Initialize callbacks to be used by the IrDA stack */
464 irda_notify_init(¬ify
);
465 notify
.connect_confirm
= irda_connect_confirm
;
466 notify
.connect_indication
= irda_connect_indication
;
467 notify
.disconnect_indication
= irda_disconnect_indication
;
468 notify
.data_indication
= irda_data_indication
;
469 notify
.udata_indication
= irda_data_indication
;
470 notify
.flow_indication
= irda_flow_indication
;
471 notify
.instance
= self
;
472 strncpy(notify
.name
, name
, NOTIFY_MAX_NAME
);
474 self
->tsap
= irttp_open_tsap(tsap_sel
, DEFAULT_INITIAL_CREDIT
,
476 if (self
->tsap
== NULL
) {
477 pr_debug("%s(), Unable to allocate TSAP!\n",
481 /* Remember which TSAP selector we actually got */
482 self
->stsap_sel
= self
->tsap
->stsap_sel
;
488 * Function irda_open_lsap (self)
490 * Open local Link Service Access Point (LSAP). Used for opening Ultra
493 #ifdef CONFIG_IRDA_ULTRA
494 static int irda_open_lsap(struct irda_sock
*self
, int pid
)
499 net_warn_ratelimited("%s(), busy!\n", __func__
);
503 /* Initialize callbacks to be used by the IrDA stack */
504 irda_notify_init(¬ify
);
505 notify
.udata_indication
= irda_data_indication
;
506 notify
.instance
= self
;
507 strncpy(notify
.name
, "Ultra", NOTIFY_MAX_NAME
);
509 self
->lsap
= irlmp_open_lsap(LSAP_CONNLESS
, ¬ify
, pid
);
510 if (self
->lsap
== NULL
) {
511 pr_debug("%s(), Unable to allocate LSAP!\n", __func__
);
517 #endif /* CONFIG_IRDA_ULTRA */
520 * Function irda_find_lsap_sel (self, name)
522 * Try to lookup LSAP selector in remote LM-IAS
524 * Basically, we start a IAP query, and then go to sleep. When the query
525 * return, irda_getvalue_confirm will wake us up, and we can examine the
526 * result of the query...
527 * Note that in some case, the query fail even before we go to sleep,
528 * creating some races...
530 static int irda_find_lsap_sel(struct irda_sock
*self
, char *name
)
532 pr_debug("%s(%p, %s)\n", __func__
, self
, name
);
535 net_warn_ratelimited("%s(): busy with a previous query\n",
540 self
->iriap
= iriap_open(LSAP_ANY
, IAS_CLIENT
, self
,
541 irda_getvalue_confirm
);
542 if(self
->iriap
== NULL
)
545 /* Treat unexpected wakeup as disconnect */
546 self
->errno
= -EHOSTUNREACH
;
548 /* Query remote LM-IAS */
549 iriap_getvaluebyclass_request(self
->iriap
, self
->saddr
, self
->daddr
,
550 name
, "IrDA:TinyTP:LsapSel");
552 /* Wait for answer, if not yet finished (or failed) */
553 if (wait_event_interruptible(self
->query_wait
, (self
->iriap
==NULL
)))
554 /* Treat signals as disconnect */
555 return -EHOSTUNREACH
;
557 /* Check what happened */
560 /* Requested object/attribute doesn't exist */
561 if((self
->errno
== IAS_CLASS_UNKNOWN
) ||
562 (self
->errno
== IAS_ATTRIB_UNKNOWN
))
563 return -EADDRNOTAVAIL
;
565 return -EHOSTUNREACH
;
568 /* Get the remote TSAP selector */
569 switch (self
->ias_result
->type
) {
571 pr_debug("%s() int=%d\n",
572 __func__
, self
->ias_result
->t
.integer
);
574 if (self
->ias_result
->t
.integer
!= -1)
575 self
->dtsap_sel
= self
->ias_result
->t
.integer
;
581 pr_debug("%s(), bad type!\n", __func__
);
584 if (self
->ias_result
)
585 irias_delete_value(self
->ias_result
);
590 return -EADDRNOTAVAIL
;
594 * Function irda_discover_daddr_and_lsap_sel (self, name)
596 * This try to find a device with the requested service.
598 * It basically look into the discovery log. For each address in the list,
599 * it queries the LM-IAS of the device to find if this device offer
600 * the requested service.
601 * If there is more than one node supporting the service, we complain
602 * to the user (it should move devices around).
603 * The, we set both the destination address and the lsap selector to point
604 * on the service on the unique device we have found.
606 * Note : this function fails if there is more than one device in range,
607 * because IrLMP doesn't disconnect the LAP when the last LSAP is closed.
608 * Moreover, we would need to wait the LAP disconnection...
610 static int irda_discover_daddr_and_lsap_sel(struct irda_sock
*self
, char *name
)
612 discinfo_t
*discoveries
; /* Copy of the discovery log */
613 int number
; /* Number of nodes in the log */
615 int err
= -ENETUNREACH
;
616 __u32 daddr
= DEV_ADDR_ANY
; /* Address we found the service on */
617 __u8 dtsap_sel
= 0x0; /* TSAP associated with it */
619 pr_debug("%s(), name=%s\n", __func__
, name
);
621 /* Ask lmp for the current discovery log
622 * Note : we have to use irlmp_get_discoveries(), as opposed
623 * to play with the cachelog directly, because while we are
624 * making our ias query, le log might change... */
625 discoveries
= irlmp_get_discoveries(&number
, self
->mask
.word
,
627 /* Check if the we got some results */
628 if (discoveries
== NULL
)
629 return -ENETUNREACH
; /* No nodes discovered */
632 * Now, check all discovered devices (if any), and connect
633 * client only about the services that the client is
636 for(i
= 0; i
< number
; i
++) {
637 /* Try the address in the log */
638 self
->daddr
= discoveries
[i
].daddr
;
640 pr_debug("%s(), trying daddr = %08x\n",
641 __func__
, self
->daddr
);
643 /* Query remote LM-IAS for this service */
644 err
= irda_find_lsap_sel(self
, name
);
647 /* We found the requested service */
648 if(daddr
!= DEV_ADDR_ANY
) {
649 pr_debug("%s(), discovered service ''%s'' in two different devices !!!\n",
651 self
->daddr
= DEV_ADDR_ANY
;
655 /* First time we found that one, save it ! */
657 dtsap_sel
= self
->dtsap_sel
;
660 /* Requested service simply doesn't exist on this node */
663 /* Something bad did happen :-( */
664 pr_debug("%s(), unexpected IAS query failure\n",
666 self
->daddr
= DEV_ADDR_ANY
;
668 return -EHOSTUNREACH
;
671 /* Cleanup our copy of the discovery log */
674 /* Check out what we found */
675 if(daddr
== DEV_ADDR_ANY
) {
676 pr_debug("%s(), cannot discover service ''%s'' in any device !!!\n",
678 self
->daddr
= DEV_ADDR_ANY
;
679 return -EADDRNOTAVAIL
;
682 /* Revert back to discovered device & service */
685 self
->dtsap_sel
= dtsap_sel
;
687 pr_debug("%s(), discovered requested service ''%s'' at address %08x\n",
688 __func__
, name
, self
->daddr
);
694 * Function irda_getname (sock, uaddr, uaddr_len, peer)
696 * Return the our own, or peers socket address (sockaddr_irda)
699 static int irda_getname(struct socket
*sock
, struct sockaddr
*uaddr
,
700 int *uaddr_len
, int peer
)
702 struct sockaddr_irda saddr
;
703 struct sock
*sk
= sock
->sk
;
704 struct irda_sock
*self
= irda_sk(sk
);
706 memset(&saddr
, 0, sizeof(saddr
));
708 if (sk
->sk_state
!= TCP_ESTABLISHED
)
711 saddr
.sir_family
= AF_IRDA
;
712 saddr
.sir_lsap_sel
= self
->dtsap_sel
;
713 saddr
.sir_addr
= self
->daddr
;
715 saddr
.sir_family
= AF_IRDA
;
716 saddr
.sir_lsap_sel
= self
->stsap_sel
;
717 saddr
.sir_addr
= self
->saddr
;
720 pr_debug("%s(), tsap_sel = %#x\n", __func__
, saddr
.sir_lsap_sel
);
721 pr_debug("%s(), addr = %08x\n", __func__
, saddr
.sir_addr
);
723 /* uaddr_len come to us uninitialised */
724 *uaddr_len
= sizeof (struct sockaddr_irda
);
725 memcpy(uaddr
, &saddr
, *uaddr_len
);
731 * Function irda_listen (sock, backlog)
733 * Just move to the listen state
736 static int irda_listen(struct socket
*sock
, int backlog
)
738 struct sock
*sk
= sock
->sk
;
739 int err
= -EOPNOTSUPP
;
743 if ((sk
->sk_type
!= SOCK_STREAM
) && (sk
->sk_type
!= SOCK_SEQPACKET
) &&
744 (sk
->sk_type
!= SOCK_DGRAM
))
747 if (sk
->sk_state
!= TCP_LISTEN
) {
748 sk
->sk_max_ack_backlog
= backlog
;
749 sk
->sk_state
= TCP_LISTEN
;
760 * Function irda_bind (sock, uaddr, addr_len)
762 * Used by servers to register their well known TSAP
765 static int irda_bind(struct socket
*sock
, struct sockaddr
*uaddr
, int addr_len
)
767 struct sock
*sk
= sock
->sk
;
768 struct sockaddr_irda
*addr
= (struct sockaddr_irda
*) uaddr
;
769 struct irda_sock
*self
= irda_sk(sk
);
772 pr_debug("%s(%p)\n", __func__
, self
);
774 if (addr_len
!= sizeof(struct sockaddr_irda
))
778 #ifdef CONFIG_IRDA_ULTRA
779 /* Special care for Ultra sockets */
780 if ((sk
->sk_type
== SOCK_DGRAM
) &&
781 (sk
->sk_protocol
== IRDAPROTO_ULTRA
)) {
782 self
->pid
= addr
->sir_lsap_sel
;
784 if (self
->pid
& 0x80) {
785 pr_debug("%s(), extension in PID not supp!\n",
789 err
= irda_open_lsap(self
, self
->pid
);
793 /* Pretend we are connected */
794 sock
->state
= SS_CONNECTED
;
795 sk
->sk_state
= TCP_ESTABLISHED
;
800 #endif /* CONFIG_IRDA_ULTRA */
802 self
->ias_obj
= irias_new_object(addr
->sir_name
, jiffies
);
804 if (self
->ias_obj
== NULL
)
807 err
= irda_open_tsap(self
, addr
->sir_lsap_sel
, addr
->sir_name
);
809 irias_delete_object(self
->ias_obj
);
810 self
->ias_obj
= NULL
;
814 /* Register with LM-IAS */
815 irias_add_integer_attrib(self
->ias_obj
, "IrDA:TinyTP:LsapSel",
816 self
->stsap_sel
, IAS_KERNEL_ATTR
);
817 irias_insert_object(self
->ias_obj
);
826 * Function irda_accept (sock, newsock, flags)
828 * Wait for incoming connection
831 static int irda_accept(struct socket
*sock
, struct socket
*newsock
, int flags
)
833 struct sock
*sk
= sock
->sk
;
834 struct irda_sock
*new, *self
= irda_sk(sk
);
836 struct sk_buff
*skb
= NULL
;
839 err
= irda_create(sock_net(sk
), newsock
, sk
->sk_protocol
, 0);
846 if (sock
->state
!= SS_UNCONNECTED
)
850 if ((sk
->sk_type
!= SOCK_STREAM
) && (sk
->sk_type
!= SOCK_SEQPACKET
) &&
851 (sk
->sk_type
!= SOCK_DGRAM
))
855 if (sk
->sk_state
!= TCP_LISTEN
)
859 * The read queue this time is holding sockets ready to use
860 * hooked into the SABM we saved
864 * We can perform the accept only if there is incoming data
865 * on the listening socket.
866 * So, we will block the caller until we receive any data.
867 * If the caller was waiting on select() or poll() before
868 * calling us, the data is waiting for us ;-)
872 skb
= skb_dequeue(&sk
->sk_receive_queue
);
876 /* Non blocking operation */
878 if (flags
& O_NONBLOCK
)
881 err
= wait_event_interruptible(*(sk_sleep(sk
)),
882 skb_peek(&sk
->sk_receive_queue
));
892 newsk
->sk_state
= TCP_ESTABLISHED
;
894 new = irda_sk(newsk
);
896 /* Now attach up the new socket */
897 new->tsap
= irttp_dup(self
->tsap
, new);
898 err
= -EPERM
; /* value does not seem to make sense. -arnd */
900 pr_debug("%s(), dup failed!\n", __func__
);
904 new->stsap_sel
= new->tsap
->stsap_sel
;
905 new->dtsap_sel
= new->tsap
->dtsap_sel
;
906 new->saddr
= irttp_get_saddr(new->tsap
);
907 new->daddr
= irttp_get_daddr(new->tsap
);
909 new->max_sdu_size_tx
= self
->max_sdu_size_tx
;
910 new->max_sdu_size_rx
= self
->max_sdu_size_rx
;
911 new->max_data_size
= self
->max_data_size
;
912 new->max_header_size
= self
->max_header_size
;
914 memcpy(&new->qos_tx
, &self
->qos_tx
, sizeof(struct qos_info
));
916 /* Clean up the original one to keep it in listen state */
917 irttp_listen(self
->tsap
);
919 sk
->sk_ack_backlog
--;
921 newsock
->state
= SS_CONNECTED
;
923 irda_connect_response(new);
932 * Function irda_connect (sock, uaddr, addr_len, flags)
934 * Connect to a IrDA device
936 * The main difference with a "standard" connect is that with IrDA we need
937 * to resolve the service name into a TSAP selector (in TCP, port number
938 * doesn't have to be resolved).
939 * Because of this service name resolution, we can offer "auto-connect",
940 * where we connect to a service without specifying a destination address.
942 * Note : by consulting "errno", the user space caller may learn the cause
943 * of the failure. Most of them are visible in the function, others may come
944 * from subroutines called and are listed here :
945 * o EBUSY : already processing a connect
946 * o EHOSTUNREACH : bad addr->sir_addr argument
947 * o EADDRNOTAVAIL : bad addr->sir_name argument
948 * o ENOTUNIQ : more than one node has addr->sir_name (auto-connect)
949 * o ENETUNREACH : no node found on the network (auto-connect)
951 static int irda_connect(struct socket
*sock
, struct sockaddr
*uaddr
,
952 int addr_len
, int flags
)
954 struct sock
*sk
= sock
->sk
;
955 struct sockaddr_irda
*addr
= (struct sockaddr_irda
*) uaddr
;
956 struct irda_sock
*self
= irda_sk(sk
);
959 pr_debug("%s(%p)\n", __func__
, self
);
962 /* Don't allow connect for Ultra sockets */
963 err
= -ESOCKTNOSUPPORT
;
964 if ((sk
->sk_type
== SOCK_DGRAM
) && (sk
->sk_protocol
== IRDAPROTO_ULTRA
))
967 if (sk
->sk_state
== TCP_ESTABLISHED
&& sock
->state
== SS_CONNECTING
) {
968 sock
->state
= SS_CONNECTED
;
970 goto out
; /* Connect completed during a ERESTARTSYS event */
973 if (sk
->sk_state
== TCP_CLOSE
&& sock
->state
== SS_CONNECTING
) {
974 sock
->state
= SS_UNCONNECTED
;
979 err
= -EISCONN
; /* No reconnect on a seqpacket socket */
980 if (sk
->sk_state
== TCP_ESTABLISHED
)
983 sk
->sk_state
= TCP_CLOSE
;
984 sock
->state
= SS_UNCONNECTED
;
987 if (addr_len
!= sizeof(struct sockaddr_irda
))
990 /* Check if user supplied any destination device address */
991 if ((!addr
->sir_addr
) || (addr
->sir_addr
== DEV_ADDR_ANY
)) {
992 /* Try to find one suitable */
993 err
= irda_discover_daddr_and_lsap_sel(self
, addr
->sir_name
);
995 pr_debug("%s(), auto-connect failed!\n", __func__
);
999 /* Use the one provided by the user */
1000 self
->daddr
= addr
->sir_addr
;
1001 pr_debug("%s(), daddr = %08x\n", __func__
, self
->daddr
);
1003 /* If we don't have a valid service name, we assume the
1004 * user want to connect on a specific LSAP. Prevent
1005 * the use of invalid LSAPs (IrLMP 1.1 p10). Jean II */
1006 if((addr
->sir_name
[0] != '\0') ||
1007 (addr
->sir_lsap_sel
>= 0x70)) {
1008 /* Query remote LM-IAS using service name */
1009 err
= irda_find_lsap_sel(self
, addr
->sir_name
);
1011 pr_debug("%s(), connect failed!\n", __func__
);
1015 /* Directly connect to the remote LSAP
1016 * specified by the sir_lsap field.
1017 * Please use with caution, in IrDA LSAPs are
1018 * dynamic and there is no "well-known" LSAP. */
1019 self
->dtsap_sel
= addr
->sir_lsap_sel
;
1023 /* Check if we have opened a local TSAP */
1025 err
= irda_open_tsap(self
, LSAP_ANY
, addr
->sir_name
);
1030 /* Move to connecting socket, start sending Connect Requests */
1031 sock
->state
= SS_CONNECTING
;
1032 sk
->sk_state
= TCP_SYN_SENT
;
1034 /* Connect to remote device */
1035 err
= irttp_connect_request(self
->tsap
, self
->dtsap_sel
,
1036 self
->saddr
, self
->daddr
, NULL
,
1037 self
->max_sdu_size_rx
, NULL
);
1039 pr_debug("%s(), connect failed!\n", __func__
);
1045 if (sk
->sk_state
!= TCP_ESTABLISHED
&& (flags
& O_NONBLOCK
))
1049 if (wait_event_interruptible(*(sk_sleep(sk
)),
1050 (sk
->sk_state
!= TCP_SYN_SENT
)))
1053 if (sk
->sk_state
!= TCP_ESTABLISHED
) {
1054 sock
->state
= SS_UNCONNECTED
;
1055 err
= sock_error(sk
);
1061 sock
->state
= SS_CONNECTED
;
1063 /* At this point, IrLMP has assigned our source address */
1064 self
->saddr
= irttp_get_saddr(self
->tsap
);
1071 static struct proto irda_proto
= {
1073 .owner
= THIS_MODULE
,
1074 .obj_size
= sizeof(struct irda_sock
),
1078 * Function irda_create (sock, protocol)
1080 * Create IrDA socket
1083 static int irda_create(struct net
*net
, struct socket
*sock
, int protocol
,
1087 struct irda_sock
*self
;
1089 if (protocol
< 0 || protocol
> SK_PROTOCOL_MAX
)
1092 if (net
!= &init_net
)
1093 return -EAFNOSUPPORT
;
1095 /* Check for valid socket type */
1096 switch (sock
->type
) {
1097 case SOCK_STREAM
: /* For TTP connections with SAR disabled */
1098 case SOCK_SEQPACKET
: /* For TTP connections with SAR enabled */
1099 case SOCK_DGRAM
: /* For TTP Unitdata or LMP Ultra transfers */
1102 return -ESOCKTNOSUPPORT
;
1105 /* Allocate networking socket */
1106 sk
= sk_alloc(net
, PF_IRDA
, GFP_KERNEL
, &irda_proto
, kern
);
1111 pr_debug("%s() : self is %p\n", __func__
, self
);
1113 init_waitqueue_head(&self
->query_wait
);
1115 switch (sock
->type
) {
1117 sock
->ops
= &irda_stream_ops
;
1118 self
->max_sdu_size_rx
= TTP_SAR_DISABLE
;
1120 case SOCK_SEQPACKET
:
1121 sock
->ops
= &irda_seqpacket_ops
;
1122 self
->max_sdu_size_rx
= TTP_SAR_UNBOUND
;
1126 #ifdef CONFIG_IRDA_ULTRA
1127 case IRDAPROTO_ULTRA
:
1128 sock
->ops
= &irda_ultra_ops
;
1129 /* Initialise now, because we may send on unbound
1130 * sockets. Jean II */
1131 self
->max_data_size
= ULTRA_MAX_DATA
- LMP_PID_HEADER
;
1132 self
->max_header_size
= IRDA_MAX_HEADER
+ LMP_PID_HEADER
;
1134 #endif /* CONFIG_IRDA_ULTRA */
1135 case IRDAPROTO_UNITDATA
:
1136 sock
->ops
= &irda_dgram_ops
;
1137 /* We let Unitdata conn. be like seqpack conn. */
1138 self
->max_sdu_size_rx
= TTP_SAR_UNBOUND
;
1142 return -ESOCKTNOSUPPORT
;
1147 return -ESOCKTNOSUPPORT
;
1150 /* Initialise networking socket struct */
1151 sock_init_data(sock
, sk
); /* Note : set sk->sk_refcnt to 1 */
1152 sk
->sk_family
= PF_IRDA
;
1153 sk
->sk_protocol
= protocol
;
1155 /* Register as a client with IrLMP */
1156 self
->ckey
= irlmp_register_client(0, NULL
, NULL
, NULL
);
1157 self
->mask
.word
= 0xffff;
1158 self
->rx_flow
= self
->tx_flow
= FLOW_START
;
1159 self
->nslots
= DISCOVERY_DEFAULT_SLOTS
;
1160 self
->daddr
= DEV_ADDR_ANY
; /* Until we get connected */
1161 self
->saddr
= 0x0; /* so IrLMP assign us any link */
1166 * Function irda_destroy_socket (self)
1171 static void irda_destroy_socket(struct irda_sock
*self
)
1173 pr_debug("%s(%p)\n", __func__
, self
);
1175 /* Unregister with IrLMP */
1176 irlmp_unregister_client(self
->ckey
);
1177 irlmp_unregister_service(self
->skey
);
1179 /* Unregister with LM-IAS */
1180 if (self
->ias_obj
) {
1181 irias_delete_object(self
->ias_obj
);
1182 self
->ias_obj
= NULL
;
1186 iriap_close(self
->iriap
);
1191 irttp_disconnect_request(self
->tsap
, NULL
, P_NORMAL
);
1192 irttp_close_tsap(self
->tsap
);
1195 #ifdef CONFIG_IRDA_ULTRA
1197 irlmp_close_lsap(self
->lsap
);
1200 #endif /* CONFIG_IRDA_ULTRA */
1204 * Function irda_release (sock)
1206 static int irda_release(struct socket
*sock
)
1208 struct sock
*sk
= sock
->sk
;
1214 sk
->sk_state
= TCP_CLOSE
;
1215 sk
->sk_shutdown
|= SEND_SHUTDOWN
;
1216 sk
->sk_state_change(sk
);
1218 /* Destroy IrDA socket */
1219 irda_destroy_socket(irda_sk(sk
));
1225 /* Purge queues (see sock_init_data()) */
1226 skb_queue_purge(&sk
->sk_receive_queue
);
1228 /* Destroy networking socket if we are the last reference on it,
1229 * i.e. if(sk->sk_refcnt == 0) -> sk_free(sk) */
1232 /* Notes on socket locking and deallocation... - Jean II
1233 * In theory we should put pairs of sock_hold() / sock_put() to
1234 * prevent the socket to be destroyed whenever there is an
1235 * outstanding request or outstanding incoming packet or event.
1237 * 1) This may include IAS request, both in connect and getsockopt.
1238 * Unfortunately, the situation is a bit more messy than it looks,
1239 * because we close iriap and kfree(self) above.
1241 * 2) This may include selective discovery in getsockopt.
1242 * Same stuff as above, irlmp registration and self are gone.
1244 * Probably 1 and 2 may not matter, because it's all triggered
1245 * by a process and the socket layer already prevent the
1246 * socket to go away while a process is holding it, through
1247 * sockfd_put() and fput()...
1249 * 3) This may include deferred TSAP closure. In particular,
1250 * we may receive a late irda_disconnect_indication()
1251 * Fortunately, (tsap_cb *)->close_pend should protect us
1254 * I did some testing on SMP, and it looks solid. And the socket
1255 * memory leak is now gone... - Jean II
1262 * Function irda_sendmsg (sock, msg, len)
1264 * Send message down to TinyTP. This function is used for both STREAM and
1265 * SEQPACK services. This is possible since it forces the client to
1266 * fragment the message if necessary
1268 static int irda_sendmsg(struct socket
*sock
, struct msghdr
*msg
, size_t len
)
1270 struct sock
*sk
= sock
->sk
;
1271 struct irda_sock
*self
;
1272 struct sk_buff
*skb
;
1275 pr_debug("%s(), len=%zd\n", __func__
, len
);
1277 /* Note : socket.c set MSG_EOR on SEQPACKET sockets */
1278 if (msg
->msg_flags
& ~(MSG_DONTWAIT
| MSG_EOR
| MSG_CMSG_COMPAT
|
1285 if (sk
->sk_shutdown
& SEND_SHUTDOWN
)
1288 if (sk
->sk_state
!= TCP_ESTABLISHED
) {
1295 /* Check if IrTTP is wants us to slow down */
1297 if (wait_event_interruptible(*(sk_sleep(sk
)),
1298 (self
->tx_flow
!= FLOW_STOP
|| sk
->sk_state
!= TCP_ESTABLISHED
))) {
1303 /* Check if we are still connected */
1304 if (sk
->sk_state
!= TCP_ESTABLISHED
) {
1309 /* Check that we don't send out too big frames */
1310 if (len
> self
->max_data_size
) {
1311 pr_debug("%s(), Chopping frame from %zd to %d bytes!\n",
1312 __func__
, len
, self
->max_data_size
);
1313 len
= self
->max_data_size
;
1316 skb
= sock_alloc_send_skb(sk
, len
+ self
->max_header_size
+ 16,
1317 msg
->msg_flags
& MSG_DONTWAIT
, &err
);
1321 skb_reserve(skb
, self
->max_header_size
+ 16);
1322 skb_reset_transport_header(skb
);
1324 err
= memcpy_from_msg(skb_transport_header(skb
), msg
, len
);
1331 * Just send the message to TinyTP, and let it deal with possible
1332 * errors. No need to duplicate all that here
1334 err
= irttp_data_request(self
->tsap
, skb
);
1336 pr_debug("%s(), err=%d\n", __func__
, err
);
1341 /* Tell client how much data we actually sent */
1345 err
= sk_stream_error(sk
, msg
->msg_flags
, err
);
1353 * Function irda_recvmsg_dgram (sock, msg, size, flags)
1355 * Try to receive message and copy it to user. The frame is discarded
1356 * after being read, regardless of how much the user actually read
1358 static int irda_recvmsg_dgram(struct socket
*sock
, struct msghdr
*msg
,
1359 size_t size
, int flags
)
1361 struct sock
*sk
= sock
->sk
;
1362 struct irda_sock
*self
= irda_sk(sk
);
1363 struct sk_buff
*skb
;
1367 skb
= skb_recv_datagram(sk
, flags
& ~MSG_DONTWAIT
,
1368 flags
& MSG_DONTWAIT
, &err
);
1372 skb_reset_transport_header(skb
);
1375 if (copied
> size
) {
1376 pr_debug("%s(), Received truncated frame (%zd < %zd)!\n",
1377 __func__
, copied
, size
);
1379 msg
->msg_flags
|= MSG_TRUNC
;
1381 skb_copy_datagram_msg(skb
, 0, msg
, copied
);
1383 skb_free_datagram(sk
, skb
);
1386 * Check if we have previously stopped IrTTP and we know
1387 * have more free space in our rx_queue. If so tell IrTTP
1388 * to start delivering frames again before our rx_queue gets
1391 if (self
->rx_flow
== FLOW_STOP
) {
1392 if ((atomic_read(&sk
->sk_rmem_alloc
) << 2) <= sk
->sk_rcvbuf
) {
1393 pr_debug("%s(), Starting IrTTP\n", __func__
);
1394 self
->rx_flow
= FLOW_START
;
1395 irttp_flow_request(self
->tsap
, FLOW_START
);
1403 * Function irda_recvmsg_stream (sock, msg, size, flags)
1405 static int irda_recvmsg_stream(struct socket
*sock
, struct msghdr
*msg
,
1406 size_t size
, int flags
)
1408 struct sock
*sk
= sock
->sk
;
1409 struct irda_sock
*self
= irda_sk(sk
);
1410 int noblock
= flags
& MSG_DONTWAIT
;
1415 if ((err
= sock_error(sk
)) < 0)
1418 if (sock
->flags
& __SO_ACCEPTCON
)
1422 if (flags
& MSG_OOB
)
1426 target
= sock_rcvlowat(sk
, flags
& MSG_WAITALL
, size
);
1427 timeo
= sock_rcvtimeo(sk
, noblock
);
1431 struct sk_buff
*skb
= skb_dequeue(&sk
->sk_receive_queue
);
1437 if (copied
>= target
)
1440 prepare_to_wait_exclusive(sk_sleep(sk
), &wait
, TASK_INTERRUPTIBLE
);
1443 * POSIX 1003.1g mandates this order.
1445 err
= sock_error(sk
);
1448 else if (sk
->sk_shutdown
& RCV_SHUTDOWN
)
1452 else if (signal_pending(current
))
1453 err
= sock_intr_errno(timeo
);
1454 else if (sk
->sk_state
!= TCP_ESTABLISHED
)
1456 else if (skb_peek(&sk
->sk_receive_queue
) == NULL
)
1457 /* Wait process until data arrives */
1460 finish_wait(sk_sleep(sk
), &wait
);
1464 if (sk
->sk_shutdown
& RCV_SHUTDOWN
)
1470 chunk
= min_t(unsigned int, skb
->len
, size
);
1471 if (memcpy_to_msg(msg
, skb
->data
, chunk
)) {
1472 skb_queue_head(&sk
->sk_receive_queue
, skb
);
1480 /* Mark read part of skb as used */
1481 if (!(flags
& MSG_PEEK
)) {
1482 skb_pull(skb
, chunk
);
1484 /* put the skb back if we didn't use it up.. */
1486 pr_debug("%s(), back on q!\n",
1488 skb_queue_head(&sk
->sk_receive_queue
, skb
);
1494 pr_debug("%s() questionable!?\n", __func__
);
1496 /* put message back and return */
1497 skb_queue_head(&sk
->sk_receive_queue
, skb
);
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
1508 if (self
->rx_flow
== FLOW_STOP
) {
1509 if ((atomic_read(&sk
->sk_rmem_alloc
) << 2) <= sk
->sk_rcvbuf
) {
1510 pr_debug("%s(), Starting IrTTP\n", __func__
);
1511 self
->rx_flow
= FLOW_START
;
1512 irttp_flow_request(self
->tsap
, FLOW_START
);
1520 * Function irda_sendmsg_dgram (sock, msg, len)
1522 * Send message down to TinyTP for the unreliable sequenced
1526 static int irda_sendmsg_dgram(struct socket
*sock
, struct msghdr
*msg
,
1529 struct sock
*sk
= sock
->sk
;
1530 struct irda_sock
*self
;
1531 struct sk_buff
*skb
;
1534 pr_debug("%s(), len=%zd\n", __func__
, len
);
1536 if (msg
->msg_flags
& ~(MSG_DONTWAIT
|MSG_CMSG_COMPAT
))
1541 if (sk
->sk_shutdown
& SEND_SHUTDOWN
) {
1542 send_sig(SIGPIPE
, current
, 0);
1548 if (sk
->sk_state
!= TCP_ESTABLISHED
)
1554 * Check that we don't send out too big frames. This is an unreliable
1555 * service, so we have no fragmentation and no coalescence
1557 if (len
> self
->max_data_size
) {
1558 pr_debug("%s(), Warning too much data! Chopping frame from %zd to %d bytes!\n",
1559 __func__
, len
, self
->max_data_size
);
1560 len
= self
->max_data_size
;
1563 skb
= sock_alloc_send_skb(sk
, len
+ self
->max_header_size
,
1564 msg
->msg_flags
& MSG_DONTWAIT
, &err
);
1569 skb_reserve(skb
, self
->max_header_size
);
1570 skb_reset_transport_header(skb
);
1572 pr_debug("%s(), appending user data\n", __func__
);
1574 err
= memcpy_from_msg(skb_transport_header(skb
), msg
, len
);
1581 * Just send the message to TinyTP, and let it deal with possible
1582 * errors. No need to duplicate all that here
1584 err
= irttp_udata_request(self
->tsap
, skb
);
1586 pr_debug("%s(), err=%d\n", __func__
, err
);
1599 * Function irda_sendmsg_ultra (sock, msg, len)
1601 * Send message down to IrLMP for the unreliable Ultra
1604 #ifdef CONFIG_IRDA_ULTRA
1605 static int irda_sendmsg_ultra(struct socket
*sock
, struct msghdr
*msg
,
1608 struct sock
*sk
= sock
->sk
;
1609 struct irda_sock
*self
;
1612 struct sk_buff
*skb
;
1615 pr_debug("%s(), len=%zd\n", __func__
, len
);
1618 if (msg
->msg_flags
& ~(MSG_DONTWAIT
|MSG_CMSG_COMPAT
))
1624 if (sk
->sk_shutdown
& SEND_SHUTDOWN
) {
1625 send_sig(SIGPIPE
, current
, 0);
1631 /* Check if an address was specified with sendto. Jean II */
1632 if (msg
->msg_name
) {
1633 DECLARE_SOCKADDR(struct sockaddr_irda
*, addr
, msg
->msg_name
);
1635 /* Check address, extract pid. Jean II */
1636 if (msg
->msg_namelen
< sizeof(*addr
))
1638 if (addr
->sir_family
!= AF_IRDA
)
1641 pid
= addr
->sir_lsap_sel
;
1643 pr_debug("%s(), extension in PID not supp!\n",
1649 /* Check that the socket is properly bound to an Ultra
1651 if ((self
->lsap
== NULL
) ||
1652 (sk
->sk_state
!= TCP_ESTABLISHED
)) {
1653 pr_debug("%s(), socket not bound to Ultra PID.\n",
1658 /* Use PID from socket */
1663 * Check that we don't send out too big frames. This is an unreliable
1664 * service, so we have no fragmentation and no coalescence
1666 if (len
> self
->max_data_size
) {
1667 pr_debug("%s(), Warning too much data! Chopping frame from %zd to %d bytes!\n",
1668 __func__
, len
, self
->max_data_size
);
1669 len
= self
->max_data_size
;
1672 skb
= sock_alloc_send_skb(sk
, len
+ self
->max_header_size
,
1673 msg
->msg_flags
& MSG_DONTWAIT
, &err
);
1678 skb_reserve(skb
, self
->max_header_size
);
1679 skb_reset_transport_header(skb
);
1681 pr_debug("%s(), appending user data\n", __func__
);
1683 err
= memcpy_from_msg(skb_transport_header(skb
), msg
, len
);
1689 err
= irlmp_connless_data_request((bound
? self
->lsap
: NULL
),
1692 pr_debug("%s(), err=%d\n", __func__
, err
);
1697 #endif /* CONFIG_IRDA_ULTRA */
1700 * Function irda_shutdown (sk, how)
1702 static int irda_shutdown(struct socket
*sock
, int how
)
1704 struct sock
*sk
= sock
->sk
;
1705 struct irda_sock
*self
= irda_sk(sk
);
1707 pr_debug("%s(%p)\n", __func__
, self
);
1711 sk
->sk_state
= TCP_CLOSE
;
1712 sk
->sk_shutdown
|= SEND_SHUTDOWN
;
1713 sk
->sk_state_change(sk
);
1716 iriap_close(self
->iriap
);
1721 irttp_disconnect_request(self
->tsap
, NULL
, P_NORMAL
);
1722 irttp_close_tsap(self
->tsap
);
1726 /* A few cleanup so the socket look as good as new... */
1727 self
->rx_flow
= self
->tx_flow
= FLOW_START
; /* needed ??? */
1728 self
->daddr
= DEV_ADDR_ANY
; /* Until we get re-connected */
1729 self
->saddr
= 0x0; /* so IrLMP assign us any link */
1737 * Function irda_poll (file, sock, wait)
1739 static unsigned int irda_poll(struct file
* file
, struct socket
*sock
,
1742 struct sock
*sk
= sock
->sk
;
1743 struct irda_sock
*self
= irda_sk(sk
);
1746 poll_wait(file
, sk_sleep(sk
), wait
);
1749 /* Exceptional events? */
1752 if (sk
->sk_shutdown
& RCV_SHUTDOWN
) {
1753 pr_debug("%s(), POLLHUP\n", __func__
);
1758 if (!skb_queue_empty(&sk
->sk_receive_queue
)) {
1759 pr_debug("Socket is readable\n");
1760 mask
|= POLLIN
| POLLRDNORM
;
1763 /* Connection-based need to check for termination and startup */
1764 switch (sk
->sk_type
) {
1766 if (sk
->sk_state
== TCP_CLOSE
) {
1767 pr_debug("%s(), POLLHUP\n", __func__
);
1771 if (sk
->sk_state
== TCP_ESTABLISHED
) {
1772 if ((self
->tx_flow
== FLOW_START
) &&
1775 mask
|= POLLOUT
| POLLWRNORM
| POLLWRBAND
;
1779 case SOCK_SEQPACKET
:
1780 if ((self
->tx_flow
== FLOW_START
) &&
1783 mask
|= POLLOUT
| POLLWRNORM
| POLLWRBAND
;
1787 if (sock_writeable(sk
))
1788 mask
|= POLLOUT
| POLLWRNORM
| POLLWRBAND
;
1798 * Function irda_ioctl (sock, cmd, arg)
1800 static int irda_ioctl(struct socket
*sock
, unsigned int cmd
, unsigned long arg
)
1802 struct sock
*sk
= sock
->sk
;
1805 pr_debug("%s(), cmd=%#x\n", __func__
, cmd
);
1812 amount
= sk
->sk_sndbuf
- sk_wmem_alloc_get(sk
);
1815 err
= put_user(amount
, (unsigned int __user
*)arg
);
1820 struct sk_buff
*skb
;
1822 /* These two are safe on a single CPU system as only user tasks fiddle here */
1823 if ((skb
= skb_peek(&sk
->sk_receive_queue
)) != NULL
)
1825 err
= put_user(amount
, (unsigned int __user
*)arg
);
1831 err
= sock_get_timestamp(sk
, (struct timeval __user
*)arg
);
1836 case SIOCGIFDSTADDR
:
1837 case SIOCSIFDSTADDR
:
1838 case SIOCGIFBRDADDR
:
1839 case SIOCSIFBRDADDR
:
1840 case SIOCGIFNETMASK
:
1841 case SIOCSIFNETMASK
:
1846 pr_debug("%s(), doing device ioctl!\n", __func__
);
1853 #ifdef CONFIG_COMPAT
1855 * Function irda_ioctl (sock, cmd, arg)
1857 static int irda_compat_ioctl(struct socket
*sock
, unsigned int cmd
, unsigned long arg
)
1860 * All IRDA's ioctl are standard ones.
1862 return -ENOIOCTLCMD
;
1867 * Function irda_setsockopt (sock, level, optname, optval, optlen)
1869 * Set some options for the socket
1872 static int irda_setsockopt(struct socket
*sock
, int level
, int optname
,
1873 char __user
*optval
, unsigned int optlen
)
1875 struct sock
*sk
= sock
->sk
;
1876 struct irda_sock
*self
= irda_sk(sk
);
1877 struct irda_ias_set
*ias_opt
;
1878 struct ias_object
*ias_obj
;
1879 struct ias_attrib
* ias_attr
; /* Attribute in IAS object */
1880 int opt
, free_ias
= 0, err
= 0;
1882 pr_debug("%s(%p)\n", __func__
, self
);
1884 if (level
!= SOL_IRLMP
)
1885 return -ENOPROTOOPT
;
1891 /* The user want to add an attribute to an existing IAS object
1892 * (in the IAS database) or to create a new object with this
1894 * We first query IAS to know if the object exist, and then
1895 * create the right attribute...
1898 if (optlen
!= sizeof(struct irda_ias_set
)) {
1903 ias_opt
= kmalloc(sizeof(struct irda_ias_set
), GFP_ATOMIC
);
1904 if (ias_opt
== NULL
) {
1909 /* Copy query to the driver. */
1910 if (copy_from_user(ias_opt
, optval
, optlen
)) {
1916 /* Find the object we target.
1917 * If the user gives us an empty string, we use the object
1918 * associated with this socket. This will workaround
1919 * duplicated class name - Jean II */
1920 if(ias_opt
->irda_class_name
[0] == '\0') {
1921 if(self
->ias_obj
== NULL
) {
1926 ias_obj
= self
->ias_obj
;
1928 ias_obj
= irias_find_object(ias_opt
->irda_class_name
);
1930 /* Only ROOT can mess with the global IAS database.
1931 * Users can only add attributes to the object associated
1932 * with the socket they own - Jean II */
1933 if((!capable(CAP_NET_ADMIN
)) &&
1934 ((ias_obj
== NULL
) || (ias_obj
!= self
->ias_obj
))) {
1940 /* If the object doesn't exist, create it */
1941 if(ias_obj
== (struct ias_object
*) NULL
) {
1942 /* Create a new object */
1943 ias_obj
= irias_new_object(ias_opt
->irda_class_name
,
1945 if (ias_obj
== NULL
) {
1953 /* Do we have the attribute already ? */
1954 if(irias_find_attrib(ias_obj
, ias_opt
->irda_attrib_name
)) {
1957 kfree(ias_obj
->name
);
1964 /* Look at the type */
1965 switch(ias_opt
->irda_attrib_type
) {
1967 /* Add an integer attribute */
1968 irias_add_integer_attrib(
1970 ias_opt
->irda_attrib_name
,
1971 ias_opt
->attribute
.irda_attrib_int
,
1976 if(ias_opt
->attribute
.irda_attrib_octet_seq
.len
>
1977 IAS_MAX_OCTET_STRING
) {
1980 kfree(ias_obj
->name
);
1987 /* Add an octet sequence attribute */
1988 irias_add_octseq_attrib(
1990 ias_opt
->irda_attrib_name
,
1991 ias_opt
->attribute
.irda_attrib_octet_seq
.octet_seq
,
1992 ias_opt
->attribute
.irda_attrib_octet_seq
.len
,
1996 /* Should check charset & co */
1998 /* The length is encoded in a __u8, and
1999 * IAS_MAX_STRING == 256, so there is no way
2000 * userspace can pass us a string too large.
2002 /* NULL terminate the string (avoid troubles) */
2003 ias_opt
->attribute
.irda_attrib_string
.string
[ias_opt
->attribute
.irda_attrib_string
.len
] = '\0';
2004 /* Add a string attribute */
2005 irias_add_string_attrib(
2007 ias_opt
->irda_attrib_name
,
2008 ias_opt
->attribute
.irda_attrib_string
.string
,
2014 kfree(ias_obj
->name
);
2020 irias_insert_object(ias_obj
);
2024 /* The user want to delete an object from our local IAS
2025 * database. We just need to query the IAS, check is the
2026 * object is not owned by the kernel and delete it.
2029 if (optlen
!= sizeof(struct irda_ias_set
)) {
2034 ias_opt
= kmalloc(sizeof(struct irda_ias_set
), GFP_ATOMIC
);
2035 if (ias_opt
== NULL
) {
2040 /* Copy query to the driver. */
2041 if (copy_from_user(ias_opt
, optval
, optlen
)) {
2047 /* Find the object we target.
2048 * If the user gives us an empty string, we use the object
2049 * associated with this socket. This will workaround
2050 * duplicated class name - Jean II */
2051 if(ias_opt
->irda_class_name
[0] == '\0')
2052 ias_obj
= self
->ias_obj
;
2054 ias_obj
= irias_find_object(ias_opt
->irda_class_name
);
2055 if(ias_obj
== (struct ias_object
*) NULL
) {
2061 /* Only ROOT can mess with the global IAS database.
2062 * Users can only del attributes from the object associated
2063 * with the socket they own - Jean II */
2064 if((!capable(CAP_NET_ADMIN
)) &&
2065 ((ias_obj
== NULL
) || (ias_obj
!= self
->ias_obj
))) {
2071 /* Find the attribute (in the object) we target */
2072 ias_attr
= irias_find_attrib(ias_obj
,
2073 ias_opt
->irda_attrib_name
);
2074 if(ias_attr
== (struct ias_attrib
*) NULL
) {
2080 /* Check is the user space own the object */
2081 if(ias_attr
->value
->owner
!= IAS_USER_ATTR
) {
2082 pr_debug("%s(), attempting to delete a kernel attribute\n",
2089 /* Remove the attribute (and maybe the object) */
2090 irias_delete_attrib(ias_obj
, ias_attr
, 1);
2093 case IRLMP_MAX_SDU_SIZE
:
2094 if (optlen
< sizeof(int)) {
2099 if (get_user(opt
, (int __user
*)optval
)) {
2104 /* Only possible for a seqpacket service (TTP with SAR) */
2105 if (sk
->sk_type
!= SOCK_SEQPACKET
) {
2106 pr_debug("%s(), setting max_sdu_size = %d\n",
2108 self
->max_sdu_size_rx
= opt
;
2110 net_warn_ratelimited("%s: not allowed to set MAXSDUSIZE for this socket type!\n",
2116 case IRLMP_HINTS_SET
:
2117 if (optlen
< sizeof(int)) {
2122 /* The input is really a (__u8 hints[2]), easier as an int */
2123 if (get_user(opt
, (int __user
*)optval
)) {
2128 /* Unregister any old registration */
2129 irlmp_unregister_service(self
->skey
);
2131 self
->skey
= irlmp_register_service((__u16
) opt
);
2133 case IRLMP_HINT_MASK_SET
:
2134 /* As opposed to the previous case which set the hint bits
2135 * that we advertise, this one set the filter we use when
2136 * making a discovery (nodes which don't match any hint
2137 * bit in the mask are not reported).
2139 if (optlen
< sizeof(int)) {
2144 /* The input is really a (__u8 hints[2]), easier as an int */
2145 if (get_user(opt
, (int __user
*)optval
)) {
2150 /* Set the new hint mask */
2151 self
->mask
.word
= (__u16
) opt
;
2152 /* Mask out extension bits */
2153 self
->mask
.word
&= 0x7f7f;
2154 /* Check if no bits */
2155 if(!self
->mask
.word
)
2156 self
->mask
.word
= 0xFFFF;
2171 * Function irda_extract_ias_value(ias_opt, ias_value)
2173 * Translate internal IAS value structure to the user space representation
2175 * The external representation of IAS values, as we exchange them with
2176 * user space program is quite different from the internal representation,
2177 * as stored in the IAS database (because we need a flat structure for
2178 * crossing kernel boundary).
2179 * This function transform the former in the latter. We also check
2180 * that the value type is valid.
2182 static int irda_extract_ias_value(struct irda_ias_set
*ias_opt
,
2183 struct ias_value
*ias_value
)
2185 /* Look at the type */
2186 switch (ias_value
->type
) {
2188 /* Copy the integer */
2189 ias_opt
->attribute
.irda_attrib_int
= ias_value
->t
.integer
;
2193 ias_opt
->attribute
.irda_attrib_octet_seq
.len
= ias_value
->len
;
2195 memcpy(ias_opt
->attribute
.irda_attrib_octet_seq
.octet_seq
,
2196 ias_value
->t
.oct_seq
, ias_value
->len
);
2200 ias_opt
->attribute
.irda_attrib_string
.len
= ias_value
->len
;
2201 ias_opt
->attribute
.irda_attrib_string
.charset
= ias_value
->charset
;
2203 memcpy(ias_opt
->attribute
.irda_attrib_string
.string
,
2204 ias_value
->t
.string
, ias_value
->len
);
2205 /* NULL terminate the string (avoid troubles) */
2206 ias_opt
->attribute
.irda_attrib_string
.string
[ias_value
->len
] = '\0';
2213 /* Copy type over */
2214 ias_opt
->irda_attrib_type
= ias_value
->type
;
2220 * Function irda_getsockopt (sock, level, optname, optval, optlen)
2222 static int irda_getsockopt(struct socket
*sock
, int level
, int optname
,
2223 char __user
*optval
, int __user
*optlen
)
2225 struct sock
*sk
= sock
->sk
;
2226 struct irda_sock
*self
= irda_sk(sk
);
2227 struct irda_device_list list
;
2228 struct irda_device_info
*discoveries
;
2229 struct irda_ias_set
* ias_opt
; /* IAS get/query params */
2230 struct ias_object
* ias_obj
; /* Object in IAS */
2231 struct ias_attrib
* ias_attr
; /* Attribute in IAS object */
2232 int daddr
= DEV_ADDR_ANY
; /* Dest address for IAS queries */
2238 pr_debug("%s(%p)\n", __func__
, self
);
2240 if (level
!= SOL_IRLMP
)
2241 return -ENOPROTOOPT
;
2243 if (get_user(len
, optlen
))
2252 case IRLMP_ENUMDEVICES
:
2254 /* Offset to first device entry */
2255 offset
= sizeof(struct irda_device_list
) -
2256 sizeof(struct irda_device_info
);
2263 /* Ask lmp for the current discovery log */
2264 discoveries
= irlmp_get_discoveries(&list
.len
, self
->mask
.word
,
2266 /* Check if the we got some results */
2267 if (discoveries
== NULL
) {
2269 goto out
; /* Didn't find any devices */
2272 /* Write total list length back to client */
2273 if (copy_to_user(optval
, &list
, offset
))
2276 /* Copy the list itself - watch for overflow */
2277 if (list
.len
> 2048) {
2281 total
= offset
+ (list
.len
* sizeof(struct irda_device_info
));
2284 if (copy_to_user(optval
+offset
, discoveries
, total
- offset
))
2287 /* Write total number of bytes used back to client */
2288 if (put_user(total
, optlen
))
2291 /* Free up our buffer */
2294 case IRLMP_MAX_SDU_SIZE
:
2295 val
= self
->max_data_size
;
2297 if (put_user(len
, optlen
)) {
2302 if (copy_to_user(optval
, &val
, len
)) {
2309 /* The user want an object from our local IAS database.
2310 * We just need to query the IAS and return the value
2313 /* Check that the user has allocated the right space for us */
2314 if (len
!= sizeof(struct irda_ias_set
)) {
2319 ias_opt
= kmalloc(sizeof(struct irda_ias_set
), GFP_ATOMIC
);
2320 if (ias_opt
== NULL
) {
2325 /* Copy query to the driver. */
2326 if (copy_from_user(ias_opt
, optval
, len
)) {
2332 /* Find the object we target.
2333 * If the user gives us an empty string, we use the object
2334 * associated with this socket. This will workaround
2335 * duplicated class name - Jean II */
2336 if(ias_opt
->irda_class_name
[0] == '\0')
2337 ias_obj
= self
->ias_obj
;
2339 ias_obj
= irias_find_object(ias_opt
->irda_class_name
);
2340 if(ias_obj
== (struct ias_object
*) NULL
) {
2346 /* Find the attribute (in the object) we target */
2347 ias_attr
= irias_find_attrib(ias_obj
,
2348 ias_opt
->irda_attrib_name
);
2349 if(ias_attr
== (struct ias_attrib
*) NULL
) {
2355 /* Translate from internal to user structure */
2356 err
= irda_extract_ias_value(ias_opt
, ias_attr
->value
);
2362 /* Copy reply to the user */
2363 if (copy_to_user(optval
, ias_opt
,
2364 sizeof(struct irda_ias_set
))) {
2369 /* Note : don't need to put optlen, we checked it */
2372 case IRLMP_IAS_QUERY
:
2373 /* The user want an object from a remote IAS database.
2374 * We need to use IAP to query the remote database and
2375 * then wait for the answer to come back. */
2377 /* Check that the user has allocated the right space for us */
2378 if (len
!= sizeof(struct irda_ias_set
)) {
2383 ias_opt
= kmalloc(sizeof(struct irda_ias_set
), GFP_ATOMIC
);
2384 if (ias_opt
== NULL
) {
2389 /* Copy query to the driver. */
2390 if (copy_from_user(ias_opt
, optval
, len
)) {
2396 /* At this point, there are two cases...
2397 * 1) the socket is connected - that's the easy case, we
2398 * just query the device we are connected to...
2399 * 2) the socket is not connected - the user doesn't want
2400 * to connect and/or may not have a valid service name
2401 * (so can't create a fake connection). In this case,
2402 * we assume that the user pass us a valid destination
2403 * address in the requesting structure...
2405 if(self
->daddr
!= DEV_ADDR_ANY
) {
2406 /* We are connected - reuse known daddr */
2407 daddr
= self
->daddr
;
2409 /* We are not connected, we must specify a valid
2410 * destination address */
2411 daddr
= ias_opt
->daddr
;
2412 if((!daddr
) || (daddr
== DEV_ADDR_ANY
)) {
2419 /* Check that we can proceed with IAP */
2421 net_warn_ratelimited("%s: busy with a previous query\n",
2428 self
->iriap
= iriap_open(LSAP_ANY
, IAS_CLIENT
, self
,
2429 irda_getvalue_confirm
);
2431 if (self
->iriap
== NULL
) {
2437 /* Treat unexpected wakeup as disconnect */
2438 self
->errno
= -EHOSTUNREACH
;
2440 /* Query remote LM-IAS */
2441 iriap_getvaluebyclass_request(self
->iriap
,
2443 ias_opt
->irda_class_name
,
2444 ias_opt
->irda_attrib_name
);
2446 /* Wait for answer, if not yet finished (or failed) */
2447 if (wait_event_interruptible(self
->query_wait
,
2448 (self
->iriap
== NULL
))) {
2449 /* pending request uses copy of ias_opt-content
2450 * we can free it regardless! */
2452 /* Treat signals as disconnect */
2453 err
= -EHOSTUNREACH
;
2457 /* Check what happened */
2461 /* Requested object/attribute doesn't exist */
2462 if((self
->errno
== IAS_CLASS_UNKNOWN
) ||
2463 (self
->errno
== IAS_ATTRIB_UNKNOWN
))
2464 err
= -EADDRNOTAVAIL
;
2466 err
= -EHOSTUNREACH
;
2471 /* Translate from internal to user structure */
2472 err
= irda_extract_ias_value(ias_opt
, self
->ias_result
);
2473 if (self
->ias_result
)
2474 irias_delete_value(self
->ias_result
);
2480 /* Copy reply to the user */
2481 if (copy_to_user(optval
, ias_opt
,
2482 sizeof(struct irda_ias_set
))) {
2487 /* Note : don't need to put optlen, we checked it */
2490 case IRLMP_WAITDEVICE
:
2491 /* This function is just another way of seeing life ;-)
2492 * IRLMP_ENUMDEVICES assumes that you have a static network,
2493 * and that you just want to pick one of the devices present.
2494 * On the other hand, in here we assume that no device is
2495 * present and that at some point in the future a device will
2496 * come into range. When this device arrive, we just wake
2497 * up the caller, so that he has time to connect to it before
2498 * the device goes away...
2499 * Note : once the node has been discovered for more than a
2500 * few second, it won't trigger this function, unless it
2501 * goes away and come back changes its hint bits (so we
2502 * might call it IRLMP_WAITNEWDEVICE).
2505 /* Check that the user is passing us an int */
2506 if (len
!= sizeof(int)) {
2510 /* Get timeout in ms (max time we block the caller) */
2511 if (get_user(val
, (int __user
*)optval
)) {
2516 /* Tell IrLMP we want to be notified */
2517 irlmp_update_client(self
->ckey
, self
->mask
.word
,
2518 irda_selective_discovery_indication
,
2519 NULL
, (void *) self
);
2521 /* Do some discovery (and also return cached results) */
2522 irlmp_discovery_request(self
->nslots
);
2524 /* Wait until a node is discovered */
2525 if (!self
->cachedaddr
) {
2526 pr_debug("%s(), nothing discovered yet, going to sleep...\n",
2529 /* Set watchdog timer to expire in <val> ms. */
2531 setup_timer(&self
->watchdog
, irda_discovery_timeout
,
2532 (unsigned long)self
);
2533 mod_timer(&self
->watchdog
,
2534 jiffies
+ msecs_to_jiffies(val
));
2536 /* Wait for IR-LMP to call us back */
2537 err
= __wait_event_interruptible(self
->query_wait
,
2538 (self
->cachedaddr
!= 0 || self
->errno
== -ETIME
));
2540 /* If watchdog is still activated, kill it! */
2541 del_timer(&(self
->watchdog
));
2543 pr_debug("%s(), ...waking up !\n", __func__
);
2549 pr_debug("%s(), found immediately !\n",
2552 /* Tell IrLMP that we have been notified */
2553 irlmp_update_client(self
->ckey
, self
->mask
.word
,
2556 /* Check if the we got some results */
2557 if (!self
->cachedaddr
) {
2558 err
= -EAGAIN
; /* Didn't find any devices */
2561 daddr
= self
->cachedaddr
;
2563 self
->cachedaddr
= 0;
2565 /* We return the daddr of the device that trigger the
2566 * wakeup. As irlmp pass us only the new devices, we
2567 * are sure that it's not an old device.
2568 * If the user want more details, he should query
2569 * the whole discovery log and pick one device...
2571 if (put_user(daddr
, (int __user
*)optval
)) {
2588 static const struct net_proto_family irda_family_ops
= {
2590 .create
= irda_create
,
2591 .owner
= THIS_MODULE
,
2594 static const struct proto_ops irda_stream_ops
= {
2596 .owner
= THIS_MODULE
,
2597 .release
= irda_release
,
2599 .connect
= irda_connect
,
2600 .socketpair
= sock_no_socketpair
,
2601 .accept
= irda_accept
,
2602 .getname
= irda_getname
,
2604 .ioctl
= irda_ioctl
,
2605 #ifdef CONFIG_COMPAT
2606 .compat_ioctl
= irda_compat_ioctl
,
2608 .listen
= irda_listen
,
2609 .shutdown
= irda_shutdown
,
2610 .setsockopt
= irda_setsockopt
,
2611 .getsockopt
= irda_getsockopt
,
2612 .sendmsg
= irda_sendmsg
,
2613 .recvmsg
= irda_recvmsg_stream
,
2614 .mmap
= sock_no_mmap
,
2615 .sendpage
= sock_no_sendpage
,
2618 static const struct proto_ops irda_seqpacket_ops
= {
2620 .owner
= THIS_MODULE
,
2621 .release
= irda_release
,
2623 .connect
= irda_connect
,
2624 .socketpair
= sock_no_socketpair
,
2625 .accept
= irda_accept
,
2626 .getname
= irda_getname
,
2627 .poll
= datagram_poll
,
2628 .ioctl
= irda_ioctl
,
2629 #ifdef CONFIG_COMPAT
2630 .compat_ioctl
= irda_compat_ioctl
,
2632 .listen
= irda_listen
,
2633 .shutdown
= irda_shutdown
,
2634 .setsockopt
= irda_setsockopt
,
2635 .getsockopt
= irda_getsockopt
,
2636 .sendmsg
= irda_sendmsg
,
2637 .recvmsg
= irda_recvmsg_dgram
,
2638 .mmap
= sock_no_mmap
,
2639 .sendpage
= sock_no_sendpage
,
2642 static const struct proto_ops irda_dgram_ops
= {
2644 .owner
= THIS_MODULE
,
2645 .release
= irda_release
,
2647 .connect
= irda_connect
,
2648 .socketpair
= sock_no_socketpair
,
2649 .accept
= irda_accept
,
2650 .getname
= irda_getname
,
2651 .poll
= datagram_poll
,
2652 .ioctl
= irda_ioctl
,
2653 #ifdef CONFIG_COMPAT
2654 .compat_ioctl
= irda_compat_ioctl
,
2656 .listen
= irda_listen
,
2657 .shutdown
= irda_shutdown
,
2658 .setsockopt
= irda_setsockopt
,
2659 .getsockopt
= irda_getsockopt
,
2660 .sendmsg
= irda_sendmsg_dgram
,
2661 .recvmsg
= irda_recvmsg_dgram
,
2662 .mmap
= sock_no_mmap
,
2663 .sendpage
= sock_no_sendpage
,
2666 #ifdef CONFIG_IRDA_ULTRA
2667 static const struct proto_ops irda_ultra_ops
= {
2669 .owner
= THIS_MODULE
,
2670 .release
= irda_release
,
2672 .connect
= sock_no_connect
,
2673 .socketpair
= sock_no_socketpair
,
2674 .accept
= sock_no_accept
,
2675 .getname
= irda_getname
,
2676 .poll
= datagram_poll
,
2677 .ioctl
= irda_ioctl
,
2678 #ifdef CONFIG_COMPAT
2679 .compat_ioctl
= irda_compat_ioctl
,
2681 .listen
= sock_no_listen
,
2682 .shutdown
= irda_shutdown
,
2683 .setsockopt
= irda_setsockopt
,
2684 .getsockopt
= irda_getsockopt
,
2685 .sendmsg
= irda_sendmsg_ultra
,
2686 .recvmsg
= irda_recvmsg_dgram
,
2687 .mmap
= sock_no_mmap
,
2688 .sendpage
= sock_no_sendpage
,
2690 #endif /* CONFIG_IRDA_ULTRA */
2693 * Function irsock_init (pro)
2695 * Initialize IrDA protocol
2698 int __init
irsock_init(void)
2700 int rc
= proto_register(&irda_proto
, 0);
2703 rc
= sock_register(&irda_family_ops
);
2709 * Function irsock_cleanup (void)
2711 * Remove IrDA protocol
2714 void irsock_cleanup(void)
2716 sock_unregister(PF_IRDA
);
2717 proto_unregister(&irda_proto
);