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/slab.h>
51 #include <linux/init.h>
52 #include <linux/net.h>
53 #include <linux/irda.h>
54 #include <linux/poll.h>
56 #include <asm/ioctls.h> /* TIOCOUTQ, TIOCINQ */
57 #include <asm/uaccess.h>
60 #include <net/tcp_states.h>
62 #include <net/irda/af_irda.h>
64 static int irda_create(struct net
*net
, struct socket
*sock
, int protocol
, int kern
);
66 static const struct proto_ops irda_stream_ops
;
67 static const struct proto_ops irda_seqpacket_ops
;
68 static const struct proto_ops irda_dgram_ops
;
70 #ifdef CONFIG_IRDA_ULTRA
71 static const struct proto_ops irda_ultra_ops
;
72 #define ULTRA_MAX_DATA 382
73 #endif /* CONFIG_IRDA_ULTRA */
75 #define IRDA_MAX_HEADER (TTP_MAX_HEADER)
78 * Function irda_data_indication (instance, sap, skb)
80 * Received some data from TinyTP. Just queue it on the receive queue
83 static int irda_data_indication(void *instance
, void *sap
, struct sk_buff
*skb
)
85 struct irda_sock
*self
;
89 IRDA_DEBUG(3, "%s()\n", __func__
);
94 err
= sock_queue_rcv_skb(sk
, skb
);
96 IRDA_DEBUG(1, "%s(), error: no more mem!\n", __func__
);
97 self
->rx_flow
= FLOW_STOP
;
99 /* When we return error, TTP will need to requeue the skb */
107 * Function irda_disconnect_indication (instance, sap, reason, skb)
109 * Connection has been closed. Check reason to find out why
112 static void irda_disconnect_indication(void *instance
, void *sap
,
113 LM_REASON reason
, struct sk_buff
*skb
)
115 struct irda_sock
*self
;
120 IRDA_DEBUG(2, "%s(%p)\n", __func__
, self
);
122 /* Don't care about it, but let's not leak it */
128 IRDA_DEBUG(0, "%s(%p) : BUG : sk is NULL\n",
133 /* Prevent race conditions with irda_release() and irda_shutdown() */
135 if (!sock_flag(sk
, SOCK_DEAD
) && sk
->sk_state
!= TCP_CLOSE
) {
136 sk
->sk_state
= TCP_CLOSE
;
137 sk
->sk_shutdown
|= SEND_SHUTDOWN
;
139 sk
->sk_state_change(sk
);
142 * If we leave it open, IrLMP put it back into the list of
143 * unconnected LSAPs. The problem is that any incoming request
144 * can then be matched to this socket (and it will be, because
145 * it is at the head of the list). This would prevent any
146 * listening socket waiting on the same TSAP to get those
147 * requests. Some apps forget to close sockets, or hang to it
148 * a bit too long, so we may stay in this dead state long
149 * enough to be noticed...
150 * Note : all socket function do check sk->sk_state, so we are
155 irttp_close_tsap(self
->tsap
);
161 /* Note : once we are there, there is not much you want to do
162 * with the socket anymore, apart from closing it.
163 * For example, bind() and connect() won't reset sk->sk_err,
164 * sk->sk_shutdown and sk->sk_flags to valid values...
170 * Function irda_connect_confirm (instance, sap, qos, max_sdu_size, skb)
172 * Connections has been confirmed by the remote device
175 static void irda_connect_confirm(void *instance
, void *sap
,
176 struct qos_info
*qos
,
177 __u32 max_sdu_size
, __u8 max_header_size
,
180 struct irda_sock
*self
;
185 IRDA_DEBUG(2, "%s(%p)\n", __func__
, self
);
194 // Should be ??? skb_queue_tail(&sk->sk_receive_queue, skb);
196 /* How much header space do we need to reserve */
197 self
->max_header_size
= max_header_size
;
199 /* IrTTP max SDU size in transmit direction */
200 self
->max_sdu_size_tx
= max_sdu_size
;
202 /* Find out what the largest chunk of data that we can transmit is */
203 switch (sk
->sk_type
) {
205 if (max_sdu_size
!= 0) {
206 IRDA_ERROR("%s: max_sdu_size must be 0\n",
210 self
->max_data_size
= irttp_get_max_seg_size(self
->tsap
);
213 if (max_sdu_size
== 0) {
214 IRDA_ERROR("%s: max_sdu_size cannot be 0\n",
218 self
->max_data_size
= max_sdu_size
;
221 self
->max_data_size
= irttp_get_max_seg_size(self
->tsap
);
224 IRDA_DEBUG(2, "%s(), max_data_size=%d\n", __func__
,
225 self
->max_data_size
);
227 memcpy(&self
->qos_tx
, qos
, sizeof(struct qos_info
));
229 /* We are now connected! */
230 sk
->sk_state
= TCP_ESTABLISHED
;
231 sk
->sk_state_change(sk
);
235 * Function irda_connect_indication(instance, sap, qos, max_sdu_size, userdata)
237 * Incoming connection
240 static void irda_connect_indication(void *instance
, void *sap
,
241 struct qos_info
*qos
, __u32 max_sdu_size
,
242 __u8 max_header_size
, struct sk_buff
*skb
)
244 struct irda_sock
*self
;
249 IRDA_DEBUG(2, "%s(%p)\n", __func__
, self
);
257 /* How much header space do we need to reserve */
258 self
->max_header_size
= max_header_size
;
260 /* IrTTP max SDU size in transmit direction */
261 self
->max_sdu_size_tx
= max_sdu_size
;
263 /* Find out what the largest chunk of data that we can transmit is */
264 switch (sk
->sk_type
) {
266 if (max_sdu_size
!= 0) {
267 IRDA_ERROR("%s: max_sdu_size must be 0\n",
272 self
->max_data_size
= irttp_get_max_seg_size(self
->tsap
);
275 if (max_sdu_size
== 0) {
276 IRDA_ERROR("%s: max_sdu_size cannot be 0\n",
281 self
->max_data_size
= max_sdu_size
;
284 self
->max_data_size
= irttp_get_max_seg_size(self
->tsap
);
287 IRDA_DEBUG(2, "%s(), max_data_size=%d\n", __func__
,
288 self
->max_data_size
);
290 memcpy(&self
->qos_tx
, qos
, sizeof(struct qos_info
));
292 skb_queue_tail(&sk
->sk_receive_queue
, skb
);
293 sk
->sk_state_change(sk
);
297 * Function irda_connect_response (handle)
299 * Accept incoming connection
302 static void irda_connect_response(struct irda_sock
*self
)
306 IRDA_DEBUG(2, "%s()\n", __func__
);
308 skb
= alloc_skb(TTP_MAX_HEADER
+ TTP_SAR_HEADER
, GFP_KERNEL
);
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", __func__
);
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_sleep(sk
));
351 IRDA_DEBUG(0, "%s(), Unknown flow command!\n", __func__
);
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
;
373 IRDA_WARNING("%s: lost myself!\n", __func__
);
377 IRDA_DEBUG(2, "%s(%p)\n", __func__
, 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", __func__
,
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", __func__
);
422 IRDA_WARNING("%s: lost myself!\n", __func__
);
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", __func__
);
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_DEBUG(0, "%s: busy!\n", __func__
);
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", __func__
);
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", __func__
);
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", __func__
, 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 __func__
, 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", __func__
);
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", __func__
, 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 __func__
, 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", __func__
);
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 __func__
, 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
);
717 memset(&saddr
, 0, sizeof(saddr
));
719 if (sk
->sk_state
!= TCP_ESTABLISHED
)
722 saddr
.sir_family
= AF_IRDA
;
723 saddr
.sir_lsap_sel
= self
->dtsap_sel
;
724 saddr
.sir_addr
= self
->daddr
;
726 saddr
.sir_family
= AF_IRDA
;
727 saddr
.sir_lsap_sel
= self
->stsap_sel
;
728 saddr
.sir_addr
= self
->saddr
;
731 IRDA_DEBUG(1, "%s(), tsap_sel = %#x\n", __func__
, saddr
.sir_lsap_sel
);
732 IRDA_DEBUG(1, "%s(), addr = %08x\n", __func__
, saddr
.sir_addr
);
734 /* uaddr_len come to us uninitialised */
735 *uaddr_len
= sizeof (struct sockaddr_irda
);
736 memcpy(uaddr
, &saddr
, *uaddr_len
);
742 * Function irda_listen (sock, backlog)
744 * Just move to the listen state
747 static int irda_listen(struct socket
*sock
, int backlog
)
749 struct sock
*sk
= sock
->sk
;
750 int err
= -EOPNOTSUPP
;
752 IRDA_DEBUG(2, "%s()\n", __func__
);
756 if ((sk
->sk_type
!= SOCK_STREAM
) && (sk
->sk_type
!= SOCK_SEQPACKET
) &&
757 (sk
->sk_type
!= SOCK_DGRAM
))
760 if (sk
->sk_state
!= TCP_LISTEN
) {
761 sk
->sk_max_ack_backlog
= backlog
;
762 sk
->sk_state
= TCP_LISTEN
;
773 * Function irda_bind (sock, uaddr, addr_len)
775 * Used by servers to register their well known TSAP
778 static int irda_bind(struct socket
*sock
, struct sockaddr
*uaddr
, int addr_len
)
780 struct sock
*sk
= sock
->sk
;
781 struct sockaddr_irda
*addr
= (struct sockaddr_irda
*) uaddr
;
782 struct irda_sock
*self
= irda_sk(sk
);
785 IRDA_DEBUG(2, "%s(%p)\n", __func__
, self
);
787 if (addr_len
!= sizeof(struct sockaddr_irda
))
791 #ifdef CONFIG_IRDA_ULTRA
792 /* Special care for Ultra sockets */
793 if ((sk
->sk_type
== SOCK_DGRAM
) &&
794 (sk
->sk_protocol
== IRDAPROTO_ULTRA
)) {
795 self
->pid
= addr
->sir_lsap_sel
;
797 if (self
->pid
& 0x80) {
798 IRDA_DEBUG(0, "%s(), extension in PID not supp!\n", __func__
);
801 err
= irda_open_lsap(self
, self
->pid
);
805 /* Pretend we are connected */
806 sock
->state
= SS_CONNECTED
;
807 sk
->sk_state
= TCP_ESTABLISHED
;
812 #endif /* CONFIG_IRDA_ULTRA */
814 self
->ias_obj
= irias_new_object(addr
->sir_name
, jiffies
);
816 if (self
->ias_obj
== NULL
)
819 err
= irda_open_tsap(self
, addr
->sir_lsap_sel
, addr
->sir_name
);
821 irias_delete_object(self
->ias_obj
);
822 self
->ias_obj
= NULL
;
826 /* Register with LM-IAS */
827 irias_add_integer_attrib(self
->ias_obj
, "IrDA:TinyTP:LsapSel",
828 self
->stsap_sel
, IAS_KERNEL_ATTR
);
829 irias_insert_object(self
->ias_obj
);
838 * Function irda_accept (sock, newsock, flags)
840 * Wait for incoming connection
843 static int irda_accept(struct socket
*sock
, struct socket
*newsock
, int flags
)
845 struct sock
*sk
= sock
->sk
;
846 struct irda_sock
*new, *self
= irda_sk(sk
);
851 IRDA_DEBUG(2, "%s()\n", __func__
);
853 err
= irda_create(sock_net(sk
), newsock
, sk
->sk_protocol
, 0);
860 if (sock
->state
!= SS_UNCONNECTED
)
863 if ((sk
= sock
->sk
) == NULL
)
867 if ((sk
->sk_type
!= SOCK_STREAM
) && (sk
->sk_type
!= SOCK_SEQPACKET
) &&
868 (sk
->sk_type
!= SOCK_DGRAM
))
872 if (sk
->sk_state
!= TCP_LISTEN
)
876 * The read queue this time is holding sockets ready to use
877 * hooked into the SABM we saved
881 * We can perform the accept only if there is incoming data
882 * on the listening socket.
883 * So, we will block the caller until we receive any data.
884 * If the caller was waiting on select() or poll() before
885 * calling us, the data is waiting for us ;-)
889 skb
= skb_dequeue(&sk
->sk_receive_queue
);
893 /* Non blocking operation */
895 if (flags
& O_NONBLOCK
)
898 err
= wait_event_interruptible(*(sk_sleep(sk
)),
899 skb_peek(&sk
->sk_receive_queue
));
909 newsk
->sk_state
= TCP_ESTABLISHED
;
911 new = irda_sk(newsk
);
913 /* Now attach up the new socket */
914 new->tsap
= irttp_dup(self
->tsap
, new);
915 err
= -EPERM
; /* value does not seem to make sense. -arnd */
917 IRDA_DEBUG(0, "%s(), dup failed!\n", __func__
);
922 new->stsap_sel
= new->tsap
->stsap_sel
;
923 new->dtsap_sel
= new->tsap
->dtsap_sel
;
924 new->saddr
= irttp_get_saddr(new->tsap
);
925 new->daddr
= irttp_get_daddr(new->tsap
);
927 new->max_sdu_size_tx
= self
->max_sdu_size_tx
;
928 new->max_sdu_size_rx
= self
->max_sdu_size_rx
;
929 new->max_data_size
= self
->max_data_size
;
930 new->max_header_size
= self
->max_header_size
;
932 memcpy(&new->qos_tx
, &self
->qos_tx
, sizeof(struct qos_info
));
934 /* Clean up the original one to keep it in listen state */
935 irttp_listen(self
->tsap
);
938 sk
->sk_ack_backlog
--;
940 newsock
->state
= SS_CONNECTED
;
942 irda_connect_response(new);
950 * Function irda_connect (sock, uaddr, addr_len, flags)
952 * Connect to a IrDA device
954 * The main difference with a "standard" connect is that with IrDA we need
955 * to resolve the service name into a TSAP selector (in TCP, port number
956 * doesn't have to be resolved).
957 * Because of this service name resolution, we can offer "auto-connect",
958 * where we connect to a service without specifying a destination address.
960 * Note : by consulting "errno", the user space caller may learn the cause
961 * of the failure. Most of them are visible in the function, others may come
962 * from subroutines called and are listed here :
963 * o EBUSY : already processing a connect
964 * o EHOSTUNREACH : bad addr->sir_addr argument
965 * o EADDRNOTAVAIL : bad addr->sir_name argument
966 * o ENOTUNIQ : more than one node has addr->sir_name (auto-connect)
967 * o ENETUNREACH : no node found on the network (auto-connect)
969 static int irda_connect(struct socket
*sock
, struct sockaddr
*uaddr
,
970 int addr_len
, int flags
)
972 struct sock
*sk
= sock
->sk
;
973 struct sockaddr_irda
*addr
= (struct sockaddr_irda
*) uaddr
;
974 struct irda_sock
*self
= irda_sk(sk
);
977 IRDA_DEBUG(2, "%s(%p)\n", __func__
, self
);
980 /* Don't allow connect for Ultra sockets */
981 err
= -ESOCKTNOSUPPORT
;
982 if ((sk
->sk_type
== SOCK_DGRAM
) && (sk
->sk_protocol
== IRDAPROTO_ULTRA
))
985 if (sk
->sk_state
== TCP_ESTABLISHED
&& sock
->state
== SS_CONNECTING
) {
986 sock
->state
= SS_CONNECTED
;
988 goto out
; /* Connect completed during a ERESTARTSYS event */
991 if (sk
->sk_state
== TCP_CLOSE
&& sock
->state
== SS_CONNECTING
) {
992 sock
->state
= SS_UNCONNECTED
;
997 err
= -EISCONN
; /* No reconnect on a seqpacket socket */
998 if (sk
->sk_state
== TCP_ESTABLISHED
)
1001 sk
->sk_state
= TCP_CLOSE
;
1002 sock
->state
= SS_UNCONNECTED
;
1005 if (addr_len
!= sizeof(struct sockaddr_irda
))
1008 /* Check if user supplied any destination device address */
1009 if ((!addr
->sir_addr
) || (addr
->sir_addr
== DEV_ADDR_ANY
)) {
1010 /* Try to find one suitable */
1011 err
= irda_discover_daddr_and_lsap_sel(self
, addr
->sir_name
);
1013 IRDA_DEBUG(0, "%s(), auto-connect failed!\n", __func__
);
1017 /* Use the one provided by the user */
1018 self
->daddr
= addr
->sir_addr
;
1019 IRDA_DEBUG(1, "%s(), daddr = %08x\n", __func__
, self
->daddr
);
1021 /* If we don't have a valid service name, we assume the
1022 * user want to connect on a specific LSAP. Prevent
1023 * the use of invalid LSAPs (IrLMP 1.1 p10). Jean II */
1024 if((addr
->sir_name
[0] != '\0') ||
1025 (addr
->sir_lsap_sel
>= 0x70)) {
1026 /* Query remote LM-IAS using service name */
1027 err
= irda_find_lsap_sel(self
, addr
->sir_name
);
1029 IRDA_DEBUG(0, "%s(), connect failed!\n", __func__
);
1033 /* Directly connect to the remote LSAP
1034 * specified by the sir_lsap field.
1035 * Please use with caution, in IrDA LSAPs are
1036 * dynamic and there is no "well-known" LSAP. */
1037 self
->dtsap_sel
= addr
->sir_lsap_sel
;
1041 /* Check if we have opened a local TSAP */
1043 irda_open_tsap(self
, LSAP_ANY
, addr
->sir_name
);
1045 /* Move to connecting socket, start sending Connect Requests */
1046 sock
->state
= SS_CONNECTING
;
1047 sk
->sk_state
= TCP_SYN_SENT
;
1049 /* Connect to remote device */
1050 err
= irttp_connect_request(self
->tsap
, self
->dtsap_sel
,
1051 self
->saddr
, self
->daddr
, NULL
,
1052 self
->max_sdu_size_rx
, NULL
);
1054 IRDA_DEBUG(0, "%s(), connect failed!\n", __func__
);
1060 if (sk
->sk_state
!= TCP_ESTABLISHED
&& (flags
& O_NONBLOCK
))
1064 if (wait_event_interruptible(*(sk_sleep(sk
)),
1065 (sk
->sk_state
!= TCP_SYN_SENT
)))
1068 if (sk
->sk_state
!= TCP_ESTABLISHED
) {
1069 sock
->state
= SS_UNCONNECTED
;
1070 if (sk
->sk_prot
->disconnect(sk
, flags
))
1071 sock
->state
= SS_DISCONNECTING
;
1072 err
= sock_error(sk
);
1078 sock
->state
= SS_CONNECTED
;
1080 /* At this point, IrLMP has assigned our source address */
1081 self
->saddr
= irttp_get_saddr(self
->tsap
);
1088 static struct proto irda_proto
= {
1090 .owner
= THIS_MODULE
,
1091 .obj_size
= sizeof(struct irda_sock
),
1095 * Function irda_create (sock, protocol)
1097 * Create IrDA socket
1100 static int irda_create(struct net
*net
, struct socket
*sock
, int protocol
,
1104 struct irda_sock
*self
;
1106 IRDA_DEBUG(2, "%s()\n", __func__
);
1108 if (net
!= &init_net
)
1109 return -EAFNOSUPPORT
;
1111 /* Check for valid socket type */
1112 switch (sock
->type
) {
1113 case SOCK_STREAM
: /* For TTP connections with SAR disabled */
1114 case SOCK_SEQPACKET
: /* For TTP connections with SAR enabled */
1115 case SOCK_DGRAM
: /* For TTP Unitdata or LMP Ultra transfers */
1118 return -ESOCKTNOSUPPORT
;
1121 /* Allocate networking socket */
1122 sk
= sk_alloc(net
, PF_IRDA
, GFP_KERNEL
, &irda_proto
);
1127 IRDA_DEBUG(2, "%s() : self is %p\n", __func__
, self
);
1129 init_waitqueue_head(&self
->query_wait
);
1131 switch (sock
->type
) {
1133 sock
->ops
= &irda_stream_ops
;
1134 self
->max_sdu_size_rx
= TTP_SAR_DISABLE
;
1136 case SOCK_SEQPACKET
:
1137 sock
->ops
= &irda_seqpacket_ops
;
1138 self
->max_sdu_size_rx
= TTP_SAR_UNBOUND
;
1142 #ifdef CONFIG_IRDA_ULTRA
1143 case IRDAPROTO_ULTRA
:
1144 sock
->ops
= &irda_ultra_ops
;
1145 /* Initialise now, because we may send on unbound
1146 * sockets. Jean II */
1147 self
->max_data_size
= ULTRA_MAX_DATA
- LMP_PID_HEADER
;
1148 self
->max_header_size
= IRDA_MAX_HEADER
+ LMP_PID_HEADER
;
1150 #endif /* CONFIG_IRDA_ULTRA */
1151 case IRDAPROTO_UNITDATA
:
1152 sock
->ops
= &irda_dgram_ops
;
1153 /* We let Unitdata conn. be like seqpack conn. */
1154 self
->max_sdu_size_rx
= TTP_SAR_UNBOUND
;
1158 return -ESOCKTNOSUPPORT
;
1163 return -ESOCKTNOSUPPORT
;
1166 /* Initialise networking socket struct */
1167 sock_init_data(sock
, sk
); /* Note : set sk->sk_refcnt to 1 */
1168 sk
->sk_family
= PF_IRDA
;
1169 sk
->sk_protocol
= protocol
;
1171 /* Register as a client with IrLMP */
1172 self
->ckey
= irlmp_register_client(0, NULL
, NULL
, NULL
);
1173 self
->mask
.word
= 0xffff;
1174 self
->rx_flow
= self
->tx_flow
= FLOW_START
;
1175 self
->nslots
= DISCOVERY_DEFAULT_SLOTS
;
1176 self
->daddr
= DEV_ADDR_ANY
; /* Until we get connected */
1177 self
->saddr
= 0x0; /* so IrLMP assign us any link */
1182 * Function irda_destroy_socket (self)
1187 static void irda_destroy_socket(struct irda_sock
*self
)
1189 IRDA_DEBUG(2, "%s(%p)\n", __func__
, self
);
1191 /* Unregister with IrLMP */
1192 irlmp_unregister_client(self
->ckey
);
1193 irlmp_unregister_service(self
->skey
);
1195 /* Unregister with LM-IAS */
1196 if (self
->ias_obj
) {
1197 irias_delete_object(self
->ias_obj
);
1198 self
->ias_obj
= NULL
;
1202 iriap_close(self
->iriap
);
1207 irttp_disconnect_request(self
->tsap
, NULL
, P_NORMAL
);
1208 irttp_close_tsap(self
->tsap
);
1211 #ifdef CONFIG_IRDA_ULTRA
1213 irlmp_close_lsap(self
->lsap
);
1216 #endif /* CONFIG_IRDA_ULTRA */
1220 * Function irda_release (sock)
1222 static int irda_release(struct socket
*sock
)
1224 struct sock
*sk
= sock
->sk
;
1226 IRDA_DEBUG(2, "%s()\n", __func__
);
1232 sk
->sk_state
= TCP_CLOSE
;
1233 sk
->sk_shutdown
|= SEND_SHUTDOWN
;
1234 sk
->sk_state_change(sk
);
1236 /* Destroy IrDA socket */
1237 irda_destroy_socket(irda_sk(sk
));
1243 /* Purge queues (see sock_init_data()) */
1244 skb_queue_purge(&sk
->sk_receive_queue
);
1246 /* Destroy networking socket if we are the last reference on it,
1247 * i.e. if(sk->sk_refcnt == 0) -> sk_free(sk) */
1250 /* Notes on socket locking and deallocation... - Jean II
1251 * In theory we should put pairs of sock_hold() / sock_put() to
1252 * prevent the socket to be destroyed whenever there is an
1253 * outstanding request or outstanding incoming packet or event.
1255 * 1) This may include IAS request, both in connect and getsockopt.
1256 * Unfortunately, the situation is a bit more messy than it looks,
1257 * because we close iriap and kfree(self) above.
1259 * 2) This may include selective discovery in getsockopt.
1260 * Same stuff as above, irlmp registration and self are gone.
1262 * Probably 1 and 2 may not matter, because it's all triggered
1263 * by a process and the socket layer already prevent the
1264 * socket to go away while a process is holding it, through
1265 * sockfd_put() and fput()...
1267 * 3) This may include deferred TSAP closure. In particular,
1268 * we may receive a late irda_disconnect_indication()
1269 * Fortunately, (tsap_cb *)->close_pend should protect us
1272 * I did some testing on SMP, and it looks solid. And the socket
1273 * memory leak is now gone... - Jean II
1280 * Function irda_sendmsg (iocb, sock, msg, len)
1282 * Send message down to TinyTP. This function is used for both STREAM and
1283 * SEQPACK services. This is possible since it forces the client to
1284 * fragment the message if necessary
1286 static int irda_sendmsg(struct kiocb
*iocb
, struct socket
*sock
,
1287 struct msghdr
*msg
, size_t len
)
1289 struct sock
*sk
= sock
->sk
;
1290 struct irda_sock
*self
;
1291 struct sk_buff
*skb
;
1294 IRDA_DEBUG(4, "%s(), len=%zd\n", __func__
, len
);
1296 /* Note : socket.c set MSG_EOR on SEQPACKET sockets */
1297 if (msg
->msg_flags
& ~(MSG_DONTWAIT
| MSG_EOR
| MSG_CMSG_COMPAT
|
1304 if (sk
->sk_shutdown
& SEND_SHUTDOWN
)
1307 if (sk
->sk_state
!= TCP_ESTABLISHED
) {
1314 /* Check if IrTTP is wants us to slow down */
1316 if (wait_event_interruptible(*(sk_sleep(sk
)),
1317 (self
->tx_flow
!= FLOW_STOP
|| sk
->sk_state
!= TCP_ESTABLISHED
))) {
1322 /* Check if we are still connected */
1323 if (sk
->sk_state
!= TCP_ESTABLISHED
) {
1328 /* Check that we don't send out too big frames */
1329 if (len
> self
->max_data_size
) {
1330 IRDA_DEBUG(2, "%s(), Chopping frame from %zd to %d bytes!\n",
1331 __func__
, len
, self
->max_data_size
);
1332 len
= self
->max_data_size
;
1335 skb
= sock_alloc_send_skb(sk
, len
+ self
->max_header_size
+ 16,
1336 msg
->msg_flags
& MSG_DONTWAIT
, &err
);
1340 skb_reserve(skb
, self
->max_header_size
+ 16);
1341 skb_reset_transport_header(skb
);
1343 err
= memcpy_fromiovec(skb_transport_header(skb
), msg
->msg_iov
, len
);
1350 * Just send the message to TinyTP, and let it deal with possible
1351 * errors. No need to duplicate all that here
1353 err
= irttp_data_request(self
->tsap
, skb
);
1355 IRDA_DEBUG(0, "%s(), err=%d\n", __func__
, err
);
1360 /* Tell client how much data we actually sent */
1364 err
= sk_stream_error(sk
, msg
->msg_flags
, err
);
1372 * Function irda_recvmsg_dgram (iocb, sock, msg, size, flags)
1374 * Try to receive message and copy it to user. The frame is discarded
1375 * after being read, regardless of how much the user actually read
1377 static int irda_recvmsg_dgram(struct kiocb
*iocb
, struct socket
*sock
,
1378 struct msghdr
*msg
, size_t size
, int flags
)
1380 struct sock
*sk
= sock
->sk
;
1381 struct irda_sock
*self
= irda_sk(sk
);
1382 struct sk_buff
*skb
;
1386 IRDA_DEBUG(4, "%s()\n", __func__
);
1388 skb
= skb_recv_datagram(sk
, flags
& ~MSG_DONTWAIT
,
1389 flags
& MSG_DONTWAIT
, &err
);
1393 skb_reset_transport_header(skb
);
1396 if (copied
> size
) {
1397 IRDA_DEBUG(2, "%s(), Received truncated frame (%zd < %zd)!\n",
1398 __func__
, copied
, size
);
1400 msg
->msg_flags
|= MSG_TRUNC
;
1402 skb_copy_datagram_iovec(skb
, 0, msg
->msg_iov
, copied
);
1404 skb_free_datagram(sk
, skb
);
1407 * Check if we have previously stopped IrTTP and we know
1408 * have more free space in our rx_queue. If so tell IrTTP
1409 * to start delivering frames again before our rx_queue gets
1412 if (self
->rx_flow
== FLOW_STOP
) {
1413 if ((atomic_read(&sk
->sk_rmem_alloc
) << 2) <= sk
->sk_rcvbuf
) {
1414 IRDA_DEBUG(2, "%s(), Starting IrTTP\n", __func__
);
1415 self
->rx_flow
= FLOW_START
;
1416 irttp_flow_request(self
->tsap
, FLOW_START
);
1424 * Function irda_recvmsg_stream (iocb, sock, msg, size, flags)
1426 static int irda_recvmsg_stream(struct kiocb
*iocb
, struct socket
*sock
,
1427 struct msghdr
*msg
, size_t size
, int flags
)
1429 struct sock
*sk
= sock
->sk
;
1430 struct irda_sock
*self
= irda_sk(sk
);
1431 int noblock
= flags
& MSG_DONTWAIT
;
1436 IRDA_DEBUG(3, "%s()\n", __func__
);
1438 if ((err
= sock_error(sk
)) < 0)
1441 if (sock
->flags
& __SO_ACCEPTCON
)
1445 if (flags
& MSG_OOB
)
1449 target
= sock_rcvlowat(sk
, flags
& MSG_WAITALL
, size
);
1450 timeo
= sock_rcvtimeo(sk
, noblock
);
1454 struct sk_buff
*skb
= skb_dequeue(&sk
->sk_receive_queue
);
1460 if (copied
>= target
)
1463 prepare_to_wait_exclusive(sk_sleep(sk
), &wait
, TASK_INTERRUPTIBLE
);
1466 * POSIX 1003.1g mandates this order.
1468 err
= sock_error(sk
);
1471 else if (sk
->sk_shutdown
& RCV_SHUTDOWN
)
1475 else if (signal_pending(current
))
1476 err
= sock_intr_errno(timeo
);
1477 else if (sk
->sk_state
!= TCP_ESTABLISHED
)
1479 else if (skb_peek(&sk
->sk_receive_queue
) == NULL
)
1480 /* Wait process until data arrives */
1483 finish_wait(sk_sleep(sk
), &wait
);
1487 if (sk
->sk_shutdown
& RCV_SHUTDOWN
)
1493 chunk
= min_t(unsigned int, skb
->len
, size
);
1494 if (memcpy_toiovec(msg
->msg_iov
, skb
->data
, chunk
)) {
1495 skb_queue_head(&sk
->sk_receive_queue
, skb
);
1503 /* Mark read part of skb as used */
1504 if (!(flags
& MSG_PEEK
)) {
1505 skb_pull(skb
, chunk
);
1507 /* put the skb back if we didn't use it up.. */
1509 IRDA_DEBUG(1, "%s(), back on q!\n",
1511 skb_queue_head(&sk
->sk_receive_queue
, skb
);
1517 IRDA_DEBUG(0, "%s() questionable!?\n", __func__
);
1519 /* put message back and return */
1520 skb_queue_head(&sk
->sk_receive_queue
, skb
);
1526 * Check if we have previously stopped IrTTP and we know
1527 * have more free space in our rx_queue. If so tell IrTTP
1528 * to start delivering frames again before our rx_queue gets
1531 if (self
->rx_flow
== FLOW_STOP
) {
1532 if ((atomic_read(&sk
->sk_rmem_alloc
) << 2) <= sk
->sk_rcvbuf
) {
1533 IRDA_DEBUG(2, "%s(), Starting IrTTP\n", __func__
);
1534 self
->rx_flow
= FLOW_START
;
1535 irttp_flow_request(self
->tsap
, FLOW_START
);
1543 * Function irda_sendmsg_dgram (iocb, sock, msg, len)
1545 * Send message down to TinyTP for the unreliable sequenced
1549 static int irda_sendmsg_dgram(struct kiocb
*iocb
, struct socket
*sock
,
1550 struct msghdr
*msg
, size_t len
)
1552 struct sock
*sk
= sock
->sk
;
1553 struct irda_sock
*self
;
1554 struct sk_buff
*skb
;
1557 IRDA_DEBUG(4, "%s(), len=%zd\n", __func__
, len
);
1559 if (msg
->msg_flags
& ~(MSG_DONTWAIT
|MSG_CMSG_COMPAT
))
1564 if (sk
->sk_shutdown
& SEND_SHUTDOWN
) {
1565 send_sig(SIGPIPE
, current
, 0);
1571 if (sk
->sk_state
!= TCP_ESTABLISHED
)
1577 * Check that we don't send out too big frames. This is an unreliable
1578 * service, so we have no fragmentation and no coalescence
1580 if (len
> self
->max_data_size
) {
1581 IRDA_DEBUG(0, "%s(), Warning to much data! "
1582 "Chopping frame from %zd to %d bytes!\n",
1583 __func__
, len
, self
->max_data_size
);
1584 len
= self
->max_data_size
;
1587 skb
= sock_alloc_send_skb(sk
, len
+ self
->max_header_size
,
1588 msg
->msg_flags
& MSG_DONTWAIT
, &err
);
1593 skb_reserve(skb
, self
->max_header_size
);
1594 skb_reset_transport_header(skb
);
1596 IRDA_DEBUG(4, "%s(), appending user data\n", __func__
);
1598 err
= memcpy_fromiovec(skb_transport_header(skb
), msg
->msg_iov
, len
);
1605 * Just send the message to TinyTP, and let it deal with possible
1606 * errors. No need to duplicate all that here
1608 err
= irttp_udata_request(self
->tsap
, skb
);
1610 IRDA_DEBUG(0, "%s(), err=%d\n", __func__
, err
);
1623 * Function irda_sendmsg_ultra (iocb, sock, msg, len)
1625 * Send message down to IrLMP for the unreliable Ultra
1628 #ifdef CONFIG_IRDA_ULTRA
1629 static int irda_sendmsg_ultra(struct kiocb
*iocb
, struct socket
*sock
,
1630 struct msghdr
*msg
, size_t len
)
1632 struct sock
*sk
= sock
->sk
;
1633 struct irda_sock
*self
;
1636 struct sk_buff
*skb
;
1639 IRDA_DEBUG(4, "%s(), len=%zd\n", __func__
, len
);
1642 if (msg
->msg_flags
& ~(MSG_DONTWAIT
|MSG_CMSG_COMPAT
))
1648 if (sk
->sk_shutdown
& SEND_SHUTDOWN
) {
1649 send_sig(SIGPIPE
, current
, 0);
1655 /* Check if an address was specified with sendto. Jean II */
1656 if (msg
->msg_name
) {
1657 struct sockaddr_irda
*addr
= (struct sockaddr_irda
*) msg
->msg_name
;
1659 /* Check address, extract pid. Jean II */
1660 if (msg
->msg_namelen
< sizeof(*addr
))
1662 if (addr
->sir_family
!= AF_IRDA
)
1665 pid
= addr
->sir_lsap_sel
;
1667 IRDA_DEBUG(0, "%s(), extension in PID not supp!\n", __func__
);
1672 /* Check that the socket is properly bound to an Ultra
1674 if ((self
->lsap
== NULL
) ||
1675 (sk
->sk_state
!= TCP_ESTABLISHED
)) {
1676 IRDA_DEBUG(0, "%s(), socket not bound to Ultra PID.\n",
1681 /* Use PID from socket */
1686 * Check that we don't send out too big frames. This is an unreliable
1687 * service, so we have no fragmentation and no coalescence
1689 if (len
> self
->max_data_size
) {
1690 IRDA_DEBUG(0, "%s(), Warning to much data! "
1691 "Chopping frame from %zd to %d bytes!\n",
1692 __func__
, len
, self
->max_data_size
);
1693 len
= self
->max_data_size
;
1696 skb
= sock_alloc_send_skb(sk
, len
+ self
->max_header_size
,
1697 msg
->msg_flags
& MSG_DONTWAIT
, &err
);
1702 skb_reserve(skb
, self
->max_header_size
);
1703 skb_reset_transport_header(skb
);
1705 IRDA_DEBUG(4, "%s(), appending user data\n", __func__
);
1707 err
= memcpy_fromiovec(skb_transport_header(skb
), msg
->msg_iov
, len
);
1713 err
= irlmp_connless_data_request((bound
? self
->lsap
: NULL
),
1716 IRDA_DEBUG(0, "%s(), err=%d\n", __func__
, err
);
1721 #endif /* CONFIG_IRDA_ULTRA */
1724 * Function irda_shutdown (sk, how)
1726 static int irda_shutdown(struct socket
*sock
, int how
)
1728 struct sock
*sk
= sock
->sk
;
1729 struct irda_sock
*self
= irda_sk(sk
);
1731 IRDA_DEBUG(1, "%s(%p)\n", __func__
, self
);
1735 sk
->sk_state
= TCP_CLOSE
;
1736 sk
->sk_shutdown
|= SEND_SHUTDOWN
;
1737 sk
->sk_state_change(sk
);
1740 iriap_close(self
->iriap
);
1745 irttp_disconnect_request(self
->tsap
, NULL
, P_NORMAL
);
1746 irttp_close_tsap(self
->tsap
);
1750 /* A few cleanup so the socket look as good as new... */
1751 self
->rx_flow
= self
->tx_flow
= FLOW_START
; /* needed ??? */
1752 self
->daddr
= DEV_ADDR_ANY
; /* Until we get re-connected */
1753 self
->saddr
= 0x0; /* so IrLMP assign us any link */
1761 * Function irda_poll (file, sock, wait)
1763 static unsigned int irda_poll(struct file
* file
, struct socket
*sock
,
1766 struct sock
*sk
= sock
->sk
;
1767 struct irda_sock
*self
= irda_sk(sk
);
1770 IRDA_DEBUG(4, "%s()\n", __func__
);
1772 poll_wait(file
, sk_sleep(sk
), wait
);
1775 /* Exceptional events? */
1778 if (sk
->sk_shutdown
& RCV_SHUTDOWN
) {
1779 IRDA_DEBUG(0, "%s(), POLLHUP\n", __func__
);
1784 if (!skb_queue_empty(&sk
->sk_receive_queue
)) {
1785 IRDA_DEBUG(4, "Socket is readable\n");
1786 mask
|= POLLIN
| POLLRDNORM
;
1789 /* Connection-based need to check for termination and startup */
1790 switch (sk
->sk_type
) {
1792 if (sk
->sk_state
== TCP_CLOSE
) {
1793 IRDA_DEBUG(0, "%s(), POLLHUP\n", __func__
);
1797 if (sk
->sk_state
== TCP_ESTABLISHED
) {
1798 if ((self
->tx_flow
== FLOW_START
) &&
1801 mask
|= POLLOUT
| POLLWRNORM
| POLLWRBAND
;
1805 case SOCK_SEQPACKET
:
1806 if ((self
->tx_flow
== FLOW_START
) &&
1809 mask
|= POLLOUT
| POLLWRNORM
| POLLWRBAND
;
1813 if (sock_writeable(sk
))
1814 mask
|= POLLOUT
| POLLWRNORM
| POLLWRBAND
;
1824 * Function irda_ioctl (sock, cmd, arg)
1826 static int irda_ioctl(struct socket
*sock
, unsigned int cmd
, unsigned long arg
)
1828 struct sock
*sk
= sock
->sk
;
1831 IRDA_DEBUG(4, "%s(), cmd=%#x\n", __func__
, cmd
);
1838 amount
= sk
->sk_sndbuf
- sk_wmem_alloc_get(sk
);
1841 err
= put_user(amount
, (unsigned int __user
*)arg
);
1846 struct sk_buff
*skb
;
1848 /* These two are safe on a single CPU system as only user tasks fiddle here */
1849 if ((skb
= skb_peek(&sk
->sk_receive_queue
)) != NULL
)
1851 err
= put_user(amount
, (unsigned int __user
*)arg
);
1857 err
= sock_get_timestamp(sk
, (struct timeval __user
*)arg
);
1862 case SIOCGIFDSTADDR
:
1863 case SIOCSIFDSTADDR
:
1864 case SIOCGIFBRDADDR
:
1865 case SIOCSIFBRDADDR
:
1866 case SIOCGIFNETMASK
:
1867 case SIOCSIFNETMASK
:
1872 IRDA_DEBUG(1, "%s(), doing device ioctl!\n", __func__
);
1879 #ifdef CONFIG_COMPAT
1881 * Function irda_ioctl (sock, cmd, arg)
1883 static int irda_compat_ioctl(struct socket
*sock
, unsigned int cmd
, unsigned long arg
)
1886 * All IRDA's ioctl are standard ones.
1888 return -ENOIOCTLCMD
;
1893 * Function irda_setsockopt (sock, level, optname, optval, optlen)
1895 * Set some options for the socket
1898 static int irda_setsockopt(struct socket
*sock
, int level
, int optname
,
1899 char __user
*optval
, unsigned int optlen
)
1901 struct sock
*sk
= sock
->sk
;
1902 struct irda_sock
*self
= irda_sk(sk
);
1903 struct irda_ias_set
*ias_opt
;
1904 struct ias_object
*ias_obj
;
1905 struct ias_attrib
* ias_attr
; /* Attribute in IAS object */
1906 int opt
, free_ias
= 0, err
= 0;
1908 IRDA_DEBUG(2, "%s(%p)\n", __func__
, self
);
1910 if (level
!= SOL_IRLMP
)
1911 return -ENOPROTOOPT
;
1917 /* The user want to add an attribute to an existing IAS object
1918 * (in the IAS database) or to create a new object with this
1920 * We first query IAS to know if the object exist, and then
1921 * create the right attribute...
1924 if (optlen
!= sizeof(struct irda_ias_set
)) {
1929 ias_opt
= kmalloc(sizeof(struct irda_ias_set
), GFP_ATOMIC
);
1930 if (ias_opt
== NULL
) {
1935 /* Copy query to the driver. */
1936 if (copy_from_user(ias_opt
, optval
, optlen
)) {
1942 /* Find the object we target.
1943 * If the user gives us an empty string, we use the object
1944 * associated with this socket. This will workaround
1945 * duplicated class name - Jean II */
1946 if(ias_opt
->irda_class_name
[0] == '\0') {
1947 if(self
->ias_obj
== NULL
) {
1952 ias_obj
= self
->ias_obj
;
1954 ias_obj
= irias_find_object(ias_opt
->irda_class_name
);
1956 /* Only ROOT can mess with the global IAS database.
1957 * Users can only add attributes to the object associated
1958 * with the socket they own - Jean II */
1959 if((!capable(CAP_NET_ADMIN
)) &&
1960 ((ias_obj
== NULL
) || (ias_obj
!= self
->ias_obj
))) {
1966 /* If the object doesn't exist, create it */
1967 if(ias_obj
== (struct ias_object
*) NULL
) {
1968 /* Create a new object */
1969 ias_obj
= irias_new_object(ias_opt
->irda_class_name
,
1971 if (ias_obj
== NULL
) {
1979 /* Do we have the attribute already ? */
1980 if(irias_find_attrib(ias_obj
, ias_opt
->irda_attrib_name
)) {
1983 kfree(ias_obj
->name
);
1990 /* Look at the type */
1991 switch(ias_opt
->irda_attrib_type
) {
1993 /* Add an integer attribute */
1994 irias_add_integer_attrib(
1996 ias_opt
->irda_attrib_name
,
1997 ias_opt
->attribute
.irda_attrib_int
,
2002 if(ias_opt
->attribute
.irda_attrib_octet_seq
.len
>
2003 IAS_MAX_OCTET_STRING
) {
2006 kfree(ias_obj
->name
);
2013 /* Add an octet sequence attribute */
2014 irias_add_octseq_attrib(
2016 ias_opt
->irda_attrib_name
,
2017 ias_opt
->attribute
.irda_attrib_octet_seq
.octet_seq
,
2018 ias_opt
->attribute
.irda_attrib_octet_seq
.len
,
2022 /* Should check charset & co */
2024 /* The length is encoded in a __u8, and
2025 * IAS_MAX_STRING == 256, so there is no way
2026 * userspace can pass us a string too large.
2028 /* NULL terminate the string (avoid troubles) */
2029 ias_opt
->attribute
.irda_attrib_string
.string
[ias_opt
->attribute
.irda_attrib_string
.len
] = '\0';
2030 /* Add a string attribute */
2031 irias_add_string_attrib(
2033 ias_opt
->irda_attrib_name
,
2034 ias_opt
->attribute
.irda_attrib_string
.string
,
2040 kfree(ias_obj
->name
);
2046 irias_insert_object(ias_obj
);
2050 /* The user want to delete an object from our local IAS
2051 * database. We just need to query the IAS, check is the
2052 * object is not owned by the kernel and delete it.
2055 if (optlen
!= sizeof(struct irda_ias_set
)) {
2060 ias_opt
= kmalloc(sizeof(struct irda_ias_set
), GFP_ATOMIC
);
2061 if (ias_opt
== NULL
) {
2066 /* Copy query to the driver. */
2067 if (copy_from_user(ias_opt
, optval
, optlen
)) {
2073 /* Find the object we target.
2074 * If the user gives us an empty string, we use the object
2075 * associated with this socket. This will workaround
2076 * duplicated class name - Jean II */
2077 if(ias_opt
->irda_class_name
[0] == '\0')
2078 ias_obj
= self
->ias_obj
;
2080 ias_obj
= irias_find_object(ias_opt
->irda_class_name
);
2081 if(ias_obj
== (struct ias_object
*) NULL
) {
2087 /* Only ROOT can mess with the global IAS database.
2088 * Users can only del attributes from the object associated
2089 * with the socket they own - Jean II */
2090 if((!capable(CAP_NET_ADMIN
)) &&
2091 ((ias_obj
== NULL
) || (ias_obj
!= self
->ias_obj
))) {
2097 /* Find the attribute (in the object) we target */
2098 ias_attr
= irias_find_attrib(ias_obj
,
2099 ias_opt
->irda_attrib_name
);
2100 if(ias_attr
== (struct ias_attrib
*) NULL
) {
2106 /* Check is the user space own the object */
2107 if(ias_attr
->value
->owner
!= IAS_USER_ATTR
) {
2108 IRDA_DEBUG(1, "%s(), attempting to delete a kernel attribute\n", __func__
);
2114 /* Remove the attribute (and maybe the object) */
2115 irias_delete_attrib(ias_obj
, ias_attr
, 1);
2118 case IRLMP_MAX_SDU_SIZE
:
2119 if (optlen
< sizeof(int)) {
2124 if (get_user(opt
, (int __user
*)optval
)) {
2129 /* Only possible for a seqpacket service (TTP with SAR) */
2130 if (sk
->sk_type
!= SOCK_SEQPACKET
) {
2131 IRDA_DEBUG(2, "%s(), setting max_sdu_size = %d\n",
2133 self
->max_sdu_size_rx
= opt
;
2135 IRDA_WARNING("%s: not allowed to set MAXSDUSIZE for this socket type!\n",
2141 case IRLMP_HINTS_SET
:
2142 if (optlen
< sizeof(int)) {
2147 /* The input is really a (__u8 hints[2]), easier as an int */
2148 if (get_user(opt
, (int __user
*)optval
)) {
2153 /* Unregister any old registration */
2155 irlmp_unregister_service(self
->skey
);
2157 self
->skey
= irlmp_register_service((__u16
) opt
);
2159 case IRLMP_HINT_MASK_SET
:
2160 /* As opposed to the previous case which set the hint bits
2161 * that we advertise, this one set the filter we use when
2162 * making a discovery (nodes which don't match any hint
2163 * bit in the mask are not reported).
2165 if (optlen
< sizeof(int)) {
2170 /* The input is really a (__u8 hints[2]), easier as an int */
2171 if (get_user(opt
, (int __user
*)optval
)) {
2176 /* Set the new hint mask */
2177 self
->mask
.word
= (__u16
) opt
;
2178 /* Mask out extension bits */
2179 self
->mask
.word
&= 0x7f7f;
2180 /* Check if no bits */
2181 if(!self
->mask
.word
)
2182 self
->mask
.word
= 0xFFFF;
2197 * Function irda_extract_ias_value(ias_opt, ias_value)
2199 * Translate internal IAS value structure to the user space representation
2201 * The external representation of IAS values, as we exchange them with
2202 * user space program is quite different from the internal representation,
2203 * as stored in the IAS database (because we need a flat structure for
2204 * crossing kernel boundary).
2205 * This function transform the former in the latter. We also check
2206 * that the value type is valid.
2208 static int irda_extract_ias_value(struct irda_ias_set
*ias_opt
,
2209 struct ias_value
*ias_value
)
2211 /* Look at the type */
2212 switch (ias_value
->type
) {
2214 /* Copy the integer */
2215 ias_opt
->attribute
.irda_attrib_int
= ias_value
->t
.integer
;
2219 ias_opt
->attribute
.irda_attrib_octet_seq
.len
= ias_value
->len
;
2221 memcpy(ias_opt
->attribute
.irda_attrib_octet_seq
.octet_seq
,
2222 ias_value
->t
.oct_seq
, ias_value
->len
);
2226 ias_opt
->attribute
.irda_attrib_string
.len
= ias_value
->len
;
2227 ias_opt
->attribute
.irda_attrib_string
.charset
= ias_value
->charset
;
2229 memcpy(ias_opt
->attribute
.irda_attrib_string
.string
,
2230 ias_value
->t
.string
, ias_value
->len
);
2231 /* NULL terminate the string (avoid troubles) */
2232 ias_opt
->attribute
.irda_attrib_string
.string
[ias_value
->len
] = '\0';
2239 /* Copy type over */
2240 ias_opt
->irda_attrib_type
= ias_value
->type
;
2246 * Function irda_getsockopt (sock, level, optname, optval, optlen)
2248 static int irda_getsockopt(struct socket
*sock
, int level
, int optname
,
2249 char __user
*optval
, int __user
*optlen
)
2251 struct sock
*sk
= sock
->sk
;
2252 struct irda_sock
*self
= irda_sk(sk
);
2253 struct irda_device_list list
;
2254 struct irda_device_info
*discoveries
;
2255 struct irda_ias_set
* ias_opt
; /* IAS get/query params */
2256 struct ias_object
* ias_obj
; /* Object in IAS */
2257 struct ias_attrib
* ias_attr
; /* Attribute in IAS object */
2258 int daddr
= DEV_ADDR_ANY
; /* Dest address for IAS queries */
2264 IRDA_DEBUG(2, "%s(%p)\n", __func__
, self
);
2266 if (level
!= SOL_IRLMP
)
2267 return -ENOPROTOOPT
;
2269 if (get_user(len
, optlen
))
2278 case IRLMP_ENUMDEVICES
:
2280 /* Offset to first device entry */
2281 offset
= sizeof(struct irda_device_list
) -
2282 sizeof(struct irda_device_info
);
2289 /* Ask lmp for the current discovery log */
2290 discoveries
= irlmp_get_discoveries(&list
.len
, self
->mask
.word
,
2292 /* Check if the we got some results */
2293 if (discoveries
== NULL
) {
2295 goto out
; /* Didn't find any devices */
2298 /* Write total list length back to client */
2299 if (copy_to_user(optval
, &list
, offset
))
2302 /* Copy the list itself - watch for overflow */
2303 if (list
.len
> 2048) {
2307 total
= offset
+ (list
.len
* sizeof(struct irda_device_info
));
2310 if (copy_to_user(optval
+offset
, discoveries
, total
- offset
))
2313 /* Write total number of bytes used back to client */
2314 if (put_user(total
, optlen
))
2317 /* Free up our buffer */
2320 case IRLMP_MAX_SDU_SIZE
:
2321 val
= self
->max_data_size
;
2323 if (put_user(len
, optlen
)) {
2328 if (copy_to_user(optval
, &val
, len
)) {
2335 /* The user want an object from our local IAS database.
2336 * We just need to query the IAS and return the value
2339 /* Check that the user has allocated the right space for us */
2340 if (len
!= sizeof(struct irda_ias_set
)) {
2345 ias_opt
= kmalloc(sizeof(struct irda_ias_set
), GFP_ATOMIC
);
2346 if (ias_opt
== NULL
) {
2351 /* Copy query to the driver. */
2352 if (copy_from_user(ias_opt
, optval
, len
)) {
2358 /* Find the object we target.
2359 * If the user gives us an empty string, we use the object
2360 * associated with this socket. This will workaround
2361 * duplicated class name - Jean II */
2362 if(ias_opt
->irda_class_name
[0] == '\0')
2363 ias_obj
= self
->ias_obj
;
2365 ias_obj
= irias_find_object(ias_opt
->irda_class_name
);
2366 if(ias_obj
== (struct ias_object
*) NULL
) {
2372 /* Find the attribute (in the object) we target */
2373 ias_attr
= irias_find_attrib(ias_obj
,
2374 ias_opt
->irda_attrib_name
);
2375 if(ias_attr
== (struct ias_attrib
*) NULL
) {
2381 /* Translate from internal to user structure */
2382 err
= irda_extract_ias_value(ias_opt
, ias_attr
->value
);
2388 /* Copy reply to the user */
2389 if (copy_to_user(optval
, ias_opt
,
2390 sizeof(struct irda_ias_set
))) {
2395 /* Note : don't need to put optlen, we checked it */
2398 case IRLMP_IAS_QUERY
:
2399 /* The user want an object from a remote IAS database.
2400 * We need to use IAP to query the remote database and
2401 * then wait for the answer to come back. */
2403 /* Check that the user has allocated the right space for us */
2404 if (len
!= sizeof(struct irda_ias_set
)) {
2409 ias_opt
= kmalloc(sizeof(struct irda_ias_set
), GFP_ATOMIC
);
2410 if (ias_opt
== NULL
) {
2415 /* Copy query to the driver. */
2416 if (copy_from_user(ias_opt
, optval
, len
)) {
2422 /* At this point, there are two cases...
2423 * 1) the socket is connected - that's the easy case, we
2424 * just query the device we are connected to...
2425 * 2) the socket is not connected - the user doesn't want
2426 * to connect and/or may not have a valid service name
2427 * (so can't create a fake connection). In this case,
2428 * we assume that the user pass us a valid destination
2429 * address in the requesting structure...
2431 if(self
->daddr
!= DEV_ADDR_ANY
) {
2432 /* We are connected - reuse known daddr */
2433 daddr
= self
->daddr
;
2435 /* We are not connected, we must specify a valid
2436 * destination address */
2437 daddr
= ias_opt
->daddr
;
2438 if((!daddr
) || (daddr
== DEV_ADDR_ANY
)) {
2445 /* Check that we can proceed with IAP */
2447 IRDA_WARNING("%s: busy with a previous query\n",
2454 self
->iriap
= iriap_open(LSAP_ANY
, IAS_CLIENT
, self
,
2455 irda_getvalue_confirm
);
2457 if (self
->iriap
== NULL
) {
2463 /* Treat unexpected wakeup as disconnect */
2464 self
->errno
= -EHOSTUNREACH
;
2466 /* Query remote LM-IAS */
2467 iriap_getvaluebyclass_request(self
->iriap
,
2469 ias_opt
->irda_class_name
,
2470 ias_opt
->irda_attrib_name
);
2472 /* Wait for answer, if not yet finished (or failed) */
2473 if (wait_event_interruptible(self
->query_wait
,
2474 (self
->iriap
== NULL
))) {
2475 /* pending request uses copy of ias_opt-content
2476 * we can free it regardless! */
2478 /* Treat signals as disconnect */
2479 err
= -EHOSTUNREACH
;
2483 /* Check what happened */
2487 /* Requested object/attribute doesn't exist */
2488 if((self
->errno
== IAS_CLASS_UNKNOWN
) ||
2489 (self
->errno
== IAS_ATTRIB_UNKNOWN
))
2490 err
= -EADDRNOTAVAIL
;
2492 err
= -EHOSTUNREACH
;
2497 /* Translate from internal to user structure */
2498 err
= irda_extract_ias_value(ias_opt
, self
->ias_result
);
2499 if (self
->ias_result
)
2500 irias_delete_value(self
->ias_result
);
2506 /* Copy reply to the user */
2507 if (copy_to_user(optval
, ias_opt
,
2508 sizeof(struct irda_ias_set
))) {
2513 /* Note : don't need to put optlen, we checked it */
2516 case IRLMP_WAITDEVICE
:
2517 /* This function is just another way of seeing life ;-)
2518 * IRLMP_ENUMDEVICES assumes that you have a static network,
2519 * and that you just want to pick one of the devices present.
2520 * On the other hand, in here we assume that no device is
2521 * present and that at some point in the future a device will
2522 * come into range. When this device arrive, we just wake
2523 * up the caller, so that he has time to connect to it before
2524 * the device goes away...
2525 * Note : once the node has been discovered for more than a
2526 * few second, it won't trigger this function, unless it
2527 * goes away and come back changes its hint bits (so we
2528 * might call it IRLMP_WAITNEWDEVICE).
2531 /* Check that the user is passing us an int */
2532 if (len
!= sizeof(int)) {
2536 /* Get timeout in ms (max time we block the caller) */
2537 if (get_user(val
, (int __user
*)optval
)) {
2542 /* Tell IrLMP we want to be notified */
2543 irlmp_update_client(self
->ckey
, self
->mask
.word
,
2544 irda_selective_discovery_indication
,
2545 NULL
, (void *) self
);
2547 /* Do some discovery (and also return cached results) */
2548 irlmp_discovery_request(self
->nslots
);
2550 /* Wait until a node is discovered */
2551 if (!self
->cachedaddr
) {
2552 IRDA_DEBUG(1, "%s(), nothing discovered yet, going to sleep...\n", __func__
);
2554 /* Set watchdog timer to expire in <val> ms. */
2556 setup_timer(&self
->watchdog
, irda_discovery_timeout
,
2557 (unsigned long)self
);
2558 mod_timer(&self
->watchdog
,
2559 jiffies
+ msecs_to_jiffies(val
));
2561 /* Wait for IR-LMP to call us back */
2562 __wait_event_interruptible(self
->query_wait
,
2563 (self
->cachedaddr
!= 0 || self
->errno
== -ETIME
),
2566 /* If watchdog is still activated, kill it! */
2567 del_timer(&(self
->watchdog
));
2569 IRDA_DEBUG(1, "%s(), ...waking up !\n", __func__
);
2575 IRDA_DEBUG(1, "%s(), found immediately !\n",
2578 /* Tell IrLMP that we have been notified */
2579 irlmp_update_client(self
->ckey
, self
->mask
.word
,
2582 /* Check if the we got some results */
2583 if (!self
->cachedaddr
) {
2584 err
= -EAGAIN
; /* Didn't find any devices */
2587 daddr
= self
->cachedaddr
;
2589 self
->cachedaddr
= 0;
2591 /* We return the daddr of the device that trigger the
2592 * wakeup. As irlmp pass us only the new devices, we
2593 * are sure that it's not an old device.
2594 * If the user want more details, he should query
2595 * the whole discovery log and pick one device...
2597 if (put_user(daddr
, (int __user
*)optval
)) {
2614 static const struct net_proto_family irda_family_ops
= {
2616 .create
= irda_create
,
2617 .owner
= THIS_MODULE
,
2620 static const struct proto_ops irda_stream_ops
= {
2622 .owner
= THIS_MODULE
,
2623 .release
= irda_release
,
2625 .connect
= irda_connect
,
2626 .socketpair
= sock_no_socketpair
,
2627 .accept
= irda_accept
,
2628 .getname
= irda_getname
,
2630 .ioctl
= irda_ioctl
,
2631 #ifdef CONFIG_COMPAT
2632 .compat_ioctl
= irda_compat_ioctl
,
2634 .listen
= irda_listen
,
2635 .shutdown
= irda_shutdown
,
2636 .setsockopt
= irda_setsockopt
,
2637 .getsockopt
= irda_getsockopt
,
2638 .sendmsg
= irda_sendmsg
,
2639 .recvmsg
= irda_recvmsg_stream
,
2640 .mmap
= sock_no_mmap
,
2641 .sendpage
= sock_no_sendpage
,
2644 static const struct proto_ops irda_seqpacket_ops
= {
2646 .owner
= THIS_MODULE
,
2647 .release
= irda_release
,
2649 .connect
= irda_connect
,
2650 .socketpair
= sock_no_socketpair
,
2651 .accept
= irda_accept
,
2652 .getname
= irda_getname
,
2653 .poll
= datagram_poll
,
2654 .ioctl
= irda_ioctl
,
2655 #ifdef CONFIG_COMPAT
2656 .compat_ioctl
= irda_compat_ioctl
,
2658 .listen
= irda_listen
,
2659 .shutdown
= irda_shutdown
,
2660 .setsockopt
= irda_setsockopt
,
2661 .getsockopt
= irda_getsockopt
,
2662 .sendmsg
= irda_sendmsg
,
2663 .recvmsg
= irda_recvmsg_dgram
,
2664 .mmap
= sock_no_mmap
,
2665 .sendpage
= sock_no_sendpage
,
2668 static const struct proto_ops irda_dgram_ops
= {
2670 .owner
= THIS_MODULE
,
2671 .release
= irda_release
,
2673 .connect
= irda_connect
,
2674 .socketpair
= sock_no_socketpair
,
2675 .accept
= irda_accept
,
2676 .getname
= irda_getname
,
2677 .poll
= datagram_poll
,
2678 .ioctl
= irda_ioctl
,
2679 #ifdef CONFIG_COMPAT
2680 .compat_ioctl
= irda_compat_ioctl
,
2682 .listen
= irda_listen
,
2683 .shutdown
= irda_shutdown
,
2684 .setsockopt
= irda_setsockopt
,
2685 .getsockopt
= irda_getsockopt
,
2686 .sendmsg
= irda_sendmsg_dgram
,
2687 .recvmsg
= irda_recvmsg_dgram
,
2688 .mmap
= sock_no_mmap
,
2689 .sendpage
= sock_no_sendpage
,
2692 #ifdef CONFIG_IRDA_ULTRA
2693 static const struct proto_ops irda_ultra_ops
= {
2695 .owner
= THIS_MODULE
,
2696 .release
= irda_release
,
2698 .connect
= sock_no_connect
,
2699 .socketpair
= sock_no_socketpair
,
2700 .accept
= sock_no_accept
,
2701 .getname
= irda_getname
,
2702 .poll
= datagram_poll
,
2703 .ioctl
= irda_ioctl
,
2704 #ifdef CONFIG_COMPAT
2705 .compat_ioctl
= irda_compat_ioctl
,
2707 .listen
= sock_no_listen
,
2708 .shutdown
= irda_shutdown
,
2709 .setsockopt
= irda_setsockopt
,
2710 .getsockopt
= irda_getsockopt
,
2711 .sendmsg
= irda_sendmsg_ultra
,
2712 .recvmsg
= irda_recvmsg_dgram
,
2713 .mmap
= sock_no_mmap
,
2714 .sendpage
= sock_no_sendpage
,
2716 #endif /* CONFIG_IRDA_ULTRA */
2719 * Function irsock_init (pro)
2721 * Initialize IrDA protocol
2724 int __init
irsock_init(void)
2726 int rc
= proto_register(&irda_proto
, 0);
2729 rc
= sock_register(&irda_family_ops
);
2735 * Function irsock_cleanup (void)
2737 * Remove IrDA protocol
2740 void irsock_cleanup(void)
2742 sock_unregister(PF_IRDA
);
2743 proto_unregister(&irda_proto
);