1 /*********************************************************************
5 * Description: IrDA sockets implementation
7 * Author: Dag Brattli <dagb@cs.uit.no>
8 * Created at: Sun May 31 10:12:43 1998
9 * Modified at: Sat Dec 25 21:10:23 1999
10 * Modified by: Dag Brattli <dag@brattli.net>
11 * Sources: af_netroom.c, af_ax25.c, af_rose.c, af_x25.c etc.
13 * Copyright (c) 1999 Dag Brattli <dagb@cs.uit.no>
14 * Copyright (c) 1999-2003 Jean Tourrilhes <jt@hpl.hp.com>
15 * All Rights Reserved.
17 * This program is free software; you can redistribute it and/or
18 * modify it under the terms of the GNU General Public License as
19 * published by the Free Software Foundation; either version 2 of
20 * the License, or (at your option) any later version.
22 * This program is distributed in the hope that it will be useful,
23 * but WITHOUT ANY WARRANTY; without even the implied warranty of
24 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25 * GNU General Public License for more details.
27 * You should have received a copy of the GNU General Public License
28 * along with this program; if not, see <http://www.gnu.org/licenses/>.
30 * Linux-IrDA now supports four different types of IrDA sockets:
32 * o SOCK_STREAM: TinyTP connections with SAR disabled. The
33 * max SDU size is 0 for conn. of this type
34 * o SOCK_SEQPACKET: TinyTP connections with SAR enabled. TTP may
35 * fragment the messages, but will preserve
36 * the message boundaries
37 * o SOCK_DGRAM: IRDAPROTO_UNITDATA: TinyTP connections with Unitdata
38 * (unreliable) transfers
39 * IRDAPROTO_ULTRA: Connectionless and unreliable data
41 ********************************************************************/
43 #include <linux/capability.h>
44 #include <linux/module.h>
45 #include <linux/types.h>
46 #include <linux/socket.h>
47 #include <linux/sockios.h>
48 #include <linux/slab.h>
49 #include <linux/init.h>
50 #include <linux/net.h>
51 #include <linux/irda.h>
52 #include <linux/poll.h>
54 #include <asm/ioctls.h> /* TIOCOUTQ, TIOCINQ */
55 #include <asm/uaccess.h>
58 #include <net/tcp_states.h>
60 #include <net/irda/af_irda.h>
62 static int irda_create(struct net
*net
, struct socket
*sock
, int protocol
, int kern
);
64 static const struct proto_ops irda_stream_ops
;
65 static const struct proto_ops irda_seqpacket_ops
;
66 static const struct proto_ops irda_dgram_ops
;
68 #ifdef CONFIG_IRDA_ULTRA
69 static const struct proto_ops irda_ultra_ops
;
70 #define ULTRA_MAX_DATA 382
71 #endif /* CONFIG_IRDA_ULTRA */
73 #define IRDA_MAX_HEADER (TTP_MAX_HEADER)
76 * Function irda_data_indication (instance, sap, skb)
78 * Received some data from TinyTP. Just queue it on the receive queue
81 static int irda_data_indication(void *instance
, void *sap
, struct sk_buff
*skb
)
83 struct irda_sock
*self
;
87 IRDA_DEBUG(3, "%s()\n", __func__
);
92 err
= sock_queue_rcv_skb(sk
, skb
);
94 IRDA_DEBUG(1, "%s(), error: no more mem!\n", __func__
);
95 self
->rx_flow
= FLOW_STOP
;
97 /* When we return error, TTP will need to requeue the skb */
105 * Function irda_disconnect_indication (instance, sap, reason, skb)
107 * Connection has been closed. Check reason to find out why
110 static void irda_disconnect_indication(void *instance
, void *sap
,
111 LM_REASON reason
, struct sk_buff
*skb
)
113 struct irda_sock
*self
;
118 IRDA_DEBUG(2, "%s(%p)\n", __func__
, self
);
120 /* Don't care about it, but let's not leak it */
126 IRDA_DEBUG(0, "%s(%p) : BUG : sk is NULL\n",
131 /* Prevent race conditions with irda_release() and irda_shutdown() */
133 if (!sock_flag(sk
, SOCK_DEAD
) && sk
->sk_state
!= TCP_CLOSE
) {
134 sk
->sk_state
= TCP_CLOSE
;
135 sk
->sk_shutdown
|= SEND_SHUTDOWN
;
137 sk
->sk_state_change(sk
);
140 * If we leave it open, IrLMP put it back into the list of
141 * unconnected LSAPs. The problem is that any incoming request
142 * can then be matched to this socket (and it will be, because
143 * it is at the head of the list). This would prevent any
144 * listening socket waiting on the same TSAP to get those
145 * requests. Some apps forget to close sockets, or hang to it
146 * a bit too long, so we may stay in this dead state long
147 * enough to be noticed...
148 * Note : all socket function do check sk->sk_state, so we are
153 irttp_close_tsap(self
->tsap
);
159 /* Note : once we are there, there is not much you want to do
160 * with the socket anymore, apart from closing it.
161 * For example, bind() and connect() won't reset sk->sk_err,
162 * sk->sk_shutdown and sk->sk_flags to valid values...
168 * Function irda_connect_confirm (instance, sap, qos, max_sdu_size, skb)
170 * Connections has been confirmed by the remote device
173 static void irda_connect_confirm(void *instance
, void *sap
,
174 struct qos_info
*qos
,
175 __u32 max_sdu_size
, __u8 max_header_size
,
178 struct irda_sock
*self
;
183 IRDA_DEBUG(2, "%s(%p)\n", __func__
, self
);
192 // Should be ??? skb_queue_tail(&sk->sk_receive_queue, skb);
194 /* How much header space do we need to reserve */
195 self
->max_header_size
= max_header_size
;
197 /* IrTTP max SDU size in transmit direction */
198 self
->max_sdu_size_tx
= max_sdu_size
;
200 /* Find out what the largest chunk of data that we can transmit is */
201 switch (sk
->sk_type
) {
203 if (max_sdu_size
!= 0) {
204 IRDA_ERROR("%s: max_sdu_size must be 0\n",
208 self
->max_data_size
= irttp_get_max_seg_size(self
->tsap
);
211 if (max_sdu_size
== 0) {
212 IRDA_ERROR("%s: max_sdu_size cannot be 0\n",
216 self
->max_data_size
= max_sdu_size
;
219 self
->max_data_size
= irttp_get_max_seg_size(self
->tsap
);
222 IRDA_DEBUG(2, "%s(), max_data_size=%d\n", __func__
,
223 self
->max_data_size
);
225 memcpy(&self
->qos_tx
, qos
, sizeof(struct qos_info
));
227 /* We are now connected! */
228 sk
->sk_state
= TCP_ESTABLISHED
;
229 sk
->sk_state_change(sk
);
233 * Function irda_connect_indication(instance, sap, qos, max_sdu_size, userdata)
235 * Incoming connection
238 static void irda_connect_indication(void *instance
, void *sap
,
239 struct qos_info
*qos
, __u32 max_sdu_size
,
240 __u8 max_header_size
, struct sk_buff
*skb
)
242 struct irda_sock
*self
;
247 IRDA_DEBUG(2, "%s(%p)\n", __func__
, self
);
255 /* How much header space do we need to reserve */
256 self
->max_header_size
= max_header_size
;
258 /* IrTTP max SDU size in transmit direction */
259 self
->max_sdu_size_tx
= max_sdu_size
;
261 /* Find out what the largest chunk of data that we can transmit is */
262 switch (sk
->sk_type
) {
264 if (max_sdu_size
!= 0) {
265 IRDA_ERROR("%s: max_sdu_size must be 0\n",
270 self
->max_data_size
= irttp_get_max_seg_size(self
->tsap
);
273 if (max_sdu_size
== 0) {
274 IRDA_ERROR("%s: max_sdu_size cannot be 0\n",
279 self
->max_data_size
= max_sdu_size
;
282 self
->max_data_size
= irttp_get_max_seg_size(self
->tsap
);
285 IRDA_DEBUG(2, "%s(), max_data_size=%d\n", __func__
,
286 self
->max_data_size
);
288 memcpy(&self
->qos_tx
, qos
, sizeof(struct qos_info
));
290 skb_queue_tail(&sk
->sk_receive_queue
, skb
);
291 sk
->sk_state_change(sk
);
295 * Function irda_connect_response (handle)
297 * Accept incoming connection
300 static void irda_connect_response(struct irda_sock
*self
)
304 IRDA_DEBUG(2, "%s()\n", __func__
);
306 skb
= alloc_skb(TTP_MAX_HEADER
+ TTP_SAR_HEADER
, GFP_KERNEL
);
308 IRDA_DEBUG(0, "%s() Unable to allocate sk_buff!\n",
313 /* Reserve space for MUX_CONTROL and LAP header */
314 skb_reserve(skb
, IRDA_MAX_HEADER
);
316 irttp_connect_response(self
->tsap
, self
->max_sdu_size_rx
, skb
);
320 * Function irda_flow_indication (instance, sap, flow)
322 * Used by TinyTP to tell us if it can accept more data or not
325 static void irda_flow_indication(void *instance
, void *sap
, LOCAL_FLOW flow
)
327 struct irda_sock
*self
;
330 IRDA_DEBUG(2, "%s()\n", __func__
);
338 IRDA_DEBUG(1, "%s(), IrTTP wants us to slow down\n",
340 self
->tx_flow
= flow
;
343 self
->tx_flow
= flow
;
344 IRDA_DEBUG(1, "%s(), IrTTP wants us to start again\n",
346 wake_up_interruptible(sk_sleep(sk
));
349 IRDA_DEBUG(0, "%s(), Unknown flow command!\n", __func__
);
350 /* Unknown flow command, better stop */
351 self
->tx_flow
= flow
;
357 * Function irda_getvalue_confirm (obj_id, value, priv)
359 * Got answer from remote LM-IAS, just pass object to requester...
361 * Note : duplicate from above, but we need our own version that
362 * doesn't touch the dtsap_sel and save the full value structure...
364 static void irda_getvalue_confirm(int result
, __u16 obj_id
,
365 struct ias_value
*value
, void *priv
)
367 struct irda_sock
*self
;
371 IRDA_WARNING("%s: lost myself!\n", __func__
);
375 IRDA_DEBUG(2, "%s(%p)\n", __func__
, self
);
377 /* We probably don't need to make any more queries */
378 iriap_close(self
->iriap
);
381 /* Check if request succeeded */
382 if (result
!= IAS_SUCCESS
) {
383 IRDA_DEBUG(1, "%s(), IAS query failed! (%d)\n", __func__
,
386 self
->errno
= result
; /* We really need it later */
388 /* Wake up any processes waiting for result */
389 wake_up_interruptible(&self
->query_wait
);
394 /* Pass the object to the caller (so the caller must delete it) */
395 self
->ias_result
= value
;
398 /* Wake up any processes waiting for result */
399 wake_up_interruptible(&self
->query_wait
);
403 * Function irda_selective_discovery_indication (discovery)
405 * Got a selective discovery indication from IrLMP.
407 * IrLMP is telling us that this node is new and matching our hint bit
408 * filter. Wake up any process waiting for answer...
410 static void irda_selective_discovery_indication(discinfo_t
*discovery
,
414 struct irda_sock
*self
;
416 IRDA_DEBUG(2, "%s()\n", __func__
);
420 IRDA_WARNING("%s: lost myself!\n", __func__
);
424 /* Pass parameter to the caller */
425 self
->cachedaddr
= discovery
->daddr
;
427 /* Wake up process if its waiting for device to be discovered */
428 wake_up_interruptible(&self
->query_wait
);
432 * Function irda_discovery_timeout (priv)
434 * Timeout in the selective discovery process
436 * We were waiting for a node to be discovered, but nothing has come up
437 * so far. Wake up the user and tell him that we failed...
439 static void irda_discovery_timeout(u_long priv
)
441 struct irda_sock
*self
;
443 IRDA_DEBUG(2, "%s()\n", __func__
);
445 self
= (struct irda_sock
*) priv
;
446 BUG_ON(self
== NULL
);
448 /* Nothing for the caller */
449 self
->cachelog
= NULL
;
450 self
->cachedaddr
= 0;
451 self
->errno
= -ETIME
;
453 /* Wake up process if its still waiting... */
454 wake_up_interruptible(&self
->query_wait
);
458 * Function irda_open_tsap (self)
460 * Open local Transport Service Access Point (TSAP)
463 static int irda_open_tsap(struct irda_sock
*self
, __u8 tsap_sel
, char *name
)
468 IRDA_DEBUG(0, "%s: busy!\n", __func__
);
472 /* Initialize callbacks to be used by the IrDA stack */
473 irda_notify_init(¬ify
);
474 notify
.connect_confirm
= irda_connect_confirm
;
475 notify
.connect_indication
= irda_connect_indication
;
476 notify
.disconnect_indication
= irda_disconnect_indication
;
477 notify
.data_indication
= irda_data_indication
;
478 notify
.udata_indication
= irda_data_indication
;
479 notify
.flow_indication
= irda_flow_indication
;
480 notify
.instance
= self
;
481 strncpy(notify
.name
, name
, NOTIFY_MAX_NAME
);
483 self
->tsap
= irttp_open_tsap(tsap_sel
, DEFAULT_INITIAL_CREDIT
,
485 if (self
->tsap
== NULL
) {
486 IRDA_DEBUG(0, "%s(), Unable to allocate TSAP!\n",
490 /* Remember which TSAP selector we actually got */
491 self
->stsap_sel
= self
->tsap
->stsap_sel
;
497 * Function irda_open_lsap (self)
499 * Open local Link Service Access Point (LSAP). Used for opening Ultra
502 #ifdef CONFIG_IRDA_ULTRA
503 static int irda_open_lsap(struct irda_sock
*self
, int pid
)
508 IRDA_WARNING("%s(), busy!\n", __func__
);
512 /* Initialize callbacks to be used by the IrDA stack */
513 irda_notify_init(¬ify
);
514 notify
.udata_indication
= irda_data_indication
;
515 notify
.instance
= self
;
516 strncpy(notify
.name
, "Ultra", NOTIFY_MAX_NAME
);
518 self
->lsap
= irlmp_open_lsap(LSAP_CONNLESS
, ¬ify
, pid
);
519 if (self
->lsap
== NULL
) {
520 IRDA_DEBUG( 0, "%s(), Unable to allocate LSAP!\n", __func__
);
526 #endif /* CONFIG_IRDA_ULTRA */
529 * Function irda_find_lsap_sel (self, name)
531 * Try to lookup LSAP selector in remote LM-IAS
533 * Basically, we start a IAP query, and then go to sleep. When the query
534 * return, irda_getvalue_confirm will wake us up, and we can examine the
535 * result of the query...
536 * Note that in some case, the query fail even before we go to sleep,
537 * creating some races...
539 static int irda_find_lsap_sel(struct irda_sock
*self
, char *name
)
541 IRDA_DEBUG(2, "%s(%p, %s)\n", __func__
, self
, name
);
544 IRDA_WARNING("%s(): busy with a previous query\n",
549 self
->iriap
= iriap_open(LSAP_ANY
, IAS_CLIENT
, self
,
550 irda_getvalue_confirm
);
551 if(self
->iriap
== NULL
)
554 /* Treat unexpected wakeup as disconnect */
555 self
->errno
= -EHOSTUNREACH
;
557 /* Query remote LM-IAS */
558 iriap_getvaluebyclass_request(self
->iriap
, self
->saddr
, self
->daddr
,
559 name
, "IrDA:TinyTP:LsapSel");
561 /* Wait for answer, if not yet finished (or failed) */
562 if (wait_event_interruptible(self
->query_wait
, (self
->iriap
==NULL
)))
563 /* Treat signals as disconnect */
564 return -EHOSTUNREACH
;
566 /* Check what happened */
569 /* Requested object/attribute doesn't exist */
570 if((self
->errno
== IAS_CLASS_UNKNOWN
) ||
571 (self
->errno
== IAS_ATTRIB_UNKNOWN
))
572 return -EADDRNOTAVAIL
;
574 return -EHOSTUNREACH
;
577 /* Get the remote TSAP selector */
578 switch (self
->ias_result
->type
) {
580 IRDA_DEBUG(4, "%s() int=%d\n",
581 __func__
, self
->ias_result
->t
.integer
);
583 if (self
->ias_result
->t
.integer
!= -1)
584 self
->dtsap_sel
= self
->ias_result
->t
.integer
;
590 IRDA_DEBUG(0, "%s(), bad type!\n", __func__
);
593 if (self
->ias_result
)
594 irias_delete_value(self
->ias_result
);
599 return -EADDRNOTAVAIL
;
603 * Function irda_discover_daddr_and_lsap_sel (self, name)
605 * This try to find a device with the requested service.
607 * It basically look into the discovery log. For each address in the list,
608 * it queries the LM-IAS of the device to find if this device offer
609 * the requested service.
610 * If there is more than one node supporting the service, we complain
611 * to the user (it should move devices around).
612 * The, we set both the destination address and the lsap selector to point
613 * on the service on the unique device we have found.
615 * Note : this function fails if there is more than one device in range,
616 * because IrLMP doesn't disconnect the LAP when the last LSAP is closed.
617 * Moreover, we would need to wait the LAP disconnection...
619 static int irda_discover_daddr_and_lsap_sel(struct irda_sock
*self
, char *name
)
621 discinfo_t
*discoveries
; /* Copy of the discovery log */
622 int number
; /* Number of nodes in the log */
624 int err
= -ENETUNREACH
;
625 __u32 daddr
= DEV_ADDR_ANY
; /* Address we found the service on */
626 __u8 dtsap_sel
= 0x0; /* TSAP associated with it */
628 IRDA_DEBUG(2, "%s(), name=%s\n", __func__
, name
);
630 /* Ask lmp for the current discovery log
631 * Note : we have to use irlmp_get_discoveries(), as opposed
632 * to play with the cachelog directly, because while we are
633 * making our ias query, le log might change... */
634 discoveries
= irlmp_get_discoveries(&number
, self
->mask
.word
,
636 /* Check if the we got some results */
637 if (discoveries
== NULL
)
638 return -ENETUNREACH
; /* No nodes discovered */
641 * Now, check all discovered devices (if any), and connect
642 * client only about the services that the client is
645 for(i
= 0; i
< number
; i
++) {
646 /* Try the address in the log */
647 self
->daddr
= discoveries
[i
].daddr
;
649 IRDA_DEBUG(1, "%s(), trying daddr = %08x\n",
650 __func__
, self
->daddr
);
652 /* Query remote LM-IAS for this service */
653 err
= irda_find_lsap_sel(self
, name
);
656 /* We found the requested service */
657 if(daddr
!= DEV_ADDR_ANY
) {
658 IRDA_DEBUG(1, "%s(), discovered service ''%s'' in two different devices !!!\n",
660 self
->daddr
= DEV_ADDR_ANY
;
664 /* First time we found that one, save it ! */
666 dtsap_sel
= self
->dtsap_sel
;
669 /* Requested service simply doesn't exist on this node */
672 /* Something bad did happen :-( */
673 IRDA_DEBUG(0, "%s(), unexpected IAS query failure\n", __func__
);
674 self
->daddr
= DEV_ADDR_ANY
;
676 return -EHOSTUNREACH
;
680 /* Cleanup our copy of the discovery log */
683 /* Check out what we found */
684 if(daddr
== DEV_ADDR_ANY
) {
685 IRDA_DEBUG(1, "%s(), cannot discover service ''%s'' in any device !!!\n",
687 self
->daddr
= DEV_ADDR_ANY
;
688 return -EADDRNOTAVAIL
;
691 /* Revert back to discovered device & service */
694 self
->dtsap_sel
= dtsap_sel
;
696 IRDA_DEBUG(1, "%s(), discovered requested service ''%s'' at address %08x\n",
697 __func__
, name
, self
->daddr
);
703 * Function irda_getname (sock, uaddr, uaddr_len, peer)
705 * Return the our own, or peers socket address (sockaddr_irda)
708 static int irda_getname(struct socket
*sock
, struct sockaddr
*uaddr
,
709 int *uaddr_len
, int peer
)
711 struct sockaddr_irda saddr
;
712 struct sock
*sk
= sock
->sk
;
713 struct irda_sock
*self
= irda_sk(sk
);
715 memset(&saddr
, 0, sizeof(saddr
));
717 if (sk
->sk_state
!= TCP_ESTABLISHED
)
720 saddr
.sir_family
= AF_IRDA
;
721 saddr
.sir_lsap_sel
= self
->dtsap_sel
;
722 saddr
.sir_addr
= self
->daddr
;
724 saddr
.sir_family
= AF_IRDA
;
725 saddr
.sir_lsap_sel
= self
->stsap_sel
;
726 saddr
.sir_addr
= self
->saddr
;
729 IRDA_DEBUG(1, "%s(), tsap_sel = %#x\n", __func__
, saddr
.sir_lsap_sel
);
730 IRDA_DEBUG(1, "%s(), addr = %08x\n", __func__
, saddr
.sir_addr
);
732 /* uaddr_len come to us uninitialised */
733 *uaddr_len
= sizeof (struct sockaddr_irda
);
734 memcpy(uaddr
, &saddr
, *uaddr_len
);
740 * Function irda_listen (sock, backlog)
742 * Just move to the listen state
745 static int irda_listen(struct socket
*sock
, int backlog
)
747 struct sock
*sk
= sock
->sk
;
748 int err
= -EOPNOTSUPP
;
750 IRDA_DEBUG(2, "%s()\n", __func__
);
754 if ((sk
->sk_type
!= SOCK_STREAM
) && (sk
->sk_type
!= SOCK_SEQPACKET
) &&
755 (sk
->sk_type
!= SOCK_DGRAM
))
758 if (sk
->sk_state
!= TCP_LISTEN
) {
759 sk
->sk_max_ack_backlog
= backlog
;
760 sk
->sk_state
= TCP_LISTEN
;
771 * Function irda_bind (sock, uaddr, addr_len)
773 * Used by servers to register their well known TSAP
776 static int irda_bind(struct socket
*sock
, struct sockaddr
*uaddr
, int addr_len
)
778 struct sock
*sk
= sock
->sk
;
779 struct sockaddr_irda
*addr
= (struct sockaddr_irda
*) uaddr
;
780 struct irda_sock
*self
= irda_sk(sk
);
783 IRDA_DEBUG(2, "%s(%p)\n", __func__
, self
);
785 if (addr_len
!= sizeof(struct sockaddr_irda
))
789 #ifdef CONFIG_IRDA_ULTRA
790 /* Special care for Ultra sockets */
791 if ((sk
->sk_type
== SOCK_DGRAM
) &&
792 (sk
->sk_protocol
== IRDAPROTO_ULTRA
)) {
793 self
->pid
= addr
->sir_lsap_sel
;
795 if (self
->pid
& 0x80) {
796 IRDA_DEBUG(0, "%s(), extension in PID not supp!\n", __func__
);
799 err
= irda_open_lsap(self
, self
->pid
);
803 /* Pretend we are connected */
804 sock
->state
= SS_CONNECTED
;
805 sk
->sk_state
= TCP_ESTABLISHED
;
810 #endif /* CONFIG_IRDA_ULTRA */
812 self
->ias_obj
= irias_new_object(addr
->sir_name
, jiffies
);
814 if (self
->ias_obj
== NULL
)
817 err
= irda_open_tsap(self
, addr
->sir_lsap_sel
, addr
->sir_name
);
819 irias_delete_object(self
->ias_obj
);
820 self
->ias_obj
= NULL
;
824 /* Register with LM-IAS */
825 irias_add_integer_attrib(self
->ias_obj
, "IrDA:TinyTP:LsapSel",
826 self
->stsap_sel
, IAS_KERNEL_ATTR
);
827 irias_insert_object(self
->ias_obj
);
836 * Function irda_accept (sock, newsock, flags)
838 * Wait for incoming connection
841 static int irda_accept(struct socket
*sock
, struct socket
*newsock
, int flags
)
843 struct sock
*sk
= sock
->sk
;
844 struct irda_sock
*new, *self
= irda_sk(sk
);
849 IRDA_DEBUG(2, "%s()\n", __func__
);
851 err
= irda_create(sock_net(sk
), newsock
, sk
->sk_protocol
, 0);
858 if (sock
->state
!= SS_UNCONNECTED
)
861 if ((sk
= sock
->sk
) == NULL
)
865 if ((sk
->sk_type
!= SOCK_STREAM
) && (sk
->sk_type
!= SOCK_SEQPACKET
) &&
866 (sk
->sk_type
!= SOCK_DGRAM
))
870 if (sk
->sk_state
!= TCP_LISTEN
)
874 * The read queue this time is holding sockets ready to use
875 * hooked into the SABM we saved
879 * We can perform the accept only if there is incoming data
880 * on the listening socket.
881 * So, we will block the caller until we receive any data.
882 * If the caller was waiting on select() or poll() before
883 * calling us, the data is waiting for us ;-)
887 skb
= skb_dequeue(&sk
->sk_receive_queue
);
891 /* Non blocking operation */
893 if (flags
& O_NONBLOCK
)
896 err
= wait_event_interruptible(*(sk_sleep(sk
)),
897 skb_peek(&sk
->sk_receive_queue
));
907 newsk
->sk_state
= TCP_ESTABLISHED
;
909 new = irda_sk(newsk
);
911 /* Now attach up the new socket */
912 new->tsap
= irttp_dup(self
->tsap
, new);
913 err
= -EPERM
; /* value does not seem to make sense. -arnd */
915 IRDA_DEBUG(0, "%s(), dup failed!\n", __func__
);
920 new->stsap_sel
= new->tsap
->stsap_sel
;
921 new->dtsap_sel
= new->tsap
->dtsap_sel
;
922 new->saddr
= irttp_get_saddr(new->tsap
);
923 new->daddr
= irttp_get_daddr(new->tsap
);
925 new->max_sdu_size_tx
= self
->max_sdu_size_tx
;
926 new->max_sdu_size_rx
= self
->max_sdu_size_rx
;
927 new->max_data_size
= self
->max_data_size
;
928 new->max_header_size
= self
->max_header_size
;
930 memcpy(&new->qos_tx
, &self
->qos_tx
, sizeof(struct qos_info
));
932 /* Clean up the original one to keep it in listen state */
933 irttp_listen(self
->tsap
);
936 sk
->sk_ack_backlog
--;
938 newsock
->state
= SS_CONNECTED
;
940 irda_connect_response(new);
948 * Function irda_connect (sock, uaddr, addr_len, flags)
950 * Connect to a IrDA device
952 * The main difference with a "standard" connect is that with IrDA we need
953 * to resolve the service name into a TSAP selector (in TCP, port number
954 * doesn't have to be resolved).
955 * Because of this service name resolution, we can offer "auto-connect",
956 * where we connect to a service without specifying a destination address.
958 * Note : by consulting "errno", the user space caller may learn the cause
959 * of the failure. Most of them are visible in the function, others may come
960 * from subroutines called and are listed here :
961 * o EBUSY : already processing a connect
962 * o EHOSTUNREACH : bad addr->sir_addr argument
963 * o EADDRNOTAVAIL : bad addr->sir_name argument
964 * o ENOTUNIQ : more than one node has addr->sir_name (auto-connect)
965 * o ENETUNREACH : no node found on the network (auto-connect)
967 static int irda_connect(struct socket
*sock
, struct sockaddr
*uaddr
,
968 int addr_len
, int flags
)
970 struct sock
*sk
= sock
->sk
;
971 struct sockaddr_irda
*addr
= (struct sockaddr_irda
*) uaddr
;
972 struct irda_sock
*self
= irda_sk(sk
);
975 IRDA_DEBUG(2, "%s(%p)\n", __func__
, self
);
978 /* Don't allow connect for Ultra sockets */
979 err
= -ESOCKTNOSUPPORT
;
980 if ((sk
->sk_type
== SOCK_DGRAM
) && (sk
->sk_protocol
== IRDAPROTO_ULTRA
))
983 if (sk
->sk_state
== TCP_ESTABLISHED
&& sock
->state
== SS_CONNECTING
) {
984 sock
->state
= SS_CONNECTED
;
986 goto out
; /* Connect completed during a ERESTARTSYS event */
989 if (sk
->sk_state
== TCP_CLOSE
&& sock
->state
== SS_CONNECTING
) {
990 sock
->state
= SS_UNCONNECTED
;
995 err
= -EISCONN
; /* No reconnect on a seqpacket socket */
996 if (sk
->sk_state
== TCP_ESTABLISHED
)
999 sk
->sk_state
= TCP_CLOSE
;
1000 sock
->state
= SS_UNCONNECTED
;
1003 if (addr_len
!= sizeof(struct sockaddr_irda
))
1006 /* Check if user supplied any destination device address */
1007 if ((!addr
->sir_addr
) || (addr
->sir_addr
== DEV_ADDR_ANY
)) {
1008 /* Try to find one suitable */
1009 err
= irda_discover_daddr_and_lsap_sel(self
, addr
->sir_name
);
1011 IRDA_DEBUG(0, "%s(), auto-connect failed!\n", __func__
);
1015 /* Use the one provided by the user */
1016 self
->daddr
= addr
->sir_addr
;
1017 IRDA_DEBUG(1, "%s(), daddr = %08x\n", __func__
, self
->daddr
);
1019 /* If we don't have a valid service name, we assume the
1020 * user want to connect on a specific LSAP. Prevent
1021 * the use of invalid LSAPs (IrLMP 1.1 p10). Jean II */
1022 if((addr
->sir_name
[0] != '\0') ||
1023 (addr
->sir_lsap_sel
>= 0x70)) {
1024 /* Query remote LM-IAS using service name */
1025 err
= irda_find_lsap_sel(self
, addr
->sir_name
);
1027 IRDA_DEBUG(0, "%s(), connect failed!\n", __func__
);
1031 /* Directly connect to the remote LSAP
1032 * specified by the sir_lsap field.
1033 * Please use with caution, in IrDA LSAPs are
1034 * dynamic and there is no "well-known" LSAP. */
1035 self
->dtsap_sel
= addr
->sir_lsap_sel
;
1039 /* Check if we have opened a local TSAP */
1041 irda_open_tsap(self
, LSAP_ANY
, addr
->sir_name
);
1043 /* Move to connecting socket, start sending Connect Requests */
1044 sock
->state
= SS_CONNECTING
;
1045 sk
->sk_state
= TCP_SYN_SENT
;
1047 /* Connect to remote device */
1048 err
= irttp_connect_request(self
->tsap
, self
->dtsap_sel
,
1049 self
->saddr
, self
->daddr
, NULL
,
1050 self
->max_sdu_size_rx
, NULL
);
1052 IRDA_DEBUG(0, "%s(), connect failed!\n", __func__
);
1058 if (sk
->sk_state
!= TCP_ESTABLISHED
&& (flags
& O_NONBLOCK
))
1062 if (wait_event_interruptible(*(sk_sleep(sk
)),
1063 (sk
->sk_state
!= TCP_SYN_SENT
)))
1066 if (sk
->sk_state
!= TCP_ESTABLISHED
) {
1067 sock
->state
= SS_UNCONNECTED
;
1068 if (sk
->sk_prot
->disconnect(sk
, flags
))
1069 sock
->state
= SS_DISCONNECTING
;
1070 err
= sock_error(sk
);
1076 sock
->state
= SS_CONNECTED
;
1078 /* At this point, IrLMP has assigned our source address */
1079 self
->saddr
= irttp_get_saddr(self
->tsap
);
1086 static struct proto irda_proto
= {
1088 .owner
= THIS_MODULE
,
1089 .obj_size
= sizeof(struct irda_sock
),
1093 * Function irda_create (sock, protocol)
1095 * Create IrDA socket
1098 static int irda_create(struct net
*net
, struct socket
*sock
, int protocol
,
1102 struct irda_sock
*self
;
1104 IRDA_DEBUG(2, "%s()\n", __func__
);
1106 if (net
!= &init_net
)
1107 return -EAFNOSUPPORT
;
1109 /* Check for valid socket type */
1110 switch (sock
->type
) {
1111 case SOCK_STREAM
: /* For TTP connections with SAR disabled */
1112 case SOCK_SEQPACKET
: /* For TTP connections with SAR enabled */
1113 case SOCK_DGRAM
: /* For TTP Unitdata or LMP Ultra transfers */
1116 return -ESOCKTNOSUPPORT
;
1119 /* Allocate networking socket */
1120 sk
= sk_alloc(net
, PF_IRDA
, GFP_KERNEL
, &irda_proto
);
1125 IRDA_DEBUG(2, "%s() : self is %p\n", __func__
, self
);
1127 init_waitqueue_head(&self
->query_wait
);
1129 switch (sock
->type
) {
1131 sock
->ops
= &irda_stream_ops
;
1132 self
->max_sdu_size_rx
= TTP_SAR_DISABLE
;
1134 case SOCK_SEQPACKET
:
1135 sock
->ops
= &irda_seqpacket_ops
;
1136 self
->max_sdu_size_rx
= TTP_SAR_UNBOUND
;
1140 #ifdef CONFIG_IRDA_ULTRA
1141 case IRDAPROTO_ULTRA
:
1142 sock
->ops
= &irda_ultra_ops
;
1143 /* Initialise now, because we may send on unbound
1144 * sockets. Jean II */
1145 self
->max_data_size
= ULTRA_MAX_DATA
- LMP_PID_HEADER
;
1146 self
->max_header_size
= IRDA_MAX_HEADER
+ LMP_PID_HEADER
;
1148 #endif /* CONFIG_IRDA_ULTRA */
1149 case IRDAPROTO_UNITDATA
:
1150 sock
->ops
= &irda_dgram_ops
;
1151 /* We let Unitdata conn. be like seqpack conn. */
1152 self
->max_sdu_size_rx
= TTP_SAR_UNBOUND
;
1156 return -ESOCKTNOSUPPORT
;
1161 return -ESOCKTNOSUPPORT
;
1164 /* Initialise networking socket struct */
1165 sock_init_data(sock
, sk
); /* Note : set sk->sk_refcnt to 1 */
1166 sk
->sk_family
= PF_IRDA
;
1167 sk
->sk_protocol
= protocol
;
1169 /* Register as a client with IrLMP */
1170 self
->ckey
= irlmp_register_client(0, NULL
, NULL
, NULL
);
1171 self
->mask
.word
= 0xffff;
1172 self
->rx_flow
= self
->tx_flow
= FLOW_START
;
1173 self
->nslots
= DISCOVERY_DEFAULT_SLOTS
;
1174 self
->daddr
= DEV_ADDR_ANY
; /* Until we get connected */
1175 self
->saddr
= 0x0; /* so IrLMP assign us any link */
1180 * Function irda_destroy_socket (self)
1185 static void irda_destroy_socket(struct irda_sock
*self
)
1187 IRDA_DEBUG(2, "%s(%p)\n", __func__
, self
);
1189 /* Unregister with IrLMP */
1190 irlmp_unregister_client(self
->ckey
);
1191 irlmp_unregister_service(self
->skey
);
1193 /* Unregister with LM-IAS */
1194 if (self
->ias_obj
) {
1195 irias_delete_object(self
->ias_obj
);
1196 self
->ias_obj
= NULL
;
1200 iriap_close(self
->iriap
);
1205 irttp_disconnect_request(self
->tsap
, NULL
, P_NORMAL
);
1206 irttp_close_tsap(self
->tsap
);
1209 #ifdef CONFIG_IRDA_ULTRA
1211 irlmp_close_lsap(self
->lsap
);
1214 #endif /* CONFIG_IRDA_ULTRA */
1218 * Function irda_release (sock)
1220 static int irda_release(struct socket
*sock
)
1222 struct sock
*sk
= sock
->sk
;
1224 IRDA_DEBUG(2, "%s()\n", __func__
);
1230 sk
->sk_state
= TCP_CLOSE
;
1231 sk
->sk_shutdown
|= SEND_SHUTDOWN
;
1232 sk
->sk_state_change(sk
);
1234 /* Destroy IrDA socket */
1235 irda_destroy_socket(irda_sk(sk
));
1241 /* Purge queues (see sock_init_data()) */
1242 skb_queue_purge(&sk
->sk_receive_queue
);
1244 /* Destroy networking socket if we are the last reference on it,
1245 * i.e. if(sk->sk_refcnt == 0) -> sk_free(sk) */
1248 /* Notes on socket locking and deallocation... - Jean II
1249 * In theory we should put pairs of sock_hold() / sock_put() to
1250 * prevent the socket to be destroyed whenever there is an
1251 * outstanding request or outstanding incoming packet or event.
1253 * 1) This may include IAS request, both in connect and getsockopt.
1254 * Unfortunately, the situation is a bit more messy than it looks,
1255 * because we close iriap and kfree(self) above.
1257 * 2) This may include selective discovery in getsockopt.
1258 * Same stuff as above, irlmp registration and self are gone.
1260 * Probably 1 and 2 may not matter, because it's all triggered
1261 * by a process and the socket layer already prevent the
1262 * socket to go away while a process is holding it, through
1263 * sockfd_put() and fput()...
1265 * 3) This may include deferred TSAP closure. In particular,
1266 * we may receive a late irda_disconnect_indication()
1267 * Fortunately, (tsap_cb *)->close_pend should protect us
1270 * I did some testing on SMP, and it looks solid. And the socket
1271 * memory leak is now gone... - Jean II
1278 * Function irda_sendmsg (iocb, sock, msg, len)
1280 * Send message down to TinyTP. This function is used for both STREAM and
1281 * SEQPACK services. This is possible since it forces the client to
1282 * fragment the message if necessary
1284 static int irda_sendmsg(struct kiocb
*iocb
, struct socket
*sock
,
1285 struct msghdr
*msg
, size_t len
)
1287 struct sock
*sk
= sock
->sk
;
1288 struct irda_sock
*self
;
1289 struct sk_buff
*skb
;
1292 IRDA_DEBUG(4, "%s(), len=%zd\n", __func__
, len
);
1294 /* Note : socket.c set MSG_EOR on SEQPACKET sockets */
1295 if (msg
->msg_flags
& ~(MSG_DONTWAIT
| MSG_EOR
| MSG_CMSG_COMPAT
|
1302 if (sk
->sk_shutdown
& SEND_SHUTDOWN
)
1305 if (sk
->sk_state
!= TCP_ESTABLISHED
) {
1312 /* Check if IrTTP is wants us to slow down */
1314 if (wait_event_interruptible(*(sk_sleep(sk
)),
1315 (self
->tx_flow
!= FLOW_STOP
|| sk
->sk_state
!= TCP_ESTABLISHED
))) {
1320 /* Check if we are still connected */
1321 if (sk
->sk_state
!= TCP_ESTABLISHED
) {
1326 /* Check that we don't send out too big frames */
1327 if (len
> self
->max_data_size
) {
1328 IRDA_DEBUG(2, "%s(), Chopping frame from %zd to %d bytes!\n",
1329 __func__
, len
, self
->max_data_size
);
1330 len
= self
->max_data_size
;
1333 skb
= sock_alloc_send_skb(sk
, len
+ self
->max_header_size
+ 16,
1334 msg
->msg_flags
& MSG_DONTWAIT
, &err
);
1338 skb_reserve(skb
, self
->max_header_size
+ 16);
1339 skb_reset_transport_header(skb
);
1341 err
= memcpy_fromiovec(skb_transport_header(skb
), msg
->msg_iov
, len
);
1348 * Just send the message to TinyTP, and let it deal with possible
1349 * errors. No need to duplicate all that here
1351 err
= irttp_data_request(self
->tsap
, skb
);
1353 IRDA_DEBUG(0, "%s(), err=%d\n", __func__
, err
);
1358 /* Tell client how much data we actually sent */
1362 err
= sk_stream_error(sk
, msg
->msg_flags
, err
);
1370 * Function irda_recvmsg_dgram (iocb, sock, msg, size, flags)
1372 * Try to receive message and copy it to user. The frame is discarded
1373 * after being read, regardless of how much the user actually read
1375 static int irda_recvmsg_dgram(struct kiocb
*iocb
, struct socket
*sock
,
1376 struct msghdr
*msg
, size_t size
, int flags
)
1378 struct sock
*sk
= sock
->sk
;
1379 struct irda_sock
*self
= irda_sk(sk
);
1380 struct sk_buff
*skb
;
1384 IRDA_DEBUG(4, "%s()\n", __func__
);
1386 skb
= skb_recv_datagram(sk
, flags
& ~MSG_DONTWAIT
,
1387 flags
& MSG_DONTWAIT
, &err
);
1391 skb_reset_transport_header(skb
);
1394 if (copied
> size
) {
1395 IRDA_DEBUG(2, "%s(), Received truncated frame (%zd < %zd)!\n",
1396 __func__
, copied
, size
);
1398 msg
->msg_flags
|= MSG_TRUNC
;
1400 skb_copy_datagram_iovec(skb
, 0, msg
->msg_iov
, copied
);
1402 skb_free_datagram(sk
, skb
);
1405 * Check if we have previously stopped IrTTP and we know
1406 * have more free space in our rx_queue. If so tell IrTTP
1407 * to start delivering frames again before our rx_queue gets
1410 if (self
->rx_flow
== FLOW_STOP
) {
1411 if ((atomic_read(&sk
->sk_rmem_alloc
) << 2) <= sk
->sk_rcvbuf
) {
1412 IRDA_DEBUG(2, "%s(), Starting IrTTP\n", __func__
);
1413 self
->rx_flow
= FLOW_START
;
1414 irttp_flow_request(self
->tsap
, FLOW_START
);
1422 * Function irda_recvmsg_stream (iocb, sock, msg, size, flags)
1424 static int irda_recvmsg_stream(struct kiocb
*iocb
, struct socket
*sock
,
1425 struct msghdr
*msg
, size_t size
, int flags
)
1427 struct sock
*sk
= sock
->sk
;
1428 struct irda_sock
*self
= irda_sk(sk
);
1429 int noblock
= flags
& MSG_DONTWAIT
;
1434 IRDA_DEBUG(3, "%s()\n", __func__
);
1436 if ((err
= sock_error(sk
)) < 0)
1439 if (sock
->flags
& __SO_ACCEPTCON
)
1443 if (flags
& MSG_OOB
)
1447 target
= sock_rcvlowat(sk
, flags
& MSG_WAITALL
, size
);
1448 timeo
= sock_rcvtimeo(sk
, noblock
);
1452 struct sk_buff
*skb
= skb_dequeue(&sk
->sk_receive_queue
);
1458 if (copied
>= target
)
1461 prepare_to_wait_exclusive(sk_sleep(sk
), &wait
, TASK_INTERRUPTIBLE
);
1464 * POSIX 1003.1g mandates this order.
1466 err
= sock_error(sk
);
1469 else if (sk
->sk_shutdown
& RCV_SHUTDOWN
)
1473 else if (signal_pending(current
))
1474 err
= sock_intr_errno(timeo
);
1475 else if (sk
->sk_state
!= TCP_ESTABLISHED
)
1477 else if (skb_peek(&sk
->sk_receive_queue
) == NULL
)
1478 /* Wait process until data arrives */
1481 finish_wait(sk_sleep(sk
), &wait
);
1485 if (sk
->sk_shutdown
& RCV_SHUTDOWN
)
1491 chunk
= min_t(unsigned int, skb
->len
, size
);
1492 if (memcpy_toiovec(msg
->msg_iov
, skb
->data
, chunk
)) {
1493 skb_queue_head(&sk
->sk_receive_queue
, skb
);
1501 /* Mark read part of skb as used */
1502 if (!(flags
& MSG_PEEK
)) {
1503 skb_pull(skb
, chunk
);
1505 /* put the skb back if we didn't use it up.. */
1507 IRDA_DEBUG(1, "%s(), back on q!\n",
1509 skb_queue_head(&sk
->sk_receive_queue
, skb
);
1515 IRDA_DEBUG(0, "%s() questionable!?\n", __func__
);
1517 /* put message back and return */
1518 skb_queue_head(&sk
->sk_receive_queue
, skb
);
1524 * Check if we have previously stopped IrTTP and we know
1525 * have more free space in our rx_queue. If so tell IrTTP
1526 * to start delivering frames again before our rx_queue gets
1529 if (self
->rx_flow
== FLOW_STOP
) {
1530 if ((atomic_read(&sk
->sk_rmem_alloc
) << 2) <= sk
->sk_rcvbuf
) {
1531 IRDA_DEBUG(2, "%s(), Starting IrTTP\n", __func__
);
1532 self
->rx_flow
= FLOW_START
;
1533 irttp_flow_request(self
->tsap
, FLOW_START
);
1541 * Function irda_sendmsg_dgram (iocb, sock, msg, len)
1543 * Send message down to TinyTP for the unreliable sequenced
1547 static int irda_sendmsg_dgram(struct kiocb
*iocb
, struct socket
*sock
,
1548 struct msghdr
*msg
, size_t len
)
1550 struct sock
*sk
= sock
->sk
;
1551 struct irda_sock
*self
;
1552 struct sk_buff
*skb
;
1555 IRDA_DEBUG(4, "%s(), len=%zd\n", __func__
, len
);
1557 if (msg
->msg_flags
& ~(MSG_DONTWAIT
|MSG_CMSG_COMPAT
))
1562 if (sk
->sk_shutdown
& SEND_SHUTDOWN
) {
1563 send_sig(SIGPIPE
, current
, 0);
1569 if (sk
->sk_state
!= TCP_ESTABLISHED
)
1575 * Check that we don't send out too big frames. This is an unreliable
1576 * service, so we have no fragmentation and no coalescence
1578 if (len
> self
->max_data_size
) {
1579 IRDA_DEBUG(0, "%s(), Warning to much data! "
1580 "Chopping frame from %zd to %d bytes!\n",
1581 __func__
, len
, self
->max_data_size
);
1582 len
= self
->max_data_size
;
1585 skb
= sock_alloc_send_skb(sk
, len
+ self
->max_header_size
,
1586 msg
->msg_flags
& MSG_DONTWAIT
, &err
);
1591 skb_reserve(skb
, self
->max_header_size
);
1592 skb_reset_transport_header(skb
);
1594 IRDA_DEBUG(4, "%s(), appending user data\n", __func__
);
1596 err
= memcpy_fromiovec(skb_transport_header(skb
), msg
->msg_iov
, len
);
1603 * Just send the message to TinyTP, and let it deal with possible
1604 * errors. No need to duplicate all that here
1606 err
= irttp_udata_request(self
->tsap
, skb
);
1608 IRDA_DEBUG(0, "%s(), err=%d\n", __func__
, err
);
1621 * Function irda_sendmsg_ultra (iocb, sock, msg, len)
1623 * Send message down to IrLMP for the unreliable Ultra
1626 #ifdef CONFIG_IRDA_ULTRA
1627 static int irda_sendmsg_ultra(struct kiocb
*iocb
, struct socket
*sock
,
1628 struct msghdr
*msg
, size_t len
)
1630 struct sock
*sk
= sock
->sk
;
1631 struct irda_sock
*self
;
1634 struct sk_buff
*skb
;
1637 IRDA_DEBUG(4, "%s(), len=%zd\n", __func__
, len
);
1640 if (msg
->msg_flags
& ~(MSG_DONTWAIT
|MSG_CMSG_COMPAT
))
1646 if (sk
->sk_shutdown
& SEND_SHUTDOWN
) {
1647 send_sig(SIGPIPE
, current
, 0);
1653 /* Check if an address was specified with sendto. Jean II */
1654 if (msg
->msg_name
) {
1655 DECLARE_SOCKADDR(struct sockaddr_irda
*, addr
, msg
->msg_name
);
1657 /* Check address, extract pid. Jean II */
1658 if (msg
->msg_namelen
< sizeof(*addr
))
1660 if (addr
->sir_family
!= AF_IRDA
)
1663 pid
= addr
->sir_lsap_sel
;
1665 IRDA_DEBUG(0, "%s(), extension in PID not supp!\n", __func__
);
1670 /* Check that the socket is properly bound to an Ultra
1672 if ((self
->lsap
== NULL
) ||
1673 (sk
->sk_state
!= TCP_ESTABLISHED
)) {
1674 IRDA_DEBUG(0, "%s(), socket not bound to Ultra PID.\n",
1679 /* Use PID from socket */
1684 * Check that we don't send out too big frames. This is an unreliable
1685 * service, so we have no fragmentation and no coalescence
1687 if (len
> self
->max_data_size
) {
1688 IRDA_DEBUG(0, "%s(), Warning to much data! "
1689 "Chopping frame from %zd to %d bytes!\n",
1690 __func__
, len
, self
->max_data_size
);
1691 len
= self
->max_data_size
;
1694 skb
= sock_alloc_send_skb(sk
, len
+ self
->max_header_size
,
1695 msg
->msg_flags
& MSG_DONTWAIT
, &err
);
1700 skb_reserve(skb
, self
->max_header_size
);
1701 skb_reset_transport_header(skb
);
1703 IRDA_DEBUG(4, "%s(), appending user data\n", __func__
);
1705 err
= memcpy_fromiovec(skb_transport_header(skb
), msg
->msg_iov
, len
);
1711 err
= irlmp_connless_data_request((bound
? self
->lsap
: NULL
),
1714 IRDA_DEBUG(0, "%s(), err=%d\n", __func__
, err
);
1719 #endif /* CONFIG_IRDA_ULTRA */
1722 * Function irda_shutdown (sk, how)
1724 static int irda_shutdown(struct socket
*sock
, int how
)
1726 struct sock
*sk
= sock
->sk
;
1727 struct irda_sock
*self
= irda_sk(sk
);
1729 IRDA_DEBUG(1, "%s(%p)\n", __func__
, self
);
1733 sk
->sk_state
= TCP_CLOSE
;
1734 sk
->sk_shutdown
|= SEND_SHUTDOWN
;
1735 sk
->sk_state_change(sk
);
1738 iriap_close(self
->iriap
);
1743 irttp_disconnect_request(self
->tsap
, NULL
, P_NORMAL
);
1744 irttp_close_tsap(self
->tsap
);
1748 /* A few cleanup so the socket look as good as new... */
1749 self
->rx_flow
= self
->tx_flow
= FLOW_START
; /* needed ??? */
1750 self
->daddr
= DEV_ADDR_ANY
; /* Until we get re-connected */
1751 self
->saddr
= 0x0; /* so IrLMP assign us any link */
1759 * Function irda_poll (file, sock, wait)
1761 static unsigned int irda_poll(struct file
* file
, struct socket
*sock
,
1764 struct sock
*sk
= sock
->sk
;
1765 struct irda_sock
*self
= irda_sk(sk
);
1768 IRDA_DEBUG(4, "%s()\n", __func__
);
1770 poll_wait(file
, sk_sleep(sk
), wait
);
1773 /* Exceptional events? */
1776 if (sk
->sk_shutdown
& RCV_SHUTDOWN
) {
1777 IRDA_DEBUG(0, "%s(), POLLHUP\n", __func__
);
1782 if (!skb_queue_empty(&sk
->sk_receive_queue
)) {
1783 IRDA_DEBUG(4, "Socket is readable\n");
1784 mask
|= POLLIN
| POLLRDNORM
;
1787 /* Connection-based need to check for termination and startup */
1788 switch (sk
->sk_type
) {
1790 if (sk
->sk_state
== TCP_CLOSE
) {
1791 IRDA_DEBUG(0, "%s(), POLLHUP\n", __func__
);
1795 if (sk
->sk_state
== TCP_ESTABLISHED
) {
1796 if ((self
->tx_flow
== FLOW_START
) &&
1799 mask
|= POLLOUT
| POLLWRNORM
| POLLWRBAND
;
1803 case SOCK_SEQPACKET
:
1804 if ((self
->tx_flow
== FLOW_START
) &&
1807 mask
|= POLLOUT
| POLLWRNORM
| POLLWRBAND
;
1811 if (sock_writeable(sk
))
1812 mask
|= POLLOUT
| POLLWRNORM
| POLLWRBAND
;
1822 * Function irda_ioctl (sock, cmd, arg)
1824 static int irda_ioctl(struct socket
*sock
, unsigned int cmd
, unsigned long arg
)
1826 struct sock
*sk
= sock
->sk
;
1829 IRDA_DEBUG(4, "%s(), cmd=%#x\n", __func__
, cmd
);
1836 amount
= sk
->sk_sndbuf
- sk_wmem_alloc_get(sk
);
1839 err
= put_user(amount
, (unsigned int __user
*)arg
);
1844 struct sk_buff
*skb
;
1846 /* These two are safe on a single CPU system as only user tasks fiddle here */
1847 if ((skb
= skb_peek(&sk
->sk_receive_queue
)) != NULL
)
1849 err
= put_user(amount
, (unsigned int __user
*)arg
);
1855 err
= sock_get_timestamp(sk
, (struct timeval __user
*)arg
);
1860 case SIOCGIFDSTADDR
:
1861 case SIOCSIFDSTADDR
:
1862 case SIOCGIFBRDADDR
:
1863 case SIOCSIFBRDADDR
:
1864 case SIOCGIFNETMASK
:
1865 case SIOCSIFNETMASK
:
1870 IRDA_DEBUG(1, "%s(), doing device ioctl!\n", __func__
);
1877 #ifdef CONFIG_COMPAT
1879 * Function irda_ioctl (sock, cmd, arg)
1881 static int irda_compat_ioctl(struct socket
*sock
, unsigned int cmd
, unsigned long arg
)
1884 * All IRDA's ioctl are standard ones.
1886 return -ENOIOCTLCMD
;
1891 * Function irda_setsockopt (sock, level, optname, optval, optlen)
1893 * Set some options for the socket
1896 static int irda_setsockopt(struct socket
*sock
, int level
, int optname
,
1897 char __user
*optval
, unsigned int optlen
)
1899 struct sock
*sk
= sock
->sk
;
1900 struct irda_sock
*self
= irda_sk(sk
);
1901 struct irda_ias_set
*ias_opt
;
1902 struct ias_object
*ias_obj
;
1903 struct ias_attrib
* ias_attr
; /* Attribute in IAS object */
1904 int opt
, free_ias
= 0, err
= 0;
1906 IRDA_DEBUG(2, "%s(%p)\n", __func__
, self
);
1908 if (level
!= SOL_IRLMP
)
1909 return -ENOPROTOOPT
;
1915 /* The user want to add an attribute to an existing IAS object
1916 * (in the IAS database) or to create a new object with this
1918 * We first query IAS to know if the object exist, and then
1919 * create the right attribute...
1922 if (optlen
!= sizeof(struct irda_ias_set
)) {
1927 ias_opt
= kmalloc(sizeof(struct irda_ias_set
), GFP_ATOMIC
);
1928 if (ias_opt
== NULL
) {
1933 /* Copy query to the driver. */
1934 if (copy_from_user(ias_opt
, optval
, optlen
)) {
1940 /* Find the object we target.
1941 * If the user gives us an empty string, we use the object
1942 * associated with this socket. This will workaround
1943 * duplicated class name - Jean II */
1944 if(ias_opt
->irda_class_name
[0] == '\0') {
1945 if(self
->ias_obj
== NULL
) {
1950 ias_obj
= self
->ias_obj
;
1952 ias_obj
= irias_find_object(ias_opt
->irda_class_name
);
1954 /* Only ROOT can mess with the global IAS database.
1955 * Users can only add attributes to the object associated
1956 * with the socket they own - Jean II */
1957 if((!capable(CAP_NET_ADMIN
)) &&
1958 ((ias_obj
== NULL
) || (ias_obj
!= self
->ias_obj
))) {
1964 /* If the object doesn't exist, create it */
1965 if(ias_obj
== (struct ias_object
*) NULL
) {
1966 /* Create a new object */
1967 ias_obj
= irias_new_object(ias_opt
->irda_class_name
,
1969 if (ias_obj
== NULL
) {
1977 /* Do we have the attribute already ? */
1978 if(irias_find_attrib(ias_obj
, ias_opt
->irda_attrib_name
)) {
1981 kfree(ias_obj
->name
);
1988 /* Look at the type */
1989 switch(ias_opt
->irda_attrib_type
) {
1991 /* Add an integer attribute */
1992 irias_add_integer_attrib(
1994 ias_opt
->irda_attrib_name
,
1995 ias_opt
->attribute
.irda_attrib_int
,
2000 if(ias_opt
->attribute
.irda_attrib_octet_seq
.len
>
2001 IAS_MAX_OCTET_STRING
) {
2004 kfree(ias_obj
->name
);
2011 /* Add an octet sequence attribute */
2012 irias_add_octseq_attrib(
2014 ias_opt
->irda_attrib_name
,
2015 ias_opt
->attribute
.irda_attrib_octet_seq
.octet_seq
,
2016 ias_opt
->attribute
.irda_attrib_octet_seq
.len
,
2020 /* Should check charset & co */
2022 /* The length is encoded in a __u8, and
2023 * IAS_MAX_STRING == 256, so there is no way
2024 * userspace can pass us a string too large.
2026 /* NULL terminate the string (avoid troubles) */
2027 ias_opt
->attribute
.irda_attrib_string
.string
[ias_opt
->attribute
.irda_attrib_string
.len
] = '\0';
2028 /* Add a string attribute */
2029 irias_add_string_attrib(
2031 ias_opt
->irda_attrib_name
,
2032 ias_opt
->attribute
.irda_attrib_string
.string
,
2038 kfree(ias_obj
->name
);
2044 irias_insert_object(ias_obj
);
2048 /* The user want to delete an object from our local IAS
2049 * database. We just need to query the IAS, check is the
2050 * object is not owned by the kernel and delete it.
2053 if (optlen
!= sizeof(struct irda_ias_set
)) {
2058 ias_opt
= kmalloc(sizeof(struct irda_ias_set
), GFP_ATOMIC
);
2059 if (ias_opt
== NULL
) {
2064 /* Copy query to the driver. */
2065 if (copy_from_user(ias_opt
, optval
, optlen
)) {
2071 /* Find the object we target.
2072 * If the user gives us an empty string, we use the object
2073 * associated with this socket. This will workaround
2074 * duplicated class name - Jean II */
2075 if(ias_opt
->irda_class_name
[0] == '\0')
2076 ias_obj
= self
->ias_obj
;
2078 ias_obj
= irias_find_object(ias_opt
->irda_class_name
);
2079 if(ias_obj
== (struct ias_object
*) NULL
) {
2085 /* Only ROOT can mess with the global IAS database.
2086 * Users can only del attributes from the object associated
2087 * with the socket they own - Jean II */
2088 if((!capable(CAP_NET_ADMIN
)) &&
2089 ((ias_obj
== NULL
) || (ias_obj
!= self
->ias_obj
))) {
2095 /* Find the attribute (in the object) we target */
2096 ias_attr
= irias_find_attrib(ias_obj
,
2097 ias_opt
->irda_attrib_name
);
2098 if(ias_attr
== (struct ias_attrib
*) NULL
) {
2104 /* Check is the user space own the object */
2105 if(ias_attr
->value
->owner
!= IAS_USER_ATTR
) {
2106 IRDA_DEBUG(1, "%s(), attempting to delete a kernel attribute\n", __func__
);
2112 /* Remove the attribute (and maybe the object) */
2113 irias_delete_attrib(ias_obj
, ias_attr
, 1);
2116 case IRLMP_MAX_SDU_SIZE
:
2117 if (optlen
< sizeof(int)) {
2122 if (get_user(opt
, (int __user
*)optval
)) {
2127 /* Only possible for a seqpacket service (TTP with SAR) */
2128 if (sk
->sk_type
!= SOCK_SEQPACKET
) {
2129 IRDA_DEBUG(2, "%s(), setting max_sdu_size = %d\n",
2131 self
->max_sdu_size_rx
= opt
;
2133 IRDA_WARNING("%s: not allowed to set MAXSDUSIZE for this socket type!\n",
2139 case IRLMP_HINTS_SET
:
2140 if (optlen
< sizeof(int)) {
2145 /* The input is really a (__u8 hints[2]), easier as an int */
2146 if (get_user(opt
, (int __user
*)optval
)) {
2151 /* Unregister any old registration */
2153 irlmp_unregister_service(self
->skey
);
2155 self
->skey
= irlmp_register_service((__u16
) opt
);
2157 case IRLMP_HINT_MASK_SET
:
2158 /* As opposed to the previous case which set the hint bits
2159 * that we advertise, this one set the filter we use when
2160 * making a discovery (nodes which don't match any hint
2161 * bit in the mask are not reported).
2163 if (optlen
< sizeof(int)) {
2168 /* The input is really a (__u8 hints[2]), easier as an int */
2169 if (get_user(opt
, (int __user
*)optval
)) {
2174 /* Set the new hint mask */
2175 self
->mask
.word
= (__u16
) opt
;
2176 /* Mask out extension bits */
2177 self
->mask
.word
&= 0x7f7f;
2178 /* Check if no bits */
2179 if(!self
->mask
.word
)
2180 self
->mask
.word
= 0xFFFF;
2195 * Function irda_extract_ias_value(ias_opt, ias_value)
2197 * Translate internal IAS value structure to the user space representation
2199 * The external representation of IAS values, as we exchange them with
2200 * user space program is quite different from the internal representation,
2201 * as stored in the IAS database (because we need a flat structure for
2202 * crossing kernel boundary).
2203 * This function transform the former in the latter. We also check
2204 * that the value type is valid.
2206 static int irda_extract_ias_value(struct irda_ias_set
*ias_opt
,
2207 struct ias_value
*ias_value
)
2209 /* Look at the type */
2210 switch (ias_value
->type
) {
2212 /* Copy the integer */
2213 ias_opt
->attribute
.irda_attrib_int
= ias_value
->t
.integer
;
2217 ias_opt
->attribute
.irda_attrib_octet_seq
.len
= ias_value
->len
;
2219 memcpy(ias_opt
->attribute
.irda_attrib_octet_seq
.octet_seq
,
2220 ias_value
->t
.oct_seq
, ias_value
->len
);
2224 ias_opt
->attribute
.irda_attrib_string
.len
= ias_value
->len
;
2225 ias_opt
->attribute
.irda_attrib_string
.charset
= ias_value
->charset
;
2227 memcpy(ias_opt
->attribute
.irda_attrib_string
.string
,
2228 ias_value
->t
.string
, ias_value
->len
);
2229 /* NULL terminate the string (avoid troubles) */
2230 ias_opt
->attribute
.irda_attrib_string
.string
[ias_value
->len
] = '\0';
2237 /* Copy type over */
2238 ias_opt
->irda_attrib_type
= ias_value
->type
;
2244 * Function irda_getsockopt (sock, level, optname, optval, optlen)
2246 static int irda_getsockopt(struct socket
*sock
, int level
, int optname
,
2247 char __user
*optval
, int __user
*optlen
)
2249 struct sock
*sk
= sock
->sk
;
2250 struct irda_sock
*self
= irda_sk(sk
);
2251 struct irda_device_list list
;
2252 struct irda_device_info
*discoveries
;
2253 struct irda_ias_set
* ias_opt
; /* IAS get/query params */
2254 struct ias_object
* ias_obj
; /* Object in IAS */
2255 struct ias_attrib
* ias_attr
; /* Attribute in IAS object */
2256 int daddr
= DEV_ADDR_ANY
; /* Dest address for IAS queries */
2262 IRDA_DEBUG(2, "%s(%p)\n", __func__
, self
);
2264 if (level
!= SOL_IRLMP
)
2265 return -ENOPROTOOPT
;
2267 if (get_user(len
, optlen
))
2276 case IRLMP_ENUMDEVICES
:
2278 /* Offset to first device entry */
2279 offset
= sizeof(struct irda_device_list
) -
2280 sizeof(struct irda_device_info
);
2287 /* Ask lmp for the current discovery log */
2288 discoveries
= irlmp_get_discoveries(&list
.len
, self
->mask
.word
,
2290 /* Check if the we got some results */
2291 if (discoveries
== NULL
) {
2293 goto out
; /* Didn't find any devices */
2296 /* Write total list length back to client */
2297 if (copy_to_user(optval
, &list
, offset
))
2300 /* Copy the list itself - watch for overflow */
2301 if (list
.len
> 2048) {
2305 total
= offset
+ (list
.len
* sizeof(struct irda_device_info
));
2308 if (copy_to_user(optval
+offset
, discoveries
, total
- offset
))
2311 /* Write total number of bytes used back to client */
2312 if (put_user(total
, optlen
))
2315 /* Free up our buffer */
2318 case IRLMP_MAX_SDU_SIZE
:
2319 val
= self
->max_data_size
;
2321 if (put_user(len
, optlen
)) {
2326 if (copy_to_user(optval
, &val
, len
)) {
2333 /* The user want an object from our local IAS database.
2334 * We just need to query the IAS and return the value
2337 /* Check that the user has allocated the right space for us */
2338 if (len
!= sizeof(struct irda_ias_set
)) {
2343 ias_opt
= kmalloc(sizeof(struct irda_ias_set
), GFP_ATOMIC
);
2344 if (ias_opt
== NULL
) {
2349 /* Copy query to the driver. */
2350 if (copy_from_user(ias_opt
, optval
, len
)) {
2356 /* Find the object we target.
2357 * If the user gives us an empty string, we use the object
2358 * associated with this socket. This will workaround
2359 * duplicated class name - Jean II */
2360 if(ias_opt
->irda_class_name
[0] == '\0')
2361 ias_obj
= self
->ias_obj
;
2363 ias_obj
= irias_find_object(ias_opt
->irda_class_name
);
2364 if(ias_obj
== (struct ias_object
*) NULL
) {
2370 /* Find the attribute (in the object) we target */
2371 ias_attr
= irias_find_attrib(ias_obj
,
2372 ias_opt
->irda_attrib_name
);
2373 if(ias_attr
== (struct ias_attrib
*) NULL
) {
2379 /* Translate from internal to user structure */
2380 err
= irda_extract_ias_value(ias_opt
, ias_attr
->value
);
2386 /* Copy reply to the user */
2387 if (copy_to_user(optval
, ias_opt
,
2388 sizeof(struct irda_ias_set
))) {
2393 /* Note : don't need to put optlen, we checked it */
2396 case IRLMP_IAS_QUERY
:
2397 /* The user want an object from a remote IAS database.
2398 * We need to use IAP to query the remote database and
2399 * then wait for the answer to come back. */
2401 /* Check that the user has allocated the right space for us */
2402 if (len
!= sizeof(struct irda_ias_set
)) {
2407 ias_opt
= kmalloc(sizeof(struct irda_ias_set
), GFP_ATOMIC
);
2408 if (ias_opt
== NULL
) {
2413 /* Copy query to the driver. */
2414 if (copy_from_user(ias_opt
, optval
, len
)) {
2420 /* At this point, there are two cases...
2421 * 1) the socket is connected - that's the easy case, we
2422 * just query the device we are connected to...
2423 * 2) the socket is not connected - the user doesn't want
2424 * to connect and/or may not have a valid service name
2425 * (so can't create a fake connection). In this case,
2426 * we assume that the user pass us a valid destination
2427 * address in the requesting structure...
2429 if(self
->daddr
!= DEV_ADDR_ANY
) {
2430 /* We are connected - reuse known daddr */
2431 daddr
= self
->daddr
;
2433 /* We are not connected, we must specify a valid
2434 * destination address */
2435 daddr
= ias_opt
->daddr
;
2436 if((!daddr
) || (daddr
== DEV_ADDR_ANY
)) {
2443 /* Check that we can proceed with IAP */
2445 IRDA_WARNING("%s: busy with a previous query\n",
2452 self
->iriap
= iriap_open(LSAP_ANY
, IAS_CLIENT
, self
,
2453 irda_getvalue_confirm
);
2455 if (self
->iriap
== NULL
) {
2461 /* Treat unexpected wakeup as disconnect */
2462 self
->errno
= -EHOSTUNREACH
;
2464 /* Query remote LM-IAS */
2465 iriap_getvaluebyclass_request(self
->iriap
,
2467 ias_opt
->irda_class_name
,
2468 ias_opt
->irda_attrib_name
);
2470 /* Wait for answer, if not yet finished (or failed) */
2471 if (wait_event_interruptible(self
->query_wait
,
2472 (self
->iriap
== NULL
))) {
2473 /* pending request uses copy of ias_opt-content
2474 * we can free it regardless! */
2476 /* Treat signals as disconnect */
2477 err
= -EHOSTUNREACH
;
2481 /* Check what happened */
2485 /* Requested object/attribute doesn't exist */
2486 if((self
->errno
== IAS_CLASS_UNKNOWN
) ||
2487 (self
->errno
== IAS_ATTRIB_UNKNOWN
))
2488 err
= -EADDRNOTAVAIL
;
2490 err
= -EHOSTUNREACH
;
2495 /* Translate from internal to user structure */
2496 err
= irda_extract_ias_value(ias_opt
, self
->ias_result
);
2497 if (self
->ias_result
)
2498 irias_delete_value(self
->ias_result
);
2504 /* Copy reply to the user */
2505 if (copy_to_user(optval
, ias_opt
,
2506 sizeof(struct irda_ias_set
))) {
2511 /* Note : don't need to put optlen, we checked it */
2514 case IRLMP_WAITDEVICE
:
2515 /* This function is just another way of seeing life ;-)
2516 * IRLMP_ENUMDEVICES assumes that you have a static network,
2517 * and that you just want to pick one of the devices present.
2518 * On the other hand, in here we assume that no device is
2519 * present and that at some point in the future a device will
2520 * come into range. When this device arrive, we just wake
2521 * up the caller, so that he has time to connect to it before
2522 * the device goes away...
2523 * Note : once the node has been discovered for more than a
2524 * few second, it won't trigger this function, unless it
2525 * goes away and come back changes its hint bits (so we
2526 * might call it IRLMP_WAITNEWDEVICE).
2529 /* Check that the user is passing us an int */
2530 if (len
!= sizeof(int)) {
2534 /* Get timeout in ms (max time we block the caller) */
2535 if (get_user(val
, (int __user
*)optval
)) {
2540 /* Tell IrLMP we want to be notified */
2541 irlmp_update_client(self
->ckey
, self
->mask
.word
,
2542 irda_selective_discovery_indication
,
2543 NULL
, (void *) self
);
2545 /* Do some discovery (and also return cached results) */
2546 irlmp_discovery_request(self
->nslots
);
2548 /* Wait until a node is discovered */
2549 if (!self
->cachedaddr
) {
2550 IRDA_DEBUG(1, "%s(), nothing discovered yet, going to sleep...\n", __func__
);
2552 /* Set watchdog timer to expire in <val> ms. */
2554 setup_timer(&self
->watchdog
, irda_discovery_timeout
,
2555 (unsigned long)self
);
2556 mod_timer(&self
->watchdog
,
2557 jiffies
+ msecs_to_jiffies(val
));
2559 /* Wait for IR-LMP to call us back */
2560 err
= __wait_event_interruptible(self
->query_wait
,
2561 (self
->cachedaddr
!= 0 || self
->errno
== -ETIME
));
2563 /* If watchdog is still activated, kill it! */
2564 del_timer(&(self
->watchdog
));
2566 IRDA_DEBUG(1, "%s(), ...waking up !\n", __func__
);
2572 IRDA_DEBUG(1, "%s(), found immediately !\n",
2575 /* Tell IrLMP that we have been notified */
2576 irlmp_update_client(self
->ckey
, self
->mask
.word
,
2579 /* Check if the we got some results */
2580 if (!self
->cachedaddr
) {
2581 err
= -EAGAIN
; /* Didn't find any devices */
2584 daddr
= self
->cachedaddr
;
2586 self
->cachedaddr
= 0;
2588 /* We return the daddr of the device that trigger the
2589 * wakeup. As irlmp pass us only the new devices, we
2590 * are sure that it's not an old device.
2591 * If the user want more details, he should query
2592 * the whole discovery log and pick one device...
2594 if (put_user(daddr
, (int __user
*)optval
)) {
2611 static const struct net_proto_family irda_family_ops
= {
2613 .create
= irda_create
,
2614 .owner
= THIS_MODULE
,
2617 static const struct proto_ops irda_stream_ops
= {
2619 .owner
= THIS_MODULE
,
2620 .release
= irda_release
,
2622 .connect
= irda_connect
,
2623 .socketpair
= sock_no_socketpair
,
2624 .accept
= irda_accept
,
2625 .getname
= irda_getname
,
2627 .ioctl
= irda_ioctl
,
2628 #ifdef CONFIG_COMPAT
2629 .compat_ioctl
= irda_compat_ioctl
,
2631 .listen
= irda_listen
,
2632 .shutdown
= irda_shutdown
,
2633 .setsockopt
= irda_setsockopt
,
2634 .getsockopt
= irda_getsockopt
,
2635 .sendmsg
= irda_sendmsg
,
2636 .recvmsg
= irda_recvmsg_stream
,
2637 .mmap
= sock_no_mmap
,
2638 .sendpage
= sock_no_sendpage
,
2641 static const struct proto_ops irda_seqpacket_ops
= {
2643 .owner
= THIS_MODULE
,
2644 .release
= irda_release
,
2646 .connect
= irda_connect
,
2647 .socketpair
= sock_no_socketpair
,
2648 .accept
= irda_accept
,
2649 .getname
= irda_getname
,
2650 .poll
= datagram_poll
,
2651 .ioctl
= irda_ioctl
,
2652 #ifdef CONFIG_COMPAT
2653 .compat_ioctl
= irda_compat_ioctl
,
2655 .listen
= irda_listen
,
2656 .shutdown
= irda_shutdown
,
2657 .setsockopt
= irda_setsockopt
,
2658 .getsockopt
= irda_getsockopt
,
2659 .sendmsg
= irda_sendmsg
,
2660 .recvmsg
= irda_recvmsg_dgram
,
2661 .mmap
= sock_no_mmap
,
2662 .sendpage
= sock_no_sendpage
,
2665 static const struct proto_ops irda_dgram_ops
= {
2667 .owner
= THIS_MODULE
,
2668 .release
= irda_release
,
2670 .connect
= irda_connect
,
2671 .socketpair
= sock_no_socketpair
,
2672 .accept
= irda_accept
,
2673 .getname
= irda_getname
,
2674 .poll
= datagram_poll
,
2675 .ioctl
= irda_ioctl
,
2676 #ifdef CONFIG_COMPAT
2677 .compat_ioctl
= irda_compat_ioctl
,
2679 .listen
= irda_listen
,
2680 .shutdown
= irda_shutdown
,
2681 .setsockopt
= irda_setsockopt
,
2682 .getsockopt
= irda_getsockopt
,
2683 .sendmsg
= irda_sendmsg_dgram
,
2684 .recvmsg
= irda_recvmsg_dgram
,
2685 .mmap
= sock_no_mmap
,
2686 .sendpage
= sock_no_sendpage
,
2689 #ifdef CONFIG_IRDA_ULTRA
2690 static const struct proto_ops irda_ultra_ops
= {
2692 .owner
= THIS_MODULE
,
2693 .release
= irda_release
,
2695 .connect
= sock_no_connect
,
2696 .socketpair
= sock_no_socketpair
,
2697 .accept
= sock_no_accept
,
2698 .getname
= irda_getname
,
2699 .poll
= datagram_poll
,
2700 .ioctl
= irda_ioctl
,
2701 #ifdef CONFIG_COMPAT
2702 .compat_ioctl
= irda_compat_ioctl
,
2704 .listen
= sock_no_listen
,
2705 .shutdown
= irda_shutdown
,
2706 .setsockopt
= irda_setsockopt
,
2707 .getsockopt
= irda_getsockopt
,
2708 .sendmsg
= irda_sendmsg_ultra
,
2709 .recvmsg
= irda_recvmsg_dgram
,
2710 .mmap
= sock_no_mmap
,
2711 .sendpage
= sock_no_sendpage
,
2713 #endif /* CONFIG_IRDA_ULTRA */
2716 * Function irsock_init (pro)
2718 * Initialize IrDA protocol
2721 int __init
irsock_init(void)
2723 int rc
= proto_register(&irda_proto
, 0);
2726 rc
= sock_register(&irda_family_ops
);
2732 * Function irsock_cleanup (void)
2734 * Remove IrDA protocol
2737 void irsock_cleanup(void)
2739 sock_unregister(PF_IRDA
);
2740 proto_unregister(&irda_proto
);