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/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>
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
;
90 err
= sock_queue_rcv_skb(sk
, skb
);
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 */
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
;
116 pr_debug("%s(%p)\n", __func__
, self
);
118 /* Don't care about it, but let's not leak it */
124 pr_debug("%s(%p) : BUG : sk is NULL\n",
129 /* Prevent race conditions with irda_release() and irda_shutdown() */
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
);
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
151 irttp_close_tsap(self
->tsap
);
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...
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
,
176 struct irda_sock
*self
;
181 pr_debug("%s(%p)\n", __func__
, self
);
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
) {
201 if (max_sdu_size
!= 0) {
202 net_err_ratelimited("%s: max_sdu_size must be 0\n",
206 self
->max_data_size
= irttp_get_max_seg_size(self
->tsap
);
209 if (max_sdu_size
== 0) {
210 net_err_ratelimited("%s: max_sdu_size cannot be 0\n",
214 self
->max_data_size
= max_sdu_size
;
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
;
245 pr_debug("%s(%p)\n", __func__
, self
);
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
) {
262 if (max_sdu_size
!= 0) {
263 net_err_ratelimited("%s: max_sdu_size must be 0\n",
268 self
->max_data_size
= irttp_get_max_seg_size(self
->tsap
);
271 if (max_sdu_size
== 0) {
272 net_err_ratelimited("%s: max_sdu_size cannot be 0\n",
277 self
->max_data_size
= max_sdu_size
;
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
)
302 skb
= alloc_skb(TTP_MAX_HEADER
+ TTP_SAR_HEADER
, GFP_KERNEL
);
304 pr_debug("%s() Unable to allocate sk_buff!\n",
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
;
332 pr_debug("%s(), IrTTP wants us to slow down\n",
334 self
->tx_flow
= flow
;
337 self
->tx_flow
= flow
;
338 pr_debug("%s(), IrTTP wants us to start again\n",
340 wake_up_interruptible(sk_sleep(sk
));
343 pr_debug("%s(), Unknown flow command!\n", __func__
);
344 /* Unknown flow command, better stop */
345 self
->tx_flow
= flow
;
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
;
365 net_warn_ratelimited("%s: lost myself!\n", __func__
);
369 pr_debug("%s(%p)\n", __func__
, self
);
371 /* We probably don't need to make any more queries */
372 iriap_close(self
->iriap
);
375 /* Check if request succeeded */
376 if (result
!= IAS_SUCCESS
) {
377 pr_debug("%s(), IAS query failed! (%d)\n", __func__
,
380 self
->errno
= result
; /* We really need it later */
382 /* Wake up any processes waiting for result */
383 wake_up_interruptible(&self
->query_wait
);
388 /* Pass the object to the caller (so the caller must delete it) */
389 self
->ias_result
= value
;
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
,
408 struct irda_sock
*self
;
412 net_warn_ratelimited("%s: lost myself!\n", __func__
);
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
)
458 pr_debug("%s: busy!\n", __func__
);
462 /* Initialize callbacks to be used by the IrDA stack */
463 irda_notify_init(¬ify
);
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
,
475 if (self
->tsap
== NULL
) {
476 pr_debug("%s(), Unable to allocate TSAP!\n",
480 /* Remember which TSAP selector we actually got */
481 self
->stsap_sel
= self
->tsap
->stsap_sel
;
487 * Function irda_open_lsap (self)
489 * Open local Link Service Access Point (LSAP). Used for opening Ultra
492 #ifdef CONFIG_IRDA_ULTRA
493 static int irda_open_lsap(struct irda_sock
*self
, int pid
)
498 net_warn_ratelimited("%s(), busy!\n", __func__
);
502 /* Initialize callbacks to be used by the IrDA stack */
503 irda_notify_init(¬ify
);
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
, ¬ify
, pid
);
509 if (self
->lsap
== NULL
) {
510 pr_debug("%s(), Unable to allocate LSAP!\n", __func__
);
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
);
534 net_warn_ratelimited("%s(): busy with a previous query\n",
539 self
->iriap
= iriap_open(LSAP_ANY
, IAS_CLIENT
, self
,
540 irda_getvalue_confirm
);
541 if(self
->iriap
== NULL
)
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 */
559 /* Requested object/attribute doesn't exist */
560 if((self
->errno
== IAS_CLASS_UNKNOWN
) ||
561 (self
->errno
== IAS_ATTRIB_UNKNOWN
))
562 return -EADDRNOTAVAIL
;
564 return -EHOSTUNREACH
;
567 /* Get the remote TSAP selector */
568 switch (self
->ias_result
->type
) {
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
;
580 pr_debug("%s(), bad type!\n", __func__
);
583 if (self
->ias_result
)
584 irias_delete_value(self
->ias_result
);
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 */
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
,
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
635 for(i
= 0; i
< number
; i
++) {
636 /* Try the address in the log */
637 self
->daddr
= discoveries
[i
].daddr
;
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
);
646 /* We found the requested service */
647 if(daddr
!= DEV_ADDR_ANY
) {
648 pr_debug("%s(), discovered service ''%s'' in two different devices !!!\n",
650 self
->daddr
= DEV_ADDR_ANY
;
654 /* First time we found that one, save it ! */
656 dtsap_sel
= self
->dtsap_sel
;
659 /* Requested service simply doesn't exist on this node */
662 /* Something bad did happen :-( */
663 pr_debug("%s(), unexpected IAS query failure\n",
665 self
->daddr
= DEV_ADDR_ANY
;
667 return -EHOSTUNREACH
;
670 /* Cleanup our copy of the discovery log */
673 /* Check out what we found */
674 if(daddr
== DEV_ADDR_ANY
) {
675 pr_debug("%s(), cannot discover service ''%s'' in any device !!!\n",
677 self
->daddr
= DEV_ADDR_ANY
;
678 return -EADDRNOTAVAIL
;
681 /* Revert back to discovered device & service */
684 self
->dtsap_sel
= dtsap_sel
;
686 pr_debug("%s(), discovered requested service ''%s'' at address %08x\n",
687 __func__
, name
, self
->daddr
);
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
));
707 if (sk
->sk_state
!= TCP_ESTABLISHED
)
710 saddr
.sir_family
= AF_IRDA
;
711 saddr
.sir_lsap_sel
= self
->dtsap_sel
;
712 saddr
.sir_addr
= self
->daddr
;
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
);
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
;
742 if ((sk
->sk_type
!= SOCK_STREAM
) && (sk
->sk_type
!= SOCK_SEQPACKET
) &&
743 (sk
->sk_type
!= SOCK_DGRAM
))
746 if (sk
->sk_state
!= TCP_LISTEN
) {
747 sk
->sk_max_ack_backlog
= backlog
;
748 sk
->sk_state
= TCP_LISTEN
;
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
);
771 pr_debug("%s(%p)\n", __func__
, self
);
773 if (addr_len
!= sizeof(struct sockaddr_irda
))
777 #ifdef CONFIG_IRDA_ULTRA
778 /* Special care for Ultra sockets */
779 if ((sk
->sk_type
== SOCK_DGRAM
) &&
780 (sk
->sk_protocol
== IRDAPROTO_ULTRA
)) {
781 self
->pid
= addr
->sir_lsap_sel
;
783 if (self
->pid
& 0x80) {
784 pr_debug("%s(), extension in PID not supp!\n",
788 err
= irda_open_lsap(self
, self
->pid
);
792 /* Pretend we are connected */
793 sock
->state
= SS_CONNECTED
;
794 sk
->sk_state
= TCP_ESTABLISHED
;
799 #endif /* CONFIG_IRDA_ULTRA */
801 self
->ias_obj
= irias_new_object(addr
->sir_name
, jiffies
);
803 if (self
->ias_obj
== NULL
)
806 err
= irda_open_tsap(self
, addr
->sir_lsap_sel
, addr
->sir_name
);
808 irias_delete_object(self
->ias_obj
);
809 self
->ias_obj
= NULL
;
813 /* Register with LM-IAS */
814 irias_add_integer_attrib(self
->ias_obj
, "IrDA:TinyTP:LsapSel",
815 self
->stsap_sel
, IAS_KERNEL_ATTR
);
816 irias_insert_object(self
->ias_obj
);
825 * Function irda_accept (sock, newsock, flags)
827 * Wait for incoming connection
830 static int irda_accept(struct socket
*sock
, struct socket
*newsock
, int flags
)
832 struct sock
*sk
= sock
->sk
;
833 struct irda_sock
*new, *self
= irda_sk(sk
);
838 err
= irda_create(sock_net(sk
), newsock
, sk
->sk_protocol
, 0);
845 if (sock
->state
!= SS_UNCONNECTED
)
848 if ((sk
= sock
->sk
) == NULL
)
852 if ((sk
->sk_type
!= SOCK_STREAM
) && (sk
->sk_type
!= SOCK_SEQPACKET
) &&
853 (sk
->sk_type
!= SOCK_DGRAM
))
857 if (sk
->sk_state
!= TCP_LISTEN
)
861 * The read queue this time is holding sockets ready to use
862 * hooked into the SABM we saved
866 * We can perform the accept only if there is incoming data
867 * on the listening socket.
868 * So, we will block the caller until we receive any data.
869 * If the caller was waiting on select() or poll() before
870 * calling us, the data is waiting for us ;-)
874 skb
= skb_dequeue(&sk
->sk_receive_queue
);
878 /* Non blocking operation */
880 if (flags
& O_NONBLOCK
)
883 err
= wait_event_interruptible(*(sk_sleep(sk
)),
884 skb_peek(&sk
->sk_receive_queue
));
894 newsk
->sk_state
= TCP_ESTABLISHED
;
896 new = irda_sk(newsk
);
898 /* Now attach up the new socket */
899 new->tsap
= irttp_dup(self
->tsap
, new);
900 err
= -EPERM
; /* value does not seem to make sense. -arnd */
902 pr_debug("%s(), dup failed!\n", __func__
);
907 new->stsap_sel
= new->tsap
->stsap_sel
;
908 new->dtsap_sel
= new->tsap
->dtsap_sel
;
909 new->saddr
= irttp_get_saddr(new->tsap
);
910 new->daddr
= irttp_get_daddr(new->tsap
);
912 new->max_sdu_size_tx
= self
->max_sdu_size_tx
;
913 new->max_sdu_size_rx
= self
->max_sdu_size_rx
;
914 new->max_data_size
= self
->max_data_size
;
915 new->max_header_size
= self
->max_header_size
;
917 memcpy(&new->qos_tx
, &self
->qos_tx
, sizeof(struct qos_info
));
919 /* Clean up the original one to keep it in listen state */
920 irttp_listen(self
->tsap
);
923 sk
->sk_ack_backlog
--;
925 newsock
->state
= SS_CONNECTED
;
927 irda_connect_response(new);
935 * Function irda_connect (sock, uaddr, addr_len, flags)
937 * Connect to a IrDA device
939 * The main difference with a "standard" connect is that with IrDA we need
940 * to resolve the service name into a TSAP selector (in TCP, port number
941 * doesn't have to be resolved).
942 * Because of this service name resolution, we can offer "auto-connect",
943 * where we connect to a service without specifying a destination address.
945 * Note : by consulting "errno", the user space caller may learn the cause
946 * of the failure. Most of them are visible in the function, others may come
947 * from subroutines called and are listed here :
948 * o EBUSY : already processing a connect
949 * o EHOSTUNREACH : bad addr->sir_addr argument
950 * o EADDRNOTAVAIL : bad addr->sir_name argument
951 * o ENOTUNIQ : more than one node has addr->sir_name (auto-connect)
952 * o ENETUNREACH : no node found on the network (auto-connect)
954 static int irda_connect(struct socket
*sock
, struct sockaddr
*uaddr
,
955 int addr_len
, int flags
)
957 struct sock
*sk
= sock
->sk
;
958 struct sockaddr_irda
*addr
= (struct sockaddr_irda
*) uaddr
;
959 struct irda_sock
*self
= irda_sk(sk
);
962 pr_debug("%s(%p)\n", __func__
, self
);
965 /* Don't allow connect for Ultra sockets */
966 err
= -ESOCKTNOSUPPORT
;
967 if ((sk
->sk_type
== SOCK_DGRAM
) && (sk
->sk_protocol
== IRDAPROTO_ULTRA
))
970 if (sk
->sk_state
== TCP_ESTABLISHED
&& sock
->state
== SS_CONNECTING
) {
971 sock
->state
= SS_CONNECTED
;
973 goto out
; /* Connect completed during a ERESTARTSYS event */
976 if (sk
->sk_state
== TCP_CLOSE
&& sock
->state
== SS_CONNECTING
) {
977 sock
->state
= SS_UNCONNECTED
;
982 err
= -EISCONN
; /* No reconnect on a seqpacket socket */
983 if (sk
->sk_state
== TCP_ESTABLISHED
)
986 sk
->sk_state
= TCP_CLOSE
;
987 sock
->state
= SS_UNCONNECTED
;
990 if (addr_len
!= sizeof(struct sockaddr_irda
))
993 /* Check if user supplied any destination device address */
994 if ((!addr
->sir_addr
) || (addr
->sir_addr
== DEV_ADDR_ANY
)) {
995 /* Try to find one suitable */
996 err
= irda_discover_daddr_and_lsap_sel(self
, addr
->sir_name
);
998 pr_debug("%s(), auto-connect failed!\n", __func__
);
1002 /* Use the one provided by the user */
1003 self
->daddr
= addr
->sir_addr
;
1004 pr_debug("%s(), daddr = %08x\n", __func__
, self
->daddr
);
1006 /* If we don't have a valid service name, we assume the
1007 * user want to connect on a specific LSAP. Prevent
1008 * the use of invalid LSAPs (IrLMP 1.1 p10). Jean II */
1009 if((addr
->sir_name
[0] != '\0') ||
1010 (addr
->sir_lsap_sel
>= 0x70)) {
1011 /* Query remote LM-IAS using service name */
1012 err
= irda_find_lsap_sel(self
, addr
->sir_name
);
1014 pr_debug("%s(), connect failed!\n", __func__
);
1018 /* Directly connect to the remote LSAP
1019 * specified by the sir_lsap field.
1020 * Please use with caution, in IrDA LSAPs are
1021 * dynamic and there is no "well-known" LSAP. */
1022 self
->dtsap_sel
= addr
->sir_lsap_sel
;
1026 /* Check if we have opened a local TSAP */
1028 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 (net
!= &init_net
)
1090 return -EAFNOSUPPORT
;
1092 /* Check for valid socket type */
1093 switch (sock
->type
) {
1094 case SOCK_STREAM
: /* For TTP connections with SAR disabled */
1095 case SOCK_SEQPACKET
: /* For TTP connections with SAR enabled */
1096 case SOCK_DGRAM
: /* For TTP Unitdata or LMP Ultra transfers */
1099 return -ESOCKTNOSUPPORT
;
1102 /* Allocate networking socket */
1103 sk
= sk_alloc(net
, PF_IRDA
, GFP_KERNEL
, &irda_proto
);
1108 pr_debug("%s() : self is %p\n", __func__
, self
);
1110 init_waitqueue_head(&self
->query_wait
);
1112 switch (sock
->type
) {
1114 sock
->ops
= &irda_stream_ops
;
1115 self
->max_sdu_size_rx
= TTP_SAR_DISABLE
;
1117 case SOCK_SEQPACKET
:
1118 sock
->ops
= &irda_seqpacket_ops
;
1119 self
->max_sdu_size_rx
= TTP_SAR_UNBOUND
;
1123 #ifdef CONFIG_IRDA_ULTRA
1124 case IRDAPROTO_ULTRA
:
1125 sock
->ops
= &irda_ultra_ops
;
1126 /* Initialise now, because we may send on unbound
1127 * sockets. Jean II */
1128 self
->max_data_size
= ULTRA_MAX_DATA
- LMP_PID_HEADER
;
1129 self
->max_header_size
= IRDA_MAX_HEADER
+ LMP_PID_HEADER
;
1131 #endif /* CONFIG_IRDA_ULTRA */
1132 case IRDAPROTO_UNITDATA
:
1133 sock
->ops
= &irda_dgram_ops
;
1134 /* We let Unitdata conn. be like seqpack conn. */
1135 self
->max_sdu_size_rx
= TTP_SAR_UNBOUND
;
1139 return -ESOCKTNOSUPPORT
;
1144 return -ESOCKTNOSUPPORT
;
1147 /* Initialise networking socket struct */
1148 sock_init_data(sock
, sk
); /* Note : set sk->sk_refcnt to 1 */
1149 sk
->sk_family
= PF_IRDA
;
1150 sk
->sk_protocol
= protocol
;
1152 /* Register as a client with IrLMP */
1153 self
->ckey
= irlmp_register_client(0, NULL
, NULL
, NULL
);
1154 self
->mask
.word
= 0xffff;
1155 self
->rx_flow
= self
->tx_flow
= FLOW_START
;
1156 self
->nslots
= DISCOVERY_DEFAULT_SLOTS
;
1157 self
->daddr
= DEV_ADDR_ANY
; /* Until we get connected */
1158 self
->saddr
= 0x0; /* so IrLMP assign us any link */
1163 * Function irda_destroy_socket (self)
1168 static void irda_destroy_socket(struct irda_sock
*self
)
1170 pr_debug("%s(%p)\n", __func__
, self
);
1172 /* Unregister with IrLMP */
1173 irlmp_unregister_client(self
->ckey
);
1174 irlmp_unregister_service(self
->skey
);
1176 /* Unregister with LM-IAS */
1177 if (self
->ias_obj
) {
1178 irias_delete_object(self
->ias_obj
);
1179 self
->ias_obj
= NULL
;
1183 iriap_close(self
->iriap
);
1188 irttp_disconnect_request(self
->tsap
, NULL
, P_NORMAL
);
1189 irttp_close_tsap(self
->tsap
);
1192 #ifdef CONFIG_IRDA_ULTRA
1194 irlmp_close_lsap(self
->lsap
);
1197 #endif /* CONFIG_IRDA_ULTRA */
1201 * Function irda_release (sock)
1203 static int irda_release(struct socket
*sock
)
1205 struct sock
*sk
= sock
->sk
;
1211 sk
->sk_state
= TCP_CLOSE
;
1212 sk
->sk_shutdown
|= SEND_SHUTDOWN
;
1213 sk
->sk_state_change(sk
);
1215 /* Destroy IrDA socket */
1216 irda_destroy_socket(irda_sk(sk
));
1222 /* Purge queues (see sock_init_data()) */
1223 skb_queue_purge(&sk
->sk_receive_queue
);
1225 /* Destroy networking socket if we are the last reference on it,
1226 * i.e. if(sk->sk_refcnt == 0) -> sk_free(sk) */
1229 /* Notes on socket locking and deallocation... - Jean II
1230 * In theory we should put pairs of sock_hold() / sock_put() to
1231 * prevent the socket to be destroyed whenever there is an
1232 * outstanding request or outstanding incoming packet or event.
1234 * 1) This may include IAS request, both in connect and getsockopt.
1235 * Unfortunately, the situation is a bit more messy than it looks,
1236 * because we close iriap and kfree(self) above.
1238 * 2) This may include selective discovery in getsockopt.
1239 * Same stuff as above, irlmp registration and self are gone.
1241 * Probably 1 and 2 may not matter, because it's all triggered
1242 * by a process and the socket layer already prevent the
1243 * socket to go away while a process is holding it, through
1244 * sockfd_put() and fput()...
1246 * 3) This may include deferred TSAP closure. In particular,
1247 * we may receive a late irda_disconnect_indication()
1248 * Fortunately, (tsap_cb *)->close_pend should protect us
1251 * I did some testing on SMP, and it looks solid. And the socket
1252 * memory leak is now gone... - Jean II
1259 * Function irda_sendmsg (iocb, sock, msg, len)
1261 * Send message down to TinyTP. This function is used for both STREAM and
1262 * SEQPACK services. This is possible since it forces the client to
1263 * fragment the message if necessary
1265 static int irda_sendmsg(struct kiocb
*iocb
, struct socket
*sock
,
1266 struct msghdr
*msg
, size_t len
)
1268 struct sock
*sk
= sock
->sk
;
1269 struct irda_sock
*self
;
1270 struct sk_buff
*skb
;
1273 pr_debug("%s(), len=%zd\n", __func__
, len
);
1275 /* Note : socket.c set MSG_EOR on SEQPACKET sockets */
1276 if (msg
->msg_flags
& ~(MSG_DONTWAIT
| MSG_EOR
| MSG_CMSG_COMPAT
|
1283 if (sk
->sk_shutdown
& SEND_SHUTDOWN
)
1286 if (sk
->sk_state
!= TCP_ESTABLISHED
) {
1293 /* Check if IrTTP is wants us to slow down */
1295 if (wait_event_interruptible(*(sk_sleep(sk
)),
1296 (self
->tx_flow
!= FLOW_STOP
|| sk
->sk_state
!= TCP_ESTABLISHED
))) {
1301 /* Check if we are still connected */
1302 if (sk
->sk_state
!= TCP_ESTABLISHED
) {
1307 /* Check that we don't send out too big frames */
1308 if (len
> self
->max_data_size
) {
1309 pr_debug("%s(), Chopping frame from %zd to %d bytes!\n",
1310 __func__
, len
, self
->max_data_size
);
1311 len
= self
->max_data_size
;
1314 skb
= sock_alloc_send_skb(sk
, len
+ self
->max_header_size
+ 16,
1315 msg
->msg_flags
& MSG_DONTWAIT
, &err
);
1319 skb_reserve(skb
, self
->max_header_size
+ 16);
1320 skb_reset_transport_header(skb
);
1322 err
= memcpy_from_msg(skb_transport_header(skb
), msg
, len
);
1329 * Just send the message to TinyTP, and let it deal with possible
1330 * errors. No need to duplicate all that here
1332 err
= irttp_data_request(self
->tsap
, skb
);
1334 pr_debug("%s(), err=%d\n", __func__
, err
);
1339 /* Tell client how much data we actually sent */
1343 err
= sk_stream_error(sk
, msg
->msg_flags
, err
);
1351 * Function irda_recvmsg_dgram (iocb, sock, msg, size, flags)
1353 * Try to receive message and copy it to user. The frame is discarded
1354 * after being read, regardless of how much the user actually read
1356 static int irda_recvmsg_dgram(struct kiocb
*iocb
, struct socket
*sock
,
1357 struct msghdr
*msg
, size_t size
, int flags
)
1359 struct sock
*sk
= sock
->sk
;
1360 struct irda_sock
*self
= irda_sk(sk
);
1361 struct sk_buff
*skb
;
1365 skb
= skb_recv_datagram(sk
, flags
& ~MSG_DONTWAIT
,
1366 flags
& MSG_DONTWAIT
, &err
);
1370 skb_reset_transport_header(skb
);
1373 if (copied
> size
) {
1374 pr_debug("%s(), Received truncated frame (%zd < %zd)!\n",
1375 __func__
, copied
, size
);
1377 msg
->msg_flags
|= MSG_TRUNC
;
1379 skb_copy_datagram_msg(skb
, 0, msg
, copied
);
1381 skb_free_datagram(sk
, skb
);
1384 * Check if we have previously stopped IrTTP and we know
1385 * have more free space in our rx_queue. If so tell IrTTP
1386 * to start delivering frames again before our rx_queue gets
1389 if (self
->rx_flow
== FLOW_STOP
) {
1390 if ((atomic_read(&sk
->sk_rmem_alloc
) << 2) <= sk
->sk_rcvbuf
) {
1391 pr_debug("%s(), Starting IrTTP\n", __func__
);
1392 self
->rx_flow
= FLOW_START
;
1393 irttp_flow_request(self
->tsap
, FLOW_START
);
1401 * Function irda_recvmsg_stream (iocb, sock, msg, size, flags)
1403 static int irda_recvmsg_stream(struct kiocb
*iocb
, struct socket
*sock
,
1404 struct msghdr
*msg
, size_t size
, int flags
)
1406 struct sock
*sk
= sock
->sk
;
1407 struct irda_sock
*self
= irda_sk(sk
);
1408 int noblock
= flags
& MSG_DONTWAIT
;
1413 if ((err
= sock_error(sk
)) < 0)
1416 if (sock
->flags
& __SO_ACCEPTCON
)
1420 if (flags
& MSG_OOB
)
1424 target
= sock_rcvlowat(sk
, flags
& MSG_WAITALL
, size
);
1425 timeo
= sock_rcvtimeo(sk
, noblock
);
1429 struct sk_buff
*skb
= skb_dequeue(&sk
->sk_receive_queue
);
1435 if (copied
>= target
)
1438 prepare_to_wait_exclusive(sk_sleep(sk
), &wait
, TASK_INTERRUPTIBLE
);
1441 * POSIX 1003.1g mandates this order.
1443 err
= sock_error(sk
);
1446 else if (sk
->sk_shutdown
& RCV_SHUTDOWN
)
1450 else if (signal_pending(current
))
1451 err
= sock_intr_errno(timeo
);
1452 else if (sk
->sk_state
!= TCP_ESTABLISHED
)
1454 else if (skb_peek(&sk
->sk_receive_queue
) == NULL
)
1455 /* Wait process until data arrives */
1458 finish_wait(sk_sleep(sk
), &wait
);
1462 if (sk
->sk_shutdown
& RCV_SHUTDOWN
)
1468 chunk
= min_t(unsigned int, skb
->len
, size
);
1469 if (memcpy_to_msg(msg
, skb
->data
, chunk
)) {
1470 skb_queue_head(&sk
->sk_receive_queue
, skb
);
1478 /* Mark read part of skb as used */
1479 if (!(flags
& MSG_PEEK
)) {
1480 skb_pull(skb
, chunk
);
1482 /* put the skb back if we didn't use it up.. */
1484 pr_debug("%s(), back on q!\n",
1486 skb_queue_head(&sk
->sk_receive_queue
, skb
);
1492 pr_debug("%s() questionable!?\n", __func__
);
1494 /* put message back and return */
1495 skb_queue_head(&sk
->sk_receive_queue
, skb
);
1501 * Check if we have previously stopped IrTTP and we know
1502 * have more free space in our rx_queue. If so tell IrTTP
1503 * to start delivering frames again before our rx_queue gets
1506 if (self
->rx_flow
== FLOW_STOP
) {
1507 if ((atomic_read(&sk
->sk_rmem_alloc
) << 2) <= sk
->sk_rcvbuf
) {
1508 pr_debug("%s(), Starting IrTTP\n", __func__
);
1509 self
->rx_flow
= FLOW_START
;
1510 irttp_flow_request(self
->tsap
, FLOW_START
);
1518 * Function irda_sendmsg_dgram (iocb, sock, msg, len)
1520 * Send message down to TinyTP for the unreliable sequenced
1524 static int irda_sendmsg_dgram(struct kiocb
*iocb
, struct socket
*sock
,
1525 struct msghdr
*msg
, size_t len
)
1527 struct sock
*sk
= sock
->sk
;
1528 struct irda_sock
*self
;
1529 struct sk_buff
*skb
;
1532 pr_debug("%s(), len=%zd\n", __func__
, len
);
1534 if (msg
->msg_flags
& ~(MSG_DONTWAIT
|MSG_CMSG_COMPAT
))
1539 if (sk
->sk_shutdown
& SEND_SHUTDOWN
) {
1540 send_sig(SIGPIPE
, current
, 0);
1546 if (sk
->sk_state
!= TCP_ESTABLISHED
)
1552 * Check that we don't send out too big frames. This is an unreliable
1553 * service, so we have no fragmentation and no coalescence
1555 if (len
> self
->max_data_size
) {
1556 pr_debug("%s(), Warning too much data! Chopping frame from %zd to %d bytes!\n",
1557 __func__
, len
, self
->max_data_size
);
1558 len
= self
->max_data_size
;
1561 skb
= sock_alloc_send_skb(sk
, len
+ self
->max_header_size
,
1562 msg
->msg_flags
& MSG_DONTWAIT
, &err
);
1567 skb_reserve(skb
, self
->max_header_size
);
1568 skb_reset_transport_header(skb
);
1570 pr_debug("%s(), appending user data\n", __func__
);
1572 err
= memcpy_from_msg(skb_transport_header(skb
), msg
, len
);
1579 * Just send the message to TinyTP, and let it deal with possible
1580 * errors. No need to duplicate all that here
1582 err
= irttp_udata_request(self
->tsap
, skb
);
1584 pr_debug("%s(), err=%d\n", __func__
, err
);
1597 * Function irda_sendmsg_ultra (iocb, sock, msg, len)
1599 * Send message down to IrLMP for the unreliable Ultra
1602 #ifdef CONFIG_IRDA_ULTRA
1603 static int irda_sendmsg_ultra(struct kiocb
*iocb
, struct socket
*sock
,
1604 struct msghdr
*msg
, size_t len
)
1606 struct sock
*sk
= sock
->sk
;
1607 struct irda_sock
*self
;
1610 struct sk_buff
*skb
;
1613 pr_debug("%s(), len=%zd\n", __func__
, len
);
1616 if (msg
->msg_flags
& ~(MSG_DONTWAIT
|MSG_CMSG_COMPAT
))
1622 if (sk
->sk_shutdown
& SEND_SHUTDOWN
) {
1623 send_sig(SIGPIPE
, current
, 0);
1629 /* Check if an address was specified with sendto. Jean II */
1630 if (msg
->msg_name
) {
1631 DECLARE_SOCKADDR(struct sockaddr_irda
*, addr
, msg
->msg_name
);
1633 /* Check address, extract pid. Jean II */
1634 if (msg
->msg_namelen
< sizeof(*addr
))
1636 if (addr
->sir_family
!= AF_IRDA
)
1639 pid
= addr
->sir_lsap_sel
;
1641 pr_debug("%s(), extension in PID not supp!\n",
1647 /* Check that the socket is properly bound to an Ultra
1649 if ((self
->lsap
== NULL
) ||
1650 (sk
->sk_state
!= TCP_ESTABLISHED
)) {
1651 pr_debug("%s(), socket not bound to Ultra PID.\n",
1656 /* Use PID from socket */
1661 * Check that we don't send out too big frames. This is an unreliable
1662 * service, so we have no fragmentation and no coalescence
1664 if (len
> self
->max_data_size
) {
1665 pr_debug("%s(), Warning too much data! Chopping frame from %zd to %d bytes!\n",
1666 __func__
, len
, self
->max_data_size
);
1667 len
= self
->max_data_size
;
1670 skb
= sock_alloc_send_skb(sk
, len
+ self
->max_header_size
,
1671 msg
->msg_flags
& MSG_DONTWAIT
, &err
);
1676 skb_reserve(skb
, self
->max_header_size
);
1677 skb_reset_transport_header(skb
);
1679 pr_debug("%s(), appending user data\n", __func__
);
1681 err
= memcpy_from_msg(skb_transport_header(skb
), msg
, len
);
1687 err
= irlmp_connless_data_request((bound
? self
->lsap
: NULL
),
1690 pr_debug("%s(), err=%d\n", __func__
, err
);
1695 #endif /* CONFIG_IRDA_ULTRA */
1698 * Function irda_shutdown (sk, how)
1700 static int irda_shutdown(struct socket
*sock
, int how
)
1702 struct sock
*sk
= sock
->sk
;
1703 struct irda_sock
*self
= irda_sk(sk
);
1705 pr_debug("%s(%p)\n", __func__
, self
);
1709 sk
->sk_state
= TCP_CLOSE
;
1710 sk
->sk_shutdown
|= SEND_SHUTDOWN
;
1711 sk
->sk_state_change(sk
);
1714 iriap_close(self
->iriap
);
1719 irttp_disconnect_request(self
->tsap
, NULL
, P_NORMAL
);
1720 irttp_close_tsap(self
->tsap
);
1724 /* A few cleanup so the socket look as good as new... */
1725 self
->rx_flow
= self
->tx_flow
= FLOW_START
; /* needed ??? */
1726 self
->daddr
= DEV_ADDR_ANY
; /* Until we get re-connected */
1727 self
->saddr
= 0x0; /* so IrLMP assign us any link */
1735 * Function irda_poll (file, sock, wait)
1737 static unsigned int irda_poll(struct file
* file
, struct socket
*sock
,
1740 struct sock
*sk
= sock
->sk
;
1741 struct irda_sock
*self
= irda_sk(sk
);
1744 poll_wait(file
, sk_sleep(sk
), wait
);
1747 /* Exceptional events? */
1750 if (sk
->sk_shutdown
& RCV_SHUTDOWN
) {
1751 pr_debug("%s(), POLLHUP\n", __func__
);
1756 if (!skb_queue_empty(&sk
->sk_receive_queue
)) {
1757 pr_debug("Socket is readable\n");
1758 mask
|= POLLIN
| POLLRDNORM
;
1761 /* Connection-based need to check for termination and startup */
1762 switch (sk
->sk_type
) {
1764 if (sk
->sk_state
== TCP_CLOSE
) {
1765 pr_debug("%s(), POLLHUP\n", __func__
);
1769 if (sk
->sk_state
== TCP_ESTABLISHED
) {
1770 if ((self
->tx_flow
== FLOW_START
) &&
1773 mask
|= POLLOUT
| POLLWRNORM
| POLLWRBAND
;
1777 case SOCK_SEQPACKET
:
1778 if ((self
->tx_flow
== FLOW_START
) &&
1781 mask
|= POLLOUT
| POLLWRNORM
| POLLWRBAND
;
1785 if (sock_writeable(sk
))
1786 mask
|= POLLOUT
| POLLWRNORM
| POLLWRBAND
;
1796 * Function irda_ioctl (sock, cmd, arg)
1798 static int irda_ioctl(struct socket
*sock
, unsigned int cmd
, unsigned long arg
)
1800 struct sock
*sk
= sock
->sk
;
1803 pr_debug("%s(), cmd=%#x\n", __func__
, cmd
);
1810 amount
= sk
->sk_sndbuf
- sk_wmem_alloc_get(sk
);
1813 err
= put_user(amount
, (unsigned int __user
*)arg
);
1818 struct sk_buff
*skb
;
1820 /* These two are safe on a single CPU system as only user tasks fiddle here */
1821 if ((skb
= skb_peek(&sk
->sk_receive_queue
)) != NULL
)
1823 err
= put_user(amount
, (unsigned int __user
*)arg
);
1829 err
= sock_get_timestamp(sk
, (struct timeval __user
*)arg
);
1834 case SIOCGIFDSTADDR
:
1835 case SIOCSIFDSTADDR
:
1836 case SIOCGIFBRDADDR
:
1837 case SIOCSIFBRDADDR
:
1838 case SIOCGIFNETMASK
:
1839 case SIOCSIFNETMASK
:
1844 pr_debug("%s(), doing device ioctl!\n", __func__
);
1851 #ifdef CONFIG_COMPAT
1853 * Function irda_ioctl (sock, cmd, arg)
1855 static int irda_compat_ioctl(struct socket
*sock
, unsigned int cmd
, unsigned long arg
)
1858 * All IRDA's ioctl are standard ones.
1860 return -ENOIOCTLCMD
;
1865 * Function irda_setsockopt (sock, level, optname, optval, optlen)
1867 * Set some options for the socket
1870 static int irda_setsockopt(struct socket
*sock
, int level
, int optname
,
1871 char __user
*optval
, unsigned int optlen
)
1873 struct sock
*sk
= sock
->sk
;
1874 struct irda_sock
*self
= irda_sk(sk
);
1875 struct irda_ias_set
*ias_opt
;
1876 struct ias_object
*ias_obj
;
1877 struct ias_attrib
* ias_attr
; /* Attribute in IAS object */
1878 int opt
, free_ias
= 0, err
= 0;
1880 pr_debug("%s(%p)\n", __func__
, self
);
1882 if (level
!= SOL_IRLMP
)
1883 return -ENOPROTOOPT
;
1889 /* The user want to add an attribute to an existing IAS object
1890 * (in the IAS database) or to create a new object with this
1892 * We first query IAS to know if the object exist, and then
1893 * create the right attribute...
1896 if (optlen
!= sizeof(struct irda_ias_set
)) {
1901 ias_opt
= kmalloc(sizeof(struct irda_ias_set
), GFP_ATOMIC
);
1902 if (ias_opt
== NULL
) {
1907 /* Copy query to the driver. */
1908 if (copy_from_user(ias_opt
, optval
, optlen
)) {
1914 /* Find the object we target.
1915 * If the user gives us an empty string, we use the object
1916 * associated with this socket. This will workaround
1917 * duplicated class name - Jean II */
1918 if(ias_opt
->irda_class_name
[0] == '\0') {
1919 if(self
->ias_obj
== NULL
) {
1924 ias_obj
= self
->ias_obj
;
1926 ias_obj
= irias_find_object(ias_opt
->irda_class_name
);
1928 /* Only ROOT can mess with the global IAS database.
1929 * Users can only add attributes to the object associated
1930 * with the socket they own - Jean II */
1931 if((!capable(CAP_NET_ADMIN
)) &&
1932 ((ias_obj
== NULL
) || (ias_obj
!= self
->ias_obj
))) {
1938 /* If the object doesn't exist, create it */
1939 if(ias_obj
== (struct ias_object
*) NULL
) {
1940 /* Create a new object */
1941 ias_obj
= irias_new_object(ias_opt
->irda_class_name
,
1943 if (ias_obj
== NULL
) {
1951 /* Do we have the attribute already ? */
1952 if(irias_find_attrib(ias_obj
, ias_opt
->irda_attrib_name
)) {
1955 kfree(ias_obj
->name
);
1962 /* Look at the type */
1963 switch(ias_opt
->irda_attrib_type
) {
1965 /* Add an integer attribute */
1966 irias_add_integer_attrib(
1968 ias_opt
->irda_attrib_name
,
1969 ias_opt
->attribute
.irda_attrib_int
,
1974 if(ias_opt
->attribute
.irda_attrib_octet_seq
.len
>
1975 IAS_MAX_OCTET_STRING
) {
1978 kfree(ias_obj
->name
);
1985 /* Add an octet sequence attribute */
1986 irias_add_octseq_attrib(
1988 ias_opt
->irda_attrib_name
,
1989 ias_opt
->attribute
.irda_attrib_octet_seq
.octet_seq
,
1990 ias_opt
->attribute
.irda_attrib_octet_seq
.len
,
1994 /* Should check charset & co */
1996 /* The length is encoded in a __u8, and
1997 * IAS_MAX_STRING == 256, so there is no way
1998 * userspace can pass us a string too large.
2000 /* NULL terminate the string (avoid troubles) */
2001 ias_opt
->attribute
.irda_attrib_string
.string
[ias_opt
->attribute
.irda_attrib_string
.len
] = '\0';
2002 /* Add a string attribute */
2003 irias_add_string_attrib(
2005 ias_opt
->irda_attrib_name
,
2006 ias_opt
->attribute
.irda_attrib_string
.string
,
2012 kfree(ias_obj
->name
);
2018 irias_insert_object(ias_obj
);
2022 /* The user want to delete an object from our local IAS
2023 * database. We just need to query the IAS, check is the
2024 * object is not owned by the kernel and delete it.
2027 if (optlen
!= sizeof(struct irda_ias_set
)) {
2032 ias_opt
= kmalloc(sizeof(struct irda_ias_set
), GFP_ATOMIC
);
2033 if (ias_opt
== NULL
) {
2038 /* Copy query to the driver. */
2039 if (copy_from_user(ias_opt
, optval
, optlen
)) {
2045 /* Find the object we target.
2046 * If the user gives us an empty string, we use the object
2047 * associated with this socket. This will workaround
2048 * duplicated class name - Jean II */
2049 if(ias_opt
->irda_class_name
[0] == '\0')
2050 ias_obj
= self
->ias_obj
;
2052 ias_obj
= irias_find_object(ias_opt
->irda_class_name
);
2053 if(ias_obj
== (struct ias_object
*) NULL
) {
2059 /* Only ROOT can mess with the global IAS database.
2060 * Users can only del attributes from the object associated
2061 * with the socket they own - Jean II */
2062 if((!capable(CAP_NET_ADMIN
)) &&
2063 ((ias_obj
== NULL
) || (ias_obj
!= self
->ias_obj
))) {
2069 /* Find the attribute (in the object) we target */
2070 ias_attr
= irias_find_attrib(ias_obj
,
2071 ias_opt
->irda_attrib_name
);
2072 if(ias_attr
== (struct ias_attrib
*) NULL
) {
2078 /* Check is the user space own the object */
2079 if(ias_attr
->value
->owner
!= IAS_USER_ATTR
) {
2080 pr_debug("%s(), attempting to delete a kernel attribute\n",
2087 /* Remove the attribute (and maybe the object) */
2088 irias_delete_attrib(ias_obj
, ias_attr
, 1);
2091 case IRLMP_MAX_SDU_SIZE
:
2092 if (optlen
< sizeof(int)) {
2097 if (get_user(opt
, (int __user
*)optval
)) {
2102 /* Only possible for a seqpacket service (TTP with SAR) */
2103 if (sk
->sk_type
!= SOCK_SEQPACKET
) {
2104 pr_debug("%s(), setting max_sdu_size = %d\n",
2106 self
->max_sdu_size_rx
= opt
;
2108 net_warn_ratelimited("%s: not allowed to set MAXSDUSIZE for this socket type!\n",
2114 case IRLMP_HINTS_SET
:
2115 if (optlen
< sizeof(int)) {
2120 /* The input is really a (__u8 hints[2]), easier as an int */
2121 if (get_user(opt
, (int __user
*)optval
)) {
2126 /* Unregister any old registration */
2128 irlmp_unregister_service(self
->skey
);
2130 self
->skey
= irlmp_register_service((__u16
) opt
);
2132 case IRLMP_HINT_MASK_SET
:
2133 /* As opposed to the previous case which set the hint bits
2134 * that we advertise, this one set the filter we use when
2135 * making a discovery (nodes which don't match any hint
2136 * bit in the mask are not reported).
2138 if (optlen
< sizeof(int)) {
2143 /* The input is really a (__u8 hints[2]), easier as an int */
2144 if (get_user(opt
, (int __user
*)optval
)) {
2149 /* Set the new hint mask */
2150 self
->mask
.word
= (__u16
) opt
;
2151 /* Mask out extension bits */
2152 self
->mask
.word
&= 0x7f7f;
2153 /* Check if no bits */
2154 if(!self
->mask
.word
)
2155 self
->mask
.word
= 0xFFFF;
2170 * Function irda_extract_ias_value(ias_opt, ias_value)
2172 * Translate internal IAS value structure to the user space representation
2174 * The external representation of IAS values, as we exchange them with
2175 * user space program is quite different from the internal representation,
2176 * as stored in the IAS database (because we need a flat structure for
2177 * crossing kernel boundary).
2178 * This function transform the former in the latter. We also check
2179 * that the value type is valid.
2181 static int irda_extract_ias_value(struct irda_ias_set
*ias_opt
,
2182 struct ias_value
*ias_value
)
2184 /* Look at the type */
2185 switch (ias_value
->type
) {
2187 /* Copy the integer */
2188 ias_opt
->attribute
.irda_attrib_int
= ias_value
->t
.integer
;
2192 ias_opt
->attribute
.irda_attrib_octet_seq
.len
= ias_value
->len
;
2194 memcpy(ias_opt
->attribute
.irda_attrib_octet_seq
.octet_seq
,
2195 ias_value
->t
.oct_seq
, ias_value
->len
);
2199 ias_opt
->attribute
.irda_attrib_string
.len
= ias_value
->len
;
2200 ias_opt
->attribute
.irda_attrib_string
.charset
= ias_value
->charset
;
2202 memcpy(ias_opt
->attribute
.irda_attrib_string
.string
,
2203 ias_value
->t
.string
, ias_value
->len
);
2204 /* NULL terminate the string (avoid troubles) */
2205 ias_opt
->attribute
.irda_attrib_string
.string
[ias_value
->len
] = '\0';
2212 /* Copy type over */
2213 ias_opt
->irda_attrib_type
= ias_value
->type
;
2219 * Function irda_getsockopt (sock, level, optname, optval, optlen)
2221 static int irda_getsockopt(struct socket
*sock
, int level
, int optname
,
2222 char __user
*optval
, int __user
*optlen
)
2224 struct sock
*sk
= sock
->sk
;
2225 struct irda_sock
*self
= irda_sk(sk
);
2226 struct irda_device_list list
;
2227 struct irda_device_info
*discoveries
;
2228 struct irda_ias_set
* ias_opt
; /* IAS get/query params */
2229 struct ias_object
* ias_obj
; /* Object in IAS */
2230 struct ias_attrib
* ias_attr
; /* Attribute in IAS object */
2231 int daddr
= DEV_ADDR_ANY
; /* Dest address for IAS queries */
2237 pr_debug("%s(%p)\n", __func__
, self
);
2239 if (level
!= SOL_IRLMP
)
2240 return -ENOPROTOOPT
;
2242 if (get_user(len
, optlen
))
2251 case IRLMP_ENUMDEVICES
:
2253 /* Offset to first device entry */
2254 offset
= sizeof(struct irda_device_list
) -
2255 sizeof(struct irda_device_info
);
2262 /* Ask lmp for the current discovery log */
2263 discoveries
= irlmp_get_discoveries(&list
.len
, self
->mask
.word
,
2265 /* Check if the we got some results */
2266 if (discoveries
== NULL
) {
2268 goto out
; /* Didn't find any devices */
2271 /* Write total list length back to client */
2272 if (copy_to_user(optval
, &list
, offset
))
2275 /* Copy the list itself - watch for overflow */
2276 if (list
.len
> 2048) {
2280 total
= offset
+ (list
.len
* sizeof(struct irda_device_info
));
2283 if (copy_to_user(optval
+offset
, discoveries
, total
- offset
))
2286 /* Write total number of bytes used back to client */
2287 if (put_user(total
, optlen
))
2290 /* Free up our buffer */
2293 case IRLMP_MAX_SDU_SIZE
:
2294 val
= self
->max_data_size
;
2296 if (put_user(len
, optlen
)) {
2301 if (copy_to_user(optval
, &val
, len
)) {
2308 /* The user want an object from our local IAS database.
2309 * We just need to query the IAS and return the value
2312 /* Check that the user has allocated the right space for us */
2313 if (len
!= sizeof(struct irda_ias_set
)) {
2318 ias_opt
= kmalloc(sizeof(struct irda_ias_set
), GFP_ATOMIC
);
2319 if (ias_opt
== NULL
) {
2324 /* Copy query to the driver. */
2325 if (copy_from_user(ias_opt
, optval
, len
)) {
2331 /* Find the object we target.
2332 * If the user gives us an empty string, we use the object
2333 * associated with this socket. This will workaround
2334 * duplicated class name - Jean II */
2335 if(ias_opt
->irda_class_name
[0] == '\0')
2336 ias_obj
= self
->ias_obj
;
2338 ias_obj
= irias_find_object(ias_opt
->irda_class_name
);
2339 if(ias_obj
== (struct ias_object
*) NULL
) {
2345 /* Find the attribute (in the object) we target */
2346 ias_attr
= irias_find_attrib(ias_obj
,
2347 ias_opt
->irda_attrib_name
);
2348 if(ias_attr
== (struct ias_attrib
*) NULL
) {
2354 /* Translate from internal to user structure */
2355 err
= irda_extract_ias_value(ias_opt
, ias_attr
->value
);
2361 /* Copy reply to the user */
2362 if (copy_to_user(optval
, ias_opt
,
2363 sizeof(struct irda_ias_set
))) {
2368 /* Note : don't need to put optlen, we checked it */
2371 case IRLMP_IAS_QUERY
:
2372 /* The user want an object from a remote IAS database.
2373 * We need to use IAP to query the remote database and
2374 * then wait for the answer to come back. */
2376 /* Check that the user has allocated the right space for us */
2377 if (len
!= sizeof(struct irda_ias_set
)) {
2382 ias_opt
= kmalloc(sizeof(struct irda_ias_set
), GFP_ATOMIC
);
2383 if (ias_opt
== NULL
) {
2388 /* Copy query to the driver. */
2389 if (copy_from_user(ias_opt
, optval
, len
)) {
2395 /* At this point, there are two cases...
2396 * 1) the socket is connected - that's the easy case, we
2397 * just query the device we are connected to...
2398 * 2) the socket is not connected - the user doesn't want
2399 * to connect and/or may not have a valid service name
2400 * (so can't create a fake connection). In this case,
2401 * we assume that the user pass us a valid destination
2402 * address in the requesting structure...
2404 if(self
->daddr
!= DEV_ADDR_ANY
) {
2405 /* We are connected - reuse known daddr */
2406 daddr
= self
->daddr
;
2408 /* We are not connected, we must specify a valid
2409 * destination address */
2410 daddr
= ias_opt
->daddr
;
2411 if((!daddr
) || (daddr
== DEV_ADDR_ANY
)) {
2418 /* Check that we can proceed with IAP */
2420 net_warn_ratelimited("%s: busy with a previous query\n",
2427 self
->iriap
= iriap_open(LSAP_ANY
, IAS_CLIENT
, self
,
2428 irda_getvalue_confirm
);
2430 if (self
->iriap
== NULL
) {
2436 /* Treat unexpected wakeup as disconnect */
2437 self
->errno
= -EHOSTUNREACH
;
2439 /* Query remote LM-IAS */
2440 iriap_getvaluebyclass_request(self
->iriap
,
2442 ias_opt
->irda_class_name
,
2443 ias_opt
->irda_attrib_name
);
2445 /* Wait for answer, if not yet finished (or failed) */
2446 if (wait_event_interruptible(self
->query_wait
,
2447 (self
->iriap
== NULL
))) {
2448 /* pending request uses copy of ias_opt-content
2449 * we can free it regardless! */
2451 /* Treat signals as disconnect */
2452 err
= -EHOSTUNREACH
;
2456 /* Check what happened */
2460 /* Requested object/attribute doesn't exist */
2461 if((self
->errno
== IAS_CLASS_UNKNOWN
) ||
2462 (self
->errno
== IAS_ATTRIB_UNKNOWN
))
2463 err
= -EADDRNOTAVAIL
;
2465 err
= -EHOSTUNREACH
;
2470 /* Translate from internal to user structure */
2471 err
= irda_extract_ias_value(ias_opt
, self
->ias_result
);
2472 if (self
->ias_result
)
2473 irias_delete_value(self
->ias_result
);
2479 /* Copy reply to the user */
2480 if (copy_to_user(optval
, ias_opt
,
2481 sizeof(struct irda_ias_set
))) {
2486 /* Note : don't need to put optlen, we checked it */
2489 case IRLMP_WAITDEVICE
:
2490 /* This function is just another way of seeing life ;-)
2491 * IRLMP_ENUMDEVICES assumes that you have a static network,
2492 * and that you just want to pick one of the devices present.
2493 * On the other hand, in here we assume that no device is
2494 * present and that at some point in the future a device will
2495 * come into range. When this device arrive, we just wake
2496 * up the caller, so that he has time to connect to it before
2497 * the device goes away...
2498 * Note : once the node has been discovered for more than a
2499 * few second, it won't trigger this function, unless it
2500 * goes away and come back changes its hint bits (so we
2501 * might call it IRLMP_WAITNEWDEVICE).
2504 /* Check that the user is passing us an int */
2505 if (len
!= sizeof(int)) {
2509 /* Get timeout in ms (max time we block the caller) */
2510 if (get_user(val
, (int __user
*)optval
)) {
2515 /* Tell IrLMP we want to be notified */
2516 irlmp_update_client(self
->ckey
, self
->mask
.word
,
2517 irda_selective_discovery_indication
,
2518 NULL
, (void *) self
);
2520 /* Do some discovery (and also return cached results) */
2521 irlmp_discovery_request(self
->nslots
);
2523 /* Wait until a node is discovered */
2524 if (!self
->cachedaddr
) {
2525 pr_debug("%s(), nothing discovered yet, going to sleep...\n",
2528 /* Set watchdog timer to expire in <val> ms. */
2530 setup_timer(&self
->watchdog
, irda_discovery_timeout
,
2531 (unsigned long)self
);
2532 mod_timer(&self
->watchdog
,
2533 jiffies
+ msecs_to_jiffies(val
));
2535 /* Wait for IR-LMP to call us back */
2536 err
= __wait_event_interruptible(self
->query_wait
,
2537 (self
->cachedaddr
!= 0 || self
->errno
== -ETIME
));
2539 /* If watchdog is still activated, kill it! */
2540 del_timer(&(self
->watchdog
));
2542 pr_debug("%s(), ...waking up !\n", __func__
);
2548 pr_debug("%s(), found immediately !\n",
2551 /* Tell IrLMP that we have been notified */
2552 irlmp_update_client(self
->ckey
, self
->mask
.word
,
2555 /* Check if the we got some results */
2556 if (!self
->cachedaddr
) {
2557 err
= -EAGAIN
; /* Didn't find any devices */
2560 daddr
= self
->cachedaddr
;
2562 self
->cachedaddr
= 0;
2564 /* We return the daddr of the device that trigger the
2565 * wakeup. As irlmp pass us only the new devices, we
2566 * are sure that it's not an old device.
2567 * If the user want more details, he should query
2568 * the whole discovery log and pick one device...
2570 if (put_user(daddr
, (int __user
*)optval
)) {
2587 static const struct net_proto_family irda_family_ops
= {
2589 .create
= irda_create
,
2590 .owner
= THIS_MODULE
,
2593 static const struct proto_ops irda_stream_ops
= {
2595 .owner
= THIS_MODULE
,
2596 .release
= irda_release
,
2598 .connect
= irda_connect
,
2599 .socketpair
= sock_no_socketpair
,
2600 .accept
= irda_accept
,
2601 .getname
= irda_getname
,
2603 .ioctl
= irda_ioctl
,
2604 #ifdef CONFIG_COMPAT
2605 .compat_ioctl
= irda_compat_ioctl
,
2607 .listen
= irda_listen
,
2608 .shutdown
= irda_shutdown
,
2609 .setsockopt
= irda_setsockopt
,
2610 .getsockopt
= irda_getsockopt
,
2611 .sendmsg
= irda_sendmsg
,
2612 .recvmsg
= irda_recvmsg_stream
,
2613 .mmap
= sock_no_mmap
,
2614 .sendpage
= sock_no_sendpage
,
2617 static const struct proto_ops irda_seqpacket_ops
= {
2619 .owner
= THIS_MODULE
,
2620 .release
= irda_release
,
2622 .connect
= irda_connect
,
2623 .socketpair
= sock_no_socketpair
,
2624 .accept
= irda_accept
,
2625 .getname
= irda_getname
,
2626 .poll
= datagram_poll
,
2627 .ioctl
= irda_ioctl
,
2628 #ifdef CONFIG_COMPAT
2629 .compat_ioctl
= irda_compat_ioctl
,
2631 .listen
= irda_listen
,
2632 .shutdown
= irda_shutdown
,
2633 .setsockopt
= irda_setsockopt
,
2634 .getsockopt
= irda_getsockopt
,
2635 .sendmsg
= irda_sendmsg
,
2636 .recvmsg
= irda_recvmsg_dgram
,
2637 .mmap
= sock_no_mmap
,
2638 .sendpage
= sock_no_sendpage
,
2641 static const struct proto_ops irda_dgram_ops
= {
2643 .owner
= THIS_MODULE
,
2644 .release
= irda_release
,
2646 .connect
= irda_connect
,
2647 .socketpair
= sock_no_socketpair
,
2648 .accept
= irda_accept
,
2649 .getname
= irda_getname
,
2650 .poll
= datagram_poll
,
2651 .ioctl
= irda_ioctl
,
2652 #ifdef CONFIG_COMPAT
2653 .compat_ioctl
= irda_compat_ioctl
,
2655 .listen
= irda_listen
,
2656 .shutdown
= irda_shutdown
,
2657 .setsockopt
= irda_setsockopt
,
2658 .getsockopt
= irda_getsockopt
,
2659 .sendmsg
= irda_sendmsg_dgram
,
2660 .recvmsg
= irda_recvmsg_dgram
,
2661 .mmap
= sock_no_mmap
,
2662 .sendpage
= sock_no_sendpage
,
2665 #ifdef CONFIG_IRDA_ULTRA
2666 static const struct proto_ops irda_ultra_ops
= {
2668 .owner
= THIS_MODULE
,
2669 .release
= irda_release
,
2671 .connect
= sock_no_connect
,
2672 .socketpair
= sock_no_socketpair
,
2673 .accept
= sock_no_accept
,
2674 .getname
= irda_getname
,
2675 .poll
= datagram_poll
,
2676 .ioctl
= irda_ioctl
,
2677 #ifdef CONFIG_COMPAT
2678 .compat_ioctl
= irda_compat_ioctl
,
2680 .listen
= sock_no_listen
,
2681 .shutdown
= irda_shutdown
,
2682 .setsockopt
= irda_setsockopt
,
2683 .getsockopt
= irda_getsockopt
,
2684 .sendmsg
= irda_sendmsg_ultra
,
2685 .recvmsg
= irda_recvmsg_dgram
,
2686 .mmap
= sock_no_mmap
,
2687 .sendpage
= sock_no_sendpage
,
2689 #endif /* CONFIG_IRDA_ULTRA */
2692 * Function irsock_init (pro)
2694 * Initialize IrDA protocol
2697 int __init
irsock_init(void)
2699 int rc
= proto_register(&irda_proto
, 0);
2702 rc
= sock_register(&irda_family_ops
);
2708 * Function irsock_cleanup (void)
2710 * Remove IrDA protocol
2713 void irsock_cleanup(void)
2715 sock_unregister(PF_IRDA
);
2716 proto_unregister(&irda_proto
);