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, write to the Free Software
29 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
32 * Linux-IrDA now supports four different types of IrDA sockets:
34 * o SOCK_STREAM: TinyTP connections with SAR disabled. The
35 * max SDU size is 0 for conn. of this type
36 * o SOCK_SEQPACKET: TinyTP connections with SAR enabled. TTP may
37 * fragment the messages, but will preserve
38 * the message boundaries
39 * o SOCK_DGRAM: IRDAPROTO_UNITDATA: TinyTP connections with Unitdata
40 * (unreliable) transfers
41 * IRDAPROTO_ULTRA: Connectionless and unreliable data
43 ********************************************************************/
45 #include <linux/capability.h>
46 #include <linux/module.h>
47 #include <linux/types.h>
48 #include <linux/socket.h>
49 #include <linux/sockios.h>
50 #include <linux/init.h>
51 #include <linux/net.h>
52 #include <linux/irda.h>
53 #include <linux/poll.h>
55 #include <asm/ioctls.h> /* TIOCOUTQ, TIOCINQ */
56 #include <asm/uaccess.h>
59 #include <net/tcp_states.h>
61 #include <net/irda/af_irda.h>
63 static int irda_create(struct socket
*sock
, int protocol
);
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
;
88 IRDA_DEBUG(3, "%s()\n", __FUNCTION__
);
93 err
= sock_queue_rcv_skb(sk
, skb
);
95 IRDA_DEBUG(1, "%s(), error: no more mem!\n", __FUNCTION__
);
96 self
->rx_flow
= FLOW_STOP
;
98 /* When we return error, TTP will need to requeue the skb */
106 * Function irda_disconnect_indication (instance, sap, reason, skb)
108 * Connection has been closed. Check reason to find out why
111 static void irda_disconnect_indication(void *instance
, void *sap
,
112 LM_REASON reason
, struct sk_buff
*skb
)
114 struct irda_sock
*self
;
119 IRDA_DEBUG(2, "%s(%p)\n", __FUNCTION__
, self
);
121 /* Don't care about it, but let's not leak it */
127 IRDA_DEBUG(0, "%s(%p) : BUG : sk is NULL\n",
132 /* Prevent race conditions with irda_release() and irda_shutdown() */
134 if (!sock_flag(sk
, SOCK_DEAD
) && sk
->sk_state
!= TCP_CLOSE
) {
135 sk
->sk_state
= TCP_CLOSE
;
136 sk
->sk_shutdown
|= SEND_SHUTDOWN
;
138 sk
->sk_state_change(sk
);
141 * If we leave it open, IrLMP put it back into the list of
142 * unconnected LSAPs. The problem is that any incoming request
143 * can then be matched to this socket (and it will be, because
144 * it is at the head of the list). This would prevent any
145 * listening socket waiting on the same TSAP to get those
146 * requests. Some apps forget to close sockets, or hang to it
147 * a bit too long, so we may stay in this dead state long
148 * enough to be noticed...
149 * Note : all socket function do check sk->sk_state, so we are
154 irttp_close_tsap(self
->tsap
);
160 /* Note : once we are there, there is not much you want to do
161 * with the socket anymore, apart from closing it.
162 * For example, bind() and connect() won't reset sk->sk_err,
163 * sk->sk_shutdown and sk->sk_flags to valid values...
169 * Function irda_connect_confirm (instance, sap, qos, max_sdu_size, skb)
171 * Connections has been confirmed by the remote device
174 static void irda_connect_confirm(void *instance
, void *sap
,
175 struct qos_info
*qos
,
176 __u32 max_sdu_size
, __u8 max_header_size
,
179 struct irda_sock
*self
;
184 IRDA_DEBUG(2, "%s(%p)\n", __FUNCTION__
, self
);
193 // Should be ??? skb_queue_tail(&sk->sk_receive_queue, skb);
195 /* How much header space do we need to reserve */
196 self
->max_header_size
= max_header_size
;
198 /* IrTTP max SDU size in transmit direction */
199 self
->max_sdu_size_tx
= max_sdu_size
;
201 /* Find out what the largest chunk of data that we can transmit is */
202 switch (sk
->sk_type
) {
204 if (max_sdu_size
!= 0) {
205 IRDA_ERROR("%s: max_sdu_size must be 0\n",
209 self
->max_data_size
= irttp_get_max_seg_size(self
->tsap
);
212 if (max_sdu_size
== 0) {
213 IRDA_ERROR("%s: max_sdu_size cannot be 0\n",
217 self
->max_data_size
= max_sdu_size
;
220 self
->max_data_size
= irttp_get_max_seg_size(self
->tsap
);
223 IRDA_DEBUG(2, "%s(), max_data_size=%d\n", __FUNCTION__
,
224 self
->max_data_size
);
226 memcpy(&self
->qos_tx
, qos
, sizeof(struct qos_info
));
228 /* We are now connected! */
229 sk
->sk_state
= TCP_ESTABLISHED
;
230 sk
->sk_state_change(sk
);
234 * Function irda_connect_indication(instance, sap, qos, max_sdu_size, userdata)
236 * Incoming connection
239 static void irda_connect_indication(void *instance
, void *sap
,
240 struct qos_info
*qos
, __u32 max_sdu_size
,
241 __u8 max_header_size
, struct sk_buff
*skb
)
243 struct irda_sock
*self
;
248 IRDA_DEBUG(2, "%s(%p)\n", __FUNCTION__
, self
);
256 /* How much header space do we need to reserve */
257 self
->max_header_size
= max_header_size
;
259 /* IrTTP max SDU size in transmit direction */
260 self
->max_sdu_size_tx
= max_sdu_size
;
262 /* Find out what the largest chunk of data that we can transmit is */
263 switch (sk
->sk_type
) {
265 if (max_sdu_size
!= 0) {
266 IRDA_ERROR("%s: max_sdu_size must be 0\n",
271 self
->max_data_size
= irttp_get_max_seg_size(self
->tsap
);
274 if (max_sdu_size
== 0) {
275 IRDA_ERROR("%s: max_sdu_size cannot be 0\n",
280 self
->max_data_size
= max_sdu_size
;
283 self
->max_data_size
= irttp_get_max_seg_size(self
->tsap
);
286 IRDA_DEBUG(2, "%s(), max_data_size=%d\n", __FUNCTION__
,
287 self
->max_data_size
);
289 memcpy(&self
->qos_tx
, qos
, sizeof(struct qos_info
));
291 skb_queue_tail(&sk
->sk_receive_queue
, skb
);
292 sk
->sk_state_change(sk
);
296 * Function irda_connect_response (handle)
298 * Accept incoming connection
301 static void irda_connect_response(struct irda_sock
*self
)
305 IRDA_DEBUG(2, "%s()\n", __FUNCTION__
);
307 skb
= alloc_skb(TTP_MAX_HEADER
+ TTP_SAR_HEADER
,
310 IRDA_DEBUG(0, "%s() Unable to allocate sk_buff!\n",
315 /* Reserve space for MUX_CONTROL and LAP header */
316 skb_reserve(skb
, IRDA_MAX_HEADER
);
318 irttp_connect_response(self
->tsap
, self
->max_sdu_size_rx
, skb
);
322 * Function irda_flow_indication (instance, sap, flow)
324 * Used by TinyTP to tell us if it can accept more data or not
327 static void irda_flow_indication(void *instance
, void *sap
, LOCAL_FLOW flow
)
329 struct irda_sock
*self
;
332 IRDA_DEBUG(2, "%s()\n", __FUNCTION__
);
340 IRDA_DEBUG(1, "%s(), IrTTP wants us to slow down\n",
342 self
->tx_flow
= flow
;
345 self
->tx_flow
= flow
;
346 IRDA_DEBUG(1, "%s(), IrTTP wants us to start again\n",
348 wake_up_interruptible(sk
->sk_sleep
);
351 IRDA_DEBUG(0, "%s(), Unknown flow command!\n", __FUNCTION__
);
352 /* Unknown flow command, better stop */
353 self
->tx_flow
= flow
;
359 * Function irda_getvalue_confirm (obj_id, value, priv)
361 * Got answer from remote LM-IAS, just pass object to requester...
363 * Note : duplicate from above, but we need our own version that
364 * doesn't touch the dtsap_sel and save the full value structure...
366 static void irda_getvalue_confirm(int result
, __u16 obj_id
,
367 struct ias_value
*value
, void *priv
)
369 struct irda_sock
*self
;
371 self
= (struct irda_sock
*) priv
;
373 IRDA_WARNING("%s: lost myself!\n", __FUNCTION__
);
377 IRDA_DEBUG(2, "%s(%p)\n", __FUNCTION__
, self
);
379 /* We probably don't need to make any more queries */
380 iriap_close(self
->iriap
);
383 /* Check if request succeeded */
384 if (result
!= IAS_SUCCESS
) {
385 IRDA_DEBUG(1, "%s(), IAS query failed! (%d)\n", __FUNCTION__
,
388 self
->errno
= result
; /* We really need it later */
390 /* Wake up any processes waiting for result */
391 wake_up_interruptible(&self
->query_wait
);
396 /* Pass the object to the caller (so the caller must delete it) */
397 self
->ias_result
= value
;
400 /* Wake up any processes waiting for result */
401 wake_up_interruptible(&self
->query_wait
);
405 * Function irda_selective_discovery_indication (discovery)
407 * Got a selective discovery indication from IrLMP.
409 * IrLMP is telling us that this node is new and matching our hint bit
410 * filter. Wake up any process waiting for answer...
412 static void irda_selective_discovery_indication(discinfo_t
*discovery
,
416 struct irda_sock
*self
;
418 IRDA_DEBUG(2, "%s()\n", __FUNCTION__
);
420 self
= (struct irda_sock
*) priv
;
422 IRDA_WARNING("%s: lost myself!\n", __FUNCTION__
);
426 /* Pass parameter to the caller */
427 self
->cachedaddr
= discovery
->daddr
;
429 /* Wake up process if its waiting for device to be discovered */
430 wake_up_interruptible(&self
->query_wait
);
434 * Function irda_discovery_timeout (priv)
436 * Timeout in the selective discovery process
438 * We were waiting for a node to be discovered, but nothing has come up
439 * so far. Wake up the user and tell him that we failed...
441 static void irda_discovery_timeout(u_long priv
)
443 struct irda_sock
*self
;
445 IRDA_DEBUG(2, "%s()\n", __FUNCTION__
);
447 self
= (struct irda_sock
*) priv
;
448 BUG_ON(self
== NULL
);
450 /* Nothing for the caller */
451 self
->cachelog
= NULL
;
452 self
->cachedaddr
= 0;
453 self
->errno
= -ETIME
;
455 /* Wake up process if its still waiting... */
456 wake_up_interruptible(&self
->query_wait
);
460 * Function irda_open_tsap (self)
462 * Open local Transport Service Access Point (TSAP)
465 static int irda_open_tsap(struct irda_sock
*self
, __u8 tsap_sel
, char *name
)
470 IRDA_WARNING("%s: busy!\n", __FUNCTION__
);
474 /* Initialize callbacks to be used by the IrDA stack */
475 irda_notify_init(¬ify
);
476 notify
.connect_confirm
= irda_connect_confirm
;
477 notify
.connect_indication
= irda_connect_indication
;
478 notify
.disconnect_indication
= irda_disconnect_indication
;
479 notify
.data_indication
= irda_data_indication
;
480 notify
.udata_indication
= irda_data_indication
;
481 notify
.flow_indication
= irda_flow_indication
;
482 notify
.instance
= self
;
483 strncpy(notify
.name
, name
, NOTIFY_MAX_NAME
);
485 self
->tsap
= irttp_open_tsap(tsap_sel
, DEFAULT_INITIAL_CREDIT
,
487 if (self
->tsap
== NULL
) {
488 IRDA_DEBUG(0, "%s(), Unable to allocate TSAP!\n",
492 /* Remember which TSAP selector we actually got */
493 self
->stsap_sel
= self
->tsap
->stsap_sel
;
499 * Function irda_open_lsap (self)
501 * Open local Link Service Access Point (LSAP). Used for opening Ultra
504 #ifdef CONFIG_IRDA_ULTRA
505 static int irda_open_lsap(struct irda_sock
*self
, int pid
)
510 IRDA_WARNING("%s(), busy!\n", __FUNCTION__
);
514 /* Initialize callbacks to be used by the IrDA stack */
515 irda_notify_init(¬ify
);
516 notify
.udata_indication
= irda_data_indication
;
517 notify
.instance
= self
;
518 strncpy(notify
.name
, "Ultra", NOTIFY_MAX_NAME
);
520 self
->lsap
= irlmp_open_lsap(LSAP_CONNLESS
, ¬ify
, pid
);
521 if (self
->lsap
== NULL
) {
522 IRDA_DEBUG( 0, "%s(), Unable to allocate LSAP!\n", __FUNCTION__
);
528 #endif /* CONFIG_IRDA_ULTRA */
531 * Function irda_find_lsap_sel (self, name)
533 * Try to lookup LSAP selector in remote LM-IAS
535 * Basically, we start a IAP query, and then go to sleep. When the query
536 * return, irda_getvalue_confirm will wake us up, and we can examine the
537 * result of the query...
538 * Note that in some case, the query fail even before we go to sleep,
539 * creating some races...
541 static int irda_find_lsap_sel(struct irda_sock
*self
, char *name
)
543 IRDA_DEBUG(2, "%s(%p, %s)\n", __FUNCTION__
, self
, name
);
546 IRDA_WARNING("%s(): busy with a previous query\n",
551 self
->iriap
= iriap_open(LSAP_ANY
, IAS_CLIENT
, self
,
552 irda_getvalue_confirm
);
553 if(self
->iriap
== NULL
)
556 /* Treat unexpected wakeup as disconnect */
557 self
->errno
= -EHOSTUNREACH
;
559 /* Query remote LM-IAS */
560 iriap_getvaluebyclass_request(self
->iriap
, self
->saddr
, self
->daddr
,
561 name
, "IrDA:TinyTP:LsapSel");
563 /* Wait for answer, if not yet finished (or failed) */
564 if (wait_event_interruptible(self
->query_wait
, (self
->iriap
==NULL
)))
565 /* Treat signals as disconnect */
566 return -EHOSTUNREACH
;
568 /* Check what happened */
571 /* Requested object/attribute doesn't exist */
572 if((self
->errno
== IAS_CLASS_UNKNOWN
) ||
573 (self
->errno
== IAS_ATTRIB_UNKNOWN
))
574 return (-EADDRNOTAVAIL
);
576 return (-EHOSTUNREACH
);
579 /* Get the remote TSAP selector */
580 switch (self
->ias_result
->type
) {
582 IRDA_DEBUG(4, "%s() int=%d\n",
583 __FUNCTION__
, self
->ias_result
->t
.integer
);
585 if (self
->ias_result
->t
.integer
!= -1)
586 self
->dtsap_sel
= self
->ias_result
->t
.integer
;
592 IRDA_DEBUG(0, "%s(), bad type!\n", __FUNCTION__
);
595 if (self
->ias_result
)
596 irias_delete_value(self
->ias_result
);
601 return -EADDRNOTAVAIL
;
605 * Function irda_discover_daddr_and_lsap_sel (self, name)
607 * This try to find a device with the requested service.
609 * It basically look into the discovery log. For each address in the list,
610 * it queries the LM-IAS of the device to find if this device offer
611 * the requested service.
612 * If there is more than one node supporting the service, we complain
613 * to the user (it should move devices around).
614 * The, we set both the destination address and the lsap selector to point
615 * on the service on the unique device we have found.
617 * Note : this function fails if there is more than one device in range,
618 * because IrLMP doesn't disconnect the LAP when the last LSAP is closed.
619 * Moreover, we would need to wait the LAP disconnection...
621 static int irda_discover_daddr_and_lsap_sel(struct irda_sock
*self
, char *name
)
623 discinfo_t
*discoveries
; /* Copy of the discovery log */
624 int number
; /* Number of nodes in the log */
626 int err
= -ENETUNREACH
;
627 __u32 daddr
= DEV_ADDR_ANY
; /* Address we found the service on */
628 __u8 dtsap_sel
= 0x0; /* TSAP associated with it */
630 IRDA_DEBUG(2, "%s(), name=%s\n", __FUNCTION__
, name
);
632 /* Ask lmp for the current discovery log
633 * Note : we have to use irlmp_get_discoveries(), as opposed
634 * to play with the cachelog directly, because while we are
635 * making our ias query, le log might change... */
636 discoveries
= irlmp_get_discoveries(&number
, self
->mask
.word
,
638 /* Check if the we got some results */
639 if (discoveries
== NULL
)
640 return -ENETUNREACH
; /* No nodes discovered */
643 * Now, check all discovered devices (if any), and connect
644 * client only about the services that the client is
647 for(i
= 0; i
< number
; i
++) {
648 /* Try the address in the log */
649 self
->daddr
= discoveries
[i
].daddr
;
651 IRDA_DEBUG(1, "%s(), trying daddr = %08x\n",
652 __FUNCTION__
, self
->daddr
);
654 /* Query remote LM-IAS for this service */
655 err
= irda_find_lsap_sel(self
, name
);
658 /* We found the requested service */
659 if(daddr
!= DEV_ADDR_ANY
) {
660 IRDA_DEBUG(1, "%s(), discovered service ''%s'' in two different devices !!!\n",
662 self
->daddr
= DEV_ADDR_ANY
;
666 /* First time we found that one, save it ! */
668 dtsap_sel
= self
->dtsap_sel
;
671 /* Requested service simply doesn't exist on this node */
674 /* Something bad did happen :-( */
675 IRDA_DEBUG(0, "%s(), unexpected IAS query failure\n", __FUNCTION__
);
676 self
->daddr
= DEV_ADDR_ANY
;
678 return(-EHOSTUNREACH
);
682 /* Cleanup our copy of the discovery log */
685 /* Check out what we found */
686 if(daddr
== DEV_ADDR_ANY
) {
687 IRDA_DEBUG(1, "%s(), cannot discover service ''%s'' in any device !!!\n",
689 self
->daddr
= DEV_ADDR_ANY
;
690 return(-EADDRNOTAVAIL
);
693 /* Revert back to discovered device & service */
696 self
->dtsap_sel
= dtsap_sel
;
698 IRDA_DEBUG(1, "%s(), discovered requested service ''%s'' at address %08x\n",
699 __FUNCTION__
, name
, self
->daddr
);
705 * Function irda_getname (sock, uaddr, uaddr_len, peer)
707 * Return the our own, or peers socket address (sockaddr_irda)
710 static int irda_getname(struct socket
*sock
, struct sockaddr
*uaddr
,
711 int *uaddr_len
, int peer
)
713 struct sockaddr_irda saddr
;
714 struct sock
*sk
= sock
->sk
;
715 struct irda_sock
*self
= irda_sk(sk
);
718 if (sk
->sk_state
!= TCP_ESTABLISHED
)
721 saddr
.sir_family
= AF_IRDA
;
722 saddr
.sir_lsap_sel
= self
->dtsap_sel
;
723 saddr
.sir_addr
= self
->daddr
;
725 saddr
.sir_family
= AF_IRDA
;
726 saddr
.sir_lsap_sel
= self
->stsap_sel
;
727 saddr
.sir_addr
= self
->saddr
;
730 IRDA_DEBUG(1, "%s(), tsap_sel = %#x\n", __FUNCTION__
, saddr
.sir_lsap_sel
);
731 IRDA_DEBUG(1, "%s(), addr = %08x\n", __FUNCTION__
, saddr
.sir_addr
);
733 /* uaddr_len come to us uninitialised */
734 *uaddr_len
= sizeof (struct sockaddr_irda
);
735 memcpy(uaddr
, &saddr
, *uaddr_len
);
741 * Function irda_listen (sock, backlog)
743 * Just move to the listen state
746 static int irda_listen(struct socket
*sock
, int backlog
)
748 struct sock
*sk
= sock
->sk
;
750 IRDA_DEBUG(2, "%s()\n", __FUNCTION__
);
752 if ((sk
->sk_type
!= SOCK_STREAM
) && (sk
->sk_type
!= SOCK_SEQPACKET
) &&
753 (sk
->sk_type
!= SOCK_DGRAM
))
756 if (sk
->sk_state
!= TCP_LISTEN
) {
757 sk
->sk_max_ack_backlog
= backlog
;
758 sk
->sk_state
= TCP_LISTEN
;
767 * Function irda_bind (sock, uaddr, addr_len)
769 * Used by servers to register their well known TSAP
772 static int irda_bind(struct socket
*sock
, struct sockaddr
*uaddr
, int addr_len
)
774 struct sock
*sk
= sock
->sk
;
775 struct sockaddr_irda
*addr
= (struct sockaddr_irda
*) uaddr
;
776 struct irda_sock
*self
= irda_sk(sk
);
779 IRDA_DEBUG(2, "%s(%p)\n", __FUNCTION__
, self
);
781 if (addr_len
!= sizeof(struct sockaddr_irda
))
784 #ifdef CONFIG_IRDA_ULTRA
785 /* Special care for Ultra sockets */
786 if ((sk
->sk_type
== SOCK_DGRAM
) &&
787 (sk
->sk_protocol
== IRDAPROTO_ULTRA
)) {
788 self
->pid
= addr
->sir_lsap_sel
;
789 if (self
->pid
& 0x80) {
790 IRDA_DEBUG(0, "%s(), extension in PID not supp!\n", __FUNCTION__
);
793 err
= irda_open_lsap(self
, self
->pid
);
797 /* Pretend we are connected */
798 sock
->state
= SS_CONNECTED
;
799 sk
->sk_state
= TCP_ESTABLISHED
;
803 #endif /* CONFIG_IRDA_ULTRA */
805 err
= irda_open_tsap(self
, addr
->sir_lsap_sel
, addr
->sir_name
);
809 /* Register with LM-IAS */
810 self
->ias_obj
= irias_new_object(addr
->sir_name
, jiffies
);
811 irias_add_integer_attrib(self
->ias_obj
, "IrDA:TinyTP:LsapSel",
812 self
->stsap_sel
, IAS_KERNEL_ATTR
);
813 irias_insert_object(self
->ias_obj
);
819 * Function irda_accept (sock, newsock, flags)
821 * Wait for incoming connection
824 static int irda_accept(struct socket
*sock
, struct socket
*newsock
, int flags
)
826 struct sock
*sk
= sock
->sk
;
827 struct irda_sock
*new, *self
= irda_sk(sk
);
832 IRDA_DEBUG(2, "%s()\n", __FUNCTION__
);
834 err
= irda_create(newsock
, sk
->sk_protocol
);
838 if (sock
->state
!= SS_UNCONNECTED
)
841 if ((sk
= sock
->sk
) == NULL
)
844 if ((sk
->sk_type
!= SOCK_STREAM
) && (sk
->sk_type
!= SOCK_SEQPACKET
) &&
845 (sk
->sk_type
!= SOCK_DGRAM
))
848 if (sk
->sk_state
!= TCP_LISTEN
)
852 * The read queue this time is holding sockets ready to use
853 * hooked into the SABM we saved
857 * We can perform the accept only if there is incoming data
858 * on the listening socket.
859 * So, we will block the caller until we receive any data.
860 * If the caller was waiting on select() or poll() before
861 * calling us, the data is waiting for us ;-)
865 skb
= skb_dequeue(&sk
->sk_receive_queue
);
869 /* Non blocking operation */
870 if (flags
& O_NONBLOCK
)
873 err
= wait_event_interruptible(*(sk
->sk_sleep
),
874 skb_peek(&sk
->sk_receive_queue
));
883 newsk
->sk_state
= TCP_ESTABLISHED
;
885 new = irda_sk(newsk
);
887 /* Now attach up the new socket */
888 new->tsap
= irttp_dup(self
->tsap
, new);
890 IRDA_DEBUG(0, "%s(), dup failed!\n", __FUNCTION__
);
895 new->stsap_sel
= new->tsap
->stsap_sel
;
896 new->dtsap_sel
= new->tsap
->dtsap_sel
;
897 new->saddr
= irttp_get_saddr(new->tsap
);
898 new->daddr
= irttp_get_daddr(new->tsap
);
900 new->max_sdu_size_tx
= self
->max_sdu_size_tx
;
901 new->max_sdu_size_rx
= self
->max_sdu_size_rx
;
902 new->max_data_size
= self
->max_data_size
;
903 new->max_header_size
= self
->max_header_size
;
905 memcpy(&new->qos_tx
, &self
->qos_tx
, sizeof(struct qos_info
));
907 /* Clean up the original one to keep it in listen state */
908 irttp_listen(self
->tsap
);
910 /* Wow ! What is that ? Jean II */
912 skb
->destructor
= NULL
;
914 sk
->sk_ack_backlog
--;
916 newsock
->state
= SS_CONNECTED
;
918 irda_connect_response(new);
924 * Function irda_connect (sock, uaddr, addr_len, flags)
926 * Connect to a IrDA device
928 * The main difference with a "standard" connect is that with IrDA we need
929 * to resolve the service name into a TSAP selector (in TCP, port number
930 * doesn't have to be resolved).
931 * Because of this service name resoltion, we can offer "auto-connect",
932 * where we connect to a service without specifying a destination address.
934 * Note : by consulting "errno", the user space caller may learn the cause
935 * of the failure. Most of them are visible in the function, others may come
936 * from subroutines called and are listed here :
937 * o EBUSY : already processing a connect
938 * o EHOSTUNREACH : bad addr->sir_addr argument
939 * o EADDRNOTAVAIL : bad addr->sir_name argument
940 * o ENOTUNIQ : more than one node has addr->sir_name (auto-connect)
941 * o ENETUNREACH : no node found on the network (auto-connect)
943 static int irda_connect(struct socket
*sock
, struct sockaddr
*uaddr
,
944 int addr_len
, int flags
)
946 struct sock
*sk
= sock
->sk
;
947 struct sockaddr_irda
*addr
= (struct sockaddr_irda
*) uaddr
;
948 struct irda_sock
*self
= irda_sk(sk
);
951 IRDA_DEBUG(2, "%s(%p)\n", __FUNCTION__
, self
);
953 /* Don't allow connect for Ultra sockets */
954 if ((sk
->sk_type
== SOCK_DGRAM
) && (sk
->sk_protocol
== IRDAPROTO_ULTRA
))
955 return -ESOCKTNOSUPPORT
;
957 if (sk
->sk_state
== TCP_ESTABLISHED
&& sock
->state
== SS_CONNECTING
) {
958 sock
->state
= SS_CONNECTED
;
959 return 0; /* Connect completed during a ERESTARTSYS event */
962 if (sk
->sk_state
== TCP_CLOSE
&& sock
->state
== SS_CONNECTING
) {
963 sock
->state
= SS_UNCONNECTED
;
964 return -ECONNREFUSED
;
967 if (sk
->sk_state
== TCP_ESTABLISHED
)
968 return -EISCONN
; /* No reconnect on a seqpacket socket */
970 sk
->sk_state
= TCP_CLOSE
;
971 sock
->state
= SS_UNCONNECTED
;
973 if (addr_len
!= sizeof(struct sockaddr_irda
))
976 /* Check if user supplied any destination device address */
977 if ((!addr
->sir_addr
) || (addr
->sir_addr
== DEV_ADDR_ANY
)) {
978 /* Try to find one suitable */
979 err
= irda_discover_daddr_and_lsap_sel(self
, addr
->sir_name
);
981 IRDA_DEBUG(0, "%s(), auto-connect failed!\n", __FUNCTION__
);
985 /* Use the one provided by the user */
986 self
->daddr
= addr
->sir_addr
;
987 IRDA_DEBUG(1, "%s(), daddr = %08x\n", __FUNCTION__
, self
->daddr
);
989 /* If we don't have a valid service name, we assume the
990 * user want to connect on a specific LSAP. Prevent
991 * the use of invalid LSAPs (IrLMP 1.1 p10). Jean II */
992 if((addr
->sir_name
[0] != '\0') ||
993 (addr
->sir_lsap_sel
>= 0x70)) {
994 /* Query remote LM-IAS using service name */
995 err
= irda_find_lsap_sel(self
, addr
->sir_name
);
997 IRDA_DEBUG(0, "%s(), connect failed!\n", __FUNCTION__
);
1001 /* Directly connect to the remote LSAP
1002 * specified by the sir_lsap field.
1003 * Please use with caution, in IrDA LSAPs are
1004 * dynamic and there is no "well-known" LSAP. */
1005 self
->dtsap_sel
= addr
->sir_lsap_sel
;
1009 /* Check if we have opened a local TSAP */
1011 irda_open_tsap(self
, LSAP_ANY
, addr
->sir_name
);
1013 /* Move to connecting socket, start sending Connect Requests */
1014 sock
->state
= SS_CONNECTING
;
1015 sk
->sk_state
= TCP_SYN_SENT
;
1017 /* Connect to remote device */
1018 err
= irttp_connect_request(self
->tsap
, self
->dtsap_sel
,
1019 self
->saddr
, self
->daddr
, NULL
,
1020 self
->max_sdu_size_rx
, NULL
);
1022 IRDA_DEBUG(0, "%s(), connect failed!\n", __FUNCTION__
);
1027 if (sk
->sk_state
!= TCP_ESTABLISHED
&& (flags
& O_NONBLOCK
))
1028 return -EINPROGRESS
;
1030 if (wait_event_interruptible(*(sk
->sk_sleep
),
1031 (sk
->sk_state
!= TCP_SYN_SENT
)))
1032 return -ERESTARTSYS
;
1034 if (sk
->sk_state
!= TCP_ESTABLISHED
) {
1035 sock
->state
= SS_UNCONNECTED
;
1036 err
= sock_error(sk
);
1037 return err
? err
: -ECONNRESET
;
1040 sock
->state
= SS_CONNECTED
;
1042 /* At this point, IrLMP has assigned our source address */
1043 self
->saddr
= irttp_get_saddr(self
->tsap
);
1048 static struct proto irda_proto
= {
1050 .owner
= THIS_MODULE
,
1051 .obj_size
= sizeof(struct irda_sock
),
1055 * Function irda_create (sock, protocol)
1057 * Create IrDA socket
1060 static int irda_create(struct socket
*sock
, int protocol
)
1063 struct irda_sock
*self
;
1065 IRDA_DEBUG(2, "%s()\n", __FUNCTION__
);
1067 /* Check for valid socket type */
1068 switch (sock
->type
) {
1069 case SOCK_STREAM
: /* For TTP connections with SAR disabled */
1070 case SOCK_SEQPACKET
: /* For TTP connections with SAR enabled */
1071 case SOCK_DGRAM
: /* For TTP Unitdata or LMP Ultra transfers */
1074 return -ESOCKTNOSUPPORT
;
1077 /* Allocate networking socket */
1078 sk
= sk_alloc(PF_IRDA
, GFP_ATOMIC
, &irda_proto
, 1);
1083 IRDA_DEBUG(2, "%s() : self is %p\n", __FUNCTION__
, self
);
1085 init_waitqueue_head(&self
->query_wait
);
1087 /* Initialise networking socket struct */
1088 sock_init_data(sock
, sk
); /* Note : set sk->sk_refcnt to 1 */
1089 sk
->sk_family
= PF_IRDA
;
1090 sk
->sk_protocol
= protocol
;
1092 switch (sock
->type
) {
1094 sock
->ops
= &irda_stream_ops
;
1095 self
->max_sdu_size_rx
= TTP_SAR_DISABLE
;
1097 case SOCK_SEQPACKET
:
1098 sock
->ops
= &irda_seqpacket_ops
;
1099 self
->max_sdu_size_rx
= TTP_SAR_UNBOUND
;
1103 #ifdef CONFIG_IRDA_ULTRA
1104 case IRDAPROTO_ULTRA
:
1105 sock
->ops
= &irda_ultra_ops
;
1106 /* Initialise now, because we may send on unbound
1107 * sockets. Jean II */
1108 self
->max_data_size
= ULTRA_MAX_DATA
- LMP_PID_HEADER
;
1109 self
->max_header_size
= IRDA_MAX_HEADER
+ LMP_PID_HEADER
;
1111 #endif /* CONFIG_IRDA_ULTRA */
1112 case IRDAPROTO_UNITDATA
:
1113 sock
->ops
= &irda_dgram_ops
;
1114 /* We let Unitdata conn. be like seqpack conn. */
1115 self
->max_sdu_size_rx
= TTP_SAR_UNBOUND
;
1118 IRDA_ERROR("%s: protocol not supported!\n",
1120 return -ESOCKTNOSUPPORT
;
1124 return -ESOCKTNOSUPPORT
;
1127 /* Register as a client with IrLMP */
1128 self
->ckey
= irlmp_register_client(0, NULL
, NULL
, NULL
);
1129 self
->mask
.word
= 0xffff;
1130 self
->rx_flow
= self
->tx_flow
= FLOW_START
;
1131 self
->nslots
= DISCOVERY_DEFAULT_SLOTS
;
1132 self
->daddr
= DEV_ADDR_ANY
; /* Until we get connected */
1133 self
->saddr
= 0x0; /* so IrLMP assign us any link */
1138 * Function irda_destroy_socket (self)
1143 static void irda_destroy_socket(struct irda_sock
*self
)
1145 IRDA_DEBUG(2, "%s(%p)\n", __FUNCTION__
, self
);
1147 /* Unregister with IrLMP */
1148 irlmp_unregister_client(self
->ckey
);
1149 irlmp_unregister_service(self
->skey
);
1151 /* Unregister with LM-IAS */
1152 if (self
->ias_obj
) {
1153 irias_delete_object(self
->ias_obj
);
1154 self
->ias_obj
= NULL
;
1158 iriap_close(self
->iriap
);
1163 irttp_disconnect_request(self
->tsap
, NULL
, P_NORMAL
);
1164 irttp_close_tsap(self
->tsap
);
1167 #ifdef CONFIG_IRDA_ULTRA
1169 irlmp_close_lsap(self
->lsap
);
1172 #endif /* CONFIG_IRDA_ULTRA */
1176 * Function irda_release (sock)
1178 static int irda_release(struct socket
*sock
)
1180 struct sock
*sk
= sock
->sk
;
1182 IRDA_DEBUG(2, "%s()\n", __FUNCTION__
);
1188 sk
->sk_state
= TCP_CLOSE
;
1189 sk
->sk_shutdown
|= SEND_SHUTDOWN
;
1190 sk
->sk_state_change(sk
);
1192 /* Destroy IrDA socket */
1193 irda_destroy_socket(irda_sk(sk
));
1199 /* Purge queues (see sock_init_data()) */
1200 skb_queue_purge(&sk
->sk_receive_queue
);
1202 /* Destroy networking socket if we are the last reference on it,
1203 * i.e. if(sk->sk_refcnt == 0) -> sk_free(sk) */
1206 /* Notes on socket locking and deallocation... - Jean II
1207 * In theory we should put pairs of sock_hold() / sock_put() to
1208 * prevent the socket to be destroyed whenever there is an
1209 * outstanding request or outstanding incoming packet or event.
1211 * 1) This may include IAS request, both in connect and getsockopt.
1212 * Unfortunately, the situation is a bit more messy than it looks,
1213 * because we close iriap and kfree(self) above.
1215 * 2) This may include selective discovery in getsockopt.
1216 * Same stuff as above, irlmp registration and self are gone.
1218 * Probably 1 and 2 may not matter, because it's all triggered
1219 * by a process and the socket layer already prevent the
1220 * socket to go away while a process is holding it, through
1221 * sockfd_put() and fput()...
1223 * 3) This may include deferred TSAP closure. In particular,
1224 * we may receive a late irda_disconnect_indication()
1225 * Fortunately, (tsap_cb *)->close_pend should protect us
1228 * I did some testing on SMP, and it looks solid. And the socket
1229 * memory leak is now gone... - Jean II
1236 * Function irda_sendmsg (iocb, sock, msg, len)
1238 * Send message down to TinyTP. This function is used for both STREAM and
1239 * SEQPACK services. This is possible since it forces the client to
1240 * fragment the message if necessary
1242 static int irda_sendmsg(struct kiocb
*iocb
, struct socket
*sock
,
1243 struct msghdr
*msg
, size_t len
)
1245 struct sock
*sk
= sock
->sk
;
1246 struct irda_sock
*self
;
1247 struct sk_buff
*skb
;
1250 IRDA_DEBUG(4, "%s(), len=%zd\n", __FUNCTION__
, len
);
1252 /* Note : socket.c set MSG_EOR on SEQPACKET sockets */
1253 if (msg
->msg_flags
& ~(MSG_DONTWAIT
|MSG_EOR
|MSG_CMSG_COMPAT
))
1256 if (sk
->sk_shutdown
& SEND_SHUTDOWN
) {
1257 send_sig(SIGPIPE
, current
, 0);
1261 if (sk
->sk_state
!= TCP_ESTABLISHED
)
1266 /* Check if IrTTP is wants us to slow down */
1268 if (wait_event_interruptible(*(sk
->sk_sleep
),
1269 (self
->tx_flow
!= FLOW_STOP
|| sk
->sk_state
!= TCP_ESTABLISHED
)))
1270 return -ERESTARTSYS
;
1272 /* Check if we are still connected */
1273 if (sk
->sk_state
!= TCP_ESTABLISHED
)
1276 /* Check that we don't send out too big frames */
1277 if (len
> self
->max_data_size
) {
1278 IRDA_DEBUG(2, "%s(), Chopping frame from %zd to %d bytes!\n",
1279 __FUNCTION__
, len
, self
->max_data_size
);
1280 len
= self
->max_data_size
;
1283 skb
= sock_alloc_send_skb(sk
, len
+ self
->max_header_size
+ 16,
1284 msg
->msg_flags
& MSG_DONTWAIT
, &err
);
1288 skb_reserve(skb
, self
->max_header_size
+ 16);
1289 skb_reset_transport_header(skb
);
1291 err
= memcpy_fromiovec(skb_transport_header(skb
), msg
->msg_iov
, len
);
1298 * Just send the message to TinyTP, and let it deal with possible
1299 * errors. No need to duplicate all that here
1301 err
= irttp_data_request(self
->tsap
, skb
);
1303 IRDA_DEBUG(0, "%s(), err=%d\n", __FUNCTION__
, err
);
1306 /* Tell client how much data we actually sent */
1311 * Function irda_recvmsg_dgram (iocb, sock, msg, size, flags)
1313 * Try to receive message and copy it to user. The frame is discarded
1314 * after being read, regardless of how much the user actually read
1316 static int irda_recvmsg_dgram(struct kiocb
*iocb
, struct socket
*sock
,
1317 struct msghdr
*msg
, size_t size
, int flags
)
1319 struct sock
*sk
= sock
->sk
;
1320 struct irda_sock
*self
= irda_sk(sk
);
1321 struct sk_buff
*skb
;
1325 IRDA_DEBUG(4, "%s()\n", __FUNCTION__
);
1327 if ((err
= sock_error(sk
)) < 0)
1330 skb
= skb_recv_datagram(sk
, flags
& ~MSG_DONTWAIT
,
1331 flags
& MSG_DONTWAIT
, &err
);
1335 skb_reset_transport_header(skb
);
1338 if (copied
> size
) {
1339 IRDA_DEBUG(2, "%s(), Received truncated frame (%zd < %zd)!\n",
1340 __FUNCTION__
, copied
, size
);
1342 msg
->msg_flags
|= MSG_TRUNC
;
1344 skb_copy_datagram_iovec(skb
, 0, msg
->msg_iov
, copied
);
1346 skb_free_datagram(sk
, skb
);
1349 * Check if we have previously stopped IrTTP and we know
1350 * have more free space in our rx_queue. If so tell IrTTP
1351 * to start delivering frames again before our rx_queue gets
1354 if (self
->rx_flow
== FLOW_STOP
) {
1355 if ((atomic_read(&sk
->sk_rmem_alloc
) << 2) <= sk
->sk_rcvbuf
) {
1356 IRDA_DEBUG(2, "%s(), Starting IrTTP\n", __FUNCTION__
);
1357 self
->rx_flow
= FLOW_START
;
1358 irttp_flow_request(self
->tsap
, FLOW_START
);
1366 * Function irda_recvmsg_stream (iocb, sock, msg, size, flags)
1368 static int irda_recvmsg_stream(struct kiocb
*iocb
, struct socket
*sock
,
1369 struct msghdr
*msg
, size_t size
, int flags
)
1371 struct sock
*sk
= sock
->sk
;
1372 struct irda_sock
*self
= irda_sk(sk
);
1373 int noblock
= flags
& MSG_DONTWAIT
;
1378 IRDA_DEBUG(3, "%s()\n", __FUNCTION__
);
1380 if ((err
= sock_error(sk
)) < 0)
1383 if (sock
->flags
& __SO_ACCEPTCON
)
1386 if (flags
& MSG_OOB
)
1389 target
= sock_rcvlowat(sk
, flags
& MSG_WAITALL
, size
);
1390 timeo
= sock_rcvtimeo(sk
, noblock
);
1392 msg
->msg_namelen
= 0;
1396 struct sk_buff
*skb
= skb_dequeue(&sk
->sk_receive_queue
);
1402 if (copied
>= target
)
1405 prepare_to_wait_exclusive(sk
->sk_sleep
, &wait
, TASK_INTERRUPTIBLE
);
1408 * POSIX 1003.1g mandates this order.
1410 ret
= sock_error(sk
);
1413 else if (sk
->sk_shutdown
& RCV_SHUTDOWN
)
1417 else if (signal_pending(current
))
1418 ret
= sock_intr_errno(timeo
);
1419 else if (sk
->sk_state
!= TCP_ESTABLISHED
)
1421 else if (skb_peek(&sk
->sk_receive_queue
) == NULL
)
1422 /* Wait process until data arrives */
1425 finish_wait(sk
->sk_sleep
, &wait
);
1429 if (sk
->sk_shutdown
& RCV_SHUTDOWN
)
1435 chunk
= min_t(unsigned int, skb
->len
, size
);
1436 if (memcpy_toiovec(msg
->msg_iov
, skb
->data
, chunk
)) {
1437 skb_queue_head(&sk
->sk_receive_queue
, skb
);
1445 /* Mark read part of skb as used */
1446 if (!(flags
& MSG_PEEK
)) {
1447 skb_pull(skb
, chunk
);
1449 /* put the skb back if we didn't use it up.. */
1451 IRDA_DEBUG(1, "%s(), back on q!\n",
1453 skb_queue_head(&sk
->sk_receive_queue
, skb
);
1459 IRDA_DEBUG(0, "%s() questionable!?\n", __FUNCTION__
);
1461 /* put message back and return */
1462 skb_queue_head(&sk
->sk_receive_queue
, skb
);
1468 * Check if we have previously stopped IrTTP and we know
1469 * have more free space in our rx_queue. If so tell IrTTP
1470 * to start delivering frames again before our rx_queue gets
1473 if (self
->rx_flow
== FLOW_STOP
) {
1474 if ((atomic_read(&sk
->sk_rmem_alloc
) << 2) <= sk
->sk_rcvbuf
) {
1475 IRDA_DEBUG(2, "%s(), Starting IrTTP\n", __FUNCTION__
);
1476 self
->rx_flow
= FLOW_START
;
1477 irttp_flow_request(self
->tsap
, FLOW_START
);
1485 * Function irda_sendmsg_dgram (iocb, sock, msg, len)
1487 * Send message down to TinyTP for the unreliable sequenced
1491 static int irda_sendmsg_dgram(struct kiocb
*iocb
, struct socket
*sock
,
1492 struct msghdr
*msg
, size_t len
)
1494 struct sock
*sk
= sock
->sk
;
1495 struct irda_sock
*self
;
1496 struct sk_buff
*skb
;
1499 IRDA_DEBUG(4, "%s(), len=%zd\n", __FUNCTION__
, len
);
1501 if (msg
->msg_flags
& ~(MSG_DONTWAIT
|MSG_CMSG_COMPAT
))
1504 if (sk
->sk_shutdown
& SEND_SHUTDOWN
) {
1505 send_sig(SIGPIPE
, current
, 0);
1509 if (sk
->sk_state
!= TCP_ESTABLISHED
)
1515 * Check that we don't send out too big frames. This is an unreliable
1516 * service, so we have no fragmentation and no coalescence
1518 if (len
> self
->max_data_size
) {
1519 IRDA_DEBUG(0, "%s(), Warning to much data! "
1520 "Chopping frame from %zd to %d bytes!\n",
1521 __FUNCTION__
, len
, self
->max_data_size
);
1522 len
= self
->max_data_size
;
1525 skb
= sock_alloc_send_skb(sk
, len
+ self
->max_header_size
,
1526 msg
->msg_flags
& MSG_DONTWAIT
, &err
);
1530 skb_reserve(skb
, self
->max_header_size
);
1531 skb_reset_transport_header(skb
);
1533 IRDA_DEBUG(4, "%s(), appending user data\n", __FUNCTION__
);
1535 err
= memcpy_fromiovec(skb_transport_header(skb
), msg
->msg_iov
, len
);
1542 * Just send the message to TinyTP, and let it deal with possible
1543 * errors. No need to duplicate all that here
1545 err
= irttp_udata_request(self
->tsap
, skb
);
1547 IRDA_DEBUG(0, "%s(), err=%d\n", __FUNCTION__
, err
);
1554 * Function irda_sendmsg_ultra (iocb, sock, msg, len)
1556 * Send message down to IrLMP for the unreliable Ultra
1559 #ifdef CONFIG_IRDA_ULTRA
1560 static int irda_sendmsg_ultra(struct kiocb
*iocb
, struct socket
*sock
,
1561 struct msghdr
*msg
, size_t len
)
1563 struct sock
*sk
= sock
->sk
;
1564 struct irda_sock
*self
;
1567 struct sk_buff
*skb
;
1570 IRDA_DEBUG(4, "%s(), len=%zd\n", __FUNCTION__
, len
);
1572 if (msg
->msg_flags
& ~(MSG_DONTWAIT
|MSG_CMSG_COMPAT
))
1575 if (sk
->sk_shutdown
& SEND_SHUTDOWN
) {
1576 send_sig(SIGPIPE
, current
, 0);
1582 /* Check if an address was specified with sendto. Jean II */
1583 if (msg
->msg_name
) {
1584 struct sockaddr_irda
*addr
= (struct sockaddr_irda
*) msg
->msg_name
;
1585 /* Check address, extract pid. Jean II */
1586 if (msg
->msg_namelen
< sizeof(*addr
))
1588 if (addr
->sir_family
!= AF_IRDA
)
1591 pid
= addr
->sir_lsap_sel
;
1593 IRDA_DEBUG(0, "%s(), extension in PID not supp!\n", __FUNCTION__
);
1597 /* Check that the socket is properly bound to an Ultra
1599 if ((self
->lsap
== NULL
) ||
1600 (sk
->sk_state
!= TCP_ESTABLISHED
)) {
1601 IRDA_DEBUG(0, "%s(), socket not bound to Ultra PID.\n",
1605 /* Use PID from socket */
1610 * Check that we don't send out too big frames. This is an unreliable
1611 * service, so we have no fragmentation and no coalescence
1613 if (len
> self
->max_data_size
) {
1614 IRDA_DEBUG(0, "%s(), Warning to much data! "
1615 "Chopping frame from %zd to %d bytes!\n",
1616 __FUNCTION__
, len
, self
->max_data_size
);
1617 len
= self
->max_data_size
;
1620 skb
= sock_alloc_send_skb(sk
, len
+ self
->max_header_size
,
1621 msg
->msg_flags
& MSG_DONTWAIT
, &err
);
1625 skb_reserve(skb
, self
->max_header_size
);
1626 skb_reset_transport_header(skb
);
1628 IRDA_DEBUG(4, "%s(), appending user data\n", __FUNCTION__
);
1630 err
= memcpy_fromiovec(skb_transport_header(skb
), msg
->msg_iov
, len
);
1636 err
= irlmp_connless_data_request((bound
? self
->lsap
: NULL
),
1639 IRDA_DEBUG(0, "%s(), err=%d\n", __FUNCTION__
, err
);
1644 #endif /* CONFIG_IRDA_ULTRA */
1647 * Function irda_shutdown (sk, how)
1649 static int irda_shutdown(struct socket
*sock
, int how
)
1651 struct sock
*sk
= sock
->sk
;
1652 struct irda_sock
*self
= irda_sk(sk
);
1654 IRDA_DEBUG(1, "%s(%p)\n", __FUNCTION__
, self
);
1656 sk
->sk_state
= TCP_CLOSE
;
1657 sk
->sk_shutdown
|= SEND_SHUTDOWN
;
1658 sk
->sk_state_change(sk
);
1661 iriap_close(self
->iriap
);
1666 irttp_disconnect_request(self
->tsap
, NULL
, P_NORMAL
);
1667 irttp_close_tsap(self
->tsap
);
1671 /* A few cleanup so the socket look as good as new... */
1672 self
->rx_flow
= self
->tx_flow
= FLOW_START
; /* needed ??? */
1673 self
->daddr
= DEV_ADDR_ANY
; /* Until we get re-connected */
1674 self
->saddr
= 0x0; /* so IrLMP assign us any link */
1680 * Function irda_poll (file, sock, wait)
1682 static unsigned int irda_poll(struct file
* file
, struct socket
*sock
,
1685 struct sock
*sk
= sock
->sk
;
1686 struct irda_sock
*self
= irda_sk(sk
);
1689 IRDA_DEBUG(4, "%s()\n", __FUNCTION__
);
1691 poll_wait(file
, sk
->sk_sleep
, wait
);
1694 /* Exceptional events? */
1697 if (sk
->sk_shutdown
& RCV_SHUTDOWN
) {
1698 IRDA_DEBUG(0, "%s(), POLLHUP\n", __FUNCTION__
);
1703 if (!skb_queue_empty(&sk
->sk_receive_queue
)) {
1704 IRDA_DEBUG(4, "Socket is readable\n");
1705 mask
|= POLLIN
| POLLRDNORM
;
1708 /* Connection-based need to check for termination and startup */
1709 switch (sk
->sk_type
) {
1711 if (sk
->sk_state
== TCP_CLOSE
) {
1712 IRDA_DEBUG(0, "%s(), POLLHUP\n", __FUNCTION__
);
1716 if (sk
->sk_state
== TCP_ESTABLISHED
) {
1717 if ((self
->tx_flow
== FLOW_START
) &&
1720 mask
|= POLLOUT
| POLLWRNORM
| POLLWRBAND
;
1724 case SOCK_SEQPACKET
:
1725 if ((self
->tx_flow
== FLOW_START
) &&
1728 mask
|= POLLOUT
| POLLWRNORM
| POLLWRBAND
;
1732 if (sock_writeable(sk
))
1733 mask
|= POLLOUT
| POLLWRNORM
| POLLWRBAND
;
1742 * Function irda_ioctl (sock, cmd, arg)
1744 static int irda_ioctl(struct socket
*sock
, unsigned int cmd
, unsigned long arg
)
1746 struct sock
*sk
= sock
->sk
;
1748 IRDA_DEBUG(4, "%s(), cmd=%#x\n", __FUNCTION__
, cmd
);
1753 amount
= sk
->sk_sndbuf
- atomic_read(&sk
->sk_wmem_alloc
);
1756 if (put_user(amount
, (unsigned int __user
*)arg
))
1762 struct sk_buff
*skb
;
1764 /* These two are safe on a single CPU system as only user tasks fiddle here */
1765 if ((skb
= skb_peek(&sk
->sk_receive_queue
)) != NULL
)
1767 if (put_user(amount
, (unsigned int __user
*)arg
))
1774 return sock_get_timestamp(sk
, (struct timeval __user
*)arg
);
1779 case SIOCGIFDSTADDR
:
1780 case SIOCSIFDSTADDR
:
1781 case SIOCGIFBRDADDR
:
1782 case SIOCSIFBRDADDR
:
1783 case SIOCGIFNETMASK
:
1784 case SIOCSIFNETMASK
:
1789 IRDA_DEBUG(1, "%s(), doing device ioctl!\n", __FUNCTION__
);
1790 return -ENOIOCTLCMD
;
1797 #ifdef CONFIG_COMPAT
1799 * Function irda_ioctl (sock, cmd, arg)
1801 static int irda_compat_ioctl(struct socket
*sock
, unsigned int cmd
, unsigned long arg
)
1804 * All IRDA's ioctl are standard ones.
1806 return -ENOIOCTLCMD
;
1811 * Function irda_setsockopt (sock, level, optname, optval, optlen)
1813 * Set some options for the socket
1816 static int irda_setsockopt(struct socket
*sock
, int level
, int optname
,
1817 char __user
*optval
, int optlen
)
1819 struct sock
*sk
= sock
->sk
;
1820 struct irda_sock
*self
= irda_sk(sk
);
1821 struct irda_ias_set
*ias_opt
;
1822 struct ias_object
*ias_obj
;
1823 struct ias_attrib
* ias_attr
; /* Attribute in IAS object */
1826 IRDA_DEBUG(2, "%s(%p)\n", __FUNCTION__
, self
);
1828 if (level
!= SOL_IRLMP
)
1829 return -ENOPROTOOPT
;
1833 /* The user want to add an attribute to an existing IAS object
1834 * (in the IAS database) or to create a new object with this
1836 * We first query IAS to know if the object exist, and then
1837 * create the right attribute...
1840 if (optlen
!= sizeof(struct irda_ias_set
))
1843 ias_opt
= kmalloc(sizeof(struct irda_ias_set
), GFP_ATOMIC
);
1844 if (ias_opt
== NULL
)
1847 /* Copy query to the driver. */
1848 if (copy_from_user(ias_opt
, optval
, optlen
)) {
1853 /* Find the object we target.
1854 * If the user gives us an empty string, we use the object
1855 * associated with this socket. This will workaround
1856 * duplicated class name - Jean II */
1857 if(ias_opt
->irda_class_name
[0] == '\0') {
1858 if(self
->ias_obj
== NULL
) {
1862 ias_obj
= self
->ias_obj
;
1864 ias_obj
= irias_find_object(ias_opt
->irda_class_name
);
1866 /* Only ROOT can mess with the global IAS database.
1867 * Users can only add attributes to the object associated
1868 * with the socket they own - Jean II */
1869 if((!capable(CAP_NET_ADMIN
)) &&
1870 ((ias_obj
== NULL
) || (ias_obj
!= self
->ias_obj
))) {
1875 /* If the object doesn't exist, create it */
1876 if(ias_obj
== (struct ias_object
*) NULL
) {
1877 /* Create a new object */
1878 ias_obj
= irias_new_object(ias_opt
->irda_class_name
,
1882 /* Do we have the attribute already ? */
1883 if(irias_find_attrib(ias_obj
, ias_opt
->irda_attrib_name
)) {
1888 /* Look at the type */
1889 switch(ias_opt
->irda_attrib_type
) {
1891 /* Add an integer attribute */
1892 irias_add_integer_attrib(
1894 ias_opt
->irda_attrib_name
,
1895 ias_opt
->attribute
.irda_attrib_int
,
1900 if(ias_opt
->attribute
.irda_attrib_octet_seq
.len
>
1901 IAS_MAX_OCTET_STRING
) {
1905 /* Add an octet sequence attribute */
1906 irias_add_octseq_attrib(
1908 ias_opt
->irda_attrib_name
,
1909 ias_opt
->attribute
.irda_attrib_octet_seq
.octet_seq
,
1910 ias_opt
->attribute
.irda_attrib_octet_seq
.len
,
1914 /* Should check charset & co */
1916 /* The length is encoded in a __u8, and
1917 * IAS_MAX_STRING == 256, so there is no way
1918 * userspace can pass us a string too large.
1920 /* NULL terminate the string (avoid troubles) */
1921 ias_opt
->attribute
.irda_attrib_string
.string
[ias_opt
->attribute
.irda_attrib_string
.len
] = '\0';
1922 /* Add a string attribute */
1923 irias_add_string_attrib(
1925 ias_opt
->irda_attrib_name
,
1926 ias_opt
->attribute
.irda_attrib_string
.string
,
1933 irias_insert_object(ias_obj
);
1937 /* The user want to delete an object from our local IAS
1938 * database. We just need to query the IAS, check is the
1939 * object is not owned by the kernel and delete it.
1942 if (optlen
!= sizeof(struct irda_ias_set
))
1945 ias_opt
= kmalloc(sizeof(struct irda_ias_set
), GFP_ATOMIC
);
1946 if (ias_opt
== NULL
)
1949 /* Copy query to the driver. */
1950 if (copy_from_user(ias_opt
, optval
, optlen
)) {
1955 /* Find the object we target.
1956 * If the user gives us an empty string, we use the object
1957 * associated with this socket. This will workaround
1958 * duplicated class name - Jean II */
1959 if(ias_opt
->irda_class_name
[0] == '\0')
1960 ias_obj
= self
->ias_obj
;
1962 ias_obj
= irias_find_object(ias_opt
->irda_class_name
);
1963 if(ias_obj
== (struct ias_object
*) NULL
) {
1968 /* Only ROOT can mess with the global IAS database.
1969 * Users can only del attributes from the object associated
1970 * with the socket they own - Jean II */
1971 if((!capable(CAP_NET_ADMIN
)) &&
1972 ((ias_obj
== NULL
) || (ias_obj
!= self
->ias_obj
))) {
1977 /* Find the attribute (in the object) we target */
1978 ias_attr
= irias_find_attrib(ias_obj
,
1979 ias_opt
->irda_attrib_name
);
1980 if(ias_attr
== (struct ias_attrib
*) NULL
) {
1985 /* Check is the user space own the object */
1986 if(ias_attr
->value
->owner
!= IAS_USER_ATTR
) {
1987 IRDA_DEBUG(1, "%s(), attempting to delete a kernel attribute\n", __FUNCTION__
);
1992 /* Remove the attribute (and maybe the object) */
1993 irias_delete_attrib(ias_obj
, ias_attr
, 1);
1996 case IRLMP_MAX_SDU_SIZE
:
1997 if (optlen
< sizeof(int))
2000 if (get_user(opt
, (int __user
*)optval
))
2003 /* Only possible for a seqpacket service (TTP with SAR) */
2004 if (sk
->sk_type
!= SOCK_SEQPACKET
) {
2005 IRDA_DEBUG(2, "%s(), setting max_sdu_size = %d\n",
2007 self
->max_sdu_size_rx
= opt
;
2009 IRDA_WARNING("%s: not allowed to set MAXSDUSIZE for this socket type!\n",
2011 return -ENOPROTOOPT
;
2014 case IRLMP_HINTS_SET
:
2015 if (optlen
< sizeof(int))
2018 /* The input is really a (__u8 hints[2]), easier as an int */
2019 if (get_user(opt
, (int __user
*)optval
))
2022 /* Unregister any old registration */
2024 irlmp_unregister_service(self
->skey
);
2026 self
->skey
= irlmp_register_service((__u16
) opt
);
2028 case IRLMP_HINT_MASK_SET
:
2029 /* As opposed to the previous case which set the hint bits
2030 * that we advertise, this one set the filter we use when
2031 * making a discovery (nodes which don't match any hint
2032 * bit in the mask are not reported).
2034 if (optlen
< sizeof(int))
2037 /* The input is really a (__u8 hints[2]), easier as an int */
2038 if (get_user(opt
, (int __user
*)optval
))
2041 /* Set the new hint mask */
2042 self
->mask
.word
= (__u16
) opt
;
2043 /* Mask out extension bits */
2044 self
->mask
.word
&= 0x7f7f;
2045 /* Check if no bits */
2046 if(!self
->mask
.word
)
2047 self
->mask
.word
= 0xFFFF;
2051 return -ENOPROTOOPT
;
2057 * Function irda_extract_ias_value(ias_opt, ias_value)
2059 * Translate internal IAS value structure to the user space representation
2061 * The external representation of IAS values, as we exchange them with
2062 * user space program is quite different from the internal representation,
2063 * as stored in the IAS database (because we need a flat structure for
2064 * crossing kernel boundary).
2065 * This function transform the former in the latter. We also check
2066 * that the value type is valid.
2068 static int irda_extract_ias_value(struct irda_ias_set
*ias_opt
,
2069 struct ias_value
*ias_value
)
2071 /* Look at the type */
2072 switch (ias_value
->type
) {
2074 /* Copy the integer */
2075 ias_opt
->attribute
.irda_attrib_int
= ias_value
->t
.integer
;
2079 ias_opt
->attribute
.irda_attrib_octet_seq
.len
= ias_value
->len
;
2081 memcpy(ias_opt
->attribute
.irda_attrib_octet_seq
.octet_seq
,
2082 ias_value
->t
.oct_seq
, ias_value
->len
);
2086 ias_opt
->attribute
.irda_attrib_string
.len
= ias_value
->len
;
2087 ias_opt
->attribute
.irda_attrib_string
.charset
= ias_value
->charset
;
2089 memcpy(ias_opt
->attribute
.irda_attrib_string
.string
,
2090 ias_value
->t
.string
, ias_value
->len
);
2091 /* NULL terminate the string (avoid troubles) */
2092 ias_opt
->attribute
.irda_attrib_string
.string
[ias_value
->len
] = '\0';
2099 /* Copy type over */
2100 ias_opt
->irda_attrib_type
= ias_value
->type
;
2106 * Function irda_getsockopt (sock, level, optname, optval, optlen)
2108 static int irda_getsockopt(struct socket
*sock
, int level
, int optname
,
2109 char __user
*optval
, int __user
*optlen
)
2111 struct sock
*sk
= sock
->sk
;
2112 struct irda_sock
*self
= irda_sk(sk
);
2113 struct irda_device_list list
;
2114 struct irda_device_info
*discoveries
;
2115 struct irda_ias_set
* ias_opt
; /* IAS get/query params */
2116 struct ias_object
* ias_obj
; /* Object in IAS */
2117 struct ias_attrib
* ias_attr
; /* Attribute in IAS object */
2118 int daddr
= DEV_ADDR_ANY
; /* Dest address for IAS queries */
2124 IRDA_DEBUG(2, "%s(%p)\n", __FUNCTION__
, self
);
2126 if (level
!= SOL_IRLMP
)
2127 return -ENOPROTOOPT
;
2129 if (get_user(len
, optlen
))
2136 case IRLMP_ENUMDEVICES
:
2137 /* Ask lmp for the current discovery log */
2138 discoveries
= irlmp_get_discoveries(&list
.len
, self
->mask
.word
,
2140 /* Check if the we got some results */
2141 if (discoveries
== NULL
)
2142 return -EAGAIN
; /* Didn't find any devices */
2145 /* Write total list length back to client */
2146 if (copy_to_user(optval
, &list
,
2147 sizeof(struct irda_device_list
) -
2148 sizeof(struct irda_device_info
)))
2151 /* Offset to first device entry */
2152 offset
= sizeof(struct irda_device_list
) -
2153 sizeof(struct irda_device_info
);
2155 /* Copy the list itself - watch for overflow */
2161 total
= offset
+ (list
.len
* sizeof(struct irda_device_info
));
2164 if (copy_to_user(optval
+offset
, discoveries
, total
- offset
))
2167 /* Write total number of bytes used back to client */
2168 if (put_user(total
, optlen
))
2171 /* Free up our buffer */
2176 case IRLMP_MAX_SDU_SIZE
:
2177 val
= self
->max_data_size
;
2179 if (put_user(len
, optlen
))
2182 if (copy_to_user(optval
, &val
, len
))
2186 /* The user want an object from our local IAS database.
2187 * We just need to query the IAS and return the value
2190 /* Check that the user has allocated the right space for us */
2191 if (len
!= sizeof(struct irda_ias_set
))
2194 ias_opt
= kmalloc(sizeof(struct irda_ias_set
), GFP_ATOMIC
);
2195 if (ias_opt
== NULL
)
2198 /* Copy query to the driver. */
2199 if (copy_from_user(ias_opt
, optval
, len
)) {
2204 /* Find the object we target.
2205 * If the user gives us an empty string, we use the object
2206 * associated with this socket. This will workaround
2207 * duplicated class name - Jean II */
2208 if(ias_opt
->irda_class_name
[0] == '\0')
2209 ias_obj
= self
->ias_obj
;
2211 ias_obj
= irias_find_object(ias_opt
->irda_class_name
);
2212 if(ias_obj
== (struct ias_object
*) NULL
) {
2217 /* Find the attribute (in the object) we target */
2218 ias_attr
= irias_find_attrib(ias_obj
,
2219 ias_opt
->irda_attrib_name
);
2220 if(ias_attr
== (struct ias_attrib
*) NULL
) {
2225 /* Translate from internal to user structure */
2226 err
= irda_extract_ias_value(ias_opt
, ias_attr
->value
);
2232 /* Copy reply to the user */
2233 if (copy_to_user(optval
, ias_opt
,
2234 sizeof(struct irda_ias_set
))) {
2238 /* Note : don't need to put optlen, we checked it */
2241 case IRLMP_IAS_QUERY
:
2242 /* The user want an object from a remote IAS database.
2243 * We need to use IAP to query the remote database and
2244 * then wait for the answer to come back. */
2246 /* Check that the user has allocated the right space for us */
2247 if (len
!= sizeof(struct irda_ias_set
))
2250 ias_opt
= kmalloc(sizeof(struct irda_ias_set
), GFP_ATOMIC
);
2251 if (ias_opt
== NULL
)
2254 /* Copy query to the driver. */
2255 if (copy_from_user(ias_opt
, optval
, len
)) {
2260 /* At this point, there are two cases...
2261 * 1) the socket is connected - that's the easy case, we
2262 * just query the device we are connected to...
2263 * 2) the socket is not connected - the user doesn't want
2264 * to connect and/or may not have a valid service name
2265 * (so can't create a fake connection). In this case,
2266 * we assume that the user pass us a valid destination
2267 * address in the requesting structure...
2269 if(self
->daddr
!= DEV_ADDR_ANY
) {
2270 /* We are connected - reuse known daddr */
2271 daddr
= self
->daddr
;
2273 /* We are not connected, we must specify a valid
2274 * destination address */
2275 daddr
= ias_opt
->daddr
;
2276 if((!daddr
) || (daddr
== DEV_ADDR_ANY
)) {
2282 /* Check that we can proceed with IAP */
2284 IRDA_WARNING("%s: busy with a previous query\n",
2290 self
->iriap
= iriap_open(LSAP_ANY
, IAS_CLIENT
, self
,
2291 irda_getvalue_confirm
);
2293 if (self
->iriap
== NULL
) {
2298 /* Treat unexpected wakeup as disconnect */
2299 self
->errno
= -EHOSTUNREACH
;
2301 /* Query remote LM-IAS */
2302 iriap_getvaluebyclass_request(self
->iriap
,
2304 ias_opt
->irda_class_name
,
2305 ias_opt
->irda_attrib_name
);
2307 /* Wait for answer, if not yet finished (or failed) */
2308 if (wait_event_interruptible(self
->query_wait
,
2309 (self
->iriap
== NULL
))) {
2310 /* pending request uses copy of ias_opt-content
2311 * we can free it regardless! */
2313 /* Treat signals as disconnect */
2314 return -EHOSTUNREACH
;
2317 /* Check what happened */
2321 /* Requested object/attribute doesn't exist */
2322 if((self
->errno
== IAS_CLASS_UNKNOWN
) ||
2323 (self
->errno
== IAS_ATTRIB_UNKNOWN
))
2324 return (-EADDRNOTAVAIL
);
2326 return (-EHOSTUNREACH
);
2329 /* Translate from internal to user structure */
2330 err
= irda_extract_ias_value(ias_opt
, self
->ias_result
);
2331 if (self
->ias_result
)
2332 irias_delete_value(self
->ias_result
);
2338 /* Copy reply to the user */
2339 if (copy_to_user(optval
, ias_opt
,
2340 sizeof(struct irda_ias_set
))) {
2344 /* Note : don't need to put optlen, we checked it */
2347 case IRLMP_WAITDEVICE
:
2348 /* This function is just another way of seeing life ;-)
2349 * IRLMP_ENUMDEVICES assumes that you have a static network,
2350 * and that you just want to pick one of the devices present.
2351 * On the other hand, in here we assume that no device is
2352 * present and that at some point in the future a device will
2353 * come into range. When this device arrive, we just wake
2354 * up the caller, so that he has time to connect to it before
2355 * the device goes away...
2356 * Note : once the node has been discovered for more than a
2357 * few second, it won't trigger this function, unless it
2358 * goes away and come back changes its hint bits (so we
2359 * might call it IRLMP_WAITNEWDEVICE).
2362 /* Check that the user is passing us an int */
2363 if (len
!= sizeof(int))
2365 /* Get timeout in ms (max time we block the caller) */
2366 if (get_user(val
, (int __user
*)optval
))
2369 /* Tell IrLMP we want to be notified */
2370 irlmp_update_client(self
->ckey
, self
->mask
.word
,
2371 irda_selective_discovery_indication
,
2372 NULL
, (void *) self
);
2374 /* Do some discovery (and also return cached results) */
2375 irlmp_discovery_request(self
->nslots
);
2377 /* Wait until a node is discovered */
2378 if (!self
->cachedaddr
) {
2381 IRDA_DEBUG(1, "%s(), nothing discovered yet, going to sleep...\n", __FUNCTION__
);
2383 /* Set watchdog timer to expire in <val> ms. */
2385 init_timer(&self
->watchdog
);
2386 self
->watchdog
.function
= irda_discovery_timeout
;
2387 self
->watchdog
.data
= (unsigned long) self
;
2388 self
->watchdog
.expires
= jiffies
+ (val
* HZ
/1000);
2389 add_timer(&(self
->watchdog
));
2391 /* Wait for IR-LMP to call us back */
2392 __wait_event_interruptible(self
->query_wait
,
2393 (self
->cachedaddr
!= 0 || self
->errno
== -ETIME
),
2396 /* If watchdog is still activated, kill it! */
2397 if(timer_pending(&(self
->watchdog
)))
2398 del_timer(&(self
->watchdog
));
2400 IRDA_DEBUG(1, "%s(), ...waking up !\n", __FUNCTION__
);
2406 IRDA_DEBUG(1, "%s(), found immediately !\n",
2409 /* Tell IrLMP that we have been notified */
2410 irlmp_update_client(self
->ckey
, self
->mask
.word
,
2413 /* Check if the we got some results */
2414 if (!self
->cachedaddr
)
2415 return -EAGAIN
; /* Didn't find any devices */
2416 daddr
= self
->cachedaddr
;
2418 self
->cachedaddr
= 0;
2420 /* We return the daddr of the device that trigger the
2421 * wakeup. As irlmp pass us only the new devices, we
2422 * are sure that it's not an old device.
2423 * If the user want more details, he should query
2424 * the whole discovery log and pick one device...
2426 if (put_user(daddr
, (int __user
*)optval
))
2431 return -ENOPROTOOPT
;
2437 static struct net_proto_family irda_family_ops
= {
2439 .create
= irda_create
,
2440 .owner
= THIS_MODULE
,
2443 static const struct proto_ops
SOCKOPS_WRAPPED(irda_stream_ops
) = {
2445 .owner
= THIS_MODULE
,
2446 .release
= irda_release
,
2448 .connect
= irda_connect
,
2449 .socketpair
= sock_no_socketpair
,
2450 .accept
= irda_accept
,
2451 .getname
= irda_getname
,
2453 .ioctl
= irda_ioctl
,
2454 #ifdef CONFIG_COMPAT
2455 .compat_ioctl
= irda_compat_ioctl
,
2457 .listen
= irda_listen
,
2458 .shutdown
= irda_shutdown
,
2459 .setsockopt
= irda_setsockopt
,
2460 .getsockopt
= irda_getsockopt
,
2461 .sendmsg
= irda_sendmsg
,
2462 .recvmsg
= irda_recvmsg_stream
,
2463 .mmap
= sock_no_mmap
,
2464 .sendpage
= sock_no_sendpage
,
2467 static const struct proto_ops
SOCKOPS_WRAPPED(irda_seqpacket_ops
) = {
2469 .owner
= THIS_MODULE
,
2470 .release
= irda_release
,
2472 .connect
= irda_connect
,
2473 .socketpair
= sock_no_socketpair
,
2474 .accept
= irda_accept
,
2475 .getname
= irda_getname
,
2476 .poll
= datagram_poll
,
2477 .ioctl
= irda_ioctl
,
2478 #ifdef CONFIG_COMPAT
2479 .compat_ioctl
= irda_compat_ioctl
,
2481 .listen
= irda_listen
,
2482 .shutdown
= irda_shutdown
,
2483 .setsockopt
= irda_setsockopt
,
2484 .getsockopt
= irda_getsockopt
,
2485 .sendmsg
= irda_sendmsg
,
2486 .recvmsg
= irda_recvmsg_dgram
,
2487 .mmap
= sock_no_mmap
,
2488 .sendpage
= sock_no_sendpage
,
2491 static const struct proto_ops
SOCKOPS_WRAPPED(irda_dgram_ops
) = {
2493 .owner
= THIS_MODULE
,
2494 .release
= irda_release
,
2496 .connect
= irda_connect
,
2497 .socketpair
= sock_no_socketpair
,
2498 .accept
= irda_accept
,
2499 .getname
= irda_getname
,
2500 .poll
= datagram_poll
,
2501 .ioctl
= irda_ioctl
,
2502 #ifdef CONFIG_COMPAT
2503 .compat_ioctl
= irda_compat_ioctl
,
2505 .listen
= irda_listen
,
2506 .shutdown
= irda_shutdown
,
2507 .setsockopt
= irda_setsockopt
,
2508 .getsockopt
= irda_getsockopt
,
2509 .sendmsg
= irda_sendmsg_dgram
,
2510 .recvmsg
= irda_recvmsg_dgram
,
2511 .mmap
= sock_no_mmap
,
2512 .sendpage
= sock_no_sendpage
,
2515 #ifdef CONFIG_IRDA_ULTRA
2516 static const struct proto_ops
SOCKOPS_WRAPPED(irda_ultra_ops
) = {
2518 .owner
= THIS_MODULE
,
2519 .release
= irda_release
,
2521 .connect
= sock_no_connect
,
2522 .socketpair
= sock_no_socketpair
,
2523 .accept
= sock_no_accept
,
2524 .getname
= irda_getname
,
2525 .poll
= datagram_poll
,
2526 .ioctl
= irda_ioctl
,
2527 #ifdef CONFIG_COMPAT
2528 .compat_ioctl
= irda_compat_ioctl
,
2530 .listen
= sock_no_listen
,
2531 .shutdown
= irda_shutdown
,
2532 .setsockopt
= irda_setsockopt
,
2533 .getsockopt
= irda_getsockopt
,
2534 .sendmsg
= irda_sendmsg_ultra
,
2535 .recvmsg
= irda_recvmsg_dgram
,
2536 .mmap
= sock_no_mmap
,
2537 .sendpage
= sock_no_sendpage
,
2539 #endif /* CONFIG_IRDA_ULTRA */
2541 SOCKOPS_WRAP(irda_stream
, PF_IRDA
);
2542 SOCKOPS_WRAP(irda_seqpacket
, PF_IRDA
);
2543 SOCKOPS_WRAP(irda_dgram
, PF_IRDA
);
2544 #ifdef CONFIG_IRDA_ULTRA
2545 SOCKOPS_WRAP(irda_ultra
, PF_IRDA
);
2546 #endif /* CONFIG_IRDA_ULTRA */
2549 * Function irsock_init (pro)
2551 * Initialize IrDA protocol
2554 int __init
irsock_init(void)
2556 int rc
= proto_register(&irda_proto
, 0);
2559 rc
= sock_register(&irda_family_ops
);
2565 * Function irsock_cleanup (void)
2567 * Remove IrDA protocol
2570 void irsock_cleanup(void)
2572 sock_unregister(PF_IRDA
);
2573 proto_unregister(&irda_proto
);